- Add upgradeable smart contract with vesting and staking functionality - Include comprehensive deployment script for proxy deployments and upgrades - Configure Hardhat with BSC testnet and verification support - Successfully deployed to BSC testnet at 0x12d705781764b7750d5622727EdA2392b512Ca3d 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 line
2.0 MiB
1 line
2.0 MiB
{"id":"272e35560059386e24173c15989678d0","_format":"hh-sol-build-info-1","solcVersion":"0.8.20","solcLongVersion":"0.8.20+commit.a1b79de6","input":{"language":"Solidity","sources":{"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/draft-IERC6093.sol)\npragma solidity >=0.8.4;\n\n/**\n * @dev Standard ERC-20 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.\n */\ninterface IERC20Errors {\n /**\n * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n * @param balance Current balance for the interacting account.\n * @param needed Minimum amount required to perform a transfer.\n */\n error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);\n\n /**\n * @dev Indicates a failure with the token `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n */\n error ERC20InvalidSender(address sender);\n\n /**\n * @dev Indicates a failure with the token `receiver`. Used in transfers.\n * @param receiver Address to which tokens are being transferred.\n */\n error ERC20InvalidReceiver(address receiver);\n\n /**\n * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.\n * @param spender Address that may be allowed to operate on tokens without being their owner.\n * @param allowance Amount of tokens a `spender` is allowed to operate with.\n * @param needed Minimum amount required to perform a transfer.\n */\n error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);\n\n /**\n * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n * @param approver Address initiating an approval operation.\n */\n error ERC20InvalidApprover(address approver);\n\n /**\n * @dev Indicates a failure with the `spender` to be approved. Used in approvals.\n * @param spender Address that may be allowed to operate on tokens without being their owner.\n */\n error ERC20InvalidSpender(address spender);\n}\n\n/**\n * @dev Standard ERC-721 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.\n */\ninterface IERC721Errors {\n /**\n * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.\n * Used in balance queries.\n * @param owner Address of the current owner of a token.\n */\n error ERC721InvalidOwner(address owner);\n\n /**\n * @dev Indicates a `tokenId` whose `owner` is the zero address.\n * @param tokenId Identifier number of a token.\n */\n error ERC721NonexistentToken(uint256 tokenId);\n\n /**\n * @dev Indicates an error related to the ownership over a particular token. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n * @param tokenId Identifier number of a token.\n * @param owner Address of the current owner of a token.\n */\n error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);\n\n /**\n * @dev Indicates a failure with the token `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n */\n error ERC721InvalidSender(address sender);\n\n /**\n * @dev Indicates a failure with the token `receiver`. Used in transfers.\n * @param receiver Address to which tokens are being transferred.\n */\n error ERC721InvalidReceiver(address receiver);\n\n /**\n * @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n * @param tokenId Identifier number of a token.\n */\n error ERC721InsufficientApproval(address operator, uint256 tokenId);\n\n /**\n * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n * @param approver Address initiating an approval operation.\n */\n error ERC721InvalidApprover(address approver);\n\n /**\n * @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n */\n error ERC721InvalidOperator(address operator);\n}\n\n/**\n * @dev Standard ERC-1155 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.\n */\ninterface IERC1155Errors {\n /**\n * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n * @param balance Current balance for the interacting account.\n * @param needed Minimum amount required to perform a transfer.\n * @param tokenId Identifier number of a token.\n */\n error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);\n\n /**\n * @dev Indicates a failure with the token `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n */\n error ERC1155InvalidSender(address sender);\n\n /**\n * @dev Indicates a failure with the token `receiver`. Used in transfers.\n * @param receiver Address to which tokens are being transferred.\n */\n error ERC1155InvalidReceiver(address receiver);\n\n /**\n * @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n * @param owner Address of the current owner of a token.\n */\n error ERC1155MissingApprovalForAll(address operator, address owner);\n\n /**\n * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n * @param approver Address initiating an approval operation.\n */\n error ERC1155InvalidApprover(address approver);\n\n /**\n * @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n */\n error ERC1155InvalidOperator(address operator);\n\n /**\n * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.\n * Used in batch transfers.\n * @param idsLength Length of the array of token identifiers\n * @param valuesLength Length of the array of token amounts\n */\n error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);\n}\n"},"@openzeppelin/contracts/interfaces/IERC1363.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC1363.sol)\n\npragma solidity >=0.6.2;\n\nimport {IERC20} from \"./IERC20.sol\";\nimport {IERC165} from \"./IERC165.sol\";\n\n/**\n * @title IERC1363\n * @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363].\n *\n * Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract\n * after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction.\n */\ninterface IERC1363 is IERC20, IERC165 {\n /*\n * Note: the ERC-165 identifier for this interface is 0xb0202a11.\n * 0xb0202a11 ===\n * bytes4(keccak256('transferAndCall(address,uint256)')) ^\n * bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^\n * bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^\n * bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)')) ^\n * bytes4(keccak256('approveAndCall(address,uint256)')) ^\n * bytes4(keccak256('approveAndCall(address,uint256,bytes)'))\n */\n\n /**\n * @dev Moves a `value` amount of tokens from the caller's account to `to`\n * and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n * @param to The address which you want to transfer to.\n * @param value The amount of tokens to be transferred.\n * @return A boolean value indicating whether the operation succeeded unless throwing.\n */\n function transferAndCall(address to, uint256 value) external returns (bool);\n\n /**\n * @dev Moves a `value` amount of tokens from the caller's account to `to`\n * and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n * @param to The address which you want to transfer to.\n * @param value The amount of tokens to be transferred.\n * @param data Additional data with no specified format, sent in call to `to`.\n * @return A boolean value indicating whether the operation succeeded unless throwing.\n */\n function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool);\n\n /**\n * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism\n * and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n * @param from The address which you want to send tokens from.\n * @param to The address which you want to transfer to.\n * @param value The amount of tokens to be transferred.\n * @return A boolean value indicating whether the operation succeeded unless throwing.\n */\n function transferFromAndCall(address from, address to, uint256 value) external returns (bool);\n\n /**\n * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism\n * and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n * @param from The address which you want to send tokens from.\n * @param to The address which you want to transfer to.\n * @param value The amount of tokens to be transferred.\n * @param data Additional data with no specified format, sent in call to `to`.\n * @return A boolean value indicating whether the operation succeeded unless throwing.\n */\n function transferFromAndCall(address from, address to, uint256 value, bytes calldata data) external returns (bool);\n\n /**\n * @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\n * @param spender The address which will spend the funds.\n * @param value The amount of tokens to be spent.\n * @return A boolean value indicating whether the operation succeeded unless throwing.\n */\n function approveAndCall(address spender, uint256 value) external returns (bool);\n\n /**\n * @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\n * @param spender The address which will spend the funds.\n * @param value The amount of tokens to be spent.\n * @param data Additional data with no specified format, sent in call to `spender`.\n * @return A boolean value indicating whether the operation succeeded unless throwing.\n */\n function approveAndCall(address spender, uint256 value, bytes calldata data) external returns (bool);\n}\n"},"@openzeppelin/contracts/interfaces/IERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC165.sol)\n\npragma solidity >=0.4.16;\n\nimport {IERC165} from \"../utils/introspection/IERC165.sol\";\n"},"@openzeppelin/contracts/interfaces/IERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC20.sol)\n\npragma solidity >=0.4.16;\n\nimport {IERC20} from \"../token/ERC20/IERC20.sol\";\n"},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"./IERC20.sol\";\nimport {IERC20Metadata} from \"./extensions/IERC20Metadata.sol\";\nimport {Context} from \"../../utils/Context.sol\";\nimport {IERC20Errors} from \"../../interfaces/draft-IERC6093.sol\";\n\n/**\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n *\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 * The default value of {decimals} is 18. To change this, you should override\n * this function so it returns a different value.\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 ERC-20\n * applications.\n */\nabstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {\n mapping(address account => uint256) private _balances;\n\n mapping(address account => mapping(address spender => uint256)) private _allowances;\n\n uint256 private _totalSupply;\n\n string private _name;\n string private _symbol;\n\n /**\n * @dev Sets the values for {name} and {symbol}.\n *\n * Both values are immutable: they can only be set once during construction.\n */\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev Returns the name of the token.\n */\n function name() public view virtual returns (string memory) {\n return _name;\n }\n\n /**\n * @dev Returns the symbol of the token, usually a shorter version of the\n * name.\n */\n function symbol() public view virtual returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev Returns the number of decimals used to get its user representation.\n * For example, if `decimals` equals `2`, a balance of `505` tokens should\n * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n *\n * Tokens usually opt for a value of 18, imitating the relationship between\n * Ether and Wei. This is the default value returned by this function, unless\n * it's overridden.\n *\n * NOTE: This information is only used for _display_ purposes: it in\n * no way affects any of the arithmetic of the contract, including\n * {IERC20-balanceOf} and {IERC20-transfer}.\n */\n function decimals() public view virtual returns (uint8) {\n return 18;\n }\n\n /// @inheritdoc IERC20\n function totalSupply() public view virtual returns (uint256) {\n return _totalSupply;\n }\n\n /// @inheritdoc IERC20\n function balanceOf(address account) public view virtual returns (uint256) {\n return _balances[account];\n }\n\n /**\n * @dev See {IERC20-transfer}.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - the caller must have a balance of at least `value`.\n */\n function transfer(address to, uint256 value) public virtual returns (bool) {\n address owner = _msgSender();\n _transfer(owner, to, value);\n return true;\n }\n\n /// @inheritdoc IERC20\n function allowance(address owner, address spender) public view virtual returns (uint256) {\n return _allowances[owner][spender];\n }\n\n /**\n * @dev See {IERC20-approve}.\n *\n * NOTE: If `value` 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 value) public virtual returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, value);\n return true;\n }\n\n /**\n * @dev See {IERC20-transferFrom}.\n *\n * Skips emitting an {Approval} event indicating an allowance update. This is not\n * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].\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 `value`.\n * - the caller must have allowance for ``from``'s tokens of at least\n * `value`.\n */\n function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {\n address spender = _msgSender();\n _spendAllowance(from, spender, value);\n _transfer(from, to, value);\n return true;\n }\n\n /**\n * @dev Moves a `value` 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 * NOTE: This function is not virtual, {_update} should be overridden instead.\n */\n function _transfer(address from, address to, uint256 value) internal {\n if (from == address(0)) {\n revert ERC20InvalidSender(address(0));\n }\n if (to == address(0)) {\n revert ERC20InvalidReceiver(address(0));\n }\n _update(from, to, value);\n }\n\n /**\n * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`\n * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding\n * this function.\n *\n * Emits a {Transfer} event.\n */\n function _update(address from, address to, uint256 value) internal virtual {\n if (from == address(0)) {\n // Overflow check required: The rest of the code assumes that totalSupply never overflows\n _totalSupply += value;\n } else {\n uint256 fromBalance = _balances[from];\n if (fromBalance < value) {\n revert ERC20InsufficientBalance(from, fromBalance, value);\n }\n unchecked {\n // Overflow not possible: value <= fromBalance <= totalSupply.\n _balances[from] = fromBalance - value;\n }\n }\n\n if (to == address(0)) {\n unchecked {\n // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.\n _totalSupply -= value;\n }\n } else {\n unchecked {\n // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.\n _balances[to] += value;\n }\n }\n\n emit Transfer(from, to, value);\n }\n\n /**\n * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).\n * Relies on the `_update` mechanism\n *\n * Emits a {Transfer} event with `from` set to the zero address.\n *\n * NOTE: This function is not virtual, {_update} should be overridden instead.\n */\n function _mint(address account, uint256 value) internal {\n if (account == address(0)) {\n revert ERC20InvalidReceiver(address(0));\n }\n _update(address(0), account, value);\n }\n\n /**\n * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.\n * Relies on the `_update` mechanism.\n *\n * Emits a {Transfer} event with `to` set to the zero address.\n *\n * NOTE: This function is not virtual, {_update} should be overridden instead\n */\n function _burn(address account, uint256 value) internal {\n if (account == address(0)) {\n revert ERC20InvalidSender(address(0));\n }\n _update(account, address(0), value);\n }\n\n /**\n * @dev Sets `value` 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 * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.\n */\n function _approve(address owner, address spender, uint256 value) internal {\n _approve(owner, spender, value, true);\n }\n\n /**\n * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.\n *\n * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by\n * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any\n * `Approval` event during `transferFrom` operations.\n *\n * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to\n * true using the following override:\n *\n * ```solidity\n * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {\n * super._approve(owner, spender, value, true);\n * }\n * ```\n *\n * Requirements are the same as {_approve}.\n */\n function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {\n if (owner == address(0)) {\n revert ERC20InvalidApprover(address(0));\n }\n if (spender == address(0)) {\n revert ERC20InvalidSpender(address(0));\n }\n _allowances[owner][spender] = value;\n if (emitEvent) {\n emit Approval(owner, spender, value);\n }\n }\n\n /**\n * @dev Updates `owner`'s allowance for `spender` based on spent `value`.\n *\n * Does not update the allowance value in case of infinite allowance.\n * Revert if not enough allowance is available.\n *\n * Does not emit an {Approval} event.\n */\n function _spendAllowance(address owner, address spender, uint256 value) internal virtual {\n uint256 currentAllowance = allowance(owner, spender);\n if (currentAllowance < type(uint256).max) {\n if (currentAllowance < value) {\n revert ERC20InsufficientAllowance(spender, currentAllowance, value);\n }\n unchecked {\n _approve(owner, spender, currentAllowance - value, false);\n }\n }\n }\n}\n"},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity >=0.6.2;\n\nimport {IERC20} from \"../IERC20.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the ERC-20 standard.\n */\ninterface IERC20Metadata is IERC20 {\n /**\n * @dev Returns the name of the token.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the symbol of the token.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the decimals places of the token.\n */\n function decimals() external view returns (uint8);\n}\n"},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Permit.sol)\n\npragma solidity >=0.4.16;\n\n/**\n * @dev Interface of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in\n * https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].\n *\n * Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\n * need to send a transaction, and thus is not required to hold Ether at all.\n *\n * ==== Security Considerations\n *\n * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature\n * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be\n * considered as an intention to spend the allowance in any specific way. The second is that because permits have\n * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should\n * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be\n * generally recommended is:\n *\n * ```solidity\n * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {\n * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}\n * doThing(..., value);\n * }\n *\n * function doThing(..., uint256 value) public {\n * token.safeTransferFrom(msg.sender, address(this), value);\n * ...\n * }\n * ```\n *\n * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of\n * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also\n * {SafeERC20-safeTransferFrom}).\n *\n * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so\n * contracts should have entry points that don't rely on permit.\n */\ninterface IERC20Permit {\n /**\n * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\n * given ``owner``'s signed approval.\n *\n * IMPORTANT: The same issues {IERC20-approve} has related to transaction\n * ordering also apply here.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n * - `deadline` must be a timestamp in the future.\n * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\n * over the EIP712-formatted function arguments.\n * - the signature must use ``owner``'s current nonce (see {nonces}).\n *\n * For more information on the signature format, see the\n * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\n * section].\n *\n * CAUTION: See Security Considerations above.\n */\n function permit(\n address owner,\n address spender,\n uint256 value,\n uint256 deadline,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) external;\n\n /**\n * @dev Returns the current nonce for `owner`. This value must be\n * included whenever a signature is generated for {permit}.\n *\n * Every successful call to {permit} increases ``owner``'s nonce by one. This\n * prevents a signature from being used multiple times.\n */\n function nonces(address owner) external view returns (uint256);\n\n /**\n * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\n */\n // solhint-disable-next-line func-name-mixedcase\n function DOMAIN_SEPARATOR() external view returns (bytes32);\n}\n"},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol)\n\npragma solidity >=0.4.16;\n\n/**\n * @dev Interface of the ERC-20 standard as defined in the ERC.\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 value of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the value of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves a `value` amount of 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 value) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n * 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 value) external returns (bool);\n\n /**\n * @dev Moves a `value` amount of tokens from `from` to `to` using the\n * allowance mechanism. `value` 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(address from, address to, uint256 value) external returns (bool);\n}\n"},"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (token/ERC20/utils/SafeERC20.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"../IERC20.sol\";\nimport {IERC1363} from \"../../../interfaces/IERC1363.sol\";\n\n/**\n * @title SafeERC20\n * @dev Wrappers around ERC-20 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 /**\n * @dev An operation with an ERC-20 token failed.\n */\n error SafeERC20FailedOperation(address token);\n\n /**\n * @dev Indicates a failed `decreaseAllowance` request.\n */\n error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);\n\n /**\n * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,\n * non-reverting calls are assumed to be successful.\n */\n function safeTransfer(IERC20 token, address to, uint256 value) internal {\n _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));\n }\n\n /**\n * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the\n * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.\n */\n function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {\n _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));\n }\n\n /**\n * @dev Variant of {safeTransfer} that returns a bool instead of reverting if the operation is not successful.\n */\n function trySafeTransfer(IERC20 token, address to, uint256 value) internal returns (bool) {\n return _callOptionalReturnBool(token, abi.encodeCall(token.transfer, (to, value)));\n }\n\n /**\n * @dev Variant of {safeTransferFrom} that returns a bool instead of reverting if the operation is not successful.\n */\n function trySafeTransferFrom(IERC20 token, address from, address to, uint256 value) internal returns (bool) {\n return _callOptionalReturnBool(token, abi.encodeCall(token.transferFrom, (from, to, value)));\n }\n\n /**\n * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\n * non-reverting calls are assumed to be successful.\n *\n * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the \"client\"\n * smart contract uses ERC-7674 to set temporary allowances, then the \"client\" smart contract should avoid using\n * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract\n * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.\n */\n function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {\n uint256 oldAllowance = token.allowance(address(this), spender);\n forceApprove(token, spender, oldAllowance + value);\n }\n\n /**\n * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no\n * value, non-reverting calls are assumed to be successful.\n *\n * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the \"client\"\n * smart contract uses ERC-7674 to set temporary allowances, then the \"client\" smart contract should avoid using\n * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract\n * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.\n */\n function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {\n unchecked {\n uint256 currentAllowance = token.allowance(address(this), spender);\n if (currentAllowance < requestedDecrease) {\n revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);\n }\n forceApprove(token, spender, currentAllowance - requestedDecrease);\n }\n }\n\n /**\n * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,\n * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval\n * to be set to zero before setting it to a non-zero value, such as USDT.\n *\n * NOTE: If the token implements ERC-7674, this function will not modify any temporary allowance. This function\n * only sets the \"standard\" allowance. Any temporary allowance will remain active, in addition to the value being\n * set here.\n */\n function forceApprove(IERC20 token, address spender, uint256 value) internal {\n bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));\n\n if (!_callOptionalReturnBool(token, approvalCall)) {\n _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));\n _callOptionalReturn(token, approvalCall);\n }\n }\n\n /**\n * @dev Performs an {ERC1363} transferAndCall, with a fallback to the simple {ERC20} transfer if the target has no\n * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when\n * targeting contracts.\n *\n * Reverts if the returned value is other than `true`.\n */\n function transferAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {\n if (to.code.length == 0) {\n safeTransfer(token, to, value);\n } else if (!token.transferAndCall(to, value, data)) {\n revert SafeERC20FailedOperation(address(token));\n }\n }\n\n /**\n * @dev Performs an {ERC1363} transferFromAndCall, with a fallback to the simple {ERC20} transferFrom if the target\n * has no code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when\n * targeting contracts.\n *\n * Reverts if the returned value is other than `true`.\n */\n function transferFromAndCallRelaxed(\n IERC1363 token,\n address from,\n address to,\n uint256 value,\n bytes memory data\n ) internal {\n if (to.code.length == 0) {\n safeTransferFrom(token, from, to, value);\n } else if (!token.transferFromAndCall(from, to, value, data)) {\n revert SafeERC20FailedOperation(address(token));\n }\n }\n\n /**\n * @dev Performs an {ERC1363} approveAndCall, with a fallback to the simple {ERC20} approve if the target has no\n * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when\n * targeting contracts.\n *\n * NOTE: When the recipient address (`to`) has no code (i.e. is an EOA), this function behaves as {forceApprove}.\n * Opposedly, when the recipient address (`to`) has code, this function only attempts to call {ERC1363-approveAndCall}\n * once without retrying, and relies on the returned value to be true.\n *\n * Reverts if the returned value is other than `true`.\n */\n function approveAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {\n if (to.code.length == 0) {\n forceApprove(token, to, value);\n } else if (!token.approveAndCall(to, value, data)) {\n revert SafeERC20FailedOperation(address(token));\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 * This is a variant of {_callOptionalReturnBool} that reverts if call fails to meet the requirements.\n */\n function _callOptionalReturn(IERC20 token, bytes memory data) private {\n uint256 returnSize;\n uint256 returnValue;\n assembly (\"memory-safe\") {\n let success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)\n // bubble errors\n if iszero(success) {\n let ptr := mload(0x40)\n returndatacopy(ptr, 0, returndatasize())\n revert(ptr, returndatasize())\n }\n returnSize := returndatasize()\n returnValue := mload(0)\n }\n\n if (returnSize == 0 ? address(token).code.length == 0 : returnValue != 1) {\n revert SafeERC20FailedOperation(address(token));\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 * This is a variant of {_callOptionalReturn} that silently catches all reverts and returns a bool instead.\n */\n function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {\n bool success;\n uint256 returnSize;\n uint256 returnValue;\n assembly (\"memory-safe\") {\n success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)\n returnSize := returndatasize()\n returnValue := mload(0)\n }\n return success && (returnSize == 0 ? address(token).code.length > 0 : returnValue == 1);\n }\n}\n"},"@openzeppelin/contracts/utils/Context.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)\n\npragma solidity ^0.8.20;\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 function _contextSuffixLength() internal view virtual returns (uint256) {\n return 0;\n }\n}\n"},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (utils/introspection/IERC165.sol)\n\npragma solidity >=0.4.16;\n\n/**\n * @dev Interface of the ERC-165 standard, as defined in the\n * https://eips.ethereum.org/EIPS/eip-165[ERC].\n *\n * Implementers can declare support of contract interfaces, which can then be\n * queried by others ({ERC165Checker}).\n *\n * For an implementation, see {ERC165}.\n */\ninterface IERC165 {\n /**\n * @dev Returns true if this contract implements the interface defined by\n * `interfaceId`. See the corresponding\n * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]\n * to learn more about how these ids are created.\n *\n * This function call must use less than 30 000 gas.\n */\n function supportsInterface(bytes4 interfaceId) external view returns (bool);\n}\n"},"@openzeppelin/contracts/utils/ReentrancyGuard.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Contract module that helps prevent reentrant calls to a function.\n *\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n * available, which can be applied to functions to make sure there are no nested\n * (reentrant) calls to them.\n *\n * Note that because there is a single `nonReentrant` guard, functions marked as\n * `nonReentrant` may not call one another. This can be worked around by making\n * those functions `private`, and then adding `external` `nonReentrant` entry\n * points to them.\n *\n * TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at,\n * consider using {ReentrancyGuardTransient} instead.\n *\n * TIP: If you would like to learn more about reentrancy and alternative ways\n * to protect against it, check out our blog post\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\n */\nabstract contract ReentrancyGuard {\n // Booleans are more expensive than uint256 or any type that takes up a full\n // word because each write operation emits an extra SLOAD to first read the\n // slot's contents, replace the bits taken up by the boolean, and then write\n // back. This is the compiler's defense against contract upgrades and\n // pointer aliasing, and it cannot be disabled.\n\n // The values being non-zero value makes deployment a bit more expensive,\n // but in exchange the refund on every call to nonReentrant will be lower in\n // amount. Since refunds are capped to a percentage of the total\n // transaction's gas, it is best to keep them low in cases like this one, to\n // increase the likelihood of the full refund coming into effect.\n uint256 private constant NOT_ENTERED = 1;\n uint256 private constant ENTERED = 2;\n\n uint256 private _status;\n\n /**\n * @dev Unauthorized reentrant call.\n */\n error ReentrancyGuardReentrantCall();\n\n constructor() {\n _status = NOT_ENTERED;\n }\n\n /**\n * @dev Prevents a contract from calling itself, directly or indirectly.\n * Calling a `nonReentrant` function from another `nonReentrant`\n * function is not supported. It is possible to prevent this from happening\n * by making the `nonReentrant` function external, and making it call a\n * `private` function that does the actual work.\n */\n modifier nonReentrant() {\n _nonReentrantBefore();\n _;\n _nonReentrantAfter();\n }\n\n function _nonReentrantBefore() private {\n // On the first call to nonReentrant, _status will be NOT_ENTERED\n if (_status == ENTERED) {\n revert ReentrancyGuardReentrantCall();\n }\n\n // Any calls to nonReentrant after this point will fail\n _status = ENTERED;\n }\n\n function _nonReentrantAfter() private {\n // By storing the original value once again, a refund is triggered (see\n // https://eips.ethereum.org/EIPS/eip-2200)\n _status = NOT_ENTERED;\n }\n\n /**\n * @dev Returns true if the reentrancy guard is currently set to \"entered\", which indicates there is a\n * `nonReentrant` function in the call stack.\n */\n function _reentrancyGuardEntered() internal view returns (bool) {\n return _status == ENTERED;\n }\n}\n"},"contracts/CunaFinanceBsc.sol":{"content":"// SPDX-License-Identifier: MIT\nimport \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\";\nimport \"@openzeppelin/contracts/utils/ReentrancyGuard.sol\";\n\npragma solidity ^0.8.20;\n\ninterface iPriceOracle {\n // returns price in USD\n function getLatestPrice(address token) external view returns (uint256);\n}\n\n// File: bsc_cuna.sol\n\ncontract CunaFinanceBsc is ReentrancyGuard {\n using SafeERC20 for IERC20;\n\n // Vesting-related structures\n struct Vesting {\n uint256 amount;\n uint256 bonus;\n uint256 lockedUntil;\n uint256 claimedAmount;\n uint256 claimedBonus;\n uint256 lastClaimed;\n uint256 createdAt;\n address token;\n bool complete;\n uint256 usdAmount;\n }\n\n struct UnlockStep {\n uint256 timeOffset;\n uint256 percentage;\n }\n\n struct WithdrawVesting {\n uint256 vestingId;\n uint256 amount;\n uint256 unlockTime;\n address token;\n }\n\n // Epoch-based staking structures\n struct Epoch {\n uint256 estDaysRemaining;\n uint256 currentTreasuryTvl;\n uint256 totalLiability; // Snapshot of totalBigStakes at epoch end\n uint256 unlockPercentage; // Calculated unlock percentage (scaled by 10000)\n uint256 timestamp; // When this epoch ended\n }\n\n struct WithdrawStake {\n uint256 stakeId;\n uint256 amount;\n uint256 unlockTime;\n }\n\n struct SellStake {\n uint256 value; // Payback value being sold\n uint256 salePrice; // Price seller wants to receive\n address seller; // Original seller address\n uint256 listTime; // When the stake was listed\n }\n\n struct SellStakeKey {\n address seller;\n uint256 stakeId; // Using timestamp as unique ID\n }\n \n struct MarketplaceHistory {\n uint256 listTime; // When stake was originally listed\n uint256 saleTime; // When stake was sold\n uint256 origValue; // Original value listed\n uint256 saleValue; // Final sale price\n address seller; // Who sold it\n address buyer; // Who bought it\n }\n\n // Contract Variables\n address public owner;\n mapping(address => bool) public owners;\n mapping(address => bool) public authorizedBots;\n mapping(address => Vesting[]) public vestings;\n mapping(address => UnlockStep[]) public unlockSchedules;\n mapping(address => address) public priceOracles;\n mapping(address => uint256) public dollarsVested; // per user address\n mapping(address => uint256) public vestedTotal; // per vesting token\n uint256 public lockupDuration;\n uint256 public unlockDelay;\n uint256 private constant BONUS_PERCENTAGE = 10;\n \n mapping(address => WithdrawVesting[]) private withdrawVestingActual;\n uint256 private withdrawVestingCounterActual;\n \n // Track total withdraw vesting liabilities by token address\n mapping(address => uint256) public withdrawVestingLiabilities;\n\n // Epoch-based staking variables\n mapping(uint256 => Epoch) public epochs;\n mapping(address => uint256) public userBigStake; // User's main stake amount\n mapping(address => uint256) public userLastClaimedEpoch; // Last epoch user claimed from\n mapping(address => WithdrawStake[]) public withdrawStakes; // User's withdrawable stakes\n uint256 public currentEpochId;\n uint256 public totalBigStakes; // Total liability (sum of all user stakes)\n uint256 public paybackPercent; // Configurable payback percentage (e.g., 5000 = 50%)\n \n // Marketplace variables\n mapping(address => mapping(uint256 => SellStake)) public sellStakes; // seller => stakeId => SellStake\n uint256 public marketplaceMin; // Minimum value for listings (in USD, e.g., 25 * 1e18 = $25)\n uint256 public cancellationFee; // Fee percentage for cancelling listings (e.g., 500 = 5%)\n mapping(address => uint256) public marketplace_sales; // Track total sales per user\n SellStakeKey[] public sellStakeKeys; // Array for iteration over active sell stakes\n mapping(address => mapping(uint256 => uint256)) private sellStakeKeyIndex; // Track position in keys array\n MarketplaceHistory[] public marketplaceHistory; // Complete history of all transactions\n\n // Events\n event VestingCreated(address indexed user, uint256 amount, uint256 bonus);\n event VestingClaimed(address indexed user, uint256 amount, uint256 bonus);\n event BonusClaimed(address indexed user, uint256 bonus);\n event UnlockScheduleSet(address indexed token);\n event FundsWithdrawn(address indexed owner, address indexed token, uint256 amount);\n \n // Epoch staking events\n event EpochEnded(uint256 indexed epochId, uint256 treasuryTvl, uint256 unlockPercentage, uint256 paybackPercent);\n event StakeCreated(address indexed user, uint256 amount);\n event FundsClaimed(address indexed user, uint256 amount);\n event StakeWithdrawn(address indexed user, uint256 amount, uint256 stakeId);\n \n // Marketplace events\n event StakeUpForSale(address indexed seller, uint256 saleAmount, uint256 stakeId);\n event StakeSaleCancelled(address indexed seller, uint256 stakeId);\n event StakeSold(address indexed seller, address indexed buyer, uint256 saleAmount, uint256 stakeId);\n event CancellationFeePaid(address indexed seller, uint256 fee, uint256 stakeId);\n\n // Modifiers\n modifier onlyOwner() {\n require(owners[msg.sender], \"Not authorized\");\n _;\n }\n \n modifier onlyBot() {\n require(authorizedBots[msg.sender], \"Not authorized\");\n _;\n }\n\n constructor() {\n owner = 0x41970Ce76b656030A79E7C1FA76FC4EB93980255;\n owners[0x41970Ce76b656030A79E7C1FA76FC4EB93980255] = true;\n }\n\n // Ownership Management\n function addOwner(address _newOwner) external onlyOwner {\n require(!owners[_newOwner], \"Already owner\");\n owners[_newOwner] = true;\n }\n\n function removeOwner(address _owner) external onlyOwner {\n require(owners[_owner], \"Not owner\");\n require(_owner != msg.sender, \"Cannot remove self\");\n owners[_owner] = false;\n }\n\n /// @notice Function to add a bot to the list (only callable by the contract owner)\n function addBot(address bot) external onlyBot {\n require(bot != address(0), \"Invalid address\");\n authorizedBots[bot] = true;\n }\n\n // Admin Functions\n function updateLockupDuration(uint256 _duration) external onlyOwner {\n lockupDuration = _duration;\n }\n\n function updateUnlockDelay(uint256 _delay) external onlyOwner {\n unlockDelay = _delay;\n }\n\n function withdrawFromVestingPool(address _token, uint256 _amount) external onlyOwner {\n IERC20(_token).safeTransfer(msg.sender, _amount);\n emit FundsWithdrawn(msg.sender, _token, _amount);\n }\n\n function setPriceOracle(address _token, address _oracle) external onlyOwner {\n priceOracles[_token] = _oracle;\n }\n\n function updatePaybackPercent(uint256 _newPercent) external onlyOwner {\n paybackPercent = _newPercent;\n }\n \n // Marketplace Admin Functions\n \n /// @notice Update marketplace minimum value for listings\n /// @param _newMin The minimum value in USD (with 18 decimals), ex: 25 * 1e18 = $25\n function updateMarketplaceMin(uint256 _newMin) external onlyOwner {\n marketplaceMin = _newMin;\n }\n \n /// @notice Update cancellation fee percentage\n /// @param _newFee The fee percentage (scaled by 10000), ex: 500 = 5%\n function updateCancellationFee(uint256 _newFee) external onlyOwner {\n cancellationFee = _newFee;\n }\n\n // Epoch-based Staking Functions\n \n /// @notice Internal function to calculate unlock percentage based on TVL/liability ratio improvement\n /// @dev Formula: (current_tvl / current_liability) - (last_tvl / last_liability) * payback_percent\n function calculateUnlockPercentage(\n uint256 currentTvl, \n uint256 currentLiability,\n uint256 lastTvl, \n uint256 lastLiability,\n uint256 paybackPercent\n ) internal pure returns (uint256) {\n \n if (lastLiability == 0 || currentLiability == 0) {\n return 0; // Safety check\n }\n \n // Calculate ratios (scaled by 10000 for precision)\n uint256 currentRatio = (currentTvl * 10000) / currentLiability;\n uint256 lastRatio = (lastTvl * 10000) / lastLiability;\n \n if (currentRatio <= lastRatio) {\n return 0; // No unlock if ratio didn't improve\n }\n \n // Ratio improvement * payback percentage\n uint256 ratioImprovement = currentRatio - lastRatio;\n uint256 unlockPercentage = (ratioImprovement * paybackPercent) / 10000;\n \n return unlockPercentage;\n }\n\n /// @notice End current epoch and calculate unlock percentage\n /// @param estDaysRemaining Estimated days remaining for the protocol\n /// @param currentTreasuryTvl Current treasury total value locked\n /// @param _paybackPercent Percentage multiplier for unlock calculation (scaled by 10000)\n function endEpoch(uint256 estDaysRemaining, uint256 currentTreasuryTvl, uint256 _paybackPercent) external onlyOwner {\n // Update the stored payback percent with the new value\n paybackPercent = _paybackPercent;\n \n uint256 unlockPercentage = 0;\n \n if (currentEpochId > 0) {\n // Get previous epoch data\n Epoch storage lastEpoch = epochs[currentEpochId - 1];\n \n unlockPercentage = calculateUnlockPercentage(\n currentTreasuryTvl,\n totalBigStakes,\n lastEpoch.currentTreasuryTvl,\n lastEpoch.totalLiability,\n _paybackPercent\n );\n }\n \n // Create new epoch entry\n epochs[currentEpochId] = Epoch({\n estDaysRemaining: estDaysRemaining,\n currentTreasuryTvl: currentTreasuryTvl,\n totalLiability: totalBigStakes,\n unlockPercentage: unlockPercentage,\n timestamp: block.timestamp\n });\n \n emit EpochEnded(currentEpochId, currentTreasuryTvl, unlockPercentage, _paybackPercent);\n currentEpochId++;\n }\n\n /// @notice Calculate total unclaimed funds for a user across all epochs since last claim\n function calculateUnclaimedFunds(address user) public view returns (uint256 totalUnclaimed) {\n uint256 remainingStake = userBigStake[user];\n uint256 startEpoch = userLastClaimedEpoch[user];\n \n for (uint256 i = startEpoch; i < currentEpochId; i++) {\n if (remainingStake > 0) {\n uint256 unlocked = (remainingStake * epochs[i].unlockPercentage) / 10000;\n totalUnclaimed += unlocked;\n remainingStake -= unlocked;\n }\n }\n return totalUnclaimed;\n }\n\n /// @notice Get user's net stake (big stake minus unclaimed funds)\n function getNetStake(address user) public view returns (uint256) {\n uint256 bigStake = userBigStake[user];\n uint256 unclaimed = calculateUnclaimedFunds(user);\n return bigStake - unclaimed;\n }\n\n /// @notice Get comprehensive user stake information\n function getUserStakeInfo(address user) external view returns (\n uint256 netStake, // Current \"active\" stake amount\n uint256 unclaimedFunds, // Available to claim\n uint256 totalOriginalStake // Original big number (for reference)\n ) {\n uint256 unclaimed = calculateUnclaimedFunds(user);\n return (\n userBigStake[user] - unclaimed, // Net stake\n unclaimed, // Unclaimed\n userBigStake[user] // Original\n );\n }\n\n /// @notice Claim unlocked funds and create withdrawable stakes\n function claimUnlockedFunds() external nonReentrant {\n uint256 unclaimedAmount = calculateUnclaimedFunds(msg.sender);\n require(unclaimedAmount > 0, \"Nothing to claim\");\n \n // Update user's big stake to the net amount\n userBigStake[msg.sender] -= unclaimedAmount;\n totalBigStakes -= unclaimedAmount;\n \n // Reset their last claimed epoch to current\n userLastClaimedEpoch[msg.sender] = currentEpochId;\n \n // Create withdrawable stake with unlock delay\n withdrawStakes[msg.sender].push(WithdrawStake({\n stakeId: block.timestamp, // Using timestamp as unique ID\n amount: unclaimedAmount,\n unlockTime: block.timestamp + unlockDelay\n }));\n \n emit FundsClaimed(msg.sender, unclaimedAmount);\n }\n\n /// @notice Withdraw claimed funds after unlock period\n function withdrawStake(uint256 stakeId) external nonReentrant {\n WithdrawStake[] storage userStakes = withdrawStakes[msg.sender];\n require(userStakes.length > 0, \"No stakes available\");\n \n for (uint256 i = 0; i < userStakes.length; i++) {\n WithdrawStake storage stake = userStakes[i];\n if (stake.stakeId == stakeId && stake.amount > 0) {\n require(block.timestamp >= stake.unlockTime, \"Stake locked\");\n \n uint256 amount = stake.amount;\n stake.amount = 0; // Mark as withdrawn\n \n // Transfer tokens - assuming we have a main token like in bsc_paca\n // This will need to be configured with the actual reward token\n // IERC20(rewardToken).safeTransfer(msg.sender, amount);\n \n emit StakeWithdrawn(msg.sender, amount, stakeId);\n return;\n }\n }\n \n revert(\"Stake not found\");\n }\n\n // Bot Functions for Staking Management\n \n /// @notice Create or update a user's big stake (for migration or manual adjustment)\n /// @dev Only to be used by bots for initial setup or emergency adjustments\n /// @param user The user address to create/update stake for\n /// @param amount The stake amount\n function createUserStake(address user, uint256 amount) external onlyBot {\n require(user != address(0), \"Invalid address\");\n require(amount > 0, \"Invalid amount\");\n \n // Update total stakes accounting\n totalBigStakes = totalBigStakes - userBigStake[user] + amount;\n \n // Set user's big stake\n userBigStake[user] = amount;\n \n emit StakeCreated(user, amount);\n }\n\n /// @notice Batch create stakes for multiple users (efficient for migration)\n /// @dev Only to be used by bots for initial setup\n /// @param users Array of user addresses\n /// @param amounts Array of stake amounts (must match users length)\n function batchCreateUserStakes(address[] calldata users, uint256[] calldata amounts) external onlyBot {\n require(users.length == amounts.length, \"Array length mismatch\");\n require(users.length > 0, \"Empty arrays\");\n \n uint256 totalAdded = 0;\n \n for (uint256 i = 0; i < users.length; i++) {\n require(users[i] != address(0), \"Invalid address\");\n require(amounts[i] > 0, \"Invalid amount\");\n \n // Update accounting\n totalAdded = totalAdded - userBigStake[users[i]] + amounts[i];\n \n // Set user's big stake\n userBigStake[users[i]] = amounts[i];\n \n emit StakeCreated(users[i], amounts[i]);\n }\n \n // Update total stakes\n totalBigStakes += totalAdded;\n }\n\n // Additional View Functions\n\n /// @notice Get all withdraw stakes for a user\n function getAllWithdrawStakes(address user) external view returns (WithdrawStake[] memory) {\n return withdrawStakes[user];\n }\n\n /// @notice Get specific withdraw stake by stakeId\n function getWithdrawStake(address user, uint256 stakeId) external view returns (WithdrawStake memory) {\n WithdrawStake[] storage userStakes = withdrawStakes[user];\n for (uint256 i = 0; i < userStakes.length; i++) {\n if (userStakes[i].stakeId == stakeId) {\n return userStakes[i];\n }\n }\n revert(\"Stake not found\");\n }\n\n /// @notice Get epoch information by ID\n function getEpoch(uint256 epochId) external view returns (Epoch memory) {\n require(epochId < currentEpochId, \"Epoch not found\");\n return epochs[epochId];\n }\n\n /// @notice Get multiple epochs for analysis\n function getEpochs(uint256 startId, uint256 endId) external view returns (Epoch[] memory) {\n require(startId <= endId, \"Invalid range\");\n require(endId < currentEpochId, \"End epoch not found\");\n \n uint256 length = endId - startId + 1;\n Epoch[] memory result = new Epoch[](length);\n \n for (uint256 i = 0; i < length; i++) {\n result[i] = epochs[startId + i];\n }\n \n return result;\n }\n\n /// @notice Get detailed unclaimed funds breakdown by epoch\n function getUnclaimedFundsBreakdown(address user) external view returns (\n uint256[] memory epochIds,\n uint256[] memory amounts,\n uint256 totalUnclaimed\n ) {\n uint256 remainingStake = userBigStake[user];\n uint256 startEpoch = userLastClaimedEpoch[user];\n uint256 epochCount = currentEpochId - startEpoch;\n \n if (epochCount == 0) {\n return (new uint256[](0), new uint256[](0), 0);\n }\n \n epochIds = new uint256[](epochCount);\n amounts = new uint256[](epochCount);\n \n uint256 actualCount = 0;\n for (uint256 i = startEpoch; i < currentEpochId; i++) {\n if (remainingStake > 0) {\n uint256 unlocked = (remainingStake * epochs[i].unlockPercentage) / 10000;\n if (unlocked > 0) {\n epochIds[actualCount] = i;\n amounts[actualCount] = unlocked;\n totalUnclaimed += unlocked;\n remainingStake -= unlocked;\n actualCount++;\n }\n }\n }\n \n // Resize arrays to actual count\n if (actualCount < epochCount) {\n uint256[] memory resizedEpochIds = new uint256[](actualCount);\n uint256[] memory resizedAmounts = new uint256[](actualCount);\n for (uint256 i = 0; i < actualCount; i++) {\n resizedEpochIds[i] = epochIds[i];\n resizedAmounts[i] = amounts[i];\n }\n epochIds = resizedEpochIds;\n amounts = resizedAmounts;\n }\n \n return (epochIds, amounts, totalUnclaimed);\n }\n\n // Marketplace Functions\n \n /// @notice List payback value for sale on marketplace\n /// @param value The payback value to sell (must be >= marketplaceMin)\n /// @param salePrice The price seller wants to receive\n function sellStake(uint256 value, uint256 salePrice) external nonReentrant {\n require(value > 0, \"Invalid value\");\n require(salePrice > 0, \"Invalid sale price\");\n require(value >= marketplaceMin, \"Value below minimum\");\n \n // Check that user has enough net stake to cover the value\n uint256 netStake = getNetStake(msg.sender);\n require(value <= netStake, \"Insufficient net stake\");\n \n // Generate unique stakeId using timestamp\n uint256 stakeId = block.timestamp;\n \n // Ensure no existing sellStake with this ID\n require(sellStakes[msg.sender][stakeId].value == 0, \"StakeId already exists\");\n \n // Deduct value from user's big stake immediately\n userBigStake[msg.sender] -= value;\n totalBigStakes -= value;\n \n // Create the sellStake entry\n sellStakes[msg.sender][stakeId] = SellStake({\n value: value,\n salePrice: salePrice,\n seller: msg.sender,\n listTime: block.timestamp\n });\n \n // Add to iteration array\n sellStakeKeys.push(SellStakeKey({\n seller: msg.sender,\n stakeId: stakeId\n }));\n sellStakeKeyIndex[msg.sender][stakeId] = sellStakeKeys.length - 1;\n \n emit StakeUpForSale(msg.sender, salePrice, stakeId);\n }\n \n /// @notice Cancel a listing and restore the value to big stake (minus cancellation fee)\n /// @param stakeId The stake ID to cancel\n function cancelSellStake(uint256 stakeId) external {\n SellStake storage sellStakeEntry = sellStakes[msg.sender][stakeId];\n require(sellStakeEntry.value > 0, \"Listing not found\");\n require(sellStakeEntry.seller == msg.sender, \"Not the seller\");\n \n uint256 value = sellStakeEntry.value;\n \n // Calculate cancellation fee\n uint256 fee = (value * cancellationFee) / 10000;\n uint256 valueAfterFee = value - fee;\n \n // Restore value minus fee to user's big stake\n userBigStake[msg.sender] += valueAfterFee;\n totalBigStakes += valueAfterFee;\n // Note: fee reduces total liability (not added back to totalBigStakes)\n \n // Emit fee event\n if (fee > 0) {\n emit CancellationFeePaid(msg.sender, fee, stakeId);\n }\n \n // Remove sellStake entry\n delete sellStakes[msg.sender][stakeId];\n \n // Remove from iteration array using swap-and-pop\n uint256 index = sellStakeKeyIndex[msg.sender][stakeId];\n uint256 lastIndex = sellStakeKeys.length - 1;\n if (index != lastIndex) {\n SellStakeKey memory lastKey = sellStakeKeys[lastIndex];\n sellStakeKeys[index] = lastKey;\n sellStakeKeyIndex[lastKey.seller][lastKey.stakeId] = index;\n }\n sellStakeKeys.pop();\n delete sellStakeKeyIndex[msg.sender][stakeId];\n \n emit StakeSaleCancelled(msg.sender, stakeId);\n }\n \n /// @notice Update the sale price of a listing\n /// @param stakeId The stake ID to update\n /// @param newSalePrice The new sale price\n function updateSellStake(uint256 stakeId, uint256 newSalePrice) external {\n SellStake storage sellStakeEntry = sellStakes[msg.sender][stakeId];\n require(sellStakeEntry.value > 0, \"Listing not found\");\n require(sellStakeEntry.seller == msg.sender, \"Not the seller\");\n require(newSalePrice > 0, \"Invalid sale price\");\n \n sellStakeEntry.salePrice = newSalePrice;\n \n emit StakeUpForSale(msg.sender, newSalePrice, stakeId);\n }\n \n /// @notice Buy a listed stake from marketplace\n /// @param seller The address of the seller \n /// @param stakeId The stake ID to buy\n function buySellStake(address seller, uint256 stakeId) external nonReentrant {\n SellStake storage sellStakeEntry = sellStakes[seller][stakeId];\n require(sellStakeEntry.value > 0, \"Listing not found\");\n require(seller != msg.sender, \"Cannot buy own listing\");\n \n uint256 value = sellStakeEntry.value;\n uint256 salePrice = sellStakeEntry.salePrice;\n uint256 listTime = sellStakeEntry.listTime;\n \n // Calculate difference and protocol share\n uint256 difference = value > salePrice ? value - salePrice : 0;\n uint256 protocolShare = difference / 2; // 50% of difference goes to protocol\n uint256 buyerStake = value - protocolShare; // Buyer gets value minus protocol share\n \n // TODO: Transfer payment from buyer to contract \n // This will need to be configured with the actual payment token\n // IERC20(paymentToken).safeTransferFrom(msg.sender, address(this), salePrice);\n \n // TODO: Transfer payment to seller\n // IERC20(paymentToken).safeTransfer(seller, salePrice);\n \n // Add buyerStake to buyer's big stake (value - protocol share)\n userBigStake[msg.sender] += buyerStake;\n totalBigStakes += buyerStake;\n // Note: protocolShare reduces total liability (not added back to totalBigStakes)\n \n // Track marketplace sales for seller\n marketplace_sales[seller] += salePrice;\n \n // Create marketplace history entry\n marketplaceHistory.push(MarketplaceHistory({\n listTime: listTime,\n saleTime: block.timestamp,\n origValue: value,\n saleValue: salePrice,\n seller: seller,\n buyer: msg.sender\n }));\n \n // Remove sellStake entry\n delete sellStakes[seller][stakeId];\n \n // Remove from iteration array using swap-and-pop\n uint256 index = sellStakeKeyIndex[seller][stakeId];\n uint256 lastIndex = sellStakeKeys.length - 1;\n if (index != lastIndex) {\n SellStakeKey memory lastKey = sellStakeKeys[lastIndex];\n sellStakeKeys[index] = lastKey;\n sellStakeKeyIndex[lastKey.seller][lastKey.stakeId] = index;\n }\n sellStakeKeys.pop();\n delete sellStakeKeyIndex[seller][stakeId];\n \n emit StakeSold(seller, msg.sender, salePrice, stakeId);\n }\n\n // Bot Functions for Emergency Management\n /// @notice This function will end and clear a user's vestings.\n /// @dev Only to be used by bots in emergencies\n /// @param user The user whose vestings will be ended and 0'd\n function clearVesting(address user) external onlyBot {\n for (uint256 i = 0; i < vestings[user].length; ++i) {\n Vesting storage vesting = vestings[user][i];\n \n // Decrement accounting variables before clearing\n if (!vesting.complete) {\n if (dollarsVested[user] >= vesting.usdAmount) {\n dollarsVested[user] -= vesting.usdAmount;\n }\n if (vestedTotal[vesting.token] >= vesting.amount) {\n vestedTotal[vesting.token] -= vesting.amount;\n }\n }\n \n vesting.amount = 0;\n vesting.bonus = 0;\n vesting.claimedAmount = 0;\n vesting.claimedBonus = 0;\n vesting.complete = true;\n }\n }\n\n /// @notice Creates a vesting for a given user\n /// @dev Only to be used by bots for manual vesting creation\n /// @param user The user address to create the vesting for\n /// @param amount The amount for the vesting\n /// @param bonus The bonus amount for the vesting\n /// @param lockedUntil The unlock timestamp for the vesting\n /// @param token The token address for the vesting\n /// @param usdAmount The USD value of the vesting\n function createVesting(address user, uint256 amount, uint256 bonus, uint256 lockedUntil, address token, uint256 usdAmount) external onlyBot {\n createVesting(user, amount, bonus, lockedUntil, token, usdAmount, block.timestamp, block.timestamp);\n }\n\n function createVesting(address user, uint256 amount, uint256 bonus, uint256 lockedUntil, address token, uint256 usdAmount, uint256 lastClaimed, uint256 createdAt) public onlyBot {\n vestings[user].push(Vesting({\n amount: amount,\n bonus: bonus,\n lockedUntil: lockedUntil,\n claimedAmount: 0,\n claimedBonus: 0,\n lastClaimed: lastClaimed,\n createdAt: createdAt,\n token: token,\n complete: false,\n usdAmount: usdAmount\n }));\n \n dollarsVested[user] += usdAmount;\n vestedTotal[token] += amount;\n }\n\n /// @notice Migrates all vestings from an old address to a new address\n /// @dev Only to be used by bots for account migrations\n /// @param oldAddress The address with existing vestings to migrate from\n /// @param newAddress The address to migrate vestings to\n function migrateVestings(address oldAddress, address newAddress) external onlyBot {\n require(oldAddress != address(0) && newAddress != address(0) && oldAddress != newAddress, \"Invalid address\");\n \n Vesting[] storage oldVestings = vestings[oldAddress];\n uint256 vestingCount = oldVestings.length;\n require(vestingCount > 0, \"No vestings available\");\n \n Vesting[] storage newVestings = vestings[newAddress];\n \n for (uint256 i = 0; i < vestingCount; i++) {\n Vesting storage oldVesting = oldVestings[i];\n \n // Copy vesting to new address\n newVestings.push(oldVesting);\n \n // Clear old vesting\n oldVesting.amount = 0;\n oldVesting.bonus = 0;\n oldVesting.lockedUntil = 0;\n oldVesting.claimedAmount = 0;\n oldVesting.claimedBonus = 0;\n oldVesting.lastClaimed = 0;\n oldVesting.createdAt = 0;\n oldVesting.usdAmount = 0;\n oldVesting.complete = true;\n }\n \n // Migrate dollars vested\n dollarsVested[newAddress] += dollarsVested[oldAddress];\n dollarsVested[oldAddress] = 0;\n \n // Migrate pending vesting withdrawals\n WithdrawVesting[] storage oldWithdrawVestings = withdrawVestingActual[oldAddress];\n uint256 withdrawVestingCount = oldWithdrawVestings.length;\n if (withdrawVestingCount > 0) {\n WithdrawVesting[] storage newWithdrawVestings = withdrawVestingActual[newAddress];\n for (uint256 i = 0; i < withdrawVestingCount; i++) {\n newWithdrawVestings.push(oldWithdrawVestings[i]);\n }\n delete withdrawVestingActual[oldAddress];\n }\n }\n\n // Vesting View Functions\n function getUnlockedVesting(address _user, uint256 _vestingIndex) public view returns (uint256) {\n Vesting storage vesting = vestings[_user][_vestingIndex];\n uint256 timeElapsed = block.timestamp - vesting.createdAt;\n address token = vesting.token;\n\n uint256 unlockedAmount = 0;\n\n for (uint256 i = 0; i < unlockSchedules[token].length; ++i) {\n UnlockStep storage step = unlockSchedules[token][i];\n uint256 timeTier = step.timeOffset;\n uint256 percentage = step.percentage;\n\n if (timeElapsed >= timeTier) {\n unlockedAmount = unlockedAmount + ((vesting.amount * percentage) / 10000);\n }\n }\n\n return unlockedAmount;\n }\n\n function getVestingSchedule(address _user, uint256 _vestingIndex) public view returns (uint256[] memory, uint256[] memory) {\n Vesting storage vesting = vestings[_user][_vestingIndex];\n address token = vesting.token;\n\n uint256 scheduleLength = unlockSchedules[token].length;\n uint256[] memory unlockTimestamps = new uint256[](scheduleLength);\n uint256[] memory unlockPercentages = new uint256[](scheduleLength);\n\n for (uint256 i = 0; i < scheduleLength; ++i) {\n UnlockStep storage step = unlockSchedules[token][i];\n\n // Calculate the absolute unlock timestamp\n unlockTimestamps[i] = vesting.createdAt + step.timeOffset;\n unlockPercentages[i] = step.percentage; // Percentage is stored as scaled by 10000 (e.g., 2500 = 25%)\n }\n\n return (unlockTimestamps, unlockPercentages);\n }\n\n function getUnlockedVestingBonus(address _user, uint256 _vestingIndex) public view returns (uint256) {\n Vesting storage vesting = vestings[_user][_vestingIndex];\n uint256 timeElapsed = block.timestamp - vesting.createdAt;\n address token = vesting.token;\n\n uint256 unlockedAmount = 0;\n\n for (uint256 i = 0; i < unlockSchedules[token].length; ++i) {\n UnlockStep storage step = unlockSchedules[token][i];\n uint256 timeTier = step.timeOffset;\n uint256 percentage = step.percentage;\n uint256 maxBonusAmount = (vesting.usdAmount * BONUS_PERCENTAGE) / 100;\n\n if (timeElapsed >= timeTier) {\n unlockedAmount = unlockedAmount + ((maxBonusAmount * percentage) / 10000);\n }\n }\n\n return unlockedAmount;\n }\n\n /// @notice View function to get all vestings for a specific address\n function getVestings(address user) external view returns (Vesting[] memory) {\n return vestings[user];\n }\n\n /**\n * @notice Returns the vested amounts and USD values for an array of tokens.\n * @param _tokens The array of token addresses to evaluate.\n * @return amounts The array of vested amounts for each token.\n * @return usdValues The array of USD values for each token's vested amount.\n * @return totalUsd The total USD value of all vested tokens in the array.\n */\n function getVestedTotals(address[] calldata _tokens)\n external\n view\n returns (\n uint256[] memory amounts,\n uint256[] memory usdValues,\n uint256 totalUsd\n )\n {\n uint256 length = _tokens.length;\n amounts = new uint256[](length);\n usdValues = new uint256[](length);\n\n for (uint256 i = 0; i < length; i++) {\n address token = _tokens[i];\n\n // 1. Get the total amount vested for this token.\n uint256 tokenAmount = vestedTotal[token];\n amounts[i] = tokenAmount;\n\n // 2. Query the oracle for this token's USD price.\n // Assumes the oracle returns a price scaled by 1e18.\n uint256 price = iPriceOracle(priceOracles[token]).getLatestPrice(token);\n\n // 3. Calculate the vested USD value: (price * amount) / 1e18\n uint256 valueInUsd = (price * tokenAmount) / 1e18;\n usdValues[i] = valueInUsd;\n\n // 4. Accumulate the total USD amount\n totalUsd += valueInUsd;\n }\n\n return (amounts, usdValues, totalUsd);\n }\n\n /// @notice Returns the total USD value of the user's unclaimed, uncomplete, stake amounts, based on current token prices from the oracle.\n /// @return totalUsd The total unclaimed stake value, in USD (1e18 precision).\n function getUserTotalUnclaimedUsdValue(address user) external view returns (uint256 totalUsd) {\n uint256 length = vestings[user].length;\n for (uint256 i = 0; i < length; i++) {\n Vesting memory v = vestings[user][i];\n if (!v.complete) {\n uint256 tokenPrice = iPriceOracle(priceOracles[v.token]).getLatestPrice(v.token);\n\n // The unclaimed portion of the stake\n uint256 unclaimedAmount = v.amount - v.claimedAmount;\n\n // Convert unclaimed tokens to USD value\n uint256 stakeUsd = (tokenPrice * unclaimedAmount) / 1e18;\n\n totalUsd += stakeUsd;\n }\n }\n return totalUsd;\n }\n\n /// @notice Function that returns an array of all the user's withdrawVestings.\n /// @param user The address to evaluate.\n /// @return An array of WithdrawVesting for the given user.\n function getAllWithdrawVestings(address user) external view returns (WithdrawVesting[] memory) {\n return withdrawVestingActual[user];\n }\n\n /// @notice Returns the current withdraw vesting counter value\n /// @return Current counter value for tracking unique withdrawal IDs\n function getWithdrawVestingCounter() external view returns (uint256) {\n return withdrawVestingCounterActual;\n }\n\n // Marketplace View Functions\n \n /// @notice Get all active marketplace listings\n /// @return sellers Array of seller addresses\n /// @return stakeIds Array of stake IDs\n /// @return sellStakeData Array of SellStake structs\n function getAllSellStakes() external view returns (\n address[] memory sellers,\n uint256[] memory stakeIds,\n SellStake[] memory sellStakeData\n ) {\n uint256 length = sellStakeKeys.length;\n \n sellers = new address[](length);\n stakeIds = new uint256[](length);\n sellStakeData = new SellStake[](length);\n \n for (uint256 i = 0; i < length; i++) {\n SellStakeKey memory key = sellStakeKeys[i];\n sellers[i] = key.seller;\n stakeIds[i] = key.stakeId;\n sellStakeData[i] = sellStakes[key.seller][key.stakeId];\n }\n \n return (sellers, stakeIds, sellStakeData);\n }\n \n /// @notice Get a specific marketplace listing\n /// @param seller The seller address\n /// @param stakeId The stake ID\n /// @return The SellStake struct\n function getSellStake(address seller, uint256 stakeId) external view returns (SellStake memory) {\n return sellStakes[seller][stakeId];\n }\n \n /// @notice Get marketplace history\n /// @param startIndex Starting index in history array\n /// @param length Number of entries to return\n /// @return Array of MarketplaceHistory structs\n function getMarketplaceHistory(uint256 startIndex, uint256 length) \n external view returns (MarketplaceHistory[] memory) {\n require(startIndex < marketplaceHistory.length, \"Start index out of bounds\");\n \n uint256 endIndex = startIndex + length;\n if (endIndex > marketplaceHistory.length) {\n endIndex = marketplaceHistory.length;\n }\n \n MarketplaceHistory[] memory result = new MarketplaceHistory[](endIndex - startIndex);\n for (uint256 i = startIndex; i < endIndex; i++) {\n result[i - startIndex] = marketplaceHistory[i];\n }\n \n return result;\n }\n \n /// @notice Get total marketplace history count\n /// @return Total number of marketplace transactions\n function getMarketplaceHistoryCount() external view returns (uint256) {\n return marketplaceHistory.length;\n }\n \n /// @notice Get user's total marketplace sales\n /// @param user The user address\n /// @return Total sales amount for the user\n function getUserMarketplaceSales(address user) external view returns (uint256) {\n return marketplace_sales[user];\n }\n\n /// @notice Test function for upgrade verification\n /// @return Returns a constant value to verify upgrade worked\n function testUpgradeFunction() external pure returns (uint256) {\n return 999; // Different value from bsc_paca to distinguish contracts\n }\n\n}"},"contracts/mocks/MockERC20.sol":{"content":"// SPDX-License-Identifier: MIT\npragma solidity ^0.8.20;\n\nimport \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\n\ncontract MockERC20 is ERC20 {\n constructor(\n string memory name,\n string memory symbol,\n uint256 initialSupply\n ) ERC20(name, symbol) {\n _mint(msg.sender, initialSupply);\n }\n \n function mint(address to, uint256 amount) external {\n _mint(to, amount);\n }\n}"},"contracts/mocks/MockPriceOracle.sol":{"content":"// SPDX-License-Identifier: MIT\npragma solidity ^0.8.20;\n\ncontract MockPriceOracle {\n mapping(address => uint256) public prices;\n uint256 private defaultPrice = 1e18; // $1.00 default price\n \n function setPrice(address token, uint256 price) external {\n prices[token] = price;\n }\n \n function getLatestPrice(address token) external view returns (uint256) {\n uint256 price = prices[token];\n return price == 0 ? defaultPrice : price;\n }\n \n function setDefaultPrice(uint256 price) external {\n defaultPrice = price;\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":"2519","formattedMessage":"Warning: This declaration shadows an existing declaration.\n --> contracts/CunaFinanceBsc.sol:215:9:\n |\n215 | uint256 paybackPercent\n | ^^^^^^^^^^^^^^^^^^^^^^\nNote: The shadowed declaration is here:\n --> contracts/CunaFinanceBsc.sol:106:5:\n |\n106 | uint256 public paybackPercent; // Configurable payback percentage (e.g., 5000 = 50%)\n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n","message":"This declaration shadows an existing declaration.","secondarySourceLocations":[{"end":3694,"file":"contracts/CunaFinanceBsc.sol","message":"The shadowed declaration is here:","start":3665}],"severity":"warning","sourceLocation":{"end":8301,"file":"contracts/CunaFinanceBsc.sol","start":8279},"type":"Warning"}],"sources":{"@openzeppelin/contracts/interfaces/IERC1363.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1363.sol","exportedSymbols":{"IERC1363":[81],"IERC165":[1456],"IERC20":[819]},"id":82,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity",">=","0.6",".2"],"nodeType":"PragmaDirective","src":"107:24:0"},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20.sol","file":"./IERC20.sol","id":3,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":82,"sourceUnit":90,"src":"133:36:0","symbolAliases":[{"foreign":{"id":2,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":819,"src":"141:6:0","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","file":"./IERC165.sol","id":5,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":82,"sourceUnit":86,"src":"170:38:0","symbolAliases":[{"foreign":{"id":4,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1456,"src":"178:7:0","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":7,"name":"IERC20","nameLocations":["590:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":819,"src":"590:6:0"},"id":8,"nodeType":"InheritanceSpecifier","src":"590:6:0"},{"baseName":{"id":9,"name":"IERC165","nameLocations":["598:7:0"],"nodeType":"IdentifierPath","referencedDeclaration":1456,"src":"598:7:0"},"id":10,"nodeType":"InheritanceSpecifier","src":"598:7:0"}],"canonicalName":"IERC1363","contractDependencies":[],"contractKind":"interface","documentation":{"id":6,"nodeType":"StructuredDocumentation","src":"210:357:0","text":" @title IERC1363\n @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363].\n Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract\n after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction."},"fullyImplemented":false,"id":81,"linearizedBaseContracts":[81,1456,819],"name":"IERC1363","nameLocation":"578:8:0","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":11,"nodeType":"StructuredDocumentation","src":"1148:370:0","text":" @dev Moves a `value` amount of tokens from the caller's account to `to`\n and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n @param to The address which you want to transfer to.\n @param value The amount of tokens to be transferred.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"1296ee62","id":20,"implemented":false,"kind":"function","modifiers":[],"name":"transferAndCall","nameLocation":"1532:15:0","nodeType":"FunctionDefinition","parameters":{"id":16,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13,"mutability":"mutable","name":"to","nameLocation":"1556:2:0","nodeType":"VariableDeclaration","scope":20,"src":"1548:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12,"name":"address","nodeType":"ElementaryTypeName","src":"1548:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15,"mutability":"mutable","name":"value","nameLocation":"1568:5:0","nodeType":"VariableDeclaration","scope":20,"src":"1560:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14,"name":"uint256","nodeType":"ElementaryTypeName","src":"1560:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1547:27:0"},"returnParameters":{"id":19,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20,"src":"1593:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17,"name":"bool","nodeType":"ElementaryTypeName","src":"1593:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1592:6:0"},"scope":81,"src":"1523:76:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":21,"nodeType":"StructuredDocumentation","src":"1605:453:0","text":" @dev Moves a `value` amount of tokens from the caller's account to `to`\n and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n @param to The address which you want to transfer to.\n @param value The amount of tokens to be transferred.\n @param data Additional data with no specified format, sent in call to `to`.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"4000aea0","id":32,"implemented":false,"kind":"function","modifiers":[],"name":"transferAndCall","nameLocation":"2072:15:0","nodeType":"FunctionDefinition","parameters":{"id":28,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23,"mutability":"mutable","name":"to","nameLocation":"2096:2:0","nodeType":"VariableDeclaration","scope":32,"src":"2088:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22,"name":"address","nodeType":"ElementaryTypeName","src":"2088:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25,"mutability":"mutable","name":"value","nameLocation":"2108:5:0","nodeType":"VariableDeclaration","scope":32,"src":"2100:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24,"name":"uint256","nodeType":"ElementaryTypeName","src":"2100:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":27,"mutability":"mutable","name":"data","nameLocation":"2130:4:0","nodeType":"VariableDeclaration","scope":32,"src":"2115:19:0","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":26,"name":"bytes","nodeType":"ElementaryTypeName","src":"2115:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2087:48:0"},"returnParameters":{"id":31,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":32,"src":"2154:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":29,"name":"bool","nodeType":"ElementaryTypeName","src":"2154:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2153:6:0"},"scope":81,"src":"2063:97:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":33,"nodeType":"StructuredDocumentation","src":"2166:453:0","text":" @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism\n and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n @param from The address which you want to send tokens from.\n @param to The address which you want to transfer to.\n @param value The amount of tokens to be transferred.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"d8fbe994","id":44,"implemented":false,"kind":"function","modifiers":[],"name":"transferFromAndCall","nameLocation":"2633:19:0","nodeType":"FunctionDefinition","parameters":{"id":40,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35,"mutability":"mutable","name":"from","nameLocation":"2661:4:0","nodeType":"VariableDeclaration","scope":44,"src":"2653:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":34,"name":"address","nodeType":"ElementaryTypeName","src":"2653:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":37,"mutability":"mutable","name":"to","nameLocation":"2675:2:0","nodeType":"VariableDeclaration","scope":44,"src":"2667:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":36,"name":"address","nodeType":"ElementaryTypeName","src":"2667:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39,"mutability":"mutable","name":"value","nameLocation":"2687:5:0","nodeType":"VariableDeclaration","scope":44,"src":"2679:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38,"name":"uint256","nodeType":"ElementaryTypeName","src":"2679:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2652:41:0"},"returnParameters":{"id":43,"nodeType":"ParameterList","parameters":[{"constant":false,"id":42,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":44,"src":"2712:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":41,"name":"bool","nodeType":"ElementaryTypeName","src":"2712:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2711:6:0"},"scope":81,"src":"2624:94:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":45,"nodeType":"StructuredDocumentation","src":"2724:536:0","text":" @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism\n and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n @param from The address which you want to send tokens from.\n @param to The address which you want to transfer to.\n @param value The amount of tokens to be transferred.\n @param data Additional data with no specified format, sent in call to `to`.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"c1d34b89","id":58,"implemented":false,"kind":"function","modifiers":[],"name":"transferFromAndCall","nameLocation":"3274:19:0","nodeType":"FunctionDefinition","parameters":{"id":54,"nodeType":"ParameterList","parameters":[{"constant":false,"id":47,"mutability":"mutable","name":"from","nameLocation":"3302:4:0","nodeType":"VariableDeclaration","scope":58,"src":"3294:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":46,"name":"address","nodeType":"ElementaryTypeName","src":"3294:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":49,"mutability":"mutable","name":"to","nameLocation":"3316:2:0","nodeType":"VariableDeclaration","scope":58,"src":"3308:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":48,"name":"address","nodeType":"ElementaryTypeName","src":"3308:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":51,"mutability":"mutable","name":"value","nameLocation":"3328:5:0","nodeType":"VariableDeclaration","scope":58,"src":"3320:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":50,"name":"uint256","nodeType":"ElementaryTypeName","src":"3320:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":53,"mutability":"mutable","name":"data","nameLocation":"3350:4:0","nodeType":"VariableDeclaration","scope":58,"src":"3335:19:0","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":52,"name":"bytes","nodeType":"ElementaryTypeName","src":"3335:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3293:62:0"},"returnParameters":{"id":57,"nodeType":"ParameterList","parameters":[{"constant":false,"id":56,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":58,"src":"3374:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":55,"name":"bool","nodeType":"ElementaryTypeName","src":"3374:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3373:6:0"},"scope":81,"src":"3265:115:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":59,"nodeType":"StructuredDocumentation","src":"3386:390:0","text":" @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\n @param spender The address which will spend the funds.\n @param value The amount of tokens to be spent.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"3177029f","id":68,"implemented":false,"kind":"function","modifiers":[],"name":"approveAndCall","nameLocation":"3790:14:0","nodeType":"FunctionDefinition","parameters":{"id":64,"nodeType":"ParameterList","parameters":[{"constant":false,"id":61,"mutability":"mutable","name":"spender","nameLocation":"3813:7:0","nodeType":"VariableDeclaration","scope":68,"src":"3805:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":60,"name":"address","nodeType":"ElementaryTypeName","src":"3805:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":63,"mutability":"mutable","name":"value","nameLocation":"3830:5:0","nodeType":"VariableDeclaration","scope":68,"src":"3822:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":62,"name":"uint256","nodeType":"ElementaryTypeName","src":"3822:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3804:32:0"},"returnParameters":{"id":67,"nodeType":"ParameterList","parameters":[{"constant":false,"id":66,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":68,"src":"3855:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":65,"name":"bool","nodeType":"ElementaryTypeName","src":"3855:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3854:6:0"},"scope":81,"src":"3781:80:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":69,"nodeType":"StructuredDocumentation","src":"3867:478:0","text":" @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\n @param spender The address which will spend the funds.\n @param value The amount of tokens to be spent.\n @param data Additional data with no specified format, sent in call to `spender`.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"cae9ca51","id":80,"implemented":false,"kind":"function","modifiers":[],"name":"approveAndCall","nameLocation":"4359:14:0","nodeType":"FunctionDefinition","parameters":{"id":76,"nodeType":"ParameterList","parameters":[{"constant":false,"id":71,"mutability":"mutable","name":"spender","nameLocation":"4382:7:0","nodeType":"VariableDeclaration","scope":80,"src":"4374:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":70,"name":"address","nodeType":"ElementaryTypeName","src":"4374:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":73,"mutability":"mutable","name":"value","nameLocation":"4399:5:0","nodeType":"VariableDeclaration","scope":80,"src":"4391:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":72,"name":"uint256","nodeType":"ElementaryTypeName","src":"4391:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":75,"mutability":"mutable","name":"data","nameLocation":"4421:4:0","nodeType":"VariableDeclaration","scope":80,"src":"4406:19:0","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":74,"name":"bytes","nodeType":"ElementaryTypeName","src":"4406:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4373:53:0"},"returnParameters":{"id":79,"nodeType":"ParameterList","parameters":[{"constant":false,"id":78,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":80,"src":"4445:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":77,"name":"bool","nodeType":"ElementaryTypeName","src":"4445:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4444:6:0"},"scope":81,"src":"4350:101:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":82,"src":"568:3885:0","usedErrors":[],"usedEvents":[753,762]}],"src":"107:4347:0"},"id":0},"@openzeppelin/contracts/interfaces/IERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","exportedSymbols":{"IERC165":[1456]},"id":86,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":83,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"106:25:1"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"../utils/introspection/IERC165.sol","id":85,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":86,"sourceUnit":1457,"src":"133:59:1","symbolAliases":[{"foreign":{"id":84,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1456,"src":"141:7:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""}],"src":"106:87:1"},"id":1},"@openzeppelin/contracts/interfaces/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20.sol","exportedSymbols":{"IERC20":[819]},"id":90,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":87,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"105:25:2"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../token/ERC20/IERC20.sol","id":89,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":90,"sourceUnit":820,"src":"132:49:2","symbolAliases":[{"foreign":{"id":88,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":819,"src":"140:6:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""}],"src":"105:77:2"},"id":2},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","exportedSymbols":{"IERC1155Errors":[226],"IERC20Errors":[131],"IERC721Errors":[179]},"id":227,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":91,"literals":["solidity",">=","0.8",".4"],"nodeType":"PragmaDirective","src":"112:24:3"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":92,"nodeType":"StructuredDocumentation","src":"138:141:3","text":" @dev Standard ERC-20 Errors\n Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens."},"fullyImplemented":true,"id":131,"linearizedBaseContracts":[131],"name":"IERC20Errors","nameLocation":"290:12:3","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":93,"nodeType":"StructuredDocumentation","src":"309:309:3","text":" @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred.\n @param balance Current balance for the interacting account.\n @param needed Minimum amount required to perform a transfer."},"errorSelector":"e450d38c","id":101,"name":"ERC20InsufficientBalance","nameLocation":"629:24:3","nodeType":"ErrorDefinition","parameters":{"id":100,"nodeType":"ParameterList","parameters":[{"constant":false,"id":95,"mutability":"mutable","name":"sender","nameLocation":"662:6:3","nodeType":"VariableDeclaration","scope":101,"src":"654:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":94,"name":"address","nodeType":"ElementaryTypeName","src":"654:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":97,"mutability":"mutable","name":"balance","nameLocation":"678:7:3","nodeType":"VariableDeclaration","scope":101,"src":"670:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":96,"name":"uint256","nodeType":"ElementaryTypeName","src":"670:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":99,"mutability":"mutable","name":"needed","nameLocation":"695:6:3","nodeType":"VariableDeclaration","scope":101,"src":"687:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":98,"name":"uint256","nodeType":"ElementaryTypeName","src":"687:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"653:49:3"},"src":"623:80:3"},{"documentation":{"id":102,"nodeType":"StructuredDocumentation","src":"709:152:3","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"96c6fd1e","id":106,"name":"ERC20InvalidSender","nameLocation":"872:18:3","nodeType":"ErrorDefinition","parameters":{"id":105,"nodeType":"ParameterList","parameters":[{"constant":false,"id":104,"mutability":"mutable","name":"sender","nameLocation":"899:6:3","nodeType":"VariableDeclaration","scope":106,"src":"891:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":103,"name":"address","nodeType":"ElementaryTypeName","src":"891:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"890:16:3"},"src":"866:41:3"},{"documentation":{"id":107,"nodeType":"StructuredDocumentation","src":"913:159:3","text":" @dev Indicates a failure with the token `receiver`. Used in transfers.\n @param receiver Address to which tokens are being transferred."},"errorSelector":"ec442f05","id":111,"name":"ERC20InvalidReceiver","nameLocation":"1083:20:3","nodeType":"ErrorDefinition","parameters":{"id":110,"nodeType":"ParameterList","parameters":[{"constant":false,"id":109,"mutability":"mutable","name":"receiver","nameLocation":"1112:8:3","nodeType":"VariableDeclaration","scope":111,"src":"1104:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":108,"name":"address","nodeType":"ElementaryTypeName","src":"1104:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1103:18:3"},"src":"1077:45:3"},{"documentation":{"id":112,"nodeType":"StructuredDocumentation","src":"1128:345:3","text":" @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.\n @param spender Address that may be allowed to operate on tokens without being their owner.\n @param allowance Amount of tokens a `spender` is allowed to operate with.\n @param needed Minimum amount required to perform a transfer."},"errorSelector":"fb8f41b2","id":120,"name":"ERC20InsufficientAllowance","nameLocation":"1484:26:3","nodeType":"ErrorDefinition","parameters":{"id":119,"nodeType":"ParameterList","parameters":[{"constant":false,"id":114,"mutability":"mutable","name":"spender","nameLocation":"1519:7:3","nodeType":"VariableDeclaration","scope":120,"src":"1511:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":113,"name":"address","nodeType":"ElementaryTypeName","src":"1511:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":116,"mutability":"mutable","name":"allowance","nameLocation":"1536:9:3","nodeType":"VariableDeclaration","scope":120,"src":"1528:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":115,"name":"uint256","nodeType":"ElementaryTypeName","src":"1528:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":118,"mutability":"mutable","name":"needed","nameLocation":"1555:6:3","nodeType":"VariableDeclaration","scope":120,"src":"1547:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":117,"name":"uint256","nodeType":"ElementaryTypeName","src":"1547:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1510:52:3"},"src":"1478:85:3"},{"documentation":{"id":121,"nodeType":"StructuredDocumentation","src":"1569:174:3","text":" @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n @param approver Address initiating an approval operation."},"errorSelector":"e602df05","id":125,"name":"ERC20InvalidApprover","nameLocation":"1754:20:3","nodeType":"ErrorDefinition","parameters":{"id":124,"nodeType":"ParameterList","parameters":[{"constant":false,"id":123,"mutability":"mutable","name":"approver","nameLocation":"1783:8:3","nodeType":"VariableDeclaration","scope":125,"src":"1775:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":122,"name":"address","nodeType":"ElementaryTypeName","src":"1775:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1774:18:3"},"src":"1748:45:3"},{"documentation":{"id":126,"nodeType":"StructuredDocumentation","src":"1799:195:3","text":" @dev Indicates a failure with the `spender` to be approved. Used in approvals.\n @param spender Address that may be allowed to operate on tokens without being their owner."},"errorSelector":"94280d62","id":130,"name":"ERC20InvalidSpender","nameLocation":"2005:19:3","nodeType":"ErrorDefinition","parameters":{"id":129,"nodeType":"ParameterList","parameters":[{"constant":false,"id":128,"mutability":"mutable","name":"spender","nameLocation":"2033:7:3","nodeType":"VariableDeclaration","scope":130,"src":"2025:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":127,"name":"address","nodeType":"ElementaryTypeName","src":"2025:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2024:17:3"},"src":"1999:43:3"}],"scope":227,"src":"280:1764:3","usedErrors":[101,106,111,120,125,130],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC721Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":132,"nodeType":"StructuredDocumentation","src":"2046:143:3","text":" @dev Standard ERC-721 Errors\n Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens."},"fullyImplemented":true,"id":179,"linearizedBaseContracts":[179],"name":"IERC721Errors","nameLocation":"2200:13:3","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":133,"nodeType":"StructuredDocumentation","src":"2220:219:3","text":" @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.\n Used in balance queries.\n @param owner Address of the current owner of a token."},"errorSelector":"89c62b64","id":137,"name":"ERC721InvalidOwner","nameLocation":"2450:18:3","nodeType":"ErrorDefinition","parameters":{"id":136,"nodeType":"ParameterList","parameters":[{"constant":false,"id":135,"mutability":"mutable","name":"owner","nameLocation":"2477:5:3","nodeType":"VariableDeclaration","scope":137,"src":"2469:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":134,"name":"address","nodeType":"ElementaryTypeName","src":"2469:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2468:15:3"},"src":"2444:40:3"},{"documentation":{"id":138,"nodeType":"StructuredDocumentation","src":"2490:132:3","text":" @dev Indicates a `tokenId` whose `owner` is the zero address.\n @param tokenId Identifier number of a token."},"errorSelector":"7e273289","id":142,"name":"ERC721NonexistentToken","nameLocation":"2633:22:3","nodeType":"ErrorDefinition","parameters":{"id":141,"nodeType":"ParameterList","parameters":[{"constant":false,"id":140,"mutability":"mutable","name":"tokenId","nameLocation":"2664:7:3","nodeType":"VariableDeclaration","scope":142,"src":"2656:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":139,"name":"uint256","nodeType":"ElementaryTypeName","src":"2656:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2655:17:3"},"src":"2627:46:3"},{"documentation":{"id":143,"nodeType":"StructuredDocumentation","src":"2679:289:3","text":" @dev Indicates an error related to the ownership over a particular token. Used in transfers.\n @param sender Address whose tokens are being transferred.\n @param tokenId Identifier number of a token.\n @param owner Address of the current owner of a token."},"errorSelector":"64283d7b","id":151,"name":"ERC721IncorrectOwner","nameLocation":"2979:20:3","nodeType":"ErrorDefinition","parameters":{"id":150,"nodeType":"ParameterList","parameters":[{"constant":false,"id":145,"mutability":"mutable","name":"sender","nameLocation":"3008:6:3","nodeType":"VariableDeclaration","scope":151,"src":"3000:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":144,"name":"address","nodeType":"ElementaryTypeName","src":"3000:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":147,"mutability":"mutable","name":"tokenId","nameLocation":"3024:7:3","nodeType":"VariableDeclaration","scope":151,"src":"3016:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":146,"name":"uint256","nodeType":"ElementaryTypeName","src":"3016:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":149,"mutability":"mutable","name":"owner","nameLocation":"3041:5:3","nodeType":"VariableDeclaration","scope":151,"src":"3033:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":148,"name":"address","nodeType":"ElementaryTypeName","src":"3033:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2999:48:3"},"src":"2973:75:3"},{"documentation":{"id":152,"nodeType":"StructuredDocumentation","src":"3054:152:3","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"73c6ac6e","id":156,"name":"ERC721InvalidSender","nameLocation":"3217:19:3","nodeType":"ErrorDefinition","parameters":{"id":155,"nodeType":"ParameterList","parameters":[{"constant":false,"id":154,"mutability":"mutable","name":"sender","nameLocation":"3245:6:3","nodeType":"VariableDeclaration","scope":156,"src":"3237:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":153,"name":"address","nodeType":"ElementaryTypeName","src":"3237:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3236:16:3"},"src":"3211:42:3"},{"documentation":{"id":157,"nodeType":"StructuredDocumentation","src":"3259:159:3","text":" @dev Indicates a failure with the token `receiver`. Used in transfers.\n @param receiver Address to which tokens are being transferred."},"errorSelector":"64a0ae92","id":161,"name":"ERC721InvalidReceiver","nameLocation":"3429:21:3","nodeType":"ErrorDefinition","parameters":{"id":160,"nodeType":"ParameterList","parameters":[{"constant":false,"id":159,"mutability":"mutable","name":"receiver","nameLocation":"3459:8:3","nodeType":"VariableDeclaration","scope":161,"src":"3451:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":158,"name":"address","nodeType":"ElementaryTypeName","src":"3451:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3450:18:3"},"src":"3423:46:3"},{"documentation":{"id":162,"nodeType":"StructuredDocumentation","src":"3475:247:3","text":" @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n @param operator Address that may be allowed to operate on tokens without being their owner.\n @param tokenId Identifier number of a token."},"errorSelector":"177e802f","id":168,"name":"ERC721InsufficientApproval","nameLocation":"3733:26:3","nodeType":"ErrorDefinition","parameters":{"id":167,"nodeType":"ParameterList","parameters":[{"constant":false,"id":164,"mutability":"mutable","name":"operator","nameLocation":"3768:8:3","nodeType":"VariableDeclaration","scope":168,"src":"3760:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":163,"name":"address","nodeType":"ElementaryTypeName","src":"3760:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":166,"mutability":"mutable","name":"tokenId","nameLocation":"3786:7:3","nodeType":"VariableDeclaration","scope":168,"src":"3778:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":165,"name":"uint256","nodeType":"ElementaryTypeName","src":"3778:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3759:35:3"},"src":"3727:68:3"},{"documentation":{"id":169,"nodeType":"StructuredDocumentation","src":"3801:174:3","text":" @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n @param approver Address initiating an approval operation."},"errorSelector":"a9fbf51f","id":173,"name":"ERC721InvalidApprover","nameLocation":"3986:21:3","nodeType":"ErrorDefinition","parameters":{"id":172,"nodeType":"ParameterList","parameters":[{"constant":false,"id":171,"mutability":"mutable","name":"approver","nameLocation":"4016:8:3","nodeType":"VariableDeclaration","scope":173,"src":"4008:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":170,"name":"address","nodeType":"ElementaryTypeName","src":"4008:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4007:18:3"},"src":"3980:46:3"},{"documentation":{"id":174,"nodeType":"StructuredDocumentation","src":"4032:197:3","text":" @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n @param operator Address that may be allowed to operate on tokens without being their owner."},"errorSelector":"5b08ba18","id":178,"name":"ERC721InvalidOperator","nameLocation":"4240:21:3","nodeType":"ErrorDefinition","parameters":{"id":177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":176,"mutability":"mutable","name":"operator","nameLocation":"4270:8:3","nodeType":"VariableDeclaration","scope":178,"src":"4262:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":175,"name":"address","nodeType":"ElementaryTypeName","src":"4262:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4261:18:3"},"src":"4234:46:3"}],"scope":227,"src":"2190:2092:3","usedErrors":[137,142,151,156,161,168,173,178],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1155Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":180,"nodeType":"StructuredDocumentation","src":"4284:145:3","text":" @dev Standard ERC-1155 Errors\n Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens."},"fullyImplemented":true,"id":226,"linearizedBaseContracts":[226],"name":"IERC1155Errors","nameLocation":"4440:14:3","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":181,"nodeType":"StructuredDocumentation","src":"4461:361:3","text":" @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred.\n @param balance Current balance for the interacting account.\n @param needed Minimum amount required to perform a transfer.\n @param tokenId Identifier number of a token."},"errorSelector":"03dee4c5","id":191,"name":"ERC1155InsufficientBalance","nameLocation":"4833:26:3","nodeType":"ErrorDefinition","parameters":{"id":190,"nodeType":"ParameterList","parameters":[{"constant":false,"id":183,"mutability":"mutable","name":"sender","nameLocation":"4868:6:3","nodeType":"VariableDeclaration","scope":191,"src":"4860:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":182,"name":"address","nodeType":"ElementaryTypeName","src":"4860:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":185,"mutability":"mutable","name":"balance","nameLocation":"4884:7:3","nodeType":"VariableDeclaration","scope":191,"src":"4876:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":184,"name":"uint256","nodeType":"ElementaryTypeName","src":"4876:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":187,"mutability":"mutable","name":"needed","nameLocation":"4901:6:3","nodeType":"VariableDeclaration","scope":191,"src":"4893:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":186,"name":"uint256","nodeType":"ElementaryTypeName","src":"4893:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":189,"mutability":"mutable","name":"tokenId","nameLocation":"4917:7:3","nodeType":"VariableDeclaration","scope":191,"src":"4909:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":188,"name":"uint256","nodeType":"ElementaryTypeName","src":"4909:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4859:66:3"},"src":"4827:99:3"},{"documentation":{"id":192,"nodeType":"StructuredDocumentation","src":"4932:152:3","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"01a83514","id":196,"name":"ERC1155InvalidSender","nameLocation":"5095:20:3","nodeType":"ErrorDefinition","parameters":{"id":195,"nodeType":"ParameterList","parameters":[{"constant":false,"id":194,"mutability":"mutable","name":"sender","nameLocation":"5124:6:3","nodeType":"VariableDeclaration","scope":196,"src":"5116:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":193,"name":"address","nodeType":"ElementaryTypeName","src":"5116:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5115:16:3"},"src":"5089:43:3"},{"documentation":{"id":197,"nodeType":"StructuredDocumentation","src":"5138:159:3","text":" @dev Indicates a failure with the token `receiver`. Used in transfers.\n @param receiver Address to which tokens are being transferred."},"errorSelector":"57f447ce","id":201,"name":"ERC1155InvalidReceiver","nameLocation":"5308:22:3","nodeType":"ErrorDefinition","parameters":{"id":200,"nodeType":"ParameterList","parameters":[{"constant":false,"id":199,"mutability":"mutable","name":"receiver","nameLocation":"5339:8:3","nodeType":"VariableDeclaration","scope":201,"src":"5331:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":198,"name":"address","nodeType":"ElementaryTypeName","src":"5331:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5330:18:3"},"src":"5302:47:3"},{"documentation":{"id":202,"nodeType":"StructuredDocumentation","src":"5355:256:3","text":" @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n @param operator Address that may be allowed to operate on tokens without being their owner.\n @param owner Address of the current owner of a token."},"errorSelector":"e237d922","id":208,"name":"ERC1155MissingApprovalForAll","nameLocation":"5622:28:3","nodeType":"ErrorDefinition","parameters":{"id":207,"nodeType":"ParameterList","parameters":[{"constant":false,"id":204,"mutability":"mutable","name":"operator","nameLocation":"5659:8:3","nodeType":"VariableDeclaration","scope":208,"src":"5651:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":203,"name":"address","nodeType":"ElementaryTypeName","src":"5651:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":206,"mutability":"mutable","name":"owner","nameLocation":"5677:5:3","nodeType":"VariableDeclaration","scope":208,"src":"5669:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":205,"name":"address","nodeType":"ElementaryTypeName","src":"5669:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5650:33:3"},"src":"5616:68:3"},{"documentation":{"id":209,"nodeType":"StructuredDocumentation","src":"5690:174:3","text":" @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n @param approver Address initiating an approval operation."},"errorSelector":"3e31884e","id":213,"name":"ERC1155InvalidApprover","nameLocation":"5875:22:3","nodeType":"ErrorDefinition","parameters":{"id":212,"nodeType":"ParameterList","parameters":[{"constant":false,"id":211,"mutability":"mutable","name":"approver","nameLocation":"5906:8:3","nodeType":"VariableDeclaration","scope":213,"src":"5898:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":210,"name":"address","nodeType":"ElementaryTypeName","src":"5898:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5897:18:3"},"src":"5869:47:3"},{"documentation":{"id":214,"nodeType":"StructuredDocumentation","src":"5922:197:3","text":" @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n @param operator Address that may be allowed to operate on tokens without being their owner."},"errorSelector":"ced3e100","id":218,"name":"ERC1155InvalidOperator","nameLocation":"6130:22:3","nodeType":"ErrorDefinition","parameters":{"id":217,"nodeType":"ParameterList","parameters":[{"constant":false,"id":216,"mutability":"mutable","name":"operator","nameLocation":"6161:8:3","nodeType":"VariableDeclaration","scope":218,"src":"6153:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":215,"name":"address","nodeType":"ElementaryTypeName","src":"6153:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6152:18:3"},"src":"6124:47:3"},{"documentation":{"id":219,"nodeType":"StructuredDocumentation","src":"6177:280:3","text":" @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.\n Used in batch transfers.\n @param idsLength Length of the array of token identifiers\n @param valuesLength Length of the array of token amounts"},"errorSelector":"5b059991","id":225,"name":"ERC1155InvalidArrayLength","nameLocation":"6468:25:3","nodeType":"ErrorDefinition","parameters":{"id":224,"nodeType":"ParameterList","parameters":[{"constant":false,"id":221,"mutability":"mutable","name":"idsLength","nameLocation":"6502:9:3","nodeType":"VariableDeclaration","scope":225,"src":"6494:17:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":220,"name":"uint256","nodeType":"ElementaryTypeName","src":"6494:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":223,"mutability":"mutable","name":"valuesLength","nameLocation":"6521:12:3","nodeType":"VariableDeclaration","scope":225,"src":"6513:20:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":222,"name":"uint256","nodeType":"ElementaryTypeName","src":"6513:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6493:41:3"},"src":"6462:73:3"}],"scope":227,"src":"4430:2107:3","usedErrors":[191,196,201,208,213,218,225],"usedEvents":[]}],"src":"112:6426:3"},"id":3},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","exportedSymbols":{"Context":[1375],"ERC20":[741],"IERC20":[819],"IERC20Errors":[131],"IERC20Metadata":[845]},"id":742,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":228,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"105:24:4"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"./IERC20.sol","id":230,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":742,"sourceUnit":820,"src":"131:36:4","symbolAliases":[{"foreign":{"id":229,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":819,"src":"139:6:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"./extensions/IERC20Metadata.sol","id":232,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":742,"sourceUnit":846,"src":"168:63:4","symbolAliases":[{"foreign":{"id":231,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":845,"src":"176:14:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../../utils/Context.sol","id":234,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":742,"sourceUnit":1376,"src":"232:48:4","symbolAliases":[{"foreign":{"id":233,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1375,"src":"240:7:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","file":"../../interfaces/draft-IERC6093.sol","id":236,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":742,"sourceUnit":227,"src":"281:65:4","symbolAliases":[{"foreign":{"id":235,"name":"IERC20Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":131,"src":"289:12:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":238,"name":"Context","nameLocations":["1133:7:4"],"nodeType":"IdentifierPath","referencedDeclaration":1375,"src":"1133:7:4"},"id":239,"nodeType":"InheritanceSpecifier","src":"1133:7:4"},{"baseName":{"id":240,"name":"IERC20","nameLocations":["1142:6:4"],"nodeType":"IdentifierPath","referencedDeclaration":819,"src":"1142:6:4"},"id":241,"nodeType":"InheritanceSpecifier","src":"1142:6:4"},{"baseName":{"id":242,"name":"IERC20Metadata","nameLocations":["1150:14:4"],"nodeType":"IdentifierPath","referencedDeclaration":845,"src":"1150:14:4"},"id":243,"nodeType":"InheritanceSpecifier","src":"1150:14:4"},{"baseName":{"id":244,"name":"IERC20Errors","nameLocations":["1166:12:4"],"nodeType":"IdentifierPath","referencedDeclaration":131,"src":"1166:12:4"},"id":245,"nodeType":"InheritanceSpecifier","src":"1166:12:4"}],"canonicalName":"ERC20","contractDependencies":[],"contractKind":"contract","documentation":{"id":237,"nodeType":"StructuredDocumentation","src":"348:757:4","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 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 The default value of {decimals} is 18. To change this, you should override\n this function so it returns a different value.\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 ERC-20\n applications."},"fullyImplemented":true,"id":741,"linearizedBaseContracts":[741,131,845,819,1375],"name":"ERC20","nameLocation":"1124:5:4","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":249,"mutability":"mutable","name":"_balances","nameLocation":"1229:9:4","nodeType":"VariableDeclaration","scope":741,"src":"1185:53:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":248,"keyName":"account","keyNameLocation":"1201:7:4","keyType":{"id":246,"name":"address","nodeType":"ElementaryTypeName","src":"1193:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1185:35:4","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":247,"name":"uint256","nodeType":"ElementaryTypeName","src":"1212:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":255,"mutability":"mutable","name":"_allowances","nameLocation":"1317:11:4","nodeType":"VariableDeclaration","scope":741,"src":"1245:83:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"typeName":{"id":254,"keyName":"account","keyNameLocation":"1261:7:4","keyType":{"id":250,"name":"address","nodeType":"ElementaryTypeName","src":"1253:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1245:63:4","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":253,"keyName":"spender","keyNameLocation":"1288:7:4","keyType":{"id":251,"name":"address","nodeType":"ElementaryTypeName","src":"1280:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1272:35:4","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":252,"name":"uint256","nodeType":"ElementaryTypeName","src":"1299:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"private"},{"constant":false,"id":257,"mutability":"mutable","name":"_totalSupply","nameLocation":"1351:12:4","nodeType":"VariableDeclaration","scope":741,"src":"1335:28:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":256,"name":"uint256","nodeType":"ElementaryTypeName","src":"1335:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":259,"mutability":"mutable","name":"_name","nameLocation":"1385:5:4","nodeType":"VariableDeclaration","scope":741,"src":"1370:20:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":258,"name":"string","nodeType":"ElementaryTypeName","src":"1370:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":261,"mutability":"mutable","name":"_symbol","nameLocation":"1411:7:4","nodeType":"VariableDeclaration","scope":741,"src":"1396:22:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":260,"name":"string","nodeType":"ElementaryTypeName","src":"1396:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"body":{"id":277,"nodeType":"Block","src":"1638:57:4","statements":[{"expression":{"id":271,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":269,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":259,"src":"1648:5:4","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":270,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":264,"src":"1656:5:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1648:13:4","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":272,"nodeType":"ExpressionStatement","src":"1648:13:4"},{"expression":{"id":275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":273,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":261,"src":"1671:7:4","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":274,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":266,"src":"1681:7:4","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1671:17:4","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":276,"nodeType":"ExpressionStatement","src":"1671:17:4"}]},"documentation":{"id":262,"nodeType":"StructuredDocumentation","src":"1425:152:4","text":" @dev Sets the values for {name} and {symbol}.\n Both values are immutable: they can only be set once during construction."},"id":278,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":267,"nodeType":"ParameterList","parameters":[{"constant":false,"id":264,"mutability":"mutable","name":"name_","nameLocation":"1608:5:4","nodeType":"VariableDeclaration","scope":278,"src":"1594:19:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":263,"name":"string","nodeType":"ElementaryTypeName","src":"1594:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":266,"mutability":"mutable","name":"symbol_","nameLocation":"1629:7:4","nodeType":"VariableDeclaration","scope":278,"src":"1615:21:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":265,"name":"string","nodeType":"ElementaryTypeName","src":"1615:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1593:44:4"},"returnParameters":{"id":268,"nodeType":"ParameterList","parameters":[],"src":"1638:0:4"},"scope":741,"src":"1582:113:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[832],"body":{"id":286,"nodeType":"Block","src":"1820:29:4","statements":[{"expression":{"id":284,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":259,"src":"1837:5:4","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":283,"id":285,"nodeType":"Return","src":"1830:12:4"}]},"documentation":{"id":279,"nodeType":"StructuredDocumentation","src":"1701:54:4","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":287,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"1769:4:4","nodeType":"FunctionDefinition","parameters":{"id":280,"nodeType":"ParameterList","parameters":[],"src":"1773:2:4"},"returnParameters":{"id":283,"nodeType":"ParameterList","parameters":[{"constant":false,"id":282,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":287,"src":"1805:13:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":281,"name":"string","nodeType":"ElementaryTypeName","src":"1805:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1804:15:4"},"scope":741,"src":"1760:89:4","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[838],"body":{"id":295,"nodeType":"Block","src":"2024:31:4","statements":[{"expression":{"id":293,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":261,"src":"2041:7:4","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":292,"id":294,"nodeType":"Return","src":"2034:14:4"}]},"documentation":{"id":288,"nodeType":"StructuredDocumentation","src":"1855:102:4","text":" @dev Returns the symbol of the token, usually a shorter version of the\n name."},"functionSelector":"95d89b41","id":296,"implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"1971:6:4","nodeType":"FunctionDefinition","parameters":{"id":289,"nodeType":"ParameterList","parameters":[],"src":"1977:2:4"},"returnParameters":{"id":292,"nodeType":"ParameterList","parameters":[{"constant":false,"id":291,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":296,"src":"2009:13:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":290,"name":"string","nodeType":"ElementaryTypeName","src":"2009:6:4","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2008:15:4"},"scope":741,"src":"1962:93:4","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[844],"body":{"id":304,"nodeType":"Block","src":"2744:26:4","statements":[{"expression":{"hexValue":"3138","id":302,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2761:2:4","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"functionReturnParameters":301,"id":303,"nodeType":"Return","src":"2754:9:4"}]},"documentation":{"id":297,"nodeType":"StructuredDocumentation","src":"2061:622:4","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 default value returned by this function, unless\n it's 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":305,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"2697:8:4","nodeType":"FunctionDefinition","parameters":{"id":298,"nodeType":"ParameterList","parameters":[],"src":"2705:2:4"},"returnParameters":{"id":301,"nodeType":"ParameterList","parameters":[{"constant":false,"id":300,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":305,"src":"2737:5:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":299,"name":"uint8","nodeType":"ElementaryTypeName","src":"2737:5:4","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"2736:7:4"},"scope":741,"src":"2688:82:4","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[768],"body":{"id":313,"nodeType":"Block","src":"2864:36:4","statements":[{"expression":{"id":311,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":257,"src":"2881:12:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":310,"id":312,"nodeType":"Return","src":"2874:19:4"}]},"documentation":{"id":306,"nodeType":"StructuredDocumentation","src":"2776:22:4","text":"@inheritdoc IERC20"},"functionSelector":"18160ddd","id":314,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"2812:11:4","nodeType":"FunctionDefinition","parameters":{"id":307,"nodeType":"ParameterList","parameters":[],"src":"2823:2:4"},"returnParameters":{"id":310,"nodeType":"ParameterList","parameters":[{"constant":false,"id":309,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":314,"src":"2855:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":308,"name":"uint256","nodeType":"ElementaryTypeName","src":"2855:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2854:9:4"},"scope":741,"src":"2803:97:4","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[776],"body":{"id":326,"nodeType":"Block","src":"3007:42:4","statements":[{"expression":{"baseExpression":{"id":322,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"3024:9:4","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":324,"indexExpression":{"id":323,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":317,"src":"3034:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3024:18:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":321,"id":325,"nodeType":"Return","src":"3017:25:4"}]},"documentation":{"id":315,"nodeType":"StructuredDocumentation","src":"2906:22:4","text":"@inheritdoc IERC20"},"functionSelector":"70a08231","id":327,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"2942:9:4","nodeType":"FunctionDefinition","parameters":{"id":318,"nodeType":"ParameterList","parameters":[{"constant":false,"id":317,"mutability":"mutable","name":"account","nameLocation":"2960:7:4","nodeType":"VariableDeclaration","scope":327,"src":"2952:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":316,"name":"address","nodeType":"ElementaryTypeName","src":"2952:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2951:17:4"},"returnParameters":{"id":321,"nodeType":"ParameterList","parameters":[{"constant":false,"id":320,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":327,"src":"2998:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":319,"name":"uint256","nodeType":"ElementaryTypeName","src":"2998:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2997:9:4"},"scope":741,"src":"2933:116:4","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[786],"body":{"id":350,"nodeType":"Block","src":"3319:103:4","statements":[{"assignments":[338],"declarations":[{"constant":false,"id":338,"mutability":"mutable","name":"owner","nameLocation":"3337:5:4","nodeType":"VariableDeclaration","scope":350,"src":"3329:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":337,"name":"address","nodeType":"ElementaryTypeName","src":"3329:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":341,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":339,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1357,"src":"3345:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":340,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3345:12:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3329:28:4"},{"expression":{"arguments":[{"id":343,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":338,"src":"3377:5:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":344,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":330,"src":"3384:2:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":345,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":332,"src":"3388:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":342,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":471,"src":"3367:9:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":346,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3367:27:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":347,"nodeType":"ExpressionStatement","src":"3367:27:4"},{"expression":{"hexValue":"74727565","id":348,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3411:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":336,"id":349,"nodeType":"Return","src":"3404:11:4"}]},"documentation":{"id":328,"nodeType":"StructuredDocumentation","src":"3055:184:4","text":" @dev See {IERC20-transfer}.\n Requirements:\n - `to` cannot be the zero address.\n - the caller must have a balance of at least `value`."},"functionSelector":"a9059cbb","id":351,"implemented":true,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"3253:8:4","nodeType":"FunctionDefinition","parameters":{"id":333,"nodeType":"ParameterList","parameters":[{"constant":false,"id":330,"mutability":"mutable","name":"to","nameLocation":"3270:2:4","nodeType":"VariableDeclaration","scope":351,"src":"3262:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":329,"name":"address","nodeType":"ElementaryTypeName","src":"3262:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":332,"mutability":"mutable","name":"value","nameLocation":"3282:5:4","nodeType":"VariableDeclaration","scope":351,"src":"3274:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":331,"name":"uint256","nodeType":"ElementaryTypeName","src":"3274:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3261:27:4"},"returnParameters":{"id":336,"nodeType":"ParameterList","parameters":[{"constant":false,"id":335,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":351,"src":"3313:4:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":334,"name":"bool","nodeType":"ElementaryTypeName","src":"3313:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3312:6:4"},"scope":741,"src":"3244:178:4","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[796],"body":{"id":367,"nodeType":"Block","src":"3544:51:4","statements":[{"expression":{"baseExpression":{"baseExpression":{"id":361,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":255,"src":"3561:11:4","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":363,"indexExpression":{"id":362,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":354,"src":"3573:5:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3561:18:4","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":365,"indexExpression":{"id":364,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":356,"src":"3580:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3561:27:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":360,"id":366,"nodeType":"Return","src":"3554:34:4"}]},"documentation":{"id":352,"nodeType":"StructuredDocumentation","src":"3428:22:4","text":"@inheritdoc IERC20"},"functionSelector":"dd62ed3e","id":368,"implemented":true,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"3464:9:4","nodeType":"FunctionDefinition","parameters":{"id":357,"nodeType":"ParameterList","parameters":[{"constant":false,"id":354,"mutability":"mutable","name":"owner","nameLocation":"3482:5:4","nodeType":"VariableDeclaration","scope":368,"src":"3474:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":353,"name":"address","nodeType":"ElementaryTypeName","src":"3474:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":356,"mutability":"mutable","name":"spender","nameLocation":"3497:7:4","nodeType":"VariableDeclaration","scope":368,"src":"3489:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":355,"name":"address","nodeType":"ElementaryTypeName","src":"3489:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3473:32:4"},"returnParameters":{"id":360,"nodeType":"ParameterList","parameters":[{"constant":false,"id":359,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":368,"src":"3535:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":358,"name":"uint256","nodeType":"ElementaryTypeName","src":"3535:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3534:9:4"},"scope":741,"src":"3455:140:4","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[806],"body":{"id":391,"nodeType":"Block","src":"3981:107:4","statements":[{"assignments":[379],"declarations":[{"constant":false,"id":379,"mutability":"mutable","name":"owner","nameLocation":"3999:5:4","nodeType":"VariableDeclaration","scope":391,"src":"3991:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":378,"name":"address","nodeType":"ElementaryTypeName","src":"3991:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":382,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":380,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1357,"src":"4007:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":381,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4007:12:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3991:28:4"},{"expression":{"arguments":[{"id":384,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":379,"src":"4038:5:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":385,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":371,"src":"4045:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":386,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":373,"src":"4054:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":383,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[632,692],"referencedDeclaration":632,"src":"4029:8:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":387,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4029:31:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":388,"nodeType":"ExpressionStatement","src":"4029:31:4"},{"expression":{"hexValue":"74727565","id":389,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4077:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":377,"id":390,"nodeType":"Return","src":"4070:11:4"}]},"documentation":{"id":369,"nodeType":"StructuredDocumentation","src":"3601:296:4","text":" @dev See {IERC20-approve}.\n NOTE: If `value` 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":392,"implemented":true,"kind":"function","modifiers":[],"name":"approve","nameLocation":"3911:7:4","nodeType":"FunctionDefinition","parameters":{"id":374,"nodeType":"ParameterList","parameters":[{"constant":false,"id":371,"mutability":"mutable","name":"spender","nameLocation":"3927:7:4","nodeType":"VariableDeclaration","scope":392,"src":"3919:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":370,"name":"address","nodeType":"ElementaryTypeName","src":"3919:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":373,"mutability":"mutable","name":"value","nameLocation":"3944:5:4","nodeType":"VariableDeclaration","scope":392,"src":"3936:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":372,"name":"uint256","nodeType":"ElementaryTypeName","src":"3936:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3918:32:4"},"returnParameters":{"id":377,"nodeType":"ParameterList","parameters":[{"constant":false,"id":376,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":392,"src":"3975:4:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":375,"name":"bool","nodeType":"ElementaryTypeName","src":"3975:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3974:6:4"},"scope":741,"src":"3902:186:4","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[818],"body":{"id":423,"nodeType":"Block","src":"4773:151:4","statements":[{"assignments":[405],"declarations":[{"constant":false,"id":405,"mutability":"mutable","name":"spender","nameLocation":"4791:7:4","nodeType":"VariableDeclaration","scope":423,"src":"4783:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":404,"name":"address","nodeType":"ElementaryTypeName","src":"4783:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":408,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":406,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1357,"src":"4801:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":407,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4801:12:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4783:30:4"},{"expression":{"arguments":[{"id":410,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":395,"src":"4839:4:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":411,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":405,"src":"4845:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":412,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":399,"src":"4854:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":409,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":740,"src":"4823:15:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":413,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4823:37:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":414,"nodeType":"ExpressionStatement","src":"4823:37:4"},{"expression":{"arguments":[{"id":416,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":395,"src":"4880:4:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":417,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":397,"src":"4886:2:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":418,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":399,"src":"4890:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":415,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":471,"src":"4870:9:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":419,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4870:26:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":420,"nodeType":"ExpressionStatement","src":"4870:26:4"},{"expression":{"hexValue":"74727565","id":421,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4913:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":403,"id":422,"nodeType":"Return","src":"4906:11:4"}]},"documentation":{"id":393,"nodeType":"StructuredDocumentation","src":"4094:581:4","text":" @dev See {IERC20-transferFrom}.\n Skips emitting an {Approval} event indicating an allowance update. This is not\n required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].\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 `value`.\n - the caller must have allowance for ``from``'s tokens of at least\n `value`."},"functionSelector":"23b872dd","id":424,"implemented":true,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"4689:12:4","nodeType":"FunctionDefinition","parameters":{"id":400,"nodeType":"ParameterList","parameters":[{"constant":false,"id":395,"mutability":"mutable","name":"from","nameLocation":"4710:4:4","nodeType":"VariableDeclaration","scope":424,"src":"4702:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":394,"name":"address","nodeType":"ElementaryTypeName","src":"4702:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":397,"mutability":"mutable","name":"to","nameLocation":"4724:2:4","nodeType":"VariableDeclaration","scope":424,"src":"4716:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":396,"name":"address","nodeType":"ElementaryTypeName","src":"4716:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":399,"mutability":"mutable","name":"value","nameLocation":"4736:5:4","nodeType":"VariableDeclaration","scope":424,"src":"4728:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":398,"name":"uint256","nodeType":"ElementaryTypeName","src":"4728:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4701:41:4"},"returnParameters":{"id":403,"nodeType":"ParameterList","parameters":[{"constant":false,"id":402,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":424,"src":"4767:4:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":401,"name":"bool","nodeType":"ElementaryTypeName","src":"4767:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4766:6:4"},"scope":741,"src":"4680:244:4","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":470,"nodeType":"Block","src":"5366:231:4","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":439,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":434,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":427,"src":"5380:4:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":437,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5396:1:4","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":436,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5388:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":435,"name":"address","nodeType":"ElementaryTypeName","src":"5388:7:4","typeDescriptions":{}}},"id":438,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5388:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5380:18:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":448,"nodeType":"IfStatement","src":"5376:86:4","trueBody":{"id":447,"nodeType":"Block","src":"5400:62:4","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":443,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5448:1:4","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":442,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5440:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":441,"name":"address","nodeType":"ElementaryTypeName","src":"5440:7:4","typeDescriptions":{}}},"id":444,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5440:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":440,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":106,"src":"5421:18:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":445,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5421:30:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":446,"nodeType":"RevertStatement","src":"5414:37:4"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":454,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":449,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":429,"src":"5475:2:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":452,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5489:1:4","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":451,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5481:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":450,"name":"address","nodeType":"ElementaryTypeName","src":"5481:7:4","typeDescriptions":{}}},"id":453,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5481:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5475:16:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":463,"nodeType":"IfStatement","src":"5471:86:4","trueBody":{"id":462,"nodeType":"Block","src":"5493:64:4","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":458,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5543:1:4","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":457,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5535:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":456,"name":"address","nodeType":"ElementaryTypeName","src":"5535:7:4","typeDescriptions":{}}},"id":459,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5535:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":455,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":111,"src":"5514:20:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":460,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5514:32:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":461,"nodeType":"RevertStatement","src":"5507:39:4"}]}},{"expression":{"arguments":[{"id":465,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":427,"src":"5574:4:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":466,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":429,"src":"5580:2:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":467,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":431,"src":"5584:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":464,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":548,"src":"5566:7:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":468,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5566:24:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":469,"nodeType":"ExpressionStatement","src":"5566:24:4"}]},"documentation":{"id":425,"nodeType":"StructuredDocumentation","src":"4930:362:4","text":" @dev Moves a `value` 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 NOTE: This function is not virtual, {_update} should be overridden instead."},"id":471,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"5306:9:4","nodeType":"FunctionDefinition","parameters":{"id":432,"nodeType":"ParameterList","parameters":[{"constant":false,"id":427,"mutability":"mutable","name":"from","nameLocation":"5324:4:4","nodeType":"VariableDeclaration","scope":471,"src":"5316:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":426,"name":"address","nodeType":"ElementaryTypeName","src":"5316:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":429,"mutability":"mutable","name":"to","nameLocation":"5338:2:4","nodeType":"VariableDeclaration","scope":471,"src":"5330:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":428,"name":"address","nodeType":"ElementaryTypeName","src":"5330:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":431,"mutability":"mutable","name":"value","nameLocation":"5350:5:4","nodeType":"VariableDeclaration","scope":471,"src":"5342:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":430,"name":"uint256","nodeType":"ElementaryTypeName","src":"5342:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5315:41:4"},"returnParameters":{"id":433,"nodeType":"ParameterList","parameters":[],"src":"5366:0:4"},"scope":741,"src":"5297:300:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":547,"nodeType":"Block","src":"5987:1032:4","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":486,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":481,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":474,"src":"6001:4:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":484,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6017:1:4","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":483,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6009:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":482,"name":"address","nodeType":"ElementaryTypeName","src":"6009:7:4","typeDescriptions":{}}},"id":485,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6009:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6001:18:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":518,"nodeType":"Block","src":"6175:362:4","statements":[{"assignments":[493],"declarations":[{"constant":false,"id":493,"mutability":"mutable","name":"fromBalance","nameLocation":"6197:11:4","nodeType":"VariableDeclaration","scope":518,"src":"6189:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":492,"name":"uint256","nodeType":"ElementaryTypeName","src":"6189:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":497,"initialValue":{"baseExpression":{"id":494,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"6211:9:4","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":496,"indexExpression":{"id":495,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":474,"src":"6221:4:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6211:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6189:37:4"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":500,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":498,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":493,"src":"6244:11:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":499,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":478,"src":"6258:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6244:19:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":508,"nodeType":"IfStatement","src":"6240:115:4","trueBody":{"id":507,"nodeType":"Block","src":"6265:90:4","statements":[{"errorCall":{"arguments":[{"id":502,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":474,"src":"6315:4:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":503,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":493,"src":"6321:11:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":504,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":478,"src":"6334:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":501,"name":"ERC20InsufficientBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":101,"src":"6290:24:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256) pure"}},"id":505,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6290:50:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":506,"nodeType":"RevertStatement","src":"6283:57:4"}]}},{"id":517,"nodeType":"UncheckedBlock","src":"6368:159:4","statements":[{"expression":{"id":515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":509,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"6475:9:4","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":511,"indexExpression":{"id":510,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":474,"src":"6485:4:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6475:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":514,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":512,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":493,"src":"6493:11:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":513,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":478,"src":"6507:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6493:19:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6475:37:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":516,"nodeType":"ExpressionStatement","src":"6475:37:4"}]}]},"id":519,"nodeType":"IfStatement","src":"5997:540:4","trueBody":{"id":491,"nodeType":"Block","src":"6021:148:4","statements":[{"expression":{"id":489,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":487,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":257,"src":"6137:12:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":488,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":478,"src":"6153:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6137:21:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":490,"nodeType":"ExpressionStatement","src":"6137:21:4"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":525,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":520,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":476,"src":"6551:2:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":523,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6565:1:4","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":522,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6557:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":521,"name":"address","nodeType":"ElementaryTypeName","src":"6557:7:4","typeDescriptions":{}}},"id":524,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6557:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6551:16:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":539,"nodeType":"Block","src":"6766:206:4","statements":[{"id":538,"nodeType":"UncheckedBlock","src":"6780:182:4","statements":[{"expression":{"id":536,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":532,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":249,"src":"6925:9:4","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":534,"indexExpression":{"id":533,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":476,"src":"6935:2:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6925:13:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":535,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":478,"src":"6942:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6925:22:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":537,"nodeType":"ExpressionStatement","src":"6925:22:4"}]}]},"id":540,"nodeType":"IfStatement","src":"6547:425:4","trueBody":{"id":531,"nodeType":"Block","src":"6569:191:4","statements":[{"id":530,"nodeType":"UncheckedBlock","src":"6583:167:4","statements":[{"expression":{"id":528,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":526,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":257,"src":"6714:12:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":527,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":478,"src":"6730:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6714:21:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":529,"nodeType":"ExpressionStatement","src":"6714:21:4"}]}]}},{"eventCall":{"arguments":[{"id":542,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":474,"src":"6996:4:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":543,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":476,"src":"7002:2:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":544,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":478,"src":"7006:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":541,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":753,"src":"6987:8:4","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":545,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6987:25:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":546,"nodeType":"EmitStatement","src":"6982:30:4"}]},"documentation":{"id":472,"nodeType":"StructuredDocumentation","src":"5603:304:4","text":" @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`\n (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding\n this function.\n Emits a {Transfer} event."},"id":548,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"5921:7:4","nodeType":"FunctionDefinition","parameters":{"id":479,"nodeType":"ParameterList","parameters":[{"constant":false,"id":474,"mutability":"mutable","name":"from","nameLocation":"5937:4:4","nodeType":"VariableDeclaration","scope":548,"src":"5929:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":473,"name":"address","nodeType":"ElementaryTypeName","src":"5929:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":476,"mutability":"mutable","name":"to","nameLocation":"5951:2:4","nodeType":"VariableDeclaration","scope":548,"src":"5943:10:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":475,"name":"address","nodeType":"ElementaryTypeName","src":"5943:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":478,"mutability":"mutable","name":"value","nameLocation":"5963:5:4","nodeType":"VariableDeclaration","scope":548,"src":"5955:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":477,"name":"uint256","nodeType":"ElementaryTypeName","src":"5955:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5928:41:4"},"returnParameters":{"id":480,"nodeType":"ParameterList","parameters":[],"src":"5987:0:4"},"scope":741,"src":"5912:1107:4","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":580,"nodeType":"Block","src":"7418:152:4","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":561,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":556,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":551,"src":"7432:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":559,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7451:1:4","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":558,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7443:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":557,"name":"address","nodeType":"ElementaryTypeName","src":"7443:7:4","typeDescriptions":{}}},"id":560,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7443:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7432:21:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":570,"nodeType":"IfStatement","src":"7428:91:4","trueBody":{"id":569,"nodeType":"Block","src":"7455:64:4","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":565,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7505:1:4","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":564,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7497:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":563,"name":"address","nodeType":"ElementaryTypeName","src":"7497:7:4","typeDescriptions":{}}},"id":566,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7497:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":562,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":111,"src":"7476:20:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":567,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7476:32:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":568,"nodeType":"RevertStatement","src":"7469:39:4"}]}},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":574,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7544:1:4","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":573,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7536:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":572,"name":"address","nodeType":"ElementaryTypeName","src":"7536:7:4","typeDescriptions":{}}},"id":575,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7536:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":576,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":551,"src":"7548:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":577,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":553,"src":"7557:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":571,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":548,"src":"7528:7:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":578,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7528:35:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":579,"nodeType":"ExpressionStatement","src":"7528:35:4"}]},"documentation":{"id":549,"nodeType":"StructuredDocumentation","src":"7025:332:4","text":" @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).\n Relies on the `_update` mechanism\n Emits a {Transfer} event with `from` set to the zero address.\n NOTE: This function is not virtual, {_update} should be overridden instead."},"id":581,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"7371:5:4","nodeType":"FunctionDefinition","parameters":{"id":554,"nodeType":"ParameterList","parameters":[{"constant":false,"id":551,"mutability":"mutable","name":"account","nameLocation":"7385:7:4","nodeType":"VariableDeclaration","scope":581,"src":"7377:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":550,"name":"address","nodeType":"ElementaryTypeName","src":"7377:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":553,"mutability":"mutable","name":"value","nameLocation":"7402:5:4","nodeType":"VariableDeclaration","scope":581,"src":"7394:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":552,"name":"uint256","nodeType":"ElementaryTypeName","src":"7394:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7376:32:4"},"returnParameters":{"id":555,"nodeType":"ParameterList","parameters":[],"src":"7418:0:4"},"scope":741,"src":"7362:208:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":613,"nodeType":"Block","src":"7944:150:4","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":594,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":589,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":584,"src":"7958:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":592,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7977:1:4","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":591,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7969:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":590,"name":"address","nodeType":"ElementaryTypeName","src":"7969:7:4","typeDescriptions":{}}},"id":593,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7969:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7958:21:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":603,"nodeType":"IfStatement","src":"7954:89:4","trueBody":{"id":602,"nodeType":"Block","src":"7981:62:4","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":598,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8029:1:4","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":597,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8021:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":596,"name":"address","nodeType":"ElementaryTypeName","src":"8021:7:4","typeDescriptions":{}}},"id":599,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8021:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":595,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":106,"src":"8002:18:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":600,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8002:30:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":601,"nodeType":"RevertStatement","src":"7995:37:4"}]}},{"expression":{"arguments":[{"id":605,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":584,"src":"8060:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":608,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8077:1:4","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":607,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8069:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":606,"name":"address","nodeType":"ElementaryTypeName","src":"8069:7:4","typeDescriptions":{}}},"id":609,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8069:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":610,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":586,"src":"8081:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":604,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":548,"src":"8052:7:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":611,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8052:35:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":612,"nodeType":"ExpressionStatement","src":"8052:35:4"}]},"documentation":{"id":582,"nodeType":"StructuredDocumentation","src":"7576:307:4","text":" @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.\n Relies on the `_update` mechanism.\n Emits a {Transfer} event with `to` set to the zero address.\n NOTE: This function is not virtual, {_update} should be overridden instead"},"id":614,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"7897:5:4","nodeType":"FunctionDefinition","parameters":{"id":587,"nodeType":"ParameterList","parameters":[{"constant":false,"id":584,"mutability":"mutable","name":"account","nameLocation":"7911:7:4","nodeType":"VariableDeclaration","scope":614,"src":"7903:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":583,"name":"address","nodeType":"ElementaryTypeName","src":"7903:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":586,"mutability":"mutable","name":"value","nameLocation":"7928:5:4","nodeType":"VariableDeclaration","scope":614,"src":"7920:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":585,"name":"uint256","nodeType":"ElementaryTypeName","src":"7920:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7902:32:4"},"returnParameters":{"id":588,"nodeType":"ParameterList","parameters":[],"src":"7944:0:4"},"scope":741,"src":"7888:206:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":631,"nodeType":"Block","src":"8704:54:4","statements":[{"expression":{"arguments":[{"id":625,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":617,"src":"8723:5:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":626,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":619,"src":"8730:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":627,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":621,"src":"8739:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":628,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8746:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":624,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[632,692],"referencedDeclaration":692,"src":"8714:8:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":629,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8714:37:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":630,"nodeType":"ExpressionStatement","src":"8714:37:4"}]},"documentation":{"id":615,"nodeType":"StructuredDocumentation","src":"8100:525:4","text":" @dev Sets `value` 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.\n Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument."},"id":632,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"8639:8:4","nodeType":"FunctionDefinition","parameters":{"id":622,"nodeType":"ParameterList","parameters":[{"constant":false,"id":617,"mutability":"mutable","name":"owner","nameLocation":"8656:5:4","nodeType":"VariableDeclaration","scope":632,"src":"8648:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":616,"name":"address","nodeType":"ElementaryTypeName","src":"8648:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":619,"mutability":"mutable","name":"spender","nameLocation":"8671:7:4","nodeType":"VariableDeclaration","scope":632,"src":"8663:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":618,"name":"address","nodeType":"ElementaryTypeName","src":"8663:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":621,"mutability":"mutable","name":"value","nameLocation":"8688:5:4","nodeType":"VariableDeclaration","scope":632,"src":"8680:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":620,"name":"uint256","nodeType":"ElementaryTypeName","src":"8680:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8647:47:4"},"returnParameters":{"id":623,"nodeType":"ParameterList","parameters":[],"src":"8704:0:4"},"scope":741,"src":"8630:128:4","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":691,"nodeType":"Block","src":"9703:334:4","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":649,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":644,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":635,"src":"9717:5:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":647,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9734:1:4","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":646,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9726:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":645,"name":"address","nodeType":"ElementaryTypeName","src":"9726:7:4","typeDescriptions":{}}},"id":648,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9726:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9717:19:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":658,"nodeType":"IfStatement","src":"9713:89:4","trueBody":{"id":657,"nodeType":"Block","src":"9738:64:4","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":653,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9788:1:4","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":652,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9780:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":651,"name":"address","nodeType":"ElementaryTypeName","src":"9780:7:4","typeDescriptions":{}}},"id":654,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9780:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":650,"name":"ERC20InvalidApprover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":125,"src":"9759:20:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":655,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9759:32:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":656,"nodeType":"RevertStatement","src":"9752:39:4"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":659,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":637,"src":"9815:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":662,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9834:1:4","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":661,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9826:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":660,"name":"address","nodeType":"ElementaryTypeName","src":"9826:7:4","typeDescriptions":{}}},"id":663,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9826:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9815:21:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":673,"nodeType":"IfStatement","src":"9811:90:4","trueBody":{"id":672,"nodeType":"Block","src":"9838:63:4","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":668,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9887:1:4","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":667,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9879:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":666,"name":"address","nodeType":"ElementaryTypeName","src":"9879:7:4","typeDescriptions":{}}},"id":669,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9879:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":665,"name":"ERC20InvalidSpender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":130,"src":"9859:19:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":670,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9859:31:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":671,"nodeType":"RevertStatement","src":"9852:38:4"}]}},{"expression":{"id":680,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":674,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":255,"src":"9910:11:4","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":677,"indexExpression":{"id":675,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":635,"src":"9922:5:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9910:18:4","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":678,"indexExpression":{"id":676,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":637,"src":"9929:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"9910:27:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":679,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":639,"src":"9940:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9910:35:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":681,"nodeType":"ExpressionStatement","src":"9910:35:4"},{"condition":{"id":682,"name":"emitEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":641,"src":"9959:9:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":690,"nodeType":"IfStatement","src":"9955:76:4","trueBody":{"id":689,"nodeType":"Block","src":"9970:61:4","statements":[{"eventCall":{"arguments":[{"id":684,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":635,"src":"9998:5:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":685,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":637,"src":"10005:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":686,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":639,"src":"10014:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":683,"name":"Approval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":762,"src":"9989:8:4","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":687,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9989:31:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":688,"nodeType":"EmitStatement","src":"9984:36:4"}]}}]},"documentation":{"id":633,"nodeType":"StructuredDocumentation","src":"8764:836:4","text":" @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.\n By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by\n `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any\n `Approval` event during `transferFrom` operations.\n Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to\n true using the following override:\n ```solidity\n function _approve(address owner, address spender, uint256 value, bool) internal virtual override {\n super._approve(owner, spender, value, true);\n }\n ```\n Requirements are the same as {_approve}."},"id":692,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"9614:8:4","nodeType":"FunctionDefinition","parameters":{"id":642,"nodeType":"ParameterList","parameters":[{"constant":false,"id":635,"mutability":"mutable","name":"owner","nameLocation":"9631:5:4","nodeType":"VariableDeclaration","scope":692,"src":"9623:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":634,"name":"address","nodeType":"ElementaryTypeName","src":"9623:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":637,"mutability":"mutable","name":"spender","nameLocation":"9646:7:4","nodeType":"VariableDeclaration","scope":692,"src":"9638:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":636,"name":"address","nodeType":"ElementaryTypeName","src":"9638:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":639,"mutability":"mutable","name":"value","nameLocation":"9663:5:4","nodeType":"VariableDeclaration","scope":692,"src":"9655:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":638,"name":"uint256","nodeType":"ElementaryTypeName","src":"9655:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":641,"mutability":"mutable","name":"emitEvent","nameLocation":"9675:9:4","nodeType":"VariableDeclaration","scope":692,"src":"9670:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":640,"name":"bool","nodeType":"ElementaryTypeName","src":"9670:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9622:63:4"},"returnParameters":{"id":643,"nodeType":"ParameterList","parameters":[],"src":"9703:0:4"},"scope":741,"src":"9605:432:4","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":739,"nodeType":"Block","src":"10408:387:4","statements":[{"assignments":[703],"declarations":[{"constant":false,"id":703,"mutability":"mutable","name":"currentAllowance","nameLocation":"10426:16:4","nodeType":"VariableDeclaration","scope":739,"src":"10418:24:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":702,"name":"uint256","nodeType":"ElementaryTypeName","src":"10418:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":708,"initialValue":{"arguments":[{"id":705,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":695,"src":"10455:5:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":706,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":697,"src":"10462:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":704,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":368,"src":"10445:9:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":707,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10445:25:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10418:52:4"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":715,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":709,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":703,"src":"10484:16:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"id":712,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10508:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":711,"name":"uint256","nodeType":"ElementaryTypeName","src":"10508:7:4","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":710,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10503:4:4","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":713,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10503:13:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":714,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10517:3:4","memberName":"max","nodeType":"MemberAccess","src":"10503:17:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10484:36:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":738,"nodeType":"IfStatement","src":"10480:309:4","trueBody":{"id":737,"nodeType":"Block","src":"10522:267:4","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":718,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":716,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":703,"src":"10540:16:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":717,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":699,"src":"10559:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10540:24:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":726,"nodeType":"IfStatement","src":"10536:130:4","trueBody":{"id":725,"nodeType":"Block","src":"10566:100:4","statements":[{"errorCall":{"arguments":[{"id":720,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":697,"src":"10618:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":721,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":703,"src":"10627:16:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":722,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":699,"src":"10645:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":719,"name":"ERC20InsufficientAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":120,"src":"10591:26:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256) pure"}},"id":723,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10591:60:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":724,"nodeType":"RevertStatement","src":"10584:67:4"}]}},{"id":736,"nodeType":"UncheckedBlock","src":"10679:100:4","statements":[{"expression":{"arguments":[{"id":728,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":695,"src":"10716:5:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":729,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":697,"src":"10723:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":732,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":730,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":703,"src":"10732:16:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":731,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":699,"src":"10751:5:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10732:24:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":733,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10758:5:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":727,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[632,692],"referencedDeclaration":692,"src":"10707:8:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":734,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10707:57:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":735,"nodeType":"ExpressionStatement","src":"10707:57:4"}]}]}}]},"documentation":{"id":693,"nodeType":"StructuredDocumentation","src":"10043:271:4","text":" @dev Updates `owner`'s allowance for `spender` based on spent `value`.\n Does not update the allowance value in case of infinite allowance.\n Revert if not enough allowance is available.\n Does not emit an {Approval} event."},"id":740,"implemented":true,"kind":"function","modifiers":[],"name":"_spendAllowance","nameLocation":"10328:15:4","nodeType":"FunctionDefinition","parameters":{"id":700,"nodeType":"ParameterList","parameters":[{"constant":false,"id":695,"mutability":"mutable","name":"owner","nameLocation":"10352:5:4","nodeType":"VariableDeclaration","scope":740,"src":"10344:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":694,"name":"address","nodeType":"ElementaryTypeName","src":"10344:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":697,"mutability":"mutable","name":"spender","nameLocation":"10367:7:4","nodeType":"VariableDeclaration","scope":740,"src":"10359:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":696,"name":"address","nodeType":"ElementaryTypeName","src":"10359:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":699,"mutability":"mutable","name":"value","nameLocation":"10384:5:4","nodeType":"VariableDeclaration","scope":740,"src":"10376:13:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":698,"name":"uint256","nodeType":"ElementaryTypeName","src":"10376:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10343:47:4"},"returnParameters":{"id":701,"nodeType":"ParameterList","parameters":[],"src":"10408:0:4"},"scope":741,"src":"10319:476:4","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":742,"src":"1106:9691:4","usedErrors":[101,106,111,120,125,130],"usedEvents":[753,762]}],"src":"105:10693:4"},"id":4},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","exportedSymbols":{"IERC20":[819]},"id":820,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":743,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"106:25:5"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20","contractDependencies":[],"contractKind":"interface","documentation":{"id":744,"nodeType":"StructuredDocumentation","src":"133:71:5","text":" @dev Interface of the ERC-20 standard as defined in the ERC."},"fullyImplemented":false,"id":819,"linearizedBaseContracts":[819],"name":"IERC20","nameLocation":"215:6:5","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":745,"nodeType":"StructuredDocumentation","src":"228:158:5","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":753,"name":"Transfer","nameLocation":"397:8:5","nodeType":"EventDefinition","parameters":{"id":752,"nodeType":"ParameterList","parameters":[{"constant":false,"id":747,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"422:4:5","nodeType":"VariableDeclaration","scope":753,"src":"406:20:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":746,"name":"address","nodeType":"ElementaryTypeName","src":"406:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":749,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"444:2:5","nodeType":"VariableDeclaration","scope":753,"src":"428:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":748,"name":"address","nodeType":"ElementaryTypeName","src":"428:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":751,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"456:5:5","nodeType":"VariableDeclaration","scope":753,"src":"448:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":750,"name":"uint256","nodeType":"ElementaryTypeName","src":"448:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"405:57:5"},"src":"391:72:5"},{"anonymous":false,"documentation":{"id":754,"nodeType":"StructuredDocumentation","src":"469:148:5","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":762,"name":"Approval","nameLocation":"628:8:5","nodeType":"EventDefinition","parameters":{"id":761,"nodeType":"ParameterList","parameters":[{"constant":false,"id":756,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"653:5:5","nodeType":"VariableDeclaration","scope":762,"src":"637:21:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":755,"name":"address","nodeType":"ElementaryTypeName","src":"637:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":758,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"676:7:5","nodeType":"VariableDeclaration","scope":762,"src":"660:23:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":757,"name":"address","nodeType":"ElementaryTypeName","src":"660:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":760,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"693:5:5","nodeType":"VariableDeclaration","scope":762,"src":"685:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":759,"name":"uint256","nodeType":"ElementaryTypeName","src":"685:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"636:63:5"},"src":"622:78:5"},{"documentation":{"id":763,"nodeType":"StructuredDocumentation","src":"706:65:5","text":" @dev Returns the value of tokens in existence."},"functionSelector":"18160ddd","id":768,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"785:11:5","nodeType":"FunctionDefinition","parameters":{"id":764,"nodeType":"ParameterList","parameters":[],"src":"796:2:5"},"returnParameters":{"id":767,"nodeType":"ParameterList","parameters":[{"constant":false,"id":766,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":768,"src":"822:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":765,"name":"uint256","nodeType":"ElementaryTypeName","src":"822:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"821:9:5"},"scope":819,"src":"776:55:5","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":769,"nodeType":"StructuredDocumentation","src":"837:71:5","text":" @dev Returns the value of tokens owned by `account`."},"functionSelector":"70a08231","id":776,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"922:9:5","nodeType":"FunctionDefinition","parameters":{"id":772,"nodeType":"ParameterList","parameters":[{"constant":false,"id":771,"mutability":"mutable","name":"account","nameLocation":"940:7:5","nodeType":"VariableDeclaration","scope":776,"src":"932:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":770,"name":"address","nodeType":"ElementaryTypeName","src":"932:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"931:17:5"},"returnParameters":{"id":775,"nodeType":"ParameterList","parameters":[{"constant":false,"id":774,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":776,"src":"972:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":773,"name":"uint256","nodeType":"ElementaryTypeName","src":"972:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"971:9:5"},"scope":819,"src":"913:68:5","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":777,"nodeType":"StructuredDocumentation","src":"987:213:5","text":" @dev Moves a `value` amount of 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":786,"implemented":false,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"1214:8:5","nodeType":"FunctionDefinition","parameters":{"id":782,"nodeType":"ParameterList","parameters":[{"constant":false,"id":779,"mutability":"mutable","name":"to","nameLocation":"1231:2:5","nodeType":"VariableDeclaration","scope":786,"src":"1223:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":778,"name":"address","nodeType":"ElementaryTypeName","src":"1223:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":781,"mutability":"mutable","name":"value","nameLocation":"1243:5:5","nodeType":"VariableDeclaration","scope":786,"src":"1235:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":780,"name":"uint256","nodeType":"ElementaryTypeName","src":"1235:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1222:27:5"},"returnParameters":{"id":785,"nodeType":"ParameterList","parameters":[{"constant":false,"id":784,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":786,"src":"1268:4:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":783,"name":"bool","nodeType":"ElementaryTypeName","src":"1268:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1267:6:5"},"scope":819,"src":"1205:69:5","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":787,"nodeType":"StructuredDocumentation","src":"1280:264:5","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":796,"implemented":false,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"1558:9:5","nodeType":"FunctionDefinition","parameters":{"id":792,"nodeType":"ParameterList","parameters":[{"constant":false,"id":789,"mutability":"mutable","name":"owner","nameLocation":"1576:5:5","nodeType":"VariableDeclaration","scope":796,"src":"1568:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":788,"name":"address","nodeType":"ElementaryTypeName","src":"1568:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":791,"mutability":"mutable","name":"spender","nameLocation":"1591:7:5","nodeType":"VariableDeclaration","scope":796,"src":"1583:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":790,"name":"address","nodeType":"ElementaryTypeName","src":"1583:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1567:32:5"},"returnParameters":{"id":795,"nodeType":"ParameterList","parameters":[{"constant":false,"id":794,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":796,"src":"1623:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":793,"name":"uint256","nodeType":"ElementaryTypeName","src":"1623:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1622:9:5"},"scope":819,"src":"1549:83:5","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":797,"nodeType":"StructuredDocumentation","src":"1638:667:5","text":" @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n 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":806,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"2319:7:5","nodeType":"FunctionDefinition","parameters":{"id":802,"nodeType":"ParameterList","parameters":[{"constant":false,"id":799,"mutability":"mutable","name":"spender","nameLocation":"2335:7:5","nodeType":"VariableDeclaration","scope":806,"src":"2327:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":798,"name":"address","nodeType":"ElementaryTypeName","src":"2327:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":801,"mutability":"mutable","name":"value","nameLocation":"2352:5:5","nodeType":"VariableDeclaration","scope":806,"src":"2344:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":800,"name":"uint256","nodeType":"ElementaryTypeName","src":"2344:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2326:32:5"},"returnParameters":{"id":805,"nodeType":"ParameterList","parameters":[{"constant":false,"id":804,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":806,"src":"2377:4:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":803,"name":"bool","nodeType":"ElementaryTypeName","src":"2377:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2376:6:5"},"scope":819,"src":"2310:73:5","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":807,"nodeType":"StructuredDocumentation","src":"2389:297:5","text":" @dev Moves a `value` amount of tokens from `from` to `to` using the\n allowance mechanism. `value` 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":818,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"2700:12:5","nodeType":"FunctionDefinition","parameters":{"id":814,"nodeType":"ParameterList","parameters":[{"constant":false,"id":809,"mutability":"mutable","name":"from","nameLocation":"2721:4:5","nodeType":"VariableDeclaration","scope":818,"src":"2713:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":808,"name":"address","nodeType":"ElementaryTypeName","src":"2713:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":811,"mutability":"mutable","name":"to","nameLocation":"2735:2:5","nodeType":"VariableDeclaration","scope":818,"src":"2727:10:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":810,"name":"address","nodeType":"ElementaryTypeName","src":"2727:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":813,"mutability":"mutable","name":"value","nameLocation":"2747:5:5","nodeType":"VariableDeclaration","scope":818,"src":"2739:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":812,"name":"uint256","nodeType":"ElementaryTypeName","src":"2739:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2712:41:5"},"returnParameters":{"id":817,"nodeType":"ParameterList","parameters":[{"constant":false,"id":816,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":818,"src":"2772:4:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":815,"name":"bool","nodeType":"ElementaryTypeName","src":"2772:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2771:6:5"},"scope":819,"src":"2691:87:5","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":820,"src":"205:2575:5","usedErrors":[],"usedEvents":[753,762]}],"src":"106:2675:5"},"id":5},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","exportedSymbols":{"IERC20":[819],"IERC20Metadata":[845]},"id":846,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":821,"literals":["solidity",">=","0.6",".2"],"nodeType":"PragmaDirective","src":"125:24:6"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../IERC20.sol","id":823,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":846,"sourceUnit":820,"src":"151:37:6","symbolAliases":[{"foreign":{"id":822,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":819,"src":"159:6:6","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":825,"name":"IERC20","nameLocations":["306:6:6"],"nodeType":"IdentifierPath","referencedDeclaration":819,"src":"306:6:6"},"id":826,"nodeType":"InheritanceSpecifier","src":"306:6:6"}],"canonicalName":"IERC20Metadata","contractDependencies":[],"contractKind":"interface","documentation":{"id":824,"nodeType":"StructuredDocumentation","src":"190:87:6","text":" @dev Interface for the optional metadata functions from the ERC-20 standard."},"fullyImplemented":false,"id":845,"linearizedBaseContracts":[845,819],"name":"IERC20Metadata","nameLocation":"288:14:6","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":827,"nodeType":"StructuredDocumentation","src":"319:54:6","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":832,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"387:4:6","nodeType":"FunctionDefinition","parameters":{"id":828,"nodeType":"ParameterList","parameters":[],"src":"391:2:6"},"returnParameters":{"id":831,"nodeType":"ParameterList","parameters":[{"constant":false,"id":830,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":832,"src":"417:13:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":829,"name":"string","nodeType":"ElementaryTypeName","src":"417:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"416:15:6"},"scope":845,"src":"378:54:6","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":833,"nodeType":"StructuredDocumentation","src":"438:56:6","text":" @dev Returns the symbol of the token."},"functionSelector":"95d89b41","id":838,"implemented":false,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"508:6:6","nodeType":"FunctionDefinition","parameters":{"id":834,"nodeType":"ParameterList","parameters":[],"src":"514:2:6"},"returnParameters":{"id":837,"nodeType":"ParameterList","parameters":[{"constant":false,"id":836,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":838,"src":"540:13:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":835,"name":"string","nodeType":"ElementaryTypeName","src":"540:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"539:15:6"},"scope":845,"src":"499:56:6","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":839,"nodeType":"StructuredDocumentation","src":"561:65:6","text":" @dev Returns the decimals places of the token."},"functionSelector":"313ce567","id":844,"implemented":false,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"640:8:6","nodeType":"FunctionDefinition","parameters":{"id":840,"nodeType":"ParameterList","parameters":[],"src":"648:2:6"},"returnParameters":{"id":843,"nodeType":"ParameterList","parameters":[{"constant":false,"id":842,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":844,"src":"674:5:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":841,"name":"uint8","nodeType":"ElementaryTypeName","src":"674:5:6","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"673:7:6"},"scope":845,"src":"631:50:6","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":846,"src":"278:405:6","usedErrors":[],"usedEvents":[753,762]}],"src":"125:559:6"},"id":6},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","exportedSymbols":{"IERC20Permit":[881]},"id":882,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":847,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"123:25:7"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20Permit","contractDependencies":[],"contractKind":"interface","documentation":{"id":848,"nodeType":"StructuredDocumentation","src":"150:1965:7","text":" @dev Interface of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in\n https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].\n Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by\n presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\n need to send a transaction, and thus is not required to hold Ether at all.\n ==== Security Considerations\n There are two important considerations concerning the use of `permit`. The first is that a valid permit signature\n expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be\n considered as an intention to spend the allowance in any specific way. The second is that because permits have\n built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should\n take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be\n generally recommended is:\n ```solidity\n function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {\n try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}\n doThing(..., value);\n }\n function doThing(..., uint256 value) public {\n token.safeTransferFrom(msg.sender, address(this), value);\n ...\n }\n ```\n Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of\n `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also\n {SafeERC20-safeTransferFrom}).\n Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so\n contracts should have entry points that don't rely on permit."},"fullyImplemented":false,"id":881,"linearizedBaseContracts":[881],"name":"IERC20Permit","nameLocation":"2126:12:7","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":849,"nodeType":"StructuredDocumentation","src":"2145:850:7","text":" @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\n given ``owner``'s signed approval.\n IMPORTANT: The same issues {IERC20-approve} has related to transaction\n ordering also apply here.\n Emits an {Approval} event.\n Requirements:\n - `spender` cannot be the zero address.\n - `deadline` must be a timestamp in the future.\n - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\n over the EIP712-formatted function arguments.\n - the signature must use ``owner``'s current nonce (see {nonces}).\n For more information on the signature format, see the\n https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\n section].\n CAUTION: See Security Considerations above."},"functionSelector":"d505accf","id":866,"implemented":false,"kind":"function","modifiers":[],"name":"permit","nameLocation":"3009:6:7","nodeType":"FunctionDefinition","parameters":{"id":864,"nodeType":"ParameterList","parameters":[{"constant":false,"id":851,"mutability":"mutable","name":"owner","nameLocation":"3033:5:7","nodeType":"VariableDeclaration","scope":866,"src":"3025:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":850,"name":"address","nodeType":"ElementaryTypeName","src":"3025:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":853,"mutability":"mutable","name":"spender","nameLocation":"3056:7:7","nodeType":"VariableDeclaration","scope":866,"src":"3048:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":852,"name":"address","nodeType":"ElementaryTypeName","src":"3048:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":855,"mutability":"mutable","name":"value","nameLocation":"3081:5:7","nodeType":"VariableDeclaration","scope":866,"src":"3073:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":854,"name":"uint256","nodeType":"ElementaryTypeName","src":"3073:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":857,"mutability":"mutable","name":"deadline","nameLocation":"3104:8:7","nodeType":"VariableDeclaration","scope":866,"src":"3096:16:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":856,"name":"uint256","nodeType":"ElementaryTypeName","src":"3096:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":859,"mutability":"mutable","name":"v","nameLocation":"3128:1:7","nodeType":"VariableDeclaration","scope":866,"src":"3122:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":858,"name":"uint8","nodeType":"ElementaryTypeName","src":"3122:5:7","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":861,"mutability":"mutable","name":"r","nameLocation":"3147:1:7","nodeType":"VariableDeclaration","scope":866,"src":"3139:9:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":860,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3139:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":863,"mutability":"mutable","name":"s","nameLocation":"3166:1:7","nodeType":"VariableDeclaration","scope":866,"src":"3158:9:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":862,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3158:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3015:158:7"},"returnParameters":{"id":865,"nodeType":"ParameterList","parameters":[],"src":"3182:0:7"},"scope":881,"src":"3000:183:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":867,"nodeType":"StructuredDocumentation","src":"3189:294:7","text":" @dev Returns the current nonce for `owner`. This value must be\n included whenever a signature is generated for {permit}.\n Every successful call to {permit} increases ``owner``'s nonce by one. This\n prevents a signature from being used multiple times."},"functionSelector":"7ecebe00","id":874,"implemented":false,"kind":"function","modifiers":[],"name":"nonces","nameLocation":"3497:6:7","nodeType":"FunctionDefinition","parameters":{"id":870,"nodeType":"ParameterList","parameters":[{"constant":false,"id":869,"mutability":"mutable","name":"owner","nameLocation":"3512:5:7","nodeType":"VariableDeclaration","scope":874,"src":"3504:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":868,"name":"address","nodeType":"ElementaryTypeName","src":"3504:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3503:15:7"},"returnParameters":{"id":873,"nodeType":"ParameterList","parameters":[{"constant":false,"id":872,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":874,"src":"3542:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":871,"name":"uint256","nodeType":"ElementaryTypeName","src":"3542:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3541:9:7"},"scope":881,"src":"3488:63:7","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":875,"nodeType":"StructuredDocumentation","src":"3557:128:7","text":" @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}."},"functionSelector":"3644e515","id":880,"implemented":false,"kind":"function","modifiers":[],"name":"DOMAIN_SEPARATOR","nameLocation":"3752:16:7","nodeType":"FunctionDefinition","parameters":{"id":876,"nodeType":"ParameterList","parameters":[],"src":"3768:2:7"},"returnParameters":{"id":879,"nodeType":"ParameterList","parameters":[{"constant":false,"id":878,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":880,"src":"3794:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":877,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3794:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3793:9:7"},"scope":881,"src":"3743:60:7","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":882,"src":"2116:1689:7","usedErrors":[],"usedEvents":[]}],"src":"123:3683:7"},"id":7},"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","exportedSymbols":{"IERC1363":[81],"IERC20":[819],"SafeERC20":[1345]},"id":1346,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":883,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"115:24:8"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../IERC20.sol","id":885,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1346,"sourceUnit":820,"src":"141:37:8","symbolAliases":[{"foreign":{"id":884,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":819,"src":"149:6:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1363.sol","file":"../../../interfaces/IERC1363.sol","id":887,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1346,"sourceUnit":82,"src":"179:58:8","symbolAliases":[{"foreign":{"id":886,"name":"IERC1363","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":81,"src":"187:8:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"SafeERC20","contractDependencies":[],"contractKind":"library","documentation":{"id":888,"nodeType":"StructuredDocumentation","src":"239:458:8","text":" @title SafeERC20\n @dev Wrappers around ERC-20 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":1345,"linearizedBaseContracts":[1345],"name":"SafeERC20","nameLocation":"706:9:8","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":889,"nodeType":"StructuredDocumentation","src":"722:65:8","text":" @dev An operation with an ERC-20 token failed."},"errorSelector":"5274afe7","id":893,"name":"SafeERC20FailedOperation","nameLocation":"798:24:8","nodeType":"ErrorDefinition","parameters":{"id":892,"nodeType":"ParameterList","parameters":[{"constant":false,"id":891,"mutability":"mutable","name":"token","nameLocation":"831:5:8","nodeType":"VariableDeclaration","scope":893,"src":"823:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":890,"name":"address","nodeType":"ElementaryTypeName","src":"823:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"822:15:8"},"src":"792:46:8"},{"documentation":{"id":894,"nodeType":"StructuredDocumentation","src":"844:71:8","text":" @dev Indicates a failed `decreaseAllowance` request."},"errorSelector":"e570110f","id":902,"name":"SafeERC20FailedDecreaseAllowance","nameLocation":"926:32:8","nodeType":"ErrorDefinition","parameters":{"id":901,"nodeType":"ParameterList","parameters":[{"constant":false,"id":896,"mutability":"mutable","name":"spender","nameLocation":"967:7:8","nodeType":"VariableDeclaration","scope":902,"src":"959:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":895,"name":"address","nodeType":"ElementaryTypeName","src":"959:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":898,"mutability":"mutable","name":"currentAllowance","nameLocation":"984:16:8","nodeType":"VariableDeclaration","scope":902,"src":"976:24:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":897,"name":"uint256","nodeType":"ElementaryTypeName","src":"976:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":900,"mutability":"mutable","name":"requestedDecrease","nameLocation":"1010:17:8","nodeType":"VariableDeclaration","scope":902,"src":"1002:25:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":899,"name":"uint256","nodeType":"ElementaryTypeName","src":"1002:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"958:70:8"},"src":"920:109:8"},{"body":{"id":925,"nodeType":"Block","src":"1291:88:8","statements":[{"expression":{"arguments":[{"id":914,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":906,"src":"1321:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},{"arguments":[{"expression":{"id":917,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":906,"src":"1343:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},"id":918,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1349:8:8","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":786,"src":"1343:14:8","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},{"components":[{"id":919,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":908,"src":"1360:2:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":920,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":910,"src":"1364:5:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":921,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1359:11:8","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_uint256_$","typeString":"tuple(address,uint256)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"},{"typeIdentifier":"t_tuple$_t_address_$_t_uint256_$","typeString":"tuple(address,uint256)"}],"expression":{"id":915,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1328:3:8","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":916,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1332:10:8","memberName":"encodeCall","nodeType":"MemberAccess","src":"1328:14:8","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":922,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1328:43:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":913,"name":"_callOptionalReturn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1303,"src":"1301:19:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$819_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (contract IERC20,bytes memory)"}},"id":923,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1301:71:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":924,"nodeType":"ExpressionStatement","src":"1301:71:8"}]},"documentation":{"id":903,"nodeType":"StructuredDocumentation","src":"1035:179:8","text":" @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,\n non-reverting calls are assumed to be successful."},"id":926,"implemented":true,"kind":"function","modifiers":[],"name":"safeTransfer","nameLocation":"1228:12:8","nodeType":"FunctionDefinition","parameters":{"id":911,"nodeType":"ParameterList","parameters":[{"constant":false,"id":906,"mutability":"mutable","name":"token","nameLocation":"1248:5:8","nodeType":"VariableDeclaration","scope":926,"src":"1241:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"},"typeName":{"id":905,"nodeType":"UserDefinedTypeName","pathNode":{"id":904,"name":"IERC20","nameLocations":["1241:6:8"],"nodeType":"IdentifierPath","referencedDeclaration":819,"src":"1241:6:8"},"referencedDeclaration":819,"src":"1241:6:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":908,"mutability":"mutable","name":"to","nameLocation":"1263:2:8","nodeType":"VariableDeclaration","scope":926,"src":"1255:10:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":907,"name":"address","nodeType":"ElementaryTypeName","src":"1255:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":910,"mutability":"mutable","name":"value","nameLocation":"1275:5:8","nodeType":"VariableDeclaration","scope":926,"src":"1267:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":909,"name":"uint256","nodeType":"ElementaryTypeName","src":"1267:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1240:41:8"},"returnParameters":{"id":912,"nodeType":"ParameterList","parameters":[],"src":"1291:0:8"},"scope":1345,"src":"1219:160:8","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":952,"nodeType":"Block","src":"1708:98:8","statements":[{"expression":{"arguments":[{"id":940,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":930,"src":"1738:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},{"arguments":[{"expression":{"id":943,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":930,"src":"1760:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},"id":944,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1766:12:8","memberName":"transferFrom","nodeType":"MemberAccess","referencedDeclaration":818,"src":"1760:18:8","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,address,uint256) external returns (bool)"}},{"components":[{"id":945,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":932,"src":"1781:4:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":946,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":934,"src":"1787:2:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":947,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":936,"src":"1791:5:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":948,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1780:17:8","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_address_$_t_uint256_$","typeString":"tuple(address,address,uint256)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,address,uint256) external returns (bool)"},{"typeIdentifier":"t_tuple$_t_address_$_t_address_$_t_uint256_$","typeString":"tuple(address,address,uint256)"}],"expression":{"id":941,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1745:3:8","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":942,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1749:10:8","memberName":"encodeCall","nodeType":"MemberAccess","src":"1745:14:8","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":949,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1745:53:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":939,"name":"_callOptionalReturn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1303,"src":"1718:19:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$819_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (contract IERC20,bytes memory)"}},"id":950,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1718:81:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":951,"nodeType":"ExpressionStatement","src":"1718:81:8"}]},"documentation":{"id":927,"nodeType":"StructuredDocumentation","src":"1385:228:8","text":" @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the\n calling contract. If `token` returns no value, non-reverting calls are assumed to be successful."},"id":953,"implemented":true,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"1627:16:8","nodeType":"FunctionDefinition","parameters":{"id":937,"nodeType":"ParameterList","parameters":[{"constant":false,"id":930,"mutability":"mutable","name":"token","nameLocation":"1651:5:8","nodeType":"VariableDeclaration","scope":953,"src":"1644:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"},"typeName":{"id":929,"nodeType":"UserDefinedTypeName","pathNode":{"id":928,"name":"IERC20","nameLocations":["1644:6:8"],"nodeType":"IdentifierPath","referencedDeclaration":819,"src":"1644:6:8"},"referencedDeclaration":819,"src":"1644:6:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":932,"mutability":"mutable","name":"from","nameLocation":"1666:4:8","nodeType":"VariableDeclaration","scope":953,"src":"1658:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":931,"name":"address","nodeType":"ElementaryTypeName","src":"1658:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":934,"mutability":"mutable","name":"to","nameLocation":"1680:2:8","nodeType":"VariableDeclaration","scope":953,"src":"1672:10:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":933,"name":"address","nodeType":"ElementaryTypeName","src":"1672:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":936,"mutability":"mutable","name":"value","nameLocation":"1692:5:8","nodeType":"VariableDeclaration","scope":953,"src":"1684:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":935,"name":"uint256","nodeType":"ElementaryTypeName","src":"1684:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1643:55:8"},"returnParameters":{"id":938,"nodeType":"ParameterList","parameters":[],"src":"1708:0:8"},"scope":1345,"src":"1618:188:8","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":978,"nodeType":"Block","src":"2033:99:8","statements":[{"expression":{"arguments":[{"id":967,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":957,"src":"2074:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},{"arguments":[{"expression":{"id":970,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":957,"src":"2096:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},"id":971,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2102:8:8","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":786,"src":"2096:14:8","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},{"components":[{"id":972,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":959,"src":"2113:2:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":973,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":961,"src":"2117:5:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":974,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2112:11:8","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_uint256_$","typeString":"tuple(address,uint256)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"},{"typeIdentifier":"t_tuple$_t_address_$_t_uint256_$","typeString":"tuple(address,uint256)"}],"expression":{"id":968,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2081:3:8","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":969,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2085:10:8","memberName":"encodeCall","nodeType":"MemberAccess","src":"2081:14:8","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":975,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2081:43:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":966,"name":"_callOptionalReturnBool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1344,"src":"2050:23:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$819_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (contract IERC20,bytes memory) returns (bool)"}},"id":976,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2050:75:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":965,"id":977,"nodeType":"Return","src":"2043:82:8"}]},"documentation":{"id":954,"nodeType":"StructuredDocumentation","src":"1812:126:8","text":" @dev Variant of {safeTransfer} that returns a bool instead of reverting if the operation is not successful."},"id":979,"implemented":true,"kind":"function","modifiers":[],"name":"trySafeTransfer","nameLocation":"1952:15:8","nodeType":"FunctionDefinition","parameters":{"id":962,"nodeType":"ParameterList","parameters":[{"constant":false,"id":957,"mutability":"mutable","name":"token","nameLocation":"1975:5:8","nodeType":"VariableDeclaration","scope":979,"src":"1968:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"},"typeName":{"id":956,"nodeType":"UserDefinedTypeName","pathNode":{"id":955,"name":"IERC20","nameLocations":["1968:6:8"],"nodeType":"IdentifierPath","referencedDeclaration":819,"src":"1968:6:8"},"referencedDeclaration":819,"src":"1968:6:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":959,"mutability":"mutable","name":"to","nameLocation":"1990:2:8","nodeType":"VariableDeclaration","scope":979,"src":"1982:10:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":958,"name":"address","nodeType":"ElementaryTypeName","src":"1982:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":961,"mutability":"mutable","name":"value","nameLocation":"2002:5:8","nodeType":"VariableDeclaration","scope":979,"src":"1994:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":960,"name":"uint256","nodeType":"ElementaryTypeName","src":"1994:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1967:41:8"},"returnParameters":{"id":965,"nodeType":"ParameterList","parameters":[{"constant":false,"id":964,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":979,"src":"2027:4:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":963,"name":"bool","nodeType":"ElementaryTypeName","src":"2027:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2026:6:8"},"scope":1345,"src":"1943:189:8","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1007,"nodeType":"Block","src":"2381:109:8","statements":[{"expression":{"arguments":[{"id":995,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":983,"src":"2422:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},{"arguments":[{"expression":{"id":998,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":983,"src":"2444:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},"id":999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2450:12:8","memberName":"transferFrom","nodeType":"MemberAccess","referencedDeclaration":818,"src":"2444:18:8","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,address,uint256) external returns (bool)"}},{"components":[{"id":1000,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":985,"src":"2465:4:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1001,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":987,"src":"2471:2:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1002,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":989,"src":"2475:5:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1003,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2464:17:8","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_address_$_t_uint256_$","typeString":"tuple(address,address,uint256)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,address,uint256) external returns (bool)"},{"typeIdentifier":"t_tuple$_t_address_$_t_address_$_t_uint256_$","typeString":"tuple(address,address,uint256)"}],"expression":{"id":996,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2429:3:8","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":997,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2433:10:8","memberName":"encodeCall","nodeType":"MemberAccess","src":"2429:14:8","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1004,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2429:53:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":994,"name":"_callOptionalReturnBool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1344,"src":"2398:23:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$819_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (contract IERC20,bytes memory) returns (bool)"}},"id":1005,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2398:85:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":993,"id":1006,"nodeType":"Return","src":"2391:92:8"}]},"documentation":{"id":980,"nodeType":"StructuredDocumentation","src":"2138:130:8","text":" @dev Variant of {safeTransferFrom} that returns a bool instead of reverting if the operation is not successful."},"id":1008,"implemented":true,"kind":"function","modifiers":[],"name":"trySafeTransferFrom","nameLocation":"2282:19:8","nodeType":"FunctionDefinition","parameters":{"id":990,"nodeType":"ParameterList","parameters":[{"constant":false,"id":983,"mutability":"mutable","name":"token","nameLocation":"2309:5:8","nodeType":"VariableDeclaration","scope":1008,"src":"2302:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"},"typeName":{"id":982,"nodeType":"UserDefinedTypeName","pathNode":{"id":981,"name":"IERC20","nameLocations":["2302:6:8"],"nodeType":"IdentifierPath","referencedDeclaration":819,"src":"2302:6:8"},"referencedDeclaration":819,"src":"2302:6:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":985,"mutability":"mutable","name":"from","nameLocation":"2324:4:8","nodeType":"VariableDeclaration","scope":1008,"src":"2316:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":984,"name":"address","nodeType":"ElementaryTypeName","src":"2316:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":987,"mutability":"mutable","name":"to","nameLocation":"2338:2:8","nodeType":"VariableDeclaration","scope":1008,"src":"2330:10:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":986,"name":"address","nodeType":"ElementaryTypeName","src":"2330:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":989,"mutability":"mutable","name":"value","nameLocation":"2350:5:8","nodeType":"VariableDeclaration","scope":1008,"src":"2342:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":988,"name":"uint256","nodeType":"ElementaryTypeName","src":"2342:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2301:55:8"},"returnParameters":{"id":993,"nodeType":"ParameterList","parameters":[{"constant":false,"id":992,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1008,"src":"2375:4:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":991,"name":"bool","nodeType":"ElementaryTypeName","src":"2375:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2374:6:8"},"scope":1345,"src":"2273:217:8","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1038,"nodeType":"Block","src":"3232:139:8","statements":[{"assignments":[1020],"declarations":[{"constant":false,"id":1020,"mutability":"mutable","name":"oldAllowance","nameLocation":"3250:12:8","nodeType":"VariableDeclaration","scope":1038,"src":"3242:20:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1019,"name":"uint256","nodeType":"ElementaryTypeName","src":"3242:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1029,"initialValue":{"arguments":[{"arguments":[{"id":1025,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3289:4:8","typeDescriptions":{"typeIdentifier":"t_contract$_SafeERC20_$1345","typeString":"library SafeERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_SafeERC20_$1345","typeString":"library SafeERC20"}],"id":1024,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3281:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1023,"name":"address","nodeType":"ElementaryTypeName","src":"3281:7:8","typeDescriptions":{}}},"id":1026,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3281:13:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1027,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1014,"src":"3296:7:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":1021,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1012,"src":"3265:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},"id":1022,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3271:9:8","memberName":"allowance","nodeType":"MemberAccess","referencedDeclaration":796,"src":"3265:15:8","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view external returns (uint256)"}},"id":1028,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3265:39:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3242:62:8"},{"expression":{"arguments":[{"id":1031,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1012,"src":"3327:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},{"id":1032,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1014,"src":"3334:7:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1035,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1033,"name":"oldAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1020,"src":"3343:12:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":1034,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1016,"src":"3358:5:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3343:20:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1030,"name":"forceApprove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1129,"src":"3314:12:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$819_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":1036,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3314:50:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1037,"nodeType":"ExpressionStatement","src":"3314:50:8"}]},"documentation":{"id":1009,"nodeType":"StructuredDocumentation","src":"2496:645:8","text":" @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\n non-reverting calls are assumed to be successful.\n IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the \"client\"\n smart contract uses ERC-7674 to set temporary allowances, then the \"client\" smart contract should avoid using\n this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract\n that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior."},"id":1039,"implemented":true,"kind":"function","modifiers":[],"name":"safeIncreaseAllowance","nameLocation":"3155:21:8","nodeType":"FunctionDefinition","parameters":{"id":1017,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1012,"mutability":"mutable","name":"token","nameLocation":"3184:5:8","nodeType":"VariableDeclaration","scope":1039,"src":"3177:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"},"typeName":{"id":1011,"nodeType":"UserDefinedTypeName","pathNode":{"id":1010,"name":"IERC20","nameLocations":["3177:6:8"],"nodeType":"IdentifierPath","referencedDeclaration":819,"src":"3177:6:8"},"referencedDeclaration":819,"src":"3177:6:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":1014,"mutability":"mutable","name":"spender","nameLocation":"3199:7:8","nodeType":"VariableDeclaration","scope":1039,"src":"3191:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1013,"name":"address","nodeType":"ElementaryTypeName","src":"3191:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1016,"mutability":"mutable","name":"value","nameLocation":"3216:5:8","nodeType":"VariableDeclaration","scope":1039,"src":"3208:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1015,"name":"uint256","nodeType":"ElementaryTypeName","src":"3208:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3176:46:8"},"returnParameters":{"id":1018,"nodeType":"ParameterList","parameters":[],"src":"3232:0:8"},"scope":1345,"src":"3146:225:8","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1081,"nodeType":"Block","src":"4137:370:8","statements":[{"id":1080,"nodeType":"UncheckedBlock","src":"4147:354:8","statements":[{"assignments":[1051],"declarations":[{"constant":false,"id":1051,"mutability":"mutable","name":"currentAllowance","nameLocation":"4179:16:8","nodeType":"VariableDeclaration","scope":1080,"src":"4171:24:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1050,"name":"uint256","nodeType":"ElementaryTypeName","src":"4171:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1060,"initialValue":{"arguments":[{"arguments":[{"id":1056,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4222:4:8","typeDescriptions":{"typeIdentifier":"t_contract$_SafeERC20_$1345","typeString":"library SafeERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_SafeERC20_$1345","typeString":"library SafeERC20"}],"id":1055,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4214:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1054,"name":"address","nodeType":"ElementaryTypeName","src":"4214:7:8","typeDescriptions":{}}},"id":1057,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4214:13:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1058,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1045,"src":"4229:7:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":1052,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1043,"src":"4198:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},"id":1053,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4204:9:8","memberName":"allowance","nodeType":"MemberAccess","referencedDeclaration":796,"src":"4198:15:8","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view external returns (uint256)"}},"id":1059,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4198:39:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"4171:66:8"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1063,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1061,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1051,"src":"4255:16:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":1062,"name":"requestedDecrease","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1047,"src":"4274:17:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4255:36:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1071,"nodeType":"IfStatement","src":"4251:160:8","trueBody":{"id":1070,"nodeType":"Block","src":"4293:118:8","statements":[{"errorCall":{"arguments":[{"id":1065,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1045,"src":"4351:7:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1066,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1051,"src":"4360:16:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1067,"name":"requestedDecrease","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1047,"src":"4378:17:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1064,"name":"SafeERC20FailedDecreaseAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":902,"src":"4318:32:8","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256) pure"}},"id":1068,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4318:78:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1069,"nodeType":"RevertStatement","src":"4311:85:8"}]}},{"expression":{"arguments":[{"id":1073,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1043,"src":"4437:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},{"id":1074,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1045,"src":"4444:7:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1077,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1075,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1051,"src":"4453:16:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1076,"name":"requestedDecrease","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1047,"src":"4472:17:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4453:36:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1072,"name":"forceApprove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1129,"src":"4424:12:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$819_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":1078,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4424:66:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1079,"nodeType":"ExpressionStatement","src":"4424:66:8"}]}]},"documentation":{"id":1040,"nodeType":"StructuredDocumentation","src":"3377:657:8","text":" @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no\n value, non-reverting calls are assumed to be successful.\n IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the \"client\"\n smart contract uses ERC-7674 to set temporary allowances, then the \"client\" smart contract should avoid using\n this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract\n that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior."},"id":1082,"implemented":true,"kind":"function","modifiers":[],"name":"safeDecreaseAllowance","nameLocation":"4048:21:8","nodeType":"FunctionDefinition","parameters":{"id":1048,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1043,"mutability":"mutable","name":"token","nameLocation":"4077:5:8","nodeType":"VariableDeclaration","scope":1082,"src":"4070:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"},"typeName":{"id":1042,"nodeType":"UserDefinedTypeName","pathNode":{"id":1041,"name":"IERC20","nameLocations":["4070:6:8"],"nodeType":"IdentifierPath","referencedDeclaration":819,"src":"4070:6:8"},"referencedDeclaration":819,"src":"4070:6:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":1045,"mutability":"mutable","name":"spender","nameLocation":"4092:7:8","nodeType":"VariableDeclaration","scope":1082,"src":"4084:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1044,"name":"address","nodeType":"ElementaryTypeName","src":"4084:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1047,"mutability":"mutable","name":"requestedDecrease","nameLocation":"4109:17:8","nodeType":"VariableDeclaration","scope":1082,"src":"4101:25:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1046,"name":"uint256","nodeType":"ElementaryTypeName","src":"4101:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4069:58:8"},"returnParameters":{"id":1049,"nodeType":"ParameterList","parameters":[],"src":"4137:0:8"},"scope":1345,"src":"4039:468:8","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1128,"nodeType":"Block","src":"5161:303:8","statements":[{"assignments":[1094],"declarations":[{"constant":false,"id":1094,"mutability":"mutable","name":"approvalCall","nameLocation":"5184:12:8","nodeType":"VariableDeclaration","scope":1128,"src":"5171:25:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1093,"name":"bytes","nodeType":"ElementaryTypeName","src":"5171:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":1103,"initialValue":{"arguments":[{"expression":{"id":1097,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1086,"src":"5214:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},"id":1098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5220:7:8","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":806,"src":"5214:13:8","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},{"components":[{"id":1099,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1088,"src":"5230:7:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1100,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1090,"src":"5239:5:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1101,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5229:16:8","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_uint256_$","typeString":"tuple(address,uint256)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"},{"typeIdentifier":"t_tuple$_t_address_$_t_uint256_$","typeString":"tuple(address,uint256)"}],"expression":{"id":1095,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"5199:3:8","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1096,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5203:10:8","memberName":"encodeCall","nodeType":"MemberAccess","src":"5199:14:8","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1102,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5199:47:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"5171:75:8"},{"condition":{"id":1108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5261:45:8","subExpression":{"arguments":[{"id":1105,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1086,"src":"5286:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},{"id":1106,"name":"approvalCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1094,"src":"5293:12:8","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1104,"name":"_callOptionalReturnBool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1344,"src":"5262:23:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$819_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (contract IERC20,bytes memory) returns (bool)"}},"id":1107,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5262:44:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1127,"nodeType":"IfStatement","src":"5257:201:8","trueBody":{"id":1126,"nodeType":"Block","src":"5308:150:8","statements":[{"expression":{"arguments":[{"id":1110,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1086,"src":"5342:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},{"arguments":[{"expression":{"id":1113,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1086,"src":"5364:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},"id":1114,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5370:7:8","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":806,"src":"5364:13:8","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},{"components":[{"id":1115,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1088,"src":"5380:7:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":1116,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5389:1:8","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":1117,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5379:12:8","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_rational_0_by_1_$","typeString":"tuple(address,int_const 0)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"},{"typeIdentifier":"t_tuple$_t_address_$_t_rational_0_by_1_$","typeString":"tuple(address,int_const 0)"}],"expression":{"id":1111,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"5349:3:8","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1112,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5353:10:8","memberName":"encodeCall","nodeType":"MemberAccess","src":"5349:14:8","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1118,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5349:43:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1109,"name":"_callOptionalReturn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1303,"src":"5322:19:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$819_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (contract IERC20,bytes memory)"}},"id":1119,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5322:71:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1120,"nodeType":"ExpressionStatement","src":"5322:71:8"},{"expression":{"arguments":[{"id":1122,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1086,"src":"5427:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},{"id":1123,"name":"approvalCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1094,"src":"5434:12:8","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1121,"name":"_callOptionalReturn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1303,"src":"5407:19:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$819_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (contract IERC20,bytes memory)"}},"id":1124,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5407:40:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1125,"nodeType":"ExpressionStatement","src":"5407:40:8"}]}}]},"documentation":{"id":1083,"nodeType":"StructuredDocumentation","src":"4513:566:8","text":" @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,\n non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval\n to be set to zero before setting it to a non-zero value, such as USDT.\n NOTE: If the token implements ERC-7674, this function will not modify any temporary allowance. This function\n only sets the \"standard\" allowance. Any temporary allowance will remain active, in addition to the value being\n set here."},"id":1129,"implemented":true,"kind":"function","modifiers":[],"name":"forceApprove","nameLocation":"5093:12:8","nodeType":"FunctionDefinition","parameters":{"id":1091,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1086,"mutability":"mutable","name":"token","nameLocation":"5113:5:8","nodeType":"VariableDeclaration","scope":1129,"src":"5106:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"},"typeName":{"id":1085,"nodeType":"UserDefinedTypeName","pathNode":{"id":1084,"name":"IERC20","nameLocations":["5106:6:8"],"nodeType":"IdentifierPath","referencedDeclaration":819,"src":"5106:6:8"},"referencedDeclaration":819,"src":"5106:6:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":1088,"mutability":"mutable","name":"spender","nameLocation":"5128:7:8","nodeType":"VariableDeclaration","scope":1129,"src":"5120:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1087,"name":"address","nodeType":"ElementaryTypeName","src":"5120:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1090,"mutability":"mutable","name":"value","nameLocation":"5145:5:8","nodeType":"VariableDeclaration","scope":1129,"src":"5137:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1089,"name":"uint256","nodeType":"ElementaryTypeName","src":"5137:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5105:46:8"},"returnParameters":{"id":1092,"nodeType":"ParameterList","parameters":[],"src":"5161:0:8"},"scope":1345,"src":"5084:380:8","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1171,"nodeType":"Block","src":"5911:219:8","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":1142,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1135,"src":"5925:2:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1143,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5928:4:8","memberName":"code","nodeType":"MemberAccess","src":"5925:7:8","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1144,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5933:6:8","memberName":"length","nodeType":"MemberAccess","src":"5925:14:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1145,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5943:1:8","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5925:19:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":1160,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6011:39:8","subExpression":{"arguments":[{"id":1156,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1135,"src":"6034:2:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1157,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1137,"src":"6038:5:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1158,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1139,"src":"6045:4:8","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":1154,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1133,"src":"6012:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$81","typeString":"contract IERC1363"}},"id":1155,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6018:15:8","memberName":"transferAndCall","nodeType":"MemberAccess","referencedDeclaration":32,"src":"6012:21:8","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,uint256,bytes memory) external returns (bool)"}},"id":1159,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6012:38:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1169,"nodeType":"IfStatement","src":"6007:117:8","trueBody":{"id":1168,"nodeType":"Block","src":"6052:72:8","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":1164,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1133,"src":"6106:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$81","typeString":"contract IERC1363"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$81","typeString":"contract IERC1363"}],"id":1163,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6098:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1162,"name":"address","nodeType":"ElementaryTypeName","src":"6098:7:8","typeDescriptions":{}}},"id":1165,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6098:14:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1161,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":893,"src":"6073:24:8","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":1166,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6073:40:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1167,"nodeType":"RevertStatement","src":"6066:47:8"}]}},"id":1170,"nodeType":"IfStatement","src":"5921:203:8","trueBody":{"id":1153,"nodeType":"Block","src":"5946:55:8","statements":[{"expression":{"arguments":[{"id":1148,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1133,"src":"5973:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$81","typeString":"contract IERC1363"}},{"id":1149,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1135,"src":"5980:2:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1150,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1137,"src":"5984:5:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$81","typeString":"contract IERC1363"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1147,"name":"safeTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":926,"src":"5960:12:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$819_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":1151,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5960:30:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1152,"nodeType":"ExpressionStatement","src":"5960:30:8"}]}}]},"documentation":{"id":1130,"nodeType":"StructuredDocumentation","src":"5470:333:8","text":" @dev Performs an {ERC1363} transferAndCall, with a fallback to the simple {ERC20} transfer if the target has no\n code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when\n targeting contracts.\n Reverts if the returned value is other than `true`."},"id":1172,"implemented":true,"kind":"function","modifiers":[],"name":"transferAndCallRelaxed","nameLocation":"5817:22:8","nodeType":"FunctionDefinition","parameters":{"id":1140,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1133,"mutability":"mutable","name":"token","nameLocation":"5849:5:8","nodeType":"VariableDeclaration","scope":1172,"src":"5840:14:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$81","typeString":"contract IERC1363"},"typeName":{"id":1132,"nodeType":"UserDefinedTypeName","pathNode":{"id":1131,"name":"IERC1363","nameLocations":["5840:8:8"],"nodeType":"IdentifierPath","referencedDeclaration":81,"src":"5840:8:8"},"referencedDeclaration":81,"src":"5840:8:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$81","typeString":"contract IERC1363"}},"visibility":"internal"},{"constant":false,"id":1135,"mutability":"mutable","name":"to","nameLocation":"5864:2:8","nodeType":"VariableDeclaration","scope":1172,"src":"5856:10:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1134,"name":"address","nodeType":"ElementaryTypeName","src":"5856:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1137,"mutability":"mutable","name":"value","nameLocation":"5876:5:8","nodeType":"VariableDeclaration","scope":1172,"src":"5868:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1136,"name":"uint256","nodeType":"ElementaryTypeName","src":"5868:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1139,"mutability":"mutable","name":"data","nameLocation":"5896:4:8","nodeType":"VariableDeclaration","scope":1172,"src":"5883:17:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1138,"name":"bytes","nodeType":"ElementaryTypeName","src":"5883:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5839:62:8"},"returnParameters":{"id":1141,"nodeType":"ParameterList","parameters":[],"src":"5911:0:8"},"scope":1345,"src":"5808:322:8","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1218,"nodeType":"Block","src":"6649:239:8","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1191,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":1187,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1180,"src":"6663:2:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1188,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6666:4:8","memberName":"code","nodeType":"MemberAccess","src":"6663:7:8","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1189,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6671:6:8","memberName":"length","nodeType":"MemberAccess","src":"6663:14:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1190,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6681:1:8","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6663:19:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":1207,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6759:49:8","subExpression":{"arguments":[{"id":1202,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1178,"src":"6786:4:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1203,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1180,"src":"6792:2:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1204,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1182,"src":"6796:5:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1205,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1184,"src":"6803:4:8","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":1200,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1176,"src":"6760:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$81","typeString":"contract IERC1363"}},"id":1201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6766:19:8","memberName":"transferFromAndCall","nodeType":"MemberAccess","referencedDeclaration":58,"src":"6760:25:8","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,address,uint256,bytes memory) external returns (bool)"}},"id":1206,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6760:48:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1216,"nodeType":"IfStatement","src":"6755:127:8","trueBody":{"id":1215,"nodeType":"Block","src":"6810:72:8","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":1211,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1176,"src":"6864:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$81","typeString":"contract IERC1363"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$81","typeString":"contract IERC1363"}],"id":1210,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6856:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1209,"name":"address","nodeType":"ElementaryTypeName","src":"6856:7:8","typeDescriptions":{}}},"id":1212,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6856:14:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1208,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":893,"src":"6831:24:8","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":1213,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6831:40:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1214,"nodeType":"RevertStatement","src":"6824:47:8"}]}},"id":1217,"nodeType":"IfStatement","src":"6659:223:8","trueBody":{"id":1199,"nodeType":"Block","src":"6684:65:8","statements":[{"expression":{"arguments":[{"id":1193,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1176,"src":"6715:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$81","typeString":"contract IERC1363"}},{"id":1194,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1178,"src":"6722:4:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1195,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1180,"src":"6728:2:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1196,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1182,"src":"6732:5:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$81","typeString":"contract IERC1363"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1192,"name":"safeTransferFrom","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":953,"src":"6698:16:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$819_$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":1197,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6698:40:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1198,"nodeType":"ExpressionStatement","src":"6698:40:8"}]}}]},"documentation":{"id":1173,"nodeType":"StructuredDocumentation","src":"6136:341:8","text":" @dev Performs an {ERC1363} transferFromAndCall, with a fallback to the simple {ERC20} transferFrom if the target\n has no code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when\n targeting contracts.\n Reverts if the returned value is other than `true`."},"id":1219,"implemented":true,"kind":"function","modifiers":[],"name":"transferFromAndCallRelaxed","nameLocation":"6491:26:8","nodeType":"FunctionDefinition","parameters":{"id":1185,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1176,"mutability":"mutable","name":"token","nameLocation":"6536:5:8","nodeType":"VariableDeclaration","scope":1219,"src":"6527:14:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$81","typeString":"contract IERC1363"},"typeName":{"id":1175,"nodeType":"UserDefinedTypeName","pathNode":{"id":1174,"name":"IERC1363","nameLocations":["6527:8:8"],"nodeType":"IdentifierPath","referencedDeclaration":81,"src":"6527:8:8"},"referencedDeclaration":81,"src":"6527:8:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$81","typeString":"contract IERC1363"}},"visibility":"internal"},{"constant":false,"id":1178,"mutability":"mutable","name":"from","nameLocation":"6559:4:8","nodeType":"VariableDeclaration","scope":1219,"src":"6551:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1177,"name":"address","nodeType":"ElementaryTypeName","src":"6551:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1180,"mutability":"mutable","name":"to","nameLocation":"6581:2:8","nodeType":"VariableDeclaration","scope":1219,"src":"6573:10:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1179,"name":"address","nodeType":"ElementaryTypeName","src":"6573:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1182,"mutability":"mutable","name":"value","nameLocation":"6601:5:8","nodeType":"VariableDeclaration","scope":1219,"src":"6593:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1181,"name":"uint256","nodeType":"ElementaryTypeName","src":"6593:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1184,"mutability":"mutable","name":"data","nameLocation":"6629:4:8","nodeType":"VariableDeclaration","scope":1219,"src":"6616:17:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1183,"name":"bytes","nodeType":"ElementaryTypeName","src":"6616:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6517:122:8"},"returnParameters":{"id":1186,"nodeType":"ParameterList","parameters":[],"src":"6649:0:8"},"scope":1345,"src":"6482:406:8","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1261,"nodeType":"Block","src":"7655:218:8","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":1232,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1225,"src":"7669:2:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1233,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7672:4:8","memberName":"code","nodeType":"MemberAccess","src":"7669:7:8","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1234,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7677:6:8","memberName":"length","nodeType":"MemberAccess","src":"7669:14:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1235,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7687:1:8","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7669:19:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":1250,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"7755:38:8","subExpression":{"arguments":[{"id":1246,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1225,"src":"7777:2:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1247,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1227,"src":"7781:5:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1248,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1229,"src":"7788:4:8","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":1244,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1223,"src":"7756:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$81","typeString":"contract IERC1363"}},"id":1245,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7762:14:8","memberName":"approveAndCall","nodeType":"MemberAccess","referencedDeclaration":80,"src":"7756:20:8","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,uint256,bytes memory) external returns (bool)"}},"id":1249,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7756:37:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1259,"nodeType":"IfStatement","src":"7751:116:8","trueBody":{"id":1258,"nodeType":"Block","src":"7795:72:8","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":1254,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1223,"src":"7849:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$81","typeString":"contract IERC1363"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$81","typeString":"contract IERC1363"}],"id":1253,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7841:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1252,"name":"address","nodeType":"ElementaryTypeName","src":"7841:7:8","typeDescriptions":{}}},"id":1255,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7841:14:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1251,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":893,"src":"7816:24:8","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":1256,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7816:40:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1257,"nodeType":"RevertStatement","src":"7809:47:8"}]}},"id":1260,"nodeType":"IfStatement","src":"7665:202:8","trueBody":{"id":1243,"nodeType":"Block","src":"7690:55:8","statements":[{"expression":{"arguments":[{"id":1238,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1223,"src":"7717:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$81","typeString":"contract IERC1363"}},{"id":1239,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1225,"src":"7724:2:8","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1240,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1227,"src":"7728:5:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$81","typeString":"contract IERC1363"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1237,"name":"forceApprove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1129,"src":"7704:12:8","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$819_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":1241,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7704:30:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1242,"nodeType":"ExpressionStatement","src":"7704:30:8"}]}}]},"documentation":{"id":1220,"nodeType":"StructuredDocumentation","src":"6894:654:8","text":" @dev Performs an {ERC1363} approveAndCall, with a fallback to the simple {ERC20} approve if the target has no\n code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when\n targeting contracts.\n NOTE: When the recipient address (`to`) has no code (i.e. is an EOA), this function behaves as {forceApprove}.\n Opposedly, when the recipient address (`to`) has code, this function only attempts to call {ERC1363-approveAndCall}\n once without retrying, and relies on the returned value to be true.\n Reverts if the returned value is other than `true`."},"id":1262,"implemented":true,"kind":"function","modifiers":[],"name":"approveAndCallRelaxed","nameLocation":"7562:21:8","nodeType":"FunctionDefinition","parameters":{"id":1230,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1223,"mutability":"mutable","name":"token","nameLocation":"7593:5:8","nodeType":"VariableDeclaration","scope":1262,"src":"7584:14:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$81","typeString":"contract IERC1363"},"typeName":{"id":1222,"nodeType":"UserDefinedTypeName","pathNode":{"id":1221,"name":"IERC1363","nameLocations":["7584:8:8"],"nodeType":"IdentifierPath","referencedDeclaration":81,"src":"7584:8:8"},"referencedDeclaration":81,"src":"7584:8:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$81","typeString":"contract IERC1363"}},"visibility":"internal"},{"constant":false,"id":1225,"mutability":"mutable","name":"to","nameLocation":"7608:2:8","nodeType":"VariableDeclaration","scope":1262,"src":"7600:10:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1224,"name":"address","nodeType":"ElementaryTypeName","src":"7600:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1227,"mutability":"mutable","name":"value","nameLocation":"7620:5:8","nodeType":"VariableDeclaration","scope":1262,"src":"7612:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1226,"name":"uint256","nodeType":"ElementaryTypeName","src":"7612:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1229,"mutability":"mutable","name":"data","nameLocation":"7640:4:8","nodeType":"VariableDeclaration","scope":1262,"src":"7627:17:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1228,"name":"bytes","nodeType":"ElementaryTypeName","src":"7627:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7583:62:8"},"returnParameters":{"id":1231,"nodeType":"ParameterList","parameters":[],"src":"7655:0:8"},"scope":1345,"src":"7553:320:8","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1302,"nodeType":"Block","src":"8440:650:8","statements":[{"assignments":[1272],"declarations":[{"constant":false,"id":1272,"mutability":"mutable","name":"returnSize","nameLocation":"8458:10:8","nodeType":"VariableDeclaration","scope":1302,"src":"8450:18:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1271,"name":"uint256","nodeType":"ElementaryTypeName","src":"8450:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1273,"nodeType":"VariableDeclarationStatement","src":"8450:18:8"},{"assignments":[1275],"declarations":[{"constant":false,"id":1275,"mutability":"mutable","name":"returnValue","nameLocation":"8486:11:8","nodeType":"VariableDeclaration","scope":1302,"src":"8478:19:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1274,"name":"uint256","nodeType":"ElementaryTypeName","src":"8478:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1276,"nodeType":"VariableDeclarationStatement","src":"8478:19:8"},{"AST":{"nodeType":"YulBlock","src":"8532:396:8","statements":[{"nodeType":"YulVariableDeclaration","src":"8546:75:8","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nodeType":"YulIdentifier","src":"8566:3:8"},"nodeType":"YulFunctionCall","src":"8566:5:8"},{"name":"token","nodeType":"YulIdentifier","src":"8573:5:8"},{"kind":"number","nodeType":"YulLiteral","src":"8580:1:8","type":"","value":"0"},{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"8587:4:8"},{"kind":"number","nodeType":"YulLiteral","src":"8593:4:8","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8583:3:8"},"nodeType":"YulFunctionCall","src":"8583:15:8"},{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"8606:4:8"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8600:5:8"},"nodeType":"YulFunctionCall","src":"8600:11:8"},{"kind":"number","nodeType":"YulLiteral","src":"8613:1:8","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"8616:4:8","type":"","value":"0x20"}],"functionName":{"name":"call","nodeType":"YulIdentifier","src":"8561:4:8"},"nodeType":"YulFunctionCall","src":"8561:60:8"},"variables":[{"name":"success","nodeType":"YulTypedName","src":"8550:7:8","type":""}]},{"body":{"nodeType":"YulBlock","src":"8682:157:8","statements":[{"nodeType":"YulVariableDeclaration","src":"8700:22:8","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8717:4:8","type":"","value":"0x40"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8711:5:8"},"nodeType":"YulFunctionCall","src":"8711:11:8"},"variables":[{"name":"ptr","nodeType":"YulTypedName","src":"8704:3:8","type":""}]},{"expression":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"8754:3:8"},{"kind":"number","nodeType":"YulLiteral","src":"8759:1:8","type":"","value":"0"},{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"8762:14:8"},"nodeType":"YulFunctionCall","src":"8762:16:8"}],"functionName":{"name":"returndatacopy","nodeType":"YulIdentifier","src":"8739:14:8"},"nodeType":"YulFunctionCall","src":"8739:40:8"},"nodeType":"YulExpressionStatement","src":"8739:40:8"},{"expression":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"8803:3:8"},{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"8808:14:8"},"nodeType":"YulFunctionCall","src":"8808:16:8"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"8796:6:8"},"nodeType":"YulFunctionCall","src":"8796:29:8"},"nodeType":"YulExpressionStatement","src":"8796:29:8"}]},"condition":{"arguments":[{"name":"success","nodeType":"YulIdentifier","src":"8673:7:8"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"8666:6:8"},"nodeType":"YulFunctionCall","src":"8666:15:8"},"nodeType":"YulIf","src":"8663:176:8"},{"nodeType":"YulAssignment","src":"8852:30:8","value":{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"8866:14:8"},"nodeType":"YulFunctionCall","src":"8866:16:8"},"variableNames":[{"name":"returnSize","nodeType":"YulIdentifier","src":"8852:10:8"}]},{"nodeType":"YulAssignment","src":"8895:23:8","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8916:1:8","type":"","value":"0"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8910:5:8"},"nodeType":"YulFunctionCall","src":"8910:8:8"},"variableNames":[{"name":"returnValue","nodeType":"YulIdentifier","src":"8895:11:8"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":1268,"isOffset":false,"isSlot":false,"src":"8587:4:8","valueSize":1},{"declaration":1268,"isOffset":false,"isSlot":false,"src":"8606:4:8","valueSize":1},{"declaration":1272,"isOffset":false,"isSlot":false,"src":"8852:10:8","valueSize":1},{"declaration":1275,"isOffset":false,"isSlot":false,"src":"8895:11:8","valueSize":1},{"declaration":1266,"isOffset":false,"isSlot":false,"src":"8573:5:8","valueSize":1}],"flags":["memory-safe"],"id":1277,"nodeType":"InlineAssembly","src":"8507:421:8"},{"condition":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1278,"name":"returnSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1272,"src":"8942:10:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1279,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8956:1:8","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8942:15:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1291,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1289,"name":"returnValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1275,"src":"8994:11:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"31","id":1290,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9009:1:8","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"8994:16:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"8942:68:8","trueExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1288,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"arguments":[{"id":1283,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1266,"src":"8968:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}],"id":1282,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8960:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1281,"name":"address","nodeType":"ElementaryTypeName","src":"8960:7:8","typeDescriptions":{}}},"id":1284,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8960:14:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1285,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8975:4:8","memberName":"code","nodeType":"MemberAccess","src":"8960:19:8","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1286,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8980:6:8","memberName":"length","nodeType":"MemberAccess","src":"8960:26:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1287,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8990:1:8","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8960:31:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1301,"nodeType":"IfStatement","src":"8938:146:8","trueBody":{"id":1300,"nodeType":"Block","src":"9012:72:8","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":1296,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1266,"src":"9066:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}],"id":1295,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9058:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1294,"name":"address","nodeType":"ElementaryTypeName","src":"9058:7:8","typeDescriptions":{}}},"id":1297,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9058:14:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1293,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":893,"src":"9033:24:8","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":1298,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9033:40:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1299,"nodeType":"RevertStatement","src":"9026:47:8"}]}}]},"documentation":{"id":1263,"nodeType":"StructuredDocumentation","src":"7879:486:8","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).\n This is a variant of {_callOptionalReturnBool} that reverts if call fails to meet the requirements."},"id":1303,"implemented":true,"kind":"function","modifiers":[],"name":"_callOptionalReturn","nameLocation":"8379:19:8","nodeType":"FunctionDefinition","parameters":{"id":1269,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1266,"mutability":"mutable","name":"token","nameLocation":"8406:5:8","nodeType":"VariableDeclaration","scope":1303,"src":"8399:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"},"typeName":{"id":1265,"nodeType":"UserDefinedTypeName","pathNode":{"id":1264,"name":"IERC20","nameLocations":["8399:6:8"],"nodeType":"IdentifierPath","referencedDeclaration":819,"src":"8399:6:8"},"referencedDeclaration":819,"src":"8399:6:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":1268,"mutability":"mutable","name":"data","nameLocation":"8426:4:8","nodeType":"VariableDeclaration","scope":1303,"src":"8413:17:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1267,"name":"bytes","nodeType":"ElementaryTypeName","src":"8413:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8398:33:8"},"returnParameters":{"id":1270,"nodeType":"ParameterList","parameters":[],"src":"8440:0:8"},"scope":1345,"src":"8370:720:8","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":1343,"nodeType":"Block","src":"9681:391:8","statements":[{"assignments":[1315],"declarations":[{"constant":false,"id":1315,"mutability":"mutable","name":"success","nameLocation":"9696:7:8","nodeType":"VariableDeclaration","scope":1343,"src":"9691:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1314,"name":"bool","nodeType":"ElementaryTypeName","src":"9691:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":1316,"nodeType":"VariableDeclarationStatement","src":"9691:12:8"},{"assignments":[1318],"declarations":[{"constant":false,"id":1318,"mutability":"mutable","name":"returnSize","nameLocation":"9721:10:8","nodeType":"VariableDeclaration","scope":1343,"src":"9713:18:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1317,"name":"uint256","nodeType":"ElementaryTypeName","src":"9713:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1319,"nodeType":"VariableDeclarationStatement","src":"9713:18:8"},{"assignments":[1321],"declarations":[{"constant":false,"id":1321,"mutability":"mutable","name":"returnValue","nameLocation":"9749:11:8","nodeType":"VariableDeclaration","scope":1343,"src":"9741:19:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1320,"name":"uint256","nodeType":"ElementaryTypeName","src":"9741:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1322,"nodeType":"VariableDeclarationStatement","src":"9741:19:8"},{"AST":{"nodeType":"YulBlock","src":"9795:174:8","statements":[{"nodeType":"YulAssignment","src":"9809:71:8","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nodeType":"YulIdentifier","src":"9825:3:8"},"nodeType":"YulFunctionCall","src":"9825:5:8"},{"name":"token","nodeType":"YulIdentifier","src":"9832:5:8"},{"kind":"number","nodeType":"YulLiteral","src":"9839:1:8","type":"","value":"0"},{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"9846:4:8"},{"kind":"number","nodeType":"YulLiteral","src":"9852:4:8","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9842:3:8"},"nodeType":"YulFunctionCall","src":"9842:15:8"},{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"9865:4:8"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9859:5:8"},"nodeType":"YulFunctionCall","src":"9859:11:8"},{"kind":"number","nodeType":"YulLiteral","src":"9872:1:8","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"9875:4:8","type":"","value":"0x20"}],"functionName":{"name":"call","nodeType":"YulIdentifier","src":"9820:4:8"},"nodeType":"YulFunctionCall","src":"9820:60:8"},"variableNames":[{"name":"success","nodeType":"YulIdentifier","src":"9809:7:8"}]},{"nodeType":"YulAssignment","src":"9893:30:8","value":{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"9907:14:8"},"nodeType":"YulFunctionCall","src":"9907:16:8"},"variableNames":[{"name":"returnSize","nodeType":"YulIdentifier","src":"9893:10:8"}]},{"nodeType":"YulAssignment","src":"9936:23:8","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9957:1:8","type":"","value":"0"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9951:5:8"},"nodeType":"YulFunctionCall","src":"9951:8:8"},"variableNames":[{"name":"returnValue","nodeType":"YulIdentifier","src":"9936:11:8"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":1309,"isOffset":false,"isSlot":false,"src":"9846:4:8","valueSize":1},{"declaration":1309,"isOffset":false,"isSlot":false,"src":"9865:4:8","valueSize":1},{"declaration":1318,"isOffset":false,"isSlot":false,"src":"9893:10:8","valueSize":1},{"declaration":1321,"isOffset":false,"isSlot":false,"src":"9936:11:8","valueSize":1},{"declaration":1315,"isOffset":false,"isSlot":false,"src":"9809:7:8","valueSize":1},{"declaration":1307,"isOffset":false,"isSlot":false,"src":"9832:5:8","valueSize":1}],"flags":["memory-safe"],"id":1323,"nodeType":"InlineAssembly","src":"9770:199:8"},{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1324,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1315,"src":"9985:7:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"components":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1325,"name":"returnSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"9997:10:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1326,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10011:1:8","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9997:15:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1338,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1336,"name":"returnValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1321,"src":"10048:11:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":1337,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10063:1:8","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"10048:16:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"9997:67:8","trueExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1335,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"arguments":[{"id":1330,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1307,"src":"10023:5:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}],"id":1329,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10015:7:8","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1328,"name":"address","nodeType":"ElementaryTypeName","src":"10015:7:8","typeDescriptions":{}}},"id":1331,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10015:14:8","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1332,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10030:4:8","memberName":"code","nodeType":"MemberAccess","src":"10015:19:8","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10035:6:8","memberName":"length","nodeType":"MemberAccess","src":"10015:26:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1334,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10044:1:8","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10015:30:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":1340,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9996:69:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9985:80:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":1313,"id":1342,"nodeType":"Return","src":"9978:87:8"}]},"documentation":{"id":1304,"nodeType":"StructuredDocumentation","src":"9096:491:8","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).\n This is a variant of {_callOptionalReturn} that silently catches all reverts and returns a bool instead."},"id":1344,"implemented":true,"kind":"function","modifiers":[],"name":"_callOptionalReturnBool","nameLocation":"9601:23:8","nodeType":"FunctionDefinition","parameters":{"id":1310,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1307,"mutability":"mutable","name":"token","nameLocation":"9632:5:8","nodeType":"VariableDeclaration","scope":1344,"src":"9625:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"},"typeName":{"id":1306,"nodeType":"UserDefinedTypeName","pathNode":{"id":1305,"name":"IERC20","nameLocations":["9625:6:8"],"nodeType":"IdentifierPath","referencedDeclaration":819,"src":"9625:6:8"},"referencedDeclaration":819,"src":"9625:6:8","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":1309,"mutability":"mutable","name":"data","nameLocation":"9652:4:8","nodeType":"VariableDeclaration","scope":1344,"src":"9639:17:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1308,"name":"bytes","nodeType":"ElementaryTypeName","src":"9639:5:8","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"9624:33:8"},"returnParameters":{"id":1313,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1312,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1344,"src":"9675:4:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1311,"name":"bool","nodeType":"ElementaryTypeName","src":"9675:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9674:6:8"},"scope":1345,"src":"9592:480:8","stateMutability":"nonpayable","virtual":false,"visibility":"private"}],"scope":1346,"src":"698:9376:8","usedErrors":[893,902],"usedEvents":[]}],"src":"115:9960:8"},"id":8},"@openzeppelin/contracts/utils/Context.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","exportedSymbols":{"Context":[1375]},"id":1376,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1347,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:9"},{"abstract":true,"baseContracts":[],"canonicalName":"Context","contractDependencies":[],"contractKind":"contract","documentation":{"id":1348,"nodeType":"StructuredDocumentation","src":"127:496:9","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":1375,"linearizedBaseContracts":[1375],"name":"Context","nameLocation":"642:7:9","nodeType":"ContractDefinition","nodes":[{"body":{"id":1356,"nodeType":"Block","src":"718:34:9","statements":[{"expression":{"expression":{"id":1353,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"735:3:9","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1354,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"739:6:9","memberName":"sender","nodeType":"MemberAccess","src":"735:10:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":1352,"id":1355,"nodeType":"Return","src":"728:17:9"}]},"id":1357,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"665:10:9","nodeType":"FunctionDefinition","parameters":{"id":1349,"nodeType":"ParameterList","parameters":[],"src":"675:2:9"},"returnParameters":{"id":1352,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1351,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1357,"src":"709:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1350,"name":"address","nodeType":"ElementaryTypeName","src":"709:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"708:9:9"},"scope":1375,"src":"656:96:9","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":1365,"nodeType":"Block","src":"825:32:9","statements":[{"expression":{"expression":{"id":1362,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"842:3:9","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"846:4:9","memberName":"data","nodeType":"MemberAccess","src":"842:8:9","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":1361,"id":1364,"nodeType":"Return","src":"835:15:9"}]},"id":1366,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"767:8:9","nodeType":"FunctionDefinition","parameters":{"id":1358,"nodeType":"ParameterList","parameters":[],"src":"775:2:9"},"returnParameters":{"id":1361,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1360,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1366,"src":"809:14:9","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1359,"name":"bytes","nodeType":"ElementaryTypeName","src":"809:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"808:16:9"},"scope":1375,"src":"758:99:9","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":1373,"nodeType":"Block","src":"935:25:9","statements":[{"expression":{"hexValue":"30","id":1371,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"952:1:9","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":1370,"id":1372,"nodeType":"Return","src":"945:8:9"}]},"id":1374,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"872:20:9","nodeType":"FunctionDefinition","parameters":{"id":1367,"nodeType":"ParameterList","parameters":[],"src":"892:2:9"},"returnParameters":{"id":1370,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1369,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1374,"src":"926:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1368,"name":"uint256","nodeType":"ElementaryTypeName","src":"926:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"925:9:9"},"scope":1375,"src":"863:97:9","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":1376,"src":"624:338:9","usedErrors":[],"usedEvents":[]}],"src":"101:862:9"},"id":9},"@openzeppelin/contracts/utils/ReentrancyGuard.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/ReentrancyGuard.sol","exportedSymbols":{"ReentrancyGuard":[1444]},"id":1445,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1377,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:10"},{"abstract":true,"baseContracts":[],"canonicalName":"ReentrancyGuard","contractDependencies":[],"contractKind":"contract","documentation":{"id":1378,"nodeType":"StructuredDocumentation","src":"135:894:10","text":" @dev Contract module that helps prevent reentrant calls to a function.\n Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n available, which can be applied to functions to make sure there are no nested\n (reentrant) calls to them.\n Note that because there is a single `nonReentrant` guard, functions marked as\n `nonReentrant` may not call one another. This can be worked around by making\n those functions `private`, and then adding `external` `nonReentrant` entry\n points to them.\n TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at,\n consider using {ReentrancyGuardTransient} instead.\n TIP: If you would like to learn more about reentrancy and alternative ways\n to protect against it, check out our blog post\n https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]."},"fullyImplemented":true,"id":1444,"linearizedBaseContracts":[1444],"name":"ReentrancyGuard","nameLocation":"1048:15:10","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":1381,"mutability":"constant","name":"NOT_ENTERED","nameLocation":"1843:11:10","nodeType":"VariableDeclaration","scope":1444,"src":"1818:40:10","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1379,"name":"uint256","nodeType":"ElementaryTypeName","src":"1818:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31","id":1380,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1857:1:10","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"visibility":"private"},{"constant":true,"id":1384,"mutability":"constant","name":"ENTERED","nameLocation":"1889:7:10","nodeType":"VariableDeclaration","scope":1444,"src":"1864:36:10","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1382,"name":"uint256","nodeType":"ElementaryTypeName","src":"1864:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"32","id":1383,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1899:1:10","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"visibility":"private"},{"constant":false,"id":1386,"mutability":"mutable","name":"_status","nameLocation":"1923:7:10","nodeType":"VariableDeclaration","scope":1444,"src":"1907:23:10","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1385,"name":"uint256","nodeType":"ElementaryTypeName","src":"1907:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"documentation":{"id":1387,"nodeType":"StructuredDocumentation","src":"1937:52:10","text":" @dev Unauthorized reentrant call."},"errorSelector":"3ee5aeb5","id":1389,"name":"ReentrancyGuardReentrantCall","nameLocation":"2000:28:10","nodeType":"ErrorDefinition","parameters":{"id":1388,"nodeType":"ParameterList","parameters":[],"src":"2028:2:10"},"src":"1994:37:10"},{"body":{"id":1396,"nodeType":"Block","src":"2051:38:10","statements":[{"expression":{"id":1394,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1392,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1386,"src":"2061:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1393,"name":"NOT_ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1381,"src":"2071:11:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2061:21:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1395,"nodeType":"ExpressionStatement","src":"2061:21:10"}]},"id":1397,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":1390,"nodeType":"ParameterList","parameters":[],"src":"2048:2:10"},"returnParameters":{"id":1391,"nodeType":"ParameterList","parameters":[],"src":"2051:0:10"},"scope":1444,"src":"2037:52:10","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1407,"nodeType":"Block","src":"2490:79:10","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1400,"name":"_nonReentrantBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1424,"src":"2500:19:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":1401,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2500:21:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1402,"nodeType":"ExpressionStatement","src":"2500:21:10"},{"id":1403,"nodeType":"PlaceholderStatement","src":"2531:1:10"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1404,"name":"_nonReentrantAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1432,"src":"2542:18:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":1405,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2542:20:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1406,"nodeType":"ExpressionStatement","src":"2542:20:10"}]},"documentation":{"id":1398,"nodeType":"StructuredDocumentation","src":"2095:366:10","text":" @dev Prevents a contract from calling itself, directly or indirectly.\n Calling a `nonReentrant` function from another `nonReentrant`\n function is not supported. It is possible to prevent this from happening\n by making the `nonReentrant` function external, and making it call a\n `private` function that does the actual work."},"id":1408,"name":"nonReentrant","nameLocation":"2475:12:10","nodeType":"ModifierDefinition","parameters":{"id":1399,"nodeType":"ParameterList","parameters":[],"src":"2487:2:10"},"src":"2466:103:10","virtual":false,"visibility":"internal"},{"body":{"id":1423,"nodeType":"Block","src":"2614:268:10","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1413,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1411,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1386,"src":"2702:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":1412,"name":"ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1384,"src":"2713:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2702:18:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1418,"nodeType":"IfStatement","src":"2698:86:10","trueBody":{"id":1417,"nodeType":"Block","src":"2722:62:10","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":1414,"name":"ReentrancyGuardReentrantCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1389,"src":"2743:28:10","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":1415,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2743:30:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1416,"nodeType":"RevertStatement","src":"2736:37:10"}]}},{"expression":{"id":1421,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1419,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1386,"src":"2858:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1420,"name":"ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1384,"src":"2868:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2858:17:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1422,"nodeType":"ExpressionStatement","src":"2858:17:10"}]},"id":1424,"implemented":true,"kind":"function","modifiers":[],"name":"_nonReentrantBefore","nameLocation":"2584:19:10","nodeType":"FunctionDefinition","parameters":{"id":1409,"nodeType":"ParameterList","parameters":[],"src":"2603:2:10"},"returnParameters":{"id":1410,"nodeType":"ParameterList","parameters":[],"src":"2614:0:10"},"scope":1444,"src":"2575:307:10","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":1431,"nodeType":"Block","src":"2926:170:10","statements":[{"expression":{"id":1429,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1427,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1386,"src":"3068:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1428,"name":"NOT_ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1381,"src":"3078:11:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3068:21:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1430,"nodeType":"ExpressionStatement","src":"3068:21:10"}]},"id":1432,"implemented":true,"kind":"function","modifiers":[],"name":"_nonReentrantAfter","nameLocation":"2897:18:10","nodeType":"FunctionDefinition","parameters":{"id":1425,"nodeType":"ParameterList","parameters":[],"src":"2915:2:10"},"returnParameters":{"id":1426,"nodeType":"ParameterList","parameters":[],"src":"2926:0:10"},"scope":1444,"src":"2888:208:10","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":1442,"nodeType":"Block","src":"3339:42:10","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1440,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1438,"name":"_status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1386,"src":"3356:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":1439,"name":"ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1384,"src":"3367:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3356:18:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":1437,"id":1441,"nodeType":"Return","src":"3349:25:10"}]},"documentation":{"id":1433,"nodeType":"StructuredDocumentation","src":"3102:168:10","text":" @dev Returns true if the reentrancy guard is currently set to \"entered\", which indicates there is a\n `nonReentrant` function in the call stack."},"id":1443,"implemented":true,"kind":"function","modifiers":[],"name":"_reentrancyGuardEntered","nameLocation":"3284:23:10","nodeType":"FunctionDefinition","parameters":{"id":1434,"nodeType":"ParameterList","parameters":[],"src":"3307:2:10"},"returnParameters":{"id":1437,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1436,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1443,"src":"3333:4:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1435,"name":"bool","nodeType":"ElementaryTypeName","src":"3333:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3332:6:10"},"scope":1444,"src":"3275:106:10","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":1445,"src":"1030:2353:10","usedErrors":[1389],"usedEvents":[]}],"src":"109:3275:10"},"id":10},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","exportedSymbols":{"IERC165":[1456]},"id":1457,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1446,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"115:25:11"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC165","contractDependencies":[],"contractKind":"interface","documentation":{"id":1447,"nodeType":"StructuredDocumentation","src":"142:280:11","text":" @dev Interface of the ERC-165 standard, as defined in the\n https://eips.ethereum.org/EIPS/eip-165[ERC].\n Implementers can declare support of contract interfaces, which can then be\n queried by others ({ERC165Checker}).\n For an implementation, see {ERC165}."},"fullyImplemented":false,"id":1456,"linearizedBaseContracts":[1456],"name":"IERC165","nameLocation":"433:7:11","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":1448,"nodeType":"StructuredDocumentation","src":"447:340:11","text":" @dev Returns true if this contract implements the interface defined by\n `interfaceId`. See the corresponding\n https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]\n to learn more about how these ids are created.\n This function call must use less than 30 000 gas."},"functionSelector":"01ffc9a7","id":1455,"implemented":false,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"801:17:11","nodeType":"FunctionDefinition","parameters":{"id":1451,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1450,"mutability":"mutable","name":"interfaceId","nameLocation":"826:11:11","nodeType":"VariableDeclaration","scope":1455,"src":"819:18:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1449,"name":"bytes4","nodeType":"ElementaryTypeName","src":"819:6:11","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"818:20:11"},"returnParameters":{"id":1454,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1453,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1455,"src":"862:4:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1452,"name":"bool","nodeType":"ElementaryTypeName","src":"862:4:11","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"861:6:11"},"scope":1456,"src":"792:76:11","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":1457,"src":"423:447:11","usedErrors":[],"usedEvents":[]}],"src":"115:756:11"},"id":11},"contracts/CunaFinanceBsc.sol":{"ast":{"absolutePath":"contracts/CunaFinanceBsc.sol","exportedSymbols":{"CunaFinanceBsc":[4510],"IERC1363":[81],"IERC20":[819],"IERC20Permit":[881],"ReentrancyGuard":[1444],"SafeERC20":[1345],"iPriceOracle":[1469]},"id":4511,"license":"MIT","nodeType":"SourceUnit","nodes":[{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","file":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","id":1458,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4511,"sourceUnit":1346,"src":"32:65:12","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","id":1459,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4511,"sourceUnit":882,"src":"98:73:12","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/ReentrancyGuard.sol","file":"@openzeppelin/contracts/utils/ReentrancyGuard.sol","id":1460,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4511,"sourceUnit":1445,"src":"172:59:12","symbolAliases":[],"unitAlias":""},{"id":1461,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"233:24:12"},{"abstract":false,"baseContracts":[],"canonicalName":"iPriceOracle","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":1469,"linearizedBaseContracts":[1469],"name":"iPriceOracle","nameLocation":"269:12:12","nodeType":"ContractDefinition","nodes":[{"functionSelector":"16345f18","id":1468,"implemented":false,"kind":"function","modifiers":[],"name":"getLatestPrice","nameLocation":"325:14:12","nodeType":"FunctionDefinition","parameters":{"id":1464,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1463,"mutability":"mutable","name":"token","nameLocation":"348:5:12","nodeType":"VariableDeclaration","scope":1468,"src":"340:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1462,"name":"address","nodeType":"ElementaryTypeName","src":"340:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"339:15:12"},"returnParameters":{"id":1467,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1466,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1468,"src":"378:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1465,"name":"uint256","nodeType":"ElementaryTypeName","src":"378:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"377:9:12"},"scope":1469,"src":"316:71:12","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":4511,"src":"259:130:12","usedErrors":[],"usedEvents":[]},{"abstract":false,"baseContracts":[{"baseName":{"id":1470,"name":"ReentrancyGuard","nameLocations":["441:15:12"],"nodeType":"IdentifierPath","referencedDeclaration":1444,"src":"441:15:12"},"id":1471,"nodeType":"InheritanceSpecifier","src":"441:15:12"}],"canonicalName":"CunaFinanceBsc","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":4510,"linearizedBaseContracts":[4510,1444],"name":"CunaFinanceBsc","nameLocation":"423:14:12","nodeType":"ContractDefinition","nodes":[{"global":false,"id":1475,"libraryName":{"id":1472,"name":"SafeERC20","nameLocations":["469:9:12"],"nodeType":"IdentifierPath","referencedDeclaration":1345,"src":"469:9:12"},"nodeType":"UsingForDirective","src":"463:27:12","typeName":{"id":1474,"nodeType":"UserDefinedTypeName","pathNode":{"id":1473,"name":"IERC20","nameLocations":["483:6:12"],"nodeType":"IdentifierPath","referencedDeclaration":819,"src":"483:6:12"},"referencedDeclaration":819,"src":"483:6:12","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}}},{"canonicalName":"CunaFinanceBsc.Vesting","id":1496,"members":[{"constant":false,"id":1477,"mutability":"mutable","name":"amount","nameLocation":"563:6:12","nodeType":"VariableDeclaration","scope":1496,"src":"555:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1476,"name":"uint256","nodeType":"ElementaryTypeName","src":"555:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1479,"mutability":"mutable","name":"bonus","nameLocation":"587:5:12","nodeType":"VariableDeclaration","scope":1496,"src":"579:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1478,"name":"uint256","nodeType":"ElementaryTypeName","src":"579:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1481,"mutability":"mutable","name":"lockedUntil","nameLocation":"610:11:12","nodeType":"VariableDeclaration","scope":1496,"src":"602:19:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1480,"name":"uint256","nodeType":"ElementaryTypeName","src":"602:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1483,"mutability":"mutable","name":"claimedAmount","nameLocation":"639:13:12","nodeType":"VariableDeclaration","scope":1496,"src":"631:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1482,"name":"uint256","nodeType":"ElementaryTypeName","src":"631:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1485,"mutability":"mutable","name":"claimedBonus","nameLocation":"670:12:12","nodeType":"VariableDeclaration","scope":1496,"src":"662:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1484,"name":"uint256","nodeType":"ElementaryTypeName","src":"662:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1487,"mutability":"mutable","name":"lastClaimed","nameLocation":"700:11:12","nodeType":"VariableDeclaration","scope":1496,"src":"692:19:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1486,"name":"uint256","nodeType":"ElementaryTypeName","src":"692:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1489,"mutability":"mutable","name":"createdAt","nameLocation":"729:9:12","nodeType":"VariableDeclaration","scope":1496,"src":"721:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1488,"name":"uint256","nodeType":"ElementaryTypeName","src":"721:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1491,"mutability":"mutable","name":"token","nameLocation":"756:5:12","nodeType":"VariableDeclaration","scope":1496,"src":"748:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1490,"name":"address","nodeType":"ElementaryTypeName","src":"748:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1493,"mutability":"mutable","name":"complete","nameLocation":"776:8:12","nodeType":"VariableDeclaration","scope":1496,"src":"771:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1492,"name":"bool","nodeType":"ElementaryTypeName","src":"771:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1495,"mutability":"mutable","name":"usdAmount","nameLocation":"802:9:12","nodeType":"VariableDeclaration","scope":1496,"src":"794:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1494,"name":"uint256","nodeType":"ElementaryTypeName","src":"794:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Vesting","nameLocation":"537:7:12","nodeType":"StructDefinition","scope":4510,"src":"530:288:12","visibility":"public"},{"canonicalName":"CunaFinanceBsc.UnlockStep","id":1501,"members":[{"constant":false,"id":1498,"mutability":"mutable","name":"timeOffset","nameLocation":"860:10:12","nodeType":"VariableDeclaration","scope":1501,"src":"852:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1497,"name":"uint256","nodeType":"ElementaryTypeName","src":"852:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1500,"mutability":"mutable","name":"percentage","nameLocation":"888:10:12","nodeType":"VariableDeclaration","scope":1501,"src":"880:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1499,"name":"uint256","nodeType":"ElementaryTypeName","src":"880:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"UnlockStep","nameLocation":"831:10:12","nodeType":"StructDefinition","scope":4510,"src":"824:81:12","visibility":"public"},{"canonicalName":"CunaFinanceBsc.WithdrawVesting","id":1510,"members":[{"constant":false,"id":1503,"mutability":"mutable","name":"vestingId","nameLocation":"952:9:12","nodeType":"VariableDeclaration","scope":1510,"src":"944:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1502,"name":"uint256","nodeType":"ElementaryTypeName","src":"944:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1505,"mutability":"mutable","name":"amount","nameLocation":"979:6:12","nodeType":"VariableDeclaration","scope":1510,"src":"971:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1504,"name":"uint256","nodeType":"ElementaryTypeName","src":"971:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1507,"mutability":"mutable","name":"unlockTime","nameLocation":"1003:10:12","nodeType":"VariableDeclaration","scope":1510,"src":"995:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1506,"name":"uint256","nodeType":"ElementaryTypeName","src":"995:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1509,"mutability":"mutable","name":"token","nameLocation":"1031:5:12","nodeType":"VariableDeclaration","scope":1510,"src":"1023:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1508,"name":"address","nodeType":"ElementaryTypeName","src":"1023:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"name":"WithdrawVesting","nameLocation":"918:15:12","nodeType":"StructDefinition","scope":4510,"src":"911:132:12","visibility":"public"},{"canonicalName":"CunaFinanceBsc.Epoch","id":1521,"members":[{"constant":false,"id":1512,"mutability":"mutable","name":"estDaysRemaining","nameLocation":"1118:16:12","nodeType":"VariableDeclaration","scope":1521,"src":"1110:24:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1511,"name":"uint256","nodeType":"ElementaryTypeName","src":"1110:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1514,"mutability":"mutable","name":"currentTreasuryTvl","nameLocation":"1152:18:12","nodeType":"VariableDeclaration","scope":1521,"src":"1144:26:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1513,"name":"uint256","nodeType":"ElementaryTypeName","src":"1144:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1516,"mutability":"mutable","name":"totalLiability","nameLocation":"1188:14:12","nodeType":"VariableDeclaration","scope":1521,"src":"1180:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1515,"name":"uint256","nodeType":"ElementaryTypeName","src":"1180:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1518,"mutability":"mutable","name":"unlockPercentage","nameLocation":"1270:16:12","nodeType":"VariableDeclaration","scope":1521,"src":"1262:24:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1517,"name":"uint256","nodeType":"ElementaryTypeName","src":"1262:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1520,"mutability":"mutable","name":"timestamp","nameLocation":"1359:9:12","nodeType":"VariableDeclaration","scope":1521,"src":"1351:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1519,"name":"uint256","nodeType":"ElementaryTypeName","src":"1351:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Epoch","nameLocation":"1094:5:12","nodeType":"StructDefinition","scope":4510,"src":"1087:325:12","visibility":"public"},{"canonicalName":"CunaFinanceBsc.WithdrawStake","id":1528,"members":[{"constant":false,"id":1523,"mutability":"mutable","name":"stakeId","nameLocation":"1457:7:12","nodeType":"VariableDeclaration","scope":1528,"src":"1449:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1522,"name":"uint256","nodeType":"ElementaryTypeName","src":"1449:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1525,"mutability":"mutable","name":"amount","nameLocation":"1482:6:12","nodeType":"VariableDeclaration","scope":1528,"src":"1474:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1524,"name":"uint256","nodeType":"ElementaryTypeName","src":"1474:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1527,"mutability":"mutable","name":"unlockTime","nameLocation":"1506:10:12","nodeType":"VariableDeclaration","scope":1528,"src":"1498:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1526,"name":"uint256","nodeType":"ElementaryTypeName","src":"1498:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"WithdrawStake","nameLocation":"1425:13:12","nodeType":"StructDefinition","scope":4510,"src":"1418:105:12","visibility":"public"},{"canonicalName":"CunaFinanceBsc.SellStake","id":1537,"members":[{"constant":false,"id":1530,"mutability":"mutable","name":"value","nameLocation":"1564:5:12","nodeType":"VariableDeclaration","scope":1537,"src":"1556:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1529,"name":"uint256","nodeType":"ElementaryTypeName","src":"1556:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1532,"mutability":"mutable","name":"salePrice","nameLocation":"1628:9:12","nodeType":"VariableDeclaration","scope":1537,"src":"1620:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1531,"name":"uint256","nodeType":"ElementaryTypeName","src":"1620:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1534,"mutability":"mutable","name":"seller","nameLocation":"1697:6:12","nodeType":"VariableDeclaration","scope":1537,"src":"1689:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1533,"name":"address","nodeType":"ElementaryTypeName","src":"1689:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1536,"mutability":"mutable","name":"listTime","nameLocation":"1760:8:12","nodeType":"VariableDeclaration","scope":1537,"src":"1752:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1535,"name":"uint256","nodeType":"ElementaryTypeName","src":"1752:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"SellStake","nameLocation":"1536:9:12","nodeType":"StructDefinition","scope":4510,"src":"1529:285:12","visibility":"public"},{"canonicalName":"CunaFinanceBsc.SellStakeKey","id":1542,"members":[{"constant":false,"id":1539,"mutability":"mutable","name":"seller","nameLocation":"1858:6:12","nodeType":"VariableDeclaration","scope":1542,"src":"1850:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1538,"name":"address","nodeType":"ElementaryTypeName","src":"1850:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1541,"mutability":"mutable","name":"stakeId","nameLocation":"1882:7:12","nodeType":"VariableDeclaration","scope":1542,"src":"1874:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1540,"name":"uint256","nodeType":"ElementaryTypeName","src":"1874:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"SellStakeKey","nameLocation":"1827:12:12","nodeType":"StructDefinition","scope":4510,"src":"1820:119:12","visibility":"public"},{"canonicalName":"CunaFinanceBsc.MarketplaceHistory","id":1555,"members":[{"constant":false,"id":1544,"mutability":"mutable","name":"listTime","nameLocation":"1993:8:12","nodeType":"VariableDeclaration","scope":1555,"src":"1985:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1543,"name":"uint256","nodeType":"ElementaryTypeName","src":"1985:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1546,"mutability":"mutable","name":"saleTime","nameLocation":"2065:8:12","nodeType":"VariableDeclaration","scope":1555,"src":"2057:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1545,"name":"uint256","nodeType":"ElementaryTypeName","src":"2057:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1548,"mutability":"mutable","name":"origValue","nameLocation":"2124:9:12","nodeType":"VariableDeclaration","scope":1555,"src":"2116:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1547,"name":"uint256","nodeType":"ElementaryTypeName","src":"2116:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1550,"mutability":"mutable","name":"saleValue","nameLocation":"2185:9:12","nodeType":"VariableDeclaration","scope":1555,"src":"2177:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1549,"name":"uint256","nodeType":"ElementaryTypeName","src":"2177:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1552,"mutability":"mutable","name":"seller","nameLocation":"2241:6:12","nodeType":"VariableDeclaration","scope":1555,"src":"2233:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1551,"name":"address","nodeType":"ElementaryTypeName","src":"2233:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1554,"mutability":"mutable","name":"buyer","nameLocation":"2292:5:12","nodeType":"VariableDeclaration","scope":1555,"src":"2284:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1553,"name":"address","nodeType":"ElementaryTypeName","src":"2284:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"name":"MarketplaceHistory","nameLocation":"1956:18:12","nodeType":"StructDefinition","scope":4510,"src":"1949:385:12","visibility":"public"},{"constant":false,"functionSelector":"8da5cb5b","id":1557,"mutability":"mutable","name":"owner","nameLocation":"2381:5:12","nodeType":"VariableDeclaration","scope":4510,"src":"2366:20:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1556,"name":"address","nodeType":"ElementaryTypeName","src":"2366:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"public"},{"constant":false,"functionSelector":"022914a7","id":1561,"mutability":"mutable","name":"owners","nameLocation":"2424:6:12","nodeType":"VariableDeclaration","scope":4510,"src":"2392:38:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":1560,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1558,"name":"address","nodeType":"ElementaryTypeName","src":"2400:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2392:24:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1559,"name":"bool","nodeType":"ElementaryTypeName","src":"2411:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"public"},{"constant":false,"functionSelector":"3ba8396e","id":1565,"mutability":"mutable","name":"authorizedBots","nameLocation":"2468:14:12","nodeType":"VariableDeclaration","scope":4510,"src":"2436:46:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":1564,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1562,"name":"address","nodeType":"ElementaryTypeName","src":"2444:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2436:24:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1563,"name":"bool","nodeType":"ElementaryTypeName","src":"2455:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"public"},{"constant":false,"functionSelector":"bd84477d","id":1571,"mutability":"mutable","name":"vestings","nameLocation":"2525:8:12","nodeType":"VariableDeclaration","scope":4510,"src":"2488:45:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting[])"},"typeName":{"id":1570,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1566,"name":"address","nodeType":"ElementaryTypeName","src":"2496:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2488:29:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting[])"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"baseType":{"id":1568,"nodeType":"UserDefinedTypeName","pathNode":{"id":1567,"name":"Vesting","nameLocations":["2507:7:12"],"nodeType":"IdentifierPath","referencedDeclaration":1496,"src":"2507:7:12"},"referencedDeclaration":1496,"src":"2507:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"}},"id":1569,"nodeType":"ArrayTypeName","src":"2507:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting[]"}}},"visibility":"public"},{"constant":false,"functionSelector":"51f6cf2f","id":1577,"mutability":"mutable","name":"unlockSchedules","nameLocation":"2579:15:12","nodeType":"VariableDeclaration","scope":4510,"src":"2539:55:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_UnlockStep_$1501_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.UnlockStep[])"},"typeName":{"id":1576,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1572,"name":"address","nodeType":"ElementaryTypeName","src":"2547:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2539:32:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_UnlockStep_$1501_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.UnlockStep[])"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"baseType":{"id":1574,"nodeType":"UserDefinedTypeName","pathNode":{"id":1573,"name":"UnlockStep","nameLocations":["2558:10:12"],"nodeType":"IdentifierPath","referencedDeclaration":1501,"src":"2558:10:12"},"referencedDeclaration":1501,"src":"2558:10:12","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1501_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep"}},"id":1575,"nodeType":"ArrayTypeName","src":"2558:12:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UnlockStep_$1501_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep[]"}}},"visibility":"public"},{"constant":false,"functionSelector":"01374518","id":1581,"mutability":"mutable","name":"priceOracles","nameLocation":"2635:12:12","nodeType":"VariableDeclaration","scope":4510,"src":"2600:47:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"typeName":{"id":1580,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1578,"name":"address","nodeType":"ElementaryTypeName","src":"2608:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2600:27:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1579,"name":"address","nodeType":"ElementaryTypeName","src":"2619:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},"visibility":"public"},{"constant":false,"functionSelector":"592d1dd1","id":1585,"mutability":"mutable","name":"dollarsVested","nameLocation":"2688:13:12","nodeType":"VariableDeclaration","scope":4510,"src":"2653:48:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1584,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1582,"name":"address","nodeType":"ElementaryTypeName","src":"2661:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2653:27:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1583,"name":"uint256","nodeType":"ElementaryTypeName","src":"2672:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"public"},{"constant":false,"functionSelector":"092c7610","id":1589,"mutability":"mutable","name":"vestedTotal","nameLocation":"2762:11:12","nodeType":"VariableDeclaration","scope":4510,"src":"2727:46:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1588,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1586,"name":"address","nodeType":"ElementaryTypeName","src":"2735:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2727:27:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1587,"name":"uint256","nodeType":"ElementaryTypeName","src":"2746:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"public"},{"constant":false,"functionSelector":"1ada70a8","id":1591,"mutability":"mutable","name":"lockupDuration","nameLocation":"2815:14:12","nodeType":"VariableDeclaration","scope":4510,"src":"2800:29:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1590,"name":"uint256","nodeType":"ElementaryTypeName","src":"2800:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"0519da32","id":1593,"mutability":"mutable","name":"unlockDelay","nameLocation":"2850:11:12","nodeType":"VariableDeclaration","scope":4510,"src":"2835:26:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1592,"name":"uint256","nodeType":"ElementaryTypeName","src":"2835:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":true,"id":1596,"mutability":"constant","name":"BONUS_PERCENTAGE","nameLocation":"2892:16:12","nodeType":"VariableDeclaration","scope":4510,"src":"2867:46:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1594,"name":"uint256","nodeType":"ElementaryTypeName","src":"2867:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"3130","id":1595,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2911:2:12","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"visibility":"private"},{"constant":false,"id":1602,"mutability":"mutable","name":"withdrawVestingActual","nameLocation":"2970:21:12","nodeType":"VariableDeclaration","scope":4510,"src":"2924:67:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawVesting_$1510_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawVesting[])"},"typeName":{"id":1601,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1597,"name":"address","nodeType":"ElementaryTypeName","src":"2932:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2924:37:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawVesting_$1510_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawVesting[])"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"baseType":{"id":1599,"nodeType":"UserDefinedTypeName","pathNode":{"id":1598,"name":"WithdrawVesting","nameLocations":["2943:15:12"],"nodeType":"IdentifierPath","referencedDeclaration":1510,"src":"2943:15:12"},"referencedDeclaration":1510,"src":"2943:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawVesting_$1510_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting"}},"id":1600,"nodeType":"ArrayTypeName","src":"2943:17:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1510_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting[]"}}},"visibility":"private"},{"constant":false,"id":1604,"mutability":"mutable","name":"withdrawVestingCounterActual","nameLocation":"3013:28:12","nodeType":"VariableDeclaration","scope":4510,"src":"2997:44:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1603,"name":"uint256","nodeType":"ElementaryTypeName","src":"2997:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"functionSelector":"87b4b105","id":1608,"mutability":"mutable","name":"withdrawVestingLiabilities","nameLocation":"3152:26:12","nodeType":"VariableDeclaration","scope":4510,"src":"3117:61:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1607,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1605,"name":"address","nodeType":"ElementaryTypeName","src":"3125:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"3117:27:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1606,"name":"uint256","nodeType":"ElementaryTypeName","src":"3136:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"public"},{"constant":false,"functionSelector":"c6b61e4c","id":1613,"mutability":"mutable","name":"epochs","nameLocation":"3255:6:12","nodeType":"VariableDeclaration","scope":4510,"src":"3222:39:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Epoch_$1521_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.Epoch)"},"typeName":{"id":1612,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1609,"name":"uint256","nodeType":"ElementaryTypeName","src":"3230:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"3222:25:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Epoch_$1521_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.Epoch)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1611,"nodeType":"UserDefinedTypeName","pathNode":{"id":1610,"name":"Epoch","nameLocations":["3241:5:12"],"nodeType":"IdentifierPath","referencedDeclaration":1521,"src":"3241:5:12"},"referencedDeclaration":1521,"src":"3241:5:12","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1521_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch"}}},"visibility":"public"},{"constant":false,"functionSelector":"13baee5b","id":1617,"mutability":"mutable","name":"userBigStake","nameLocation":"3302:12:12","nodeType":"VariableDeclaration","scope":4510,"src":"3267:47:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1616,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1614,"name":"address","nodeType":"ElementaryTypeName","src":"3275:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"3267:27:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1615,"name":"uint256","nodeType":"ElementaryTypeName","src":"3286:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"public"},{"constant":false,"functionSelector":"da1b4364","id":1621,"mutability":"mutable","name":"userLastClaimedEpoch","nameLocation":"3393:20:12","nodeType":"VariableDeclaration","scope":4510,"src":"3358:55:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1620,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1618,"name":"address","nodeType":"ElementaryTypeName","src":"3366:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"3358:27:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1619,"name":"uint256","nodeType":"ElementaryTypeName","src":"3377:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"public"},{"constant":false,"functionSelector":"cc573a91","id":1627,"mutability":"mutable","name":"withdrawStakes","nameLocation":"3496:14:12","nodeType":"VariableDeclaration","scope":4510,"src":"3453:57:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawStake[])"},"typeName":{"id":1626,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1622,"name":"address","nodeType":"ElementaryTypeName","src":"3461:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"3453:35:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawStake[])"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"baseType":{"id":1624,"nodeType":"UserDefinedTypeName","pathNode":{"id":1623,"name":"WithdrawStake","nameLocations":["3472:13:12"],"nodeType":"IdentifierPath","referencedDeclaration":1528,"src":"3472:13:12"},"referencedDeclaration":1528,"src":"3472:13:12","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1528_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake"}},"id":1625,"nodeType":"ArrayTypeName","src":"3472:15:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake[]"}}},"visibility":"public"},{"constant":false,"functionSelector":"eacdc5ff","id":1629,"mutability":"mutable","name":"currentEpochId","nameLocation":"3561:14:12","nodeType":"VariableDeclaration","scope":4510,"src":"3546:29:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1628,"name":"uint256","nodeType":"ElementaryTypeName","src":"3546:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"2ded58aa","id":1631,"mutability":"mutable","name":"totalBigStakes","nameLocation":"3596:14:12","nodeType":"VariableDeclaration","scope":4510,"src":"3581:29:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1630,"name":"uint256","nodeType":"ElementaryTypeName","src":"3581:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"a36be55c","id":1633,"mutability":"mutable","name":"paybackPercent","nameLocation":"3680:14:12","nodeType":"VariableDeclaration","scope":4510,"src":"3665:29:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1632,"name":"uint256","nodeType":"ElementaryTypeName","src":"3665:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"43a32f89","id":1640,"mutability":"mutable","name":"sellStakes","nameLocation":"3850:10:12","nodeType":"VariableDeclaration","scope":4510,"src":"3793:67:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_SellStake_$1537_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct CunaFinanceBsc.SellStake))"},"typeName":{"id":1639,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1634,"name":"address","nodeType":"ElementaryTypeName","src":"3801:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"3793:49:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_SellStake_$1537_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct CunaFinanceBsc.SellStake))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1638,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1635,"name":"uint256","nodeType":"ElementaryTypeName","src":"3820:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"3812:29:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_SellStake_$1537_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.SellStake)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1637,"nodeType":"UserDefinedTypeName","pathNode":{"id":1636,"name":"SellStake","nameLocations":["3831:9:12"],"nodeType":"IdentifierPath","referencedDeclaration":1537,"src":"3831:9:12"},"referencedDeclaration":1537,"src":"3831:9:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake"}}}},"visibility":"public"},{"constant":false,"functionSelector":"fe2f50d0","id":1642,"mutability":"mutable","name":"marketplaceMin","nameLocation":"3916:14:12","nodeType":"VariableDeclaration","scope":4510,"src":"3901:29:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1641,"name":"uint256","nodeType":"ElementaryTypeName","src":"3901:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"6ef569a5","id":1644,"mutability":"mutable","name":"cancellationFee","nameLocation":"4018:15:12","nodeType":"VariableDeclaration","scope":4510,"src":"4003:30:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1643,"name":"uint256","nodeType":"ElementaryTypeName","src":"4003:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"8f82818f","id":1648,"mutability":"mutable","name":"marketplace_sales","nameLocation":"4137:17:12","nodeType":"VariableDeclaration","scope":4510,"src":"4102:52:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1647,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1645,"name":"address","nodeType":"ElementaryTypeName","src":"4110:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"4102:27:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1646,"name":"uint256","nodeType":"ElementaryTypeName","src":"4121:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"public"},{"constant":false,"functionSelector":"441a4175","id":1652,"mutability":"mutable","name":"sellStakeKeys","nameLocation":"4212:13:12","nodeType":"VariableDeclaration","scope":4510,"src":"4190:35:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1542_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey[]"},"typeName":{"baseType":{"id":1650,"nodeType":"UserDefinedTypeName","pathNode":{"id":1649,"name":"SellStakeKey","nameLocations":["4190:12:12"],"nodeType":"IdentifierPath","referencedDeclaration":1542,"src":"4190:12:12"},"referencedDeclaration":1542,"src":"4190:12:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_storage_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey"}},"id":1651,"nodeType":"ArrayTypeName","src":"4190:14:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1542_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey[]"}},"visibility":"public"},{"constant":false,"id":1658,"mutability":"mutable","name":"sellStakeKeyIndex","nameLocation":"4334:17:12","nodeType":"VariableDeclaration","scope":4510,"src":"4278:73:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"},"typeName":{"id":1657,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1653,"name":"address","nodeType":"ElementaryTypeName","src":"4286:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"4278:47:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1656,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1654,"name":"uint256","nodeType":"ElementaryTypeName","src":"4305:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"4297:27:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1655,"name":"uint256","nodeType":"ElementaryTypeName","src":"4316:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"private"},{"constant":false,"functionSelector":"9f3a676c","id":1662,"mutability":"mutable","name":"marketplaceHistory","nameLocation":"4417:18:12","nodeType":"VariableDeclaration","scope":4510,"src":"4389:46:12","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1555_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.MarketplaceHistory[]"},"typeName":{"baseType":{"id":1660,"nodeType":"UserDefinedTypeName","pathNode":{"id":1659,"name":"MarketplaceHistory","nameLocations":["4389:18:12"],"nodeType":"IdentifierPath","referencedDeclaration":1555,"src":"4389:18:12"},"referencedDeclaration":1555,"src":"4389:18:12","typeDescriptions":{"typeIdentifier":"t_struct$_MarketplaceHistory_$1555_storage_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory"}},"id":1661,"nodeType":"ArrayTypeName","src":"4389:20:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1555_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory[]"}},"visibility":"public"},{"anonymous":false,"eventSelector":"9ade76f4385de306666dfb21a52b27d52db0fde8ad0f515fa261f532cac60d21","id":1670,"name":"VestingCreated","nameLocation":"4502:14:12","nodeType":"EventDefinition","parameters":{"id":1669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1664,"indexed":true,"mutability":"mutable","name":"user","nameLocation":"4533:4:12","nodeType":"VariableDeclaration","scope":1670,"src":"4517:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1663,"name":"address","nodeType":"ElementaryTypeName","src":"4517:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1666,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"4547:6:12","nodeType":"VariableDeclaration","scope":1670,"src":"4539:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1665,"name":"uint256","nodeType":"ElementaryTypeName","src":"4539:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1668,"indexed":false,"mutability":"mutable","name":"bonus","nameLocation":"4563:5:12","nodeType":"VariableDeclaration","scope":1670,"src":"4555:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1667,"name":"uint256","nodeType":"ElementaryTypeName","src":"4555:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4516:53:12"},"src":"4496:74:12"},{"anonymous":false,"eventSelector":"4a94c2c356e29a6583071e731bdacf2ca56565ba5efebcff6936eb7923b51721","id":1678,"name":"VestingClaimed","nameLocation":"4581:14:12","nodeType":"EventDefinition","parameters":{"id":1677,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1672,"indexed":true,"mutability":"mutable","name":"user","nameLocation":"4612:4:12","nodeType":"VariableDeclaration","scope":1678,"src":"4596:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1671,"name":"address","nodeType":"ElementaryTypeName","src":"4596:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1674,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"4626:6:12","nodeType":"VariableDeclaration","scope":1678,"src":"4618:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1673,"name":"uint256","nodeType":"ElementaryTypeName","src":"4618:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1676,"indexed":false,"mutability":"mutable","name":"bonus","nameLocation":"4642:5:12","nodeType":"VariableDeclaration","scope":1678,"src":"4634:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1675,"name":"uint256","nodeType":"ElementaryTypeName","src":"4634:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4595:53:12"},"src":"4575:74:12"},{"anonymous":false,"eventSelector":"4e69fdc49495bcab2b4375781457ba16653a90eb4ffb6588351bdc39071433e2","id":1684,"name":"BonusClaimed","nameLocation":"4660:12:12","nodeType":"EventDefinition","parameters":{"id":1683,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1680,"indexed":true,"mutability":"mutable","name":"user","nameLocation":"4689:4:12","nodeType":"VariableDeclaration","scope":1684,"src":"4673:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1679,"name":"address","nodeType":"ElementaryTypeName","src":"4673:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1682,"indexed":false,"mutability":"mutable","name":"bonus","nameLocation":"4703:5:12","nodeType":"VariableDeclaration","scope":1684,"src":"4695:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1681,"name":"uint256","nodeType":"ElementaryTypeName","src":"4695:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4672:37:12"},"src":"4654:56:12"},{"anonymous":false,"eventSelector":"de4b6ccc38b84f88129403b65a309f9b1c41d4c316bc2118d7614e449b9d4c45","id":1688,"name":"UnlockScheduleSet","nameLocation":"4721:17:12","nodeType":"EventDefinition","parameters":{"id":1687,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1686,"indexed":true,"mutability":"mutable","name":"token","nameLocation":"4755:5:12","nodeType":"VariableDeclaration","scope":1688,"src":"4739:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1685,"name":"address","nodeType":"ElementaryTypeName","src":"4739:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4738:23:12"},"src":"4715:47:12"},{"anonymous":false,"eventSelector":"a92ff919b850e4909ab2261d907ef955f11bc1716733a6cbece38d163a69af8a","id":1696,"name":"FundsWithdrawn","nameLocation":"4773:14:12","nodeType":"EventDefinition","parameters":{"id":1695,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1690,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"4804:5:12","nodeType":"VariableDeclaration","scope":1696,"src":"4788:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1689,"name":"address","nodeType":"ElementaryTypeName","src":"4788:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1692,"indexed":true,"mutability":"mutable","name":"token","nameLocation":"4827:5:12","nodeType":"VariableDeclaration","scope":1696,"src":"4811:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1691,"name":"address","nodeType":"ElementaryTypeName","src":"4811:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1694,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"4842:6:12","nodeType":"VariableDeclaration","scope":1696,"src":"4834:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1693,"name":"uint256","nodeType":"ElementaryTypeName","src":"4834:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4787:62:12"},"src":"4767:83:12"},{"anonymous":false,"eventSelector":"eadbedb993dfca23e4c79bf4fa5fe531c2e0e926258fabb8445e8bc5c472780f","id":1706,"name":"EpochEnded","nameLocation":"4894:10:12","nodeType":"EventDefinition","parameters":{"id":1705,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1698,"indexed":true,"mutability":"mutable","name":"epochId","nameLocation":"4921:7:12","nodeType":"VariableDeclaration","scope":1706,"src":"4905:23:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1697,"name":"uint256","nodeType":"ElementaryTypeName","src":"4905:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1700,"indexed":false,"mutability":"mutable","name":"treasuryTvl","nameLocation":"4938:11:12","nodeType":"VariableDeclaration","scope":1706,"src":"4930:19:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1699,"name":"uint256","nodeType":"ElementaryTypeName","src":"4930:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1702,"indexed":false,"mutability":"mutable","name":"unlockPercentage","nameLocation":"4959:16:12","nodeType":"VariableDeclaration","scope":1706,"src":"4951:24:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1701,"name":"uint256","nodeType":"ElementaryTypeName","src":"4951:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1704,"indexed":false,"mutability":"mutable","name":"paybackPercent","nameLocation":"4985:14:12","nodeType":"VariableDeclaration","scope":1706,"src":"4977:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1703,"name":"uint256","nodeType":"ElementaryTypeName","src":"4977:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4904:96:12"},"src":"4888:113:12"},{"anonymous":false,"eventSelector":"ec7e3594982826a1f90c8fc76513357b83a691b7f4e38b8be04f3d40f9b15839","id":1712,"name":"StakeCreated","nameLocation":"5012:12:12","nodeType":"EventDefinition","parameters":{"id":1711,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1708,"indexed":true,"mutability":"mutable","name":"user","nameLocation":"5041:4:12","nodeType":"VariableDeclaration","scope":1712,"src":"5025:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1707,"name":"address","nodeType":"ElementaryTypeName","src":"5025:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1710,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"5055:6:12","nodeType":"VariableDeclaration","scope":1712,"src":"5047:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1709,"name":"uint256","nodeType":"ElementaryTypeName","src":"5047:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5024:38:12"},"src":"5006:57:12"},{"anonymous":false,"eventSelector":"a65a8b4f7f65a1063243d7f7e9e4da00ff767599acf21549ef2548a45d1695ae","id":1718,"name":"FundsClaimed","nameLocation":"5074:12:12","nodeType":"EventDefinition","parameters":{"id":1717,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1714,"indexed":true,"mutability":"mutable","name":"user","nameLocation":"5103:4:12","nodeType":"VariableDeclaration","scope":1718,"src":"5087:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1713,"name":"address","nodeType":"ElementaryTypeName","src":"5087:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1716,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"5117:6:12","nodeType":"VariableDeclaration","scope":1718,"src":"5109:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1715,"name":"uint256","nodeType":"ElementaryTypeName","src":"5109:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5086:38:12"},"src":"5068:57:12"},{"anonymous":false,"eventSelector":"933735aa8de6d7547d0126171b2f31b9c34dd00f3ecd4be85a0ba047db4fafef","id":1726,"name":"StakeWithdrawn","nameLocation":"5136:14:12","nodeType":"EventDefinition","parameters":{"id":1725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1720,"indexed":true,"mutability":"mutable","name":"user","nameLocation":"5167:4:12","nodeType":"VariableDeclaration","scope":1726,"src":"5151:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1719,"name":"address","nodeType":"ElementaryTypeName","src":"5151:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1722,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"5181:6:12","nodeType":"VariableDeclaration","scope":1726,"src":"5173:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1721,"name":"uint256","nodeType":"ElementaryTypeName","src":"5173:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1724,"indexed":false,"mutability":"mutable","name":"stakeId","nameLocation":"5197:7:12","nodeType":"VariableDeclaration","scope":1726,"src":"5189:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1723,"name":"uint256","nodeType":"ElementaryTypeName","src":"5189:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5150:55:12"},"src":"5130:76:12"},{"anonymous":false,"eventSelector":"8e79b7ba8dab5ebfa59b9c6af1743c3ef14863680b3cc5ac837f8d636f76031c","id":1734,"name":"StakeUpForSale","nameLocation":"5248:14:12","nodeType":"EventDefinition","parameters":{"id":1733,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1728,"indexed":true,"mutability":"mutable","name":"seller","nameLocation":"5279:6:12","nodeType":"VariableDeclaration","scope":1734,"src":"5263:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1727,"name":"address","nodeType":"ElementaryTypeName","src":"5263:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1730,"indexed":false,"mutability":"mutable","name":"saleAmount","nameLocation":"5295:10:12","nodeType":"VariableDeclaration","scope":1734,"src":"5287:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1729,"name":"uint256","nodeType":"ElementaryTypeName","src":"5287:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1732,"indexed":false,"mutability":"mutable","name":"stakeId","nameLocation":"5315:7:12","nodeType":"VariableDeclaration","scope":1734,"src":"5307:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1731,"name":"uint256","nodeType":"ElementaryTypeName","src":"5307:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5262:61:12"},"src":"5242:82:12"},{"anonymous":false,"eventSelector":"73d12dec3eb3b445b6c9feb2fd559ba7c852c525bc1e59d8f7ff760c55df041d","id":1740,"name":"StakeSaleCancelled","nameLocation":"5335:18:12","nodeType":"EventDefinition","parameters":{"id":1739,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1736,"indexed":true,"mutability":"mutable","name":"seller","nameLocation":"5370:6:12","nodeType":"VariableDeclaration","scope":1740,"src":"5354:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1735,"name":"address","nodeType":"ElementaryTypeName","src":"5354:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1738,"indexed":false,"mutability":"mutable","name":"stakeId","nameLocation":"5386:7:12","nodeType":"VariableDeclaration","scope":1740,"src":"5378:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1737,"name":"uint256","nodeType":"ElementaryTypeName","src":"5378:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5353:41:12"},"src":"5329:66:12"},{"anonymous":false,"eventSelector":"7bb39d095b04a9986ed34adf14d74c33294d0a9e807f02bf634d532507422eba","id":1750,"name":"StakeSold","nameLocation":"5406:9:12","nodeType":"EventDefinition","parameters":{"id":1749,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1742,"indexed":true,"mutability":"mutable","name":"seller","nameLocation":"5432:6:12","nodeType":"VariableDeclaration","scope":1750,"src":"5416:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1741,"name":"address","nodeType":"ElementaryTypeName","src":"5416:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1744,"indexed":true,"mutability":"mutable","name":"buyer","nameLocation":"5456:5:12","nodeType":"VariableDeclaration","scope":1750,"src":"5440:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1743,"name":"address","nodeType":"ElementaryTypeName","src":"5440:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1746,"indexed":false,"mutability":"mutable","name":"saleAmount","nameLocation":"5471:10:12","nodeType":"VariableDeclaration","scope":1750,"src":"5463:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1745,"name":"uint256","nodeType":"ElementaryTypeName","src":"5463:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1748,"indexed":false,"mutability":"mutable","name":"stakeId","nameLocation":"5491:7:12","nodeType":"VariableDeclaration","scope":1750,"src":"5483:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1747,"name":"uint256","nodeType":"ElementaryTypeName","src":"5483:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5415:84:12"},"src":"5400:100:12"},{"anonymous":false,"eventSelector":"4725a4d4de9bff212d0885095e27515072f73f427df55e52f37f241321ef88f9","id":1758,"name":"CancellationFeePaid","nameLocation":"5511:19:12","nodeType":"EventDefinition","parameters":{"id":1757,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1752,"indexed":true,"mutability":"mutable","name":"seller","nameLocation":"5547:6:12","nodeType":"VariableDeclaration","scope":1758,"src":"5531:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1751,"name":"address","nodeType":"ElementaryTypeName","src":"5531:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1754,"indexed":false,"mutability":"mutable","name":"fee","nameLocation":"5563:3:12","nodeType":"VariableDeclaration","scope":1758,"src":"5555:11:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1753,"name":"uint256","nodeType":"ElementaryTypeName","src":"5555:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1756,"indexed":false,"mutability":"mutable","name":"stakeId","nameLocation":"5576:7:12","nodeType":"VariableDeclaration","scope":1758,"src":"5568:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1755,"name":"uint256","nodeType":"ElementaryTypeName","src":"5568:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5530:54:12"},"src":"5505:80:12"},{"body":{"id":1769,"nodeType":"Block","src":"5629:73:12","statements":[{"expression":{"arguments":[{"baseExpression":{"id":1761,"name":"owners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1561,"src":"5647:6:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":1764,"indexExpression":{"expression":{"id":1762,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"5654:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1763,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5658:6:12","memberName":"sender","nodeType":"MemberAccess","src":"5654:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5647:18:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f7420617574686f72697a6564","id":1765,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5667:16:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36","typeString":"literal_string \"Not authorized\""},"value":"Not authorized"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36","typeString":"literal_string \"Not authorized\""}],"id":1760,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5639:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1766,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5639:45:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1767,"nodeType":"ExpressionStatement","src":"5639:45:12"},{"id":1768,"nodeType":"PlaceholderStatement","src":"5694:1:12"}]},"id":1770,"name":"onlyOwner","nameLocation":"5617:9:12","nodeType":"ModifierDefinition","parameters":{"id":1759,"nodeType":"ParameterList","parameters":[],"src":"5626:2:12"},"src":"5608:94:12","virtual":false,"visibility":"internal"},{"body":{"id":1781,"nodeType":"Block","src":"5731:81:12","statements":[{"expression":{"arguments":[{"baseExpression":{"id":1773,"name":"authorizedBots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1565,"src":"5749:14:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":1776,"indexExpression":{"expression":{"id":1774,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"5764:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5768:6:12","memberName":"sender","nodeType":"MemberAccess","src":"5764:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5749:26:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f7420617574686f72697a6564","id":1777,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5777:16:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36","typeString":"literal_string \"Not authorized\""},"value":"Not authorized"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36","typeString":"literal_string \"Not authorized\""}],"id":1772,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5741:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1778,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5741:53:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1779,"nodeType":"ExpressionStatement","src":"5741:53:12"},{"id":1780,"nodeType":"PlaceholderStatement","src":"5804:1:12"}]},"id":1782,"name":"onlyBot","nameLocation":"5721:7:12","nodeType":"ModifierDefinition","parameters":{"id":1771,"nodeType":"ParameterList","parameters":[],"src":"5728:2:12"},"src":"5712:100:12","virtual":false,"visibility":"internal"},{"body":{"id":1795,"nodeType":"Block","src":"5832:134:12","statements":[{"expression":{"id":1787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1785,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1557,"src":"5842:5:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"307834313937304365373662363536303330413739453743314641373646433445423933393830323535","id":1786,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5850:42:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"value":"0x41970Ce76b656030A79E7C1FA76FC4EB93980255"},"src":"5842:50:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1788,"nodeType":"ExpressionStatement","src":"5842:50:12"},{"expression":{"id":1793,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1789,"name":"owners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1561,"src":"5902:6:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":1791,"indexExpression":{"hexValue":"307834313937304365373662363536303330413739453743314641373646433445423933393830323535","id":1790,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5909:42:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"value":"0x41970Ce76b656030A79E7C1FA76FC4EB93980255"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"5902:50:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1792,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5955:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"5902:57:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1794,"nodeType":"ExpressionStatement","src":"5902:57:12"}]},"id":1796,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":1783,"nodeType":"ParameterList","parameters":[],"src":"5829:2:12"},"returnParameters":{"id":1784,"nodeType":"ParameterList","parameters":[],"src":"5832:0:12"},"scope":4510,"src":"5818:148:12","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":1817,"nodeType":"Block","src":"6056:95:12","statements":[{"expression":{"arguments":[{"id":1807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6074:18:12","subExpression":{"baseExpression":{"id":1804,"name":"owners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1561,"src":"6075:6:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":1806,"indexExpression":{"id":1805,"name":"_newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1798,"src":"6082:9:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6075:17:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416c7265616479206f776e6572","id":1808,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6094:15:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_a0e5f91d515f2cca6fea514f5d410d9cd3a3de245b2e2deb2a867e55917af289","typeString":"literal_string \"Already owner\""},"value":"Already owner"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a0e5f91d515f2cca6fea514f5d410d9cd3a3de245b2e2deb2a867e55917af289","typeString":"literal_string \"Already owner\""}],"id":1803,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6066:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1809,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6066:44:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1810,"nodeType":"ExpressionStatement","src":"6066:44:12"},{"expression":{"id":1815,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1811,"name":"owners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1561,"src":"6120:6:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":1813,"indexExpression":{"id":1812,"name":"_newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1798,"src":"6127:9:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6120:17:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1814,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6140:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6120:24:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1816,"nodeType":"ExpressionStatement","src":"6120:24:12"}]},"functionSelector":"7065cb48","id":1818,"implemented":true,"kind":"function","modifiers":[{"id":1801,"kind":"modifierInvocation","modifierName":{"id":1800,"name":"onlyOwner","nameLocations":["6046:9:12"],"nodeType":"IdentifierPath","referencedDeclaration":1770,"src":"6046:9:12"},"nodeType":"ModifierInvocation","src":"6046:9:12"}],"name":"addOwner","nameLocation":"6009:8:12","nodeType":"FunctionDefinition","parameters":{"id":1799,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1798,"mutability":"mutable","name":"_newOwner","nameLocation":"6026:9:12","nodeType":"VariableDeclaration","scope":1818,"src":"6018:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1797,"name":"address","nodeType":"ElementaryTypeName","src":"6018:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6017:19:12"},"returnParameters":{"id":1802,"nodeType":"ParameterList","parameters":[],"src":"6056:0:12"},"scope":4510,"src":"6000:151:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1846,"nodeType":"Block","src":"6213:146:12","statements":[{"expression":{"arguments":[{"baseExpression":{"id":1826,"name":"owners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1561,"src":"6231:6:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":1828,"indexExpression":{"id":1827,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1820,"src":"6238:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6231:14:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f74206f776e6572","id":1829,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6247:11:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_c266efca4f4ed37612271196433531dcbb4fca89a694d568d1e290e32feb1682","typeString":"literal_string \"Not owner\""},"value":"Not owner"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c266efca4f4ed37612271196433531dcbb4fca89a694d568d1e290e32feb1682","typeString":"literal_string \"Not owner\""}],"id":1825,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6223:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1830,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6223:36:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1831,"nodeType":"ExpressionStatement","src":"6223:36:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1836,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1833,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1820,"src":"6277:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":1834,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"6287:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1835,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6291:6:12","memberName":"sender","nodeType":"MemberAccess","src":"6287:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6277:20:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"43616e6e6f742072656d6f76652073656c66","id":1837,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6299:20:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_56a630a6cae883952b5fbd7413dd0e1f1e7b64e1f4026c3de951fb35e0a10d3c","typeString":"literal_string \"Cannot remove self\""},"value":"Cannot remove self"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_56a630a6cae883952b5fbd7413dd0e1f1e7b64e1f4026c3de951fb35e0a10d3c","typeString":"literal_string \"Cannot remove self\""}],"id":1832,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6269:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1838,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6269:51:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1839,"nodeType":"ExpressionStatement","src":"6269:51:12"},{"expression":{"id":1844,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1840,"name":"owners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1561,"src":"6330:6:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":1842,"indexExpression":{"id":1841,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1820,"src":"6337:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6330:14:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":1843,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6347:5:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"6330:22:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1845,"nodeType":"ExpressionStatement","src":"6330:22:12"}]},"functionSelector":"173825d9","id":1847,"implemented":true,"kind":"function","modifiers":[{"id":1823,"kind":"modifierInvocation","modifierName":{"id":1822,"name":"onlyOwner","nameLocations":["6203:9:12"],"nodeType":"IdentifierPath","referencedDeclaration":1770,"src":"6203:9:12"},"nodeType":"ModifierInvocation","src":"6203:9:12"}],"name":"removeOwner","nameLocation":"6166:11:12","nodeType":"FunctionDefinition","parameters":{"id":1821,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1820,"mutability":"mutable","name":"_owner","nameLocation":"6186:6:12","nodeType":"VariableDeclaration","scope":1847,"src":"6178:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1819,"name":"address","nodeType":"ElementaryTypeName","src":"6178:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6177:16:12"},"returnParameters":{"id":1824,"nodeType":"ParameterList","parameters":[],"src":"6213:0:12"},"scope":4510,"src":"6157:202:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1871,"nodeType":"Block","src":"6499:98:12","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1856,"name":"bot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1850,"src":"6517:3:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1859,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6532:1:12","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":1858,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6524:7:12","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1857,"name":"address","nodeType":"ElementaryTypeName","src":"6524:7:12","typeDescriptions":{}}},"id":1860,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6524:10:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6517:17:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642061646472657373","id":1862,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6536:17:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_1462473b7a4b33d32b109b815fd2324d00c9e5839b707ecf16d0ab5744f99226","typeString":"literal_string \"Invalid address\""},"value":"Invalid address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1462473b7a4b33d32b109b815fd2324d00c9e5839b707ecf16d0ab5744f99226","typeString":"literal_string \"Invalid address\""}],"id":1855,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6509:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1863,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6509:45:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1864,"nodeType":"ExpressionStatement","src":"6509:45:12"},{"expression":{"id":1869,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1865,"name":"authorizedBots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1565,"src":"6564:14:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":1867,"indexExpression":{"id":1866,"name":"bot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1850,"src":"6579:3:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6564:19:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":1868,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6586:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6564:26:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1870,"nodeType":"ExpressionStatement","src":"6564:26:12"}]},"documentation":{"id":1848,"nodeType":"StructuredDocumentation","src":"6365:83:12","text":"@notice Function to add a bot to the list (only callable by the contract owner)"},"functionSelector":"ffecf516","id":1872,"implemented":true,"kind":"function","modifiers":[{"id":1853,"kind":"modifierInvocation","modifierName":{"id":1852,"name":"onlyBot","nameLocations":["6491:7:12"],"nodeType":"IdentifierPath","referencedDeclaration":1782,"src":"6491:7:12"},"nodeType":"ModifierInvocation","src":"6491:7:12"}],"name":"addBot","nameLocation":"6462:6:12","nodeType":"FunctionDefinition","parameters":{"id":1851,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1850,"mutability":"mutable","name":"bot","nameLocation":"6477:3:12","nodeType":"VariableDeclaration","scope":1872,"src":"6469:11:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1849,"name":"address","nodeType":"ElementaryTypeName","src":"6469:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6468:13:12"},"returnParameters":{"id":1854,"nodeType":"ParameterList","parameters":[],"src":"6499:0:12"},"scope":4510,"src":"6453:144:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1883,"nodeType":"Block","src":"6694:43:12","statements":[{"expression":{"id":1881,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1879,"name":"lockupDuration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1591,"src":"6704:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1880,"name":"_duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1874,"src":"6721:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6704:26:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1882,"nodeType":"ExpressionStatement","src":"6704:26:12"}]},"functionSelector":"c36d03fd","id":1884,"implemented":true,"kind":"function","modifiers":[{"id":1877,"kind":"modifierInvocation","modifierName":{"id":1876,"name":"onlyOwner","nameLocations":["6684:9:12"],"nodeType":"IdentifierPath","referencedDeclaration":1770,"src":"6684:9:12"},"nodeType":"ModifierInvocation","src":"6684:9:12"}],"name":"updateLockupDuration","nameLocation":"6635:20:12","nodeType":"FunctionDefinition","parameters":{"id":1875,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1874,"mutability":"mutable","name":"_duration","nameLocation":"6664:9:12","nodeType":"VariableDeclaration","scope":1884,"src":"6656:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1873,"name":"uint256","nodeType":"ElementaryTypeName","src":"6656:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6655:19:12"},"returnParameters":{"id":1878,"nodeType":"ParameterList","parameters":[],"src":"6694:0:12"},"scope":4510,"src":"6626:111:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1895,"nodeType":"Block","src":"6805:37:12","statements":[{"expression":{"id":1893,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1891,"name":"unlockDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1593,"src":"6815:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1892,"name":"_delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1886,"src":"6829:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6815:20:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1894,"nodeType":"ExpressionStatement","src":"6815:20:12"}]},"functionSelector":"ce13d090","id":1896,"implemented":true,"kind":"function","modifiers":[{"id":1889,"kind":"modifierInvocation","modifierName":{"id":1888,"name":"onlyOwner","nameLocations":["6795:9:12"],"nodeType":"IdentifierPath","referencedDeclaration":1770,"src":"6795:9:12"},"nodeType":"ModifierInvocation","src":"6795:9:12"}],"name":"updateUnlockDelay","nameLocation":"6752:17:12","nodeType":"FunctionDefinition","parameters":{"id":1887,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1886,"mutability":"mutable","name":"_delay","nameLocation":"6778:6:12","nodeType":"VariableDeclaration","scope":1896,"src":"6770:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1885,"name":"uint256","nodeType":"ElementaryTypeName","src":"6770:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6769:16:12"},"returnParameters":{"id":1890,"nodeType":"ParameterList","parameters":[],"src":"6805:0:12"},"scope":4510,"src":"6743:99:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1921,"nodeType":"Block","src":"6933:123:12","statements":[{"expression":{"arguments":[{"expression":{"id":1909,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"6971:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1910,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6975:6:12","memberName":"sender","nodeType":"MemberAccess","src":"6971:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1911,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1900,"src":"6983:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":1906,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1898,"src":"6950:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1905,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":819,"src":"6943:6:12","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$819_$","typeString":"type(contract IERC20)"}},"id":1907,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6943:14:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$819","typeString":"contract IERC20"}},"id":1908,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6958:12:12","memberName":"safeTransfer","nodeType":"MemberAccess","referencedDeclaration":926,"src":"6943:27:12","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$819_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$819_$","typeString":"function (contract IERC20,address,uint256)"}},"id":1912,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6943:48:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1913,"nodeType":"ExpressionStatement","src":"6943:48:12"},{"eventCall":{"arguments":[{"expression":{"id":1915,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"7021:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1916,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7025:6:12","memberName":"sender","nodeType":"MemberAccess","src":"7021:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1917,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1898,"src":"7033:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1918,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1900,"src":"7041:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1914,"name":"FundsWithdrawn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1696,"src":"7006:14:12","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1919,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7006:43:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1920,"nodeType":"EmitStatement","src":"7001:48:12"}]},"functionSelector":"3f35e722","id":1922,"implemented":true,"kind":"function","modifiers":[{"id":1903,"kind":"modifierInvocation","modifierName":{"id":1902,"name":"onlyOwner","nameLocations":["6923:9:12"],"nodeType":"IdentifierPath","referencedDeclaration":1770,"src":"6923:9:12"},"nodeType":"ModifierInvocation","src":"6923:9:12"}],"name":"withdrawFromVestingPool","nameLocation":"6857:23:12","nodeType":"FunctionDefinition","parameters":{"id":1901,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1898,"mutability":"mutable","name":"_token","nameLocation":"6889:6:12","nodeType":"VariableDeclaration","scope":1922,"src":"6881:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1897,"name":"address","nodeType":"ElementaryTypeName","src":"6881:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1900,"mutability":"mutable","name":"_amount","nameLocation":"6905:7:12","nodeType":"VariableDeclaration","scope":1922,"src":"6897:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1899,"name":"uint256","nodeType":"ElementaryTypeName","src":"6897:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6880:33:12"},"returnParameters":{"id":1904,"nodeType":"ParameterList","parameters":[],"src":"6933:0:12"},"scope":4510,"src":"6848:208:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1937,"nodeType":"Block","src":"7138:47:12","statements":[{"expression":{"id":1935,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1931,"name":"priceOracles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1581,"src":"7148:12:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}},"id":1933,"indexExpression":{"id":1932,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1924,"src":"7161:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7148:20:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1934,"name":"_oracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1926,"src":"7171:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7148:30:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1936,"nodeType":"ExpressionStatement","src":"7148:30:12"}]},"functionSelector":"67a74ddc","id":1938,"implemented":true,"kind":"function","modifiers":[{"id":1929,"kind":"modifierInvocation","modifierName":{"id":1928,"name":"onlyOwner","nameLocations":["7128:9:12"],"nodeType":"IdentifierPath","referencedDeclaration":1770,"src":"7128:9:12"},"nodeType":"ModifierInvocation","src":"7128:9:12"}],"name":"setPriceOracle","nameLocation":"7071:14:12","nodeType":"FunctionDefinition","parameters":{"id":1927,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1924,"mutability":"mutable","name":"_token","nameLocation":"7094:6:12","nodeType":"VariableDeclaration","scope":1938,"src":"7086:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1923,"name":"address","nodeType":"ElementaryTypeName","src":"7086:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1926,"mutability":"mutable","name":"_oracle","nameLocation":"7110:7:12","nodeType":"VariableDeclaration","scope":1938,"src":"7102:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1925,"name":"address","nodeType":"ElementaryTypeName","src":"7102:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7085:33:12"},"returnParameters":{"id":1930,"nodeType":"ParameterList","parameters":[],"src":"7138:0:12"},"scope":4510,"src":"7062:123:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1949,"nodeType":"Block","src":"7261:45:12","statements":[{"expression":{"id":1947,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1945,"name":"paybackPercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1633,"src":"7271:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1946,"name":"_newPercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1940,"src":"7288:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7271:28:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1948,"nodeType":"ExpressionStatement","src":"7271:28:12"}]},"functionSelector":"3253ea5c","id":1950,"implemented":true,"kind":"function","modifiers":[{"id":1943,"kind":"modifierInvocation","modifierName":{"id":1942,"name":"onlyOwner","nameLocations":["7251:9:12"],"nodeType":"IdentifierPath","referencedDeclaration":1770,"src":"7251:9:12"},"nodeType":"ModifierInvocation","src":"7251:9:12"}],"name":"updatePaybackPercent","nameLocation":"7200:20:12","nodeType":"FunctionDefinition","parameters":{"id":1941,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1940,"mutability":"mutable","name":"_newPercent","nameLocation":"7229:11:12","nodeType":"VariableDeclaration","scope":1950,"src":"7221:19:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1939,"name":"uint256","nodeType":"ElementaryTypeName","src":"7221:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7220:21:12"},"returnParameters":{"id":1944,"nodeType":"ParameterList","parameters":[],"src":"7261:0:12"},"scope":4510,"src":"7191:115:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1962,"nodeType":"Block","src":"7572:41:12","statements":[{"expression":{"id":1960,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1958,"name":"marketplaceMin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1642,"src":"7582:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1959,"name":"_newMin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"7599:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7582:24:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1961,"nodeType":"ExpressionStatement","src":"7582:24:12"}]},"documentation":{"id":1951,"nodeType":"StructuredDocumentation","src":"7356:145:12","text":"@notice Update marketplace minimum value for listings\n @param _newMin The minimum value in USD (with 18 decimals), ex: 25 * 1e18 = $25"},"functionSelector":"51e62472","id":1963,"implemented":true,"kind":"function","modifiers":[{"id":1956,"kind":"modifierInvocation","modifierName":{"id":1955,"name":"onlyOwner","nameLocations":["7562:9:12"],"nodeType":"IdentifierPath","referencedDeclaration":1770,"src":"7562:9:12"},"nodeType":"ModifierInvocation","src":"7562:9:12"}],"name":"updateMarketplaceMin","nameLocation":"7515:20:12","nodeType":"FunctionDefinition","parameters":{"id":1954,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1953,"mutability":"mutable","name":"_newMin","nameLocation":"7544:7:12","nodeType":"VariableDeclaration","scope":1963,"src":"7536:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1952,"name":"uint256","nodeType":"ElementaryTypeName","src":"7536:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7535:17:12"},"returnParameters":{"id":1957,"nodeType":"ParameterList","parameters":[],"src":"7572:0:12"},"scope":4510,"src":"7506:107:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":1975,"nodeType":"Block","src":"7815:42:12","statements":[{"expression":{"id":1973,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1971,"name":"cancellationFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1644,"src":"7825:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1972,"name":"_newFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1966,"src":"7843:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7825:25:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1974,"nodeType":"ExpressionStatement","src":"7825:25:12"}]},"documentation":{"id":1964,"nodeType":"StructuredDocumentation","src":"7623:120:12","text":"@notice Update cancellation fee percentage\n @param _newFee The fee percentage (scaled by 10000), ex: 500 = 5%"},"functionSelector":"1aefa2d1","id":1976,"implemented":true,"kind":"function","modifiers":[{"id":1969,"kind":"modifierInvocation","modifierName":{"id":1968,"name":"onlyOwner","nameLocations":["7805:9:12"],"nodeType":"IdentifierPath","referencedDeclaration":1770,"src":"7805:9:12"},"nodeType":"ModifierInvocation","src":"7805:9:12"}],"name":"updateCancellationFee","nameLocation":"7757:21:12","nodeType":"FunctionDefinition","parameters":{"id":1967,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1966,"mutability":"mutable","name":"_newFee","nameLocation":"7787:7:12","nodeType":"VariableDeclaration","scope":1976,"src":"7779:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1965,"name":"uint256","nodeType":"ElementaryTypeName","src":"7779:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7778:17:12"},"returnParameters":{"id":1970,"nodeType":"ParameterList","parameters":[],"src":"7815:0:12"},"scope":4510,"src":"7748:109:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2045,"nodeType":"Block","src":"8340:688:12","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1998,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1994,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1992,"name":"lastLiability","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1985,"src":"8363:13:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1993,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8380:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8363:18:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1997,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1995,"name":"currentLiability","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1981,"src":"8385:16:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1996,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8405:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8385:21:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"8363:43:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2002,"nodeType":"IfStatement","src":"8359:98:12","trueBody":{"id":2001,"nodeType":"Block","src":"8408:49:12","statements":[{"expression":{"hexValue":"30","id":1999,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8429:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":1991,"id":2000,"nodeType":"Return","src":"8422:8:12"}]}},{"assignments":[2004],"declarations":[{"constant":false,"id":2004,"mutability":"mutable","name":"currentRatio","nameLocation":"8543:12:12","nodeType":"VariableDeclaration","scope":2045,"src":"8535:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2003,"name":"uint256","nodeType":"ElementaryTypeName","src":"8535:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2011,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2010,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2007,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2005,"name":"currentTvl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1979,"src":"8559:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3130303030","id":2006,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8572:5:12","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"8559:18:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2008,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8558:20:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":2009,"name":"currentLiability","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1981,"src":"8581:16:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8558:39:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8535:62:12"},{"assignments":[2013],"declarations":[{"constant":false,"id":2013,"mutability":"mutable","name":"lastRatio","nameLocation":"8615:9:12","nodeType":"VariableDeclaration","scope":2045,"src":"8607:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2012,"name":"uint256","nodeType":"ElementaryTypeName","src":"8607:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2020,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2019,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2014,"name":"lastTvl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1983,"src":"8628:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3130303030","id":2015,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8638:5:12","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"8628:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2017,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8627:17:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":2018,"name":"lastLiability","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1985,"src":"8647:13:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8627:33:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8607:53:12"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2023,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2021,"name":"currentRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2004,"src":"8683:12:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":2022,"name":"lastRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2013,"src":"8699:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8683:25:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2027,"nodeType":"IfStatement","src":"8679:101:12","trueBody":{"id":2026,"nodeType":"Block","src":"8710:70:12","statements":[{"expression":{"hexValue":"30","id":2024,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8731:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":1991,"id":2025,"nodeType":"Return","src":"8724:8:12"}]}},{"assignments":[2029],"declarations":[{"constant":false,"id":2029,"mutability":"mutable","name":"ratioImprovement","nameLocation":"8856:16:12","nodeType":"VariableDeclaration","scope":2045,"src":"8848:24:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2028,"name":"uint256","nodeType":"ElementaryTypeName","src":"8848:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2033,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2032,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2030,"name":"currentRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2004,"src":"8875:12:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2031,"name":"lastRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2013,"src":"8890:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8875:24:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8848:51:12"},{"assignments":[2035],"declarations":[{"constant":false,"id":2035,"mutability":"mutable","name":"unlockPercentage","nameLocation":"8917:16:12","nodeType":"VariableDeclaration","scope":2045,"src":"8909:24:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2034,"name":"uint256","nodeType":"ElementaryTypeName","src":"8909:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2042,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2041,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2036,"name":"ratioImprovement","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2029,"src":"8937:16:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":2037,"name":"paybackPercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1987,"src":"8956:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8937:33:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2039,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8936:35:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130303030","id":2040,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8974:5:12","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"8936:43:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8909:70:12"},{"expression":{"id":2043,"name":"unlockPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2035,"src":"9005:16:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1991,"id":2044,"nodeType":"Return","src":"8998:23:12"}]},"documentation":{"id":1977,"nodeType":"StructuredDocumentation","src":"7905:205:12","text":"@notice Internal function to calculate unlock percentage based on TVL/liability ratio improvement\n @dev Formula: (current_tvl / current_liability) - (last_tvl / last_liability) * payback_percent"},"id":2046,"implemented":true,"kind":"function","modifiers":[],"name":"calculateUnlockPercentage","nameLocation":"8124:25:12","nodeType":"FunctionDefinition","parameters":{"id":1988,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1979,"mutability":"mutable","name":"currentTvl","nameLocation":"8167:10:12","nodeType":"VariableDeclaration","scope":2046,"src":"8159:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1978,"name":"uint256","nodeType":"ElementaryTypeName","src":"8159:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1981,"mutability":"mutable","name":"currentLiability","nameLocation":"8196:16:12","nodeType":"VariableDeclaration","scope":2046,"src":"8188:24:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1980,"name":"uint256","nodeType":"ElementaryTypeName","src":"8188:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1983,"mutability":"mutable","name":"lastTvl","nameLocation":"8230:7:12","nodeType":"VariableDeclaration","scope":2046,"src":"8222:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1982,"name":"uint256","nodeType":"ElementaryTypeName","src":"8222:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1985,"mutability":"mutable","name":"lastLiability","nameLocation":"8256:13:12","nodeType":"VariableDeclaration","scope":2046,"src":"8248:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1984,"name":"uint256","nodeType":"ElementaryTypeName","src":"8248:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1987,"mutability":"mutable","name":"paybackPercent","nameLocation":"8287:14:12","nodeType":"VariableDeclaration","scope":2046,"src":"8279:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1986,"name":"uint256","nodeType":"ElementaryTypeName","src":"8279:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8149:158:12"},"returnParameters":{"id":1991,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1990,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2046,"src":"8331:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1989,"name":"uint256","nodeType":"ElementaryTypeName","src":"8331:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8330:9:12"},"scope":4510,"src":"8115:913:12","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2115,"nodeType":"Block","src":"9454:1050:12","statements":[{"expression":{"id":2060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2058,"name":"paybackPercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1633,"src":"9528:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2059,"name":"_paybackPercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2053,"src":"9545:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9528:32:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2061,"nodeType":"ExpressionStatement","src":"9528:32:12"},{"assignments":[2063],"declarations":[{"constant":false,"id":2063,"mutability":"mutable","name":"unlockPercentage","nameLocation":"9587:16:12","nodeType":"VariableDeclaration","scope":2115,"src":"9579:24:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2062,"name":"uint256","nodeType":"ElementaryTypeName","src":"9579:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2065,"initialValue":{"hexValue":"30","id":2064,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9606:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"9579:28:12"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2068,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2066,"name":"currentEpochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1629,"src":"9630:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2067,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9647:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9630:18:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2091,"nodeType":"IfStatement","src":"9626:414:12","trueBody":{"id":2090,"nodeType":"Block","src":"9650:390:12","statements":[{"assignments":[2071],"declarations":[{"constant":false,"id":2071,"mutability":"mutable","name":"lastEpoch","nameLocation":"9717:9:12","nodeType":"VariableDeclaration","scope":2090,"src":"9703:23:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1521_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch"},"typeName":{"id":2070,"nodeType":"UserDefinedTypeName","pathNode":{"id":2069,"name":"Epoch","nameLocations":["9703:5:12"],"nodeType":"IdentifierPath","referencedDeclaration":1521,"src":"9703:5:12"},"referencedDeclaration":1521,"src":"9703:5:12","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1521_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch"}},"visibility":"internal"}],"id":2077,"initialValue":{"baseExpression":{"id":2072,"name":"epochs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1613,"src":"9729:6:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Epoch_$1521_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.Epoch storage ref)"}},"id":2076,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2075,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2073,"name":"currentEpochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1629,"src":"9736:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":2074,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9753:1:12","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"9736:18:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9729:26:12","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1521_storage","typeString":"struct CunaFinanceBsc.Epoch storage ref"}},"nodeType":"VariableDeclarationStatement","src":"9703:52:12"},{"expression":{"id":2088,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2078,"name":"unlockPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2063,"src":"9782:16:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":2080,"name":"currentTreasuryTvl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2051,"src":"9844:18:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2081,"name":"totalBigStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"9880:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":2082,"name":"lastEpoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2071,"src":"9912:9:12","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1521_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch storage pointer"}},"id":2083,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9922:18:12","memberName":"currentTreasuryTvl","nodeType":"MemberAccess","referencedDeclaration":1514,"src":"9912:28:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":2084,"name":"lastEpoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2071,"src":"9958:9:12","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1521_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch storage pointer"}},"id":2085,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9968:14:12","memberName":"totalLiability","nodeType":"MemberAccess","referencedDeclaration":1516,"src":"9958:24:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2086,"name":"_paybackPercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2053,"src":"10000:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2079,"name":"calculateUnlockPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2046,"src":"9801:25:12","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256,uint256,uint256) pure returns (uint256)"}},"id":2087,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9801:228:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9782:247:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2089,"nodeType":"ExpressionStatement","src":"9782:247:12"}]}},{"expression":{"id":2103,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2092,"name":"epochs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1613,"src":"10092:6:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Epoch_$1521_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.Epoch storage ref)"}},"id":2094,"indexExpression":{"id":2093,"name":"currentEpochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1629,"src":"10099:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10092:22:12","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1521_storage","typeString":"struct CunaFinanceBsc.Epoch storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":2096,"name":"estDaysRemaining","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2049,"src":"10155:16:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2097,"name":"currentTreasuryTvl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2051,"src":"10205:18:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2098,"name":"totalBigStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"10253:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2099,"name":"unlockPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2063,"src":"10299:16:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":2100,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"10340:5:12","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2101,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10346:9:12","memberName":"timestamp","nodeType":"MemberAccess","src":"10340:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2095,"name":"Epoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1521,"src":"10117:5:12","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Epoch_$1521_storage_ptr_$","typeString":"type(struct CunaFinanceBsc.Epoch storage pointer)"}},"id":2102,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["10137:16:12","10185:18:12","10237:14:12","10281:16:12","10329:9:12"],"names":["estDaysRemaining","currentTreasuryTvl","totalLiability","unlockPercentage","timestamp"],"nodeType":"FunctionCall","src":"10117:249:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1521_memory_ptr","typeString":"struct CunaFinanceBsc.Epoch memory"}},"src":"10092:274:12","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1521_storage","typeString":"struct CunaFinanceBsc.Epoch storage ref"}},"id":2104,"nodeType":"ExpressionStatement","src":"10092:274:12"},{"eventCall":{"arguments":[{"id":2106,"name":"currentEpochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1629,"src":"10401:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2107,"name":"currentTreasuryTvl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2051,"src":"10417:18:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2108,"name":"unlockPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2063,"src":"10437:16:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2109,"name":"_paybackPercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2053,"src":"10455:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2105,"name":"EpochEnded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1706,"src":"10390:10:12","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256,uint256)"}},"id":2110,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10390:81:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2111,"nodeType":"EmitStatement","src":"10385:86:12"},{"expression":{"id":2113,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"10481:16:12","subExpression":{"id":2112,"name":"currentEpochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1629,"src":"10481:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2114,"nodeType":"ExpressionStatement","src":"10481:16:12"}]},"documentation":{"id":2047,"nodeType":"StructuredDocumentation","src":"9034:299:12","text":"@notice End current epoch and calculate unlock percentage\n @param estDaysRemaining Estimated days remaining for the protocol\n @param currentTreasuryTvl Current treasury total value locked\n @param _paybackPercent Percentage multiplier for unlock calculation (scaled by 10000)"},"functionSelector":"8851ec0f","id":2116,"implemented":true,"kind":"function","modifiers":[{"id":2056,"kind":"modifierInvocation","modifierName":{"id":2055,"name":"onlyOwner","nameLocations":["9444:9:12"],"nodeType":"IdentifierPath","referencedDeclaration":1770,"src":"9444:9:12"},"nodeType":"ModifierInvocation","src":"9444:9:12"}],"name":"endEpoch","nameLocation":"9347:8:12","nodeType":"FunctionDefinition","parameters":{"id":2054,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2049,"mutability":"mutable","name":"estDaysRemaining","nameLocation":"9364:16:12","nodeType":"VariableDeclaration","scope":2116,"src":"9356:24:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2048,"name":"uint256","nodeType":"ElementaryTypeName","src":"9356:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2051,"mutability":"mutable","name":"currentTreasuryTvl","nameLocation":"9390:18:12","nodeType":"VariableDeclaration","scope":2116,"src":"9382:26:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2050,"name":"uint256","nodeType":"ElementaryTypeName","src":"9382:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2053,"mutability":"mutable","name":"_paybackPercent","nameLocation":"9418:15:12","nodeType":"VariableDeclaration","scope":2116,"src":"9410:23:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2052,"name":"uint256","nodeType":"ElementaryTypeName","src":"9410:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9355:79:12"},"returnParameters":{"id":2057,"nodeType":"ParameterList","parameters":[],"src":"9454:0:12"},"scope":4510,"src":"9338:1166:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2175,"nodeType":"Block","src":"10696:461:12","statements":[{"assignments":[2125],"declarations":[{"constant":false,"id":2125,"mutability":"mutable","name":"remainingStake","nameLocation":"10714:14:12","nodeType":"VariableDeclaration","scope":2175,"src":"10706:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2124,"name":"uint256","nodeType":"ElementaryTypeName","src":"10706:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2129,"initialValue":{"baseExpression":{"id":2126,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1617,"src":"10731:12:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2128,"indexExpression":{"id":2127,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2119,"src":"10744:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10731:18:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10706:43:12"},{"assignments":[2131],"declarations":[{"constant":false,"id":2131,"mutability":"mutable","name":"startEpoch","nameLocation":"10767:10:12","nodeType":"VariableDeclaration","scope":2175,"src":"10759:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2130,"name":"uint256","nodeType":"ElementaryTypeName","src":"10759:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2135,"initialValue":{"baseExpression":{"id":2132,"name":"userLastClaimedEpoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1621,"src":"10780:20:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2134,"indexExpression":{"id":2133,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2119,"src":"10801:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10780:26:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10759:47:12"},{"body":{"id":2171,"nodeType":"Block","src":"10879:241:12","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2148,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2146,"name":"remainingStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2125,"src":"10897:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2147,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10914:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10897:18:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2170,"nodeType":"IfStatement","src":"10893:217:12","trueBody":{"id":2169,"nodeType":"Block","src":"10917:193:12","statements":[{"assignments":[2150],"declarations":[{"constant":false,"id":2150,"mutability":"mutable","name":"unlocked","nameLocation":"10943:8:12","nodeType":"VariableDeclaration","scope":2169,"src":"10935:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2149,"name":"uint256","nodeType":"ElementaryTypeName","src":"10935:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2160,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2159,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2151,"name":"remainingStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2125,"src":"10955:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"baseExpression":{"id":2152,"name":"epochs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1613,"src":"10972:6:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Epoch_$1521_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.Epoch storage ref)"}},"id":2154,"indexExpression":{"id":2153,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2137,"src":"10979:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10972:9:12","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1521_storage","typeString":"struct CunaFinanceBsc.Epoch storage ref"}},"id":2155,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10982:16:12","memberName":"unlockPercentage","nodeType":"MemberAccess","referencedDeclaration":1518,"src":"10972:26:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10955:43:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2157,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10954:45:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130303030","id":2158,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11002:5:12","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"10954:53:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10935:72:12"},{"expression":{"id":2163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2161,"name":"totalUnclaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2122,"src":"11025:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":2162,"name":"unlocked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2150,"src":"11043:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11025:26:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2164,"nodeType":"ExpressionStatement","src":"11025:26:12"},{"expression":{"id":2167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2165,"name":"remainingStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2125,"src":"11069:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":2166,"name":"unlocked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2150,"src":"11087:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11069:26:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2168,"nodeType":"ExpressionStatement","src":"11069:26:12"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2142,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2140,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2137,"src":"10854:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":2141,"name":"currentEpochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1629,"src":"10858:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10854:18:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2172,"initializationExpression":{"assignments":[2137],"declarations":[{"constant":false,"id":2137,"mutability":"mutable","name":"i","nameLocation":"10838:1:12","nodeType":"VariableDeclaration","scope":2172,"src":"10830:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2136,"name":"uint256","nodeType":"ElementaryTypeName","src":"10830:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2139,"initialValue":{"id":2138,"name":"startEpoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2131,"src":"10842:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10830:22:12"},"loopExpression":{"expression":{"id":2144,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"10874:3:12","subExpression":{"id":2143,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2137,"src":"10874:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2145,"nodeType":"ExpressionStatement","src":"10874:3:12"},"nodeType":"ForStatement","src":"10825:295:12"},{"expression":{"id":2173,"name":"totalUnclaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2122,"src":"11136:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2123,"id":2174,"nodeType":"Return","src":"11129:21:12"}]},"documentation":{"id":2117,"nodeType":"StructuredDocumentation","src":"10510:89:12","text":"@notice Calculate total unclaimed funds for a user across all epochs since last claim"},"functionSelector":"00159da6","id":2176,"implemented":true,"kind":"function","modifiers":[],"name":"calculateUnclaimedFunds","nameLocation":"10613:23:12","nodeType":"FunctionDefinition","parameters":{"id":2120,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2119,"mutability":"mutable","name":"user","nameLocation":"10645:4:12","nodeType":"VariableDeclaration","scope":2176,"src":"10637:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2118,"name":"address","nodeType":"ElementaryTypeName","src":"10637:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10636:14:12"},"returnParameters":{"id":2123,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2122,"mutability":"mutable","name":"totalUnclaimed","nameLocation":"10680:14:12","nodeType":"VariableDeclaration","scope":2176,"src":"10672:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2121,"name":"uint256","nodeType":"ElementaryTypeName","src":"10672:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10671:24:12"},"scope":4510,"src":"10604:553:12","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2200,"nodeType":"Block","src":"11299:150:12","statements":[{"assignments":[2185],"declarations":[{"constant":false,"id":2185,"mutability":"mutable","name":"bigStake","nameLocation":"11317:8:12","nodeType":"VariableDeclaration","scope":2200,"src":"11309:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2184,"name":"uint256","nodeType":"ElementaryTypeName","src":"11309:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2189,"initialValue":{"baseExpression":{"id":2186,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1617,"src":"11328:12:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2188,"indexExpression":{"id":2187,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2179,"src":"11341:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11328:18:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11309:37:12"},{"assignments":[2191],"declarations":[{"constant":false,"id":2191,"mutability":"mutable","name":"unclaimed","nameLocation":"11364:9:12","nodeType":"VariableDeclaration","scope":2200,"src":"11356:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2190,"name":"uint256","nodeType":"ElementaryTypeName","src":"11356:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2195,"initialValue":{"arguments":[{"id":2193,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2179,"src":"11400:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2192,"name":"calculateUnclaimedFunds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2176,"src":"11376:23:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":2194,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11376:29:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11356:49:12"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2198,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2196,"name":"bigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2185,"src":"11422:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2197,"name":"unclaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2191,"src":"11433:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11422:20:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2183,"id":2199,"nodeType":"Return","src":"11415:27:12"}]},"documentation":{"id":2177,"nodeType":"StructuredDocumentation","src":"11163:66:12","text":"@notice Get user's net stake (big stake minus unclaimed funds)"},"functionSelector":"1eb9e53e","id":2201,"implemented":true,"kind":"function","modifiers":[],"name":"getNetStake","nameLocation":"11243:11:12","nodeType":"FunctionDefinition","parameters":{"id":2180,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2179,"mutability":"mutable","name":"user","nameLocation":"11263:4:12","nodeType":"VariableDeclaration","scope":2201,"src":"11255:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2178,"name":"address","nodeType":"ElementaryTypeName","src":"11255:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"11254:14:12"},"returnParameters":{"id":2183,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2182,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2201,"src":"11290:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2181,"name":"uint256","nodeType":"ElementaryTypeName","src":"11290:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11289:9:12"},"scope":4510,"src":"11234:215:12","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2230,"nodeType":"Block","src":"11784:266:12","statements":[{"assignments":[2214],"declarations":[{"constant":false,"id":2214,"mutability":"mutable","name":"unclaimed","nameLocation":"11802:9:12","nodeType":"VariableDeclaration","scope":2230,"src":"11794:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2213,"name":"uint256","nodeType":"ElementaryTypeName","src":"11794:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2218,"initialValue":{"arguments":[{"id":2216,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2204,"src":"11838:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2215,"name":"calculateUnclaimedFunds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2176,"src":"11814:23:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":2217,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11814:29:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11794:49:12"},{"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2223,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":2219,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1617,"src":"11874:12:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2221,"indexExpression":{"id":2220,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2204,"src":"11887:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11874:18:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2222,"name":"unclaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2214,"src":"11895:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11874:30:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2224,"name":"unclaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2214,"src":"11932:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":2225,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1617,"src":"11990:12:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2227,"indexExpression":{"id":2226,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2204,"src":"12003:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11990:18:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2228,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11860:183:12","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256,uint256)"}},"functionReturnParameters":2212,"id":2229,"nodeType":"Return","src":"11853:190:12"}]},"documentation":{"id":2202,"nodeType":"StructuredDocumentation","src":"11455:52:12","text":"@notice Get comprehensive user stake information"},"functionSelector":"c32d3ae2","id":2231,"implemented":true,"kind":"function","modifiers":[],"name":"getUserStakeInfo","nameLocation":"11521:16:12","nodeType":"FunctionDefinition","parameters":{"id":2205,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2204,"mutability":"mutable","name":"user","nameLocation":"11546:4:12","nodeType":"VariableDeclaration","scope":2231,"src":"11538:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2203,"name":"address","nodeType":"ElementaryTypeName","src":"11538:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"11537:14:12"},"returnParameters":{"id":2212,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2207,"mutability":"mutable","name":"netStake","nameLocation":"11592:8:12","nodeType":"VariableDeclaration","scope":2231,"src":"11584:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2206,"name":"uint256","nodeType":"ElementaryTypeName","src":"11584:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2209,"mutability":"mutable","name":"unclaimedFunds","nameLocation":"11661:14:12","nodeType":"VariableDeclaration","scope":2231,"src":"11653:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2208,"name":"uint256","nodeType":"ElementaryTypeName","src":"11653:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2211,"mutability":"mutable","name":"totalOriginalStake","nameLocation":"11719:18:12","nodeType":"VariableDeclaration","scope":2231,"src":"11711:26:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2210,"name":"uint256","nodeType":"ElementaryTypeName","src":"11711:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11574:209:12"},"scope":4510,"src":"11512:538:12","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":2291,"nodeType":"Block","src":"12176:774:12","statements":[{"assignments":[2238],"declarations":[{"constant":false,"id":2238,"mutability":"mutable","name":"unclaimedAmount","nameLocation":"12194:15:12","nodeType":"VariableDeclaration","scope":2291,"src":"12186:23:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2237,"name":"uint256","nodeType":"ElementaryTypeName","src":"12186:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2243,"initialValue":{"arguments":[{"expression":{"id":2240,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"12236:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12240:6:12","memberName":"sender","nodeType":"MemberAccess","src":"12236:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2239,"name":"calculateUnclaimedFunds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2176,"src":"12212:23:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":2242,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12212:35:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12186:61:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2247,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2245,"name":"unclaimedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2238,"src":"12265:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2246,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12283:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12265:19:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f7468696e6720746f20636c61696d","id":2248,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12286:18:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_1b72ba14eb1a8a9d546abe036e42fec8df7f04acf2220edbbc427b6b1c2eb1d3","typeString":"literal_string \"Nothing to claim\""},"value":"Nothing to claim"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1b72ba14eb1a8a9d546abe036e42fec8df7f04acf2220edbbc427b6b1c2eb1d3","typeString":"literal_string \"Nothing to claim\""}],"id":2244,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"12257:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2249,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12257:48:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2250,"nodeType":"ExpressionStatement","src":"12257:48:12"},{"expression":{"id":2256,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2251,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1617,"src":"12377:12:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2254,"indexExpression":{"expression":{"id":2252,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"12390:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2253,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12394:6:12","memberName":"sender","nodeType":"MemberAccess","src":"12390:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"12377:24:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":2255,"name":"unclaimedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2238,"src":"12405:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12377:43:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2257,"nodeType":"ExpressionStatement","src":"12377:43:12"},{"expression":{"id":2260,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2258,"name":"totalBigStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"12430:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":2259,"name":"unclaimedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2238,"src":"12448:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12430:33:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2261,"nodeType":"ExpressionStatement","src":"12430:33:12"},{"expression":{"id":2267,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2262,"name":"userLastClaimedEpoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1621,"src":"12535:20:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2265,"indexExpression":{"expression":{"id":2263,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"12556:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2264,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12560:6:12","memberName":"sender","nodeType":"MemberAccess","src":"12556:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"12535:32:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2266,"name":"currentEpochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1629,"src":"12570:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12535:49:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2268,"nodeType":"ExpressionStatement","src":"12535:49:12"},{"expression":{"arguments":[{"arguments":[{"expression":{"id":2275,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"12727:5:12","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2276,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12733:9:12","memberName":"timestamp","nodeType":"MemberAccess","src":"12727:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2277,"name":"unclaimedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2238,"src":"12796:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2281,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2278,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"12837:5:12","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12843:9:12","memberName":"timestamp","nodeType":"MemberAccess","src":"12837:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":2280,"name":"unlockDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1593,"src":"12855:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12837:29:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2274,"name":"WithdrawStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1528,"src":"12690:13:12","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_WithdrawStake_$1528_storage_ptr_$","typeString":"type(struct CunaFinanceBsc.WithdrawStake storage pointer)"}},"id":2282,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["12718:7:12","12788:6:12","12825:10:12"],"names":["stakeId","amount","unlockTime"],"nodeType":"FunctionCall","src":"12690:187:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1528_memory_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_WithdrawStake_$1528_memory_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake memory"}],"expression":{"baseExpression":{"id":2269,"name":"withdrawStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1627,"src":"12658:14:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawStake storage ref[] storage ref)"}},"id":2272,"indexExpression":{"expression":{"id":2270,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"12673:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2271,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12677:6:12","memberName":"sender","nodeType":"MemberAccess","src":"12673:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12658:26:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref[] storage ref"}},"id":2273,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12685:4:12","memberName":"push","nodeType":"MemberAccess","src":"12658:31:12","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage_ptr_$_t_struct$_WithdrawStake_$1528_storage_$returns$__$attached_to$_t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage_ptr_$","typeString":"function (struct CunaFinanceBsc.WithdrawStake storage ref[] storage pointer,struct CunaFinanceBsc.WithdrawStake storage ref)"}},"id":2283,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12658:220:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2284,"nodeType":"ExpressionStatement","src":"12658:220:12"},{"eventCall":{"arguments":[{"expression":{"id":2286,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"12915:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2287,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12919:6:12","memberName":"sender","nodeType":"MemberAccess","src":"12915:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2288,"name":"unclaimedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2238,"src":"12927:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2285,"name":"FundsClaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1718,"src":"12902:12:12","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2289,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12902:41:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2290,"nodeType":"EmitStatement","src":"12897:46:12"}]},"documentation":{"id":2232,"nodeType":"StructuredDocumentation","src":"12056:63:12","text":"@notice Claim unlocked funds and create withdrawable stakes"},"functionSelector":"0c7d6386","id":2292,"implemented":true,"kind":"function","modifiers":[{"id":2235,"kind":"modifierInvocation","modifierName":{"id":2234,"name":"nonReentrant","nameLocations":["12163:12:12"],"nodeType":"IdentifierPath","referencedDeclaration":1408,"src":"12163:12:12"},"nodeType":"ModifierInvocation","src":"12163:12:12"}],"name":"claimUnlockedFunds","nameLocation":"12133:18:12","nodeType":"FunctionDefinition","parameters":{"id":2233,"nodeType":"ParameterList","parameters":[],"src":"12151:2:12"},"returnParameters":{"id":2236,"nodeType":"ParameterList","parameters":[],"src":"12176:0:12"},"scope":4510,"src":"12124:826:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2381,"nodeType":"Block","src":"13077:957:12","statements":[{"assignments":[2304],"declarations":[{"constant":false,"id":2304,"mutability":"mutable","name":"userStakes","nameLocation":"13111:10:12","nodeType":"VariableDeclaration","scope":2381,"src":"13087:34:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake[]"},"typeName":{"baseType":{"id":2302,"nodeType":"UserDefinedTypeName","pathNode":{"id":2301,"name":"WithdrawStake","nameLocations":["13087:13:12"],"nodeType":"IdentifierPath","referencedDeclaration":1528,"src":"13087:13:12"},"referencedDeclaration":1528,"src":"13087:13:12","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1528_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake"}},"id":2303,"nodeType":"ArrayTypeName","src":"13087:15:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake[]"}},"visibility":"internal"}],"id":2309,"initialValue":{"baseExpression":{"id":2305,"name":"withdrawStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1627,"src":"13124:14:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawStake storage ref[] storage ref)"}},"id":2308,"indexExpression":{"expression":{"id":2306,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"13139:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2307,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13143:6:12","memberName":"sender","nodeType":"MemberAccess","src":"13139:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13124:26:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref[] storage ref"}},"nodeType":"VariableDeclarationStatement","src":"13087:63:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2311,"name":"userStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2304,"src":"13168:10:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref[] storage pointer"}},"id":2312,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13179:6:12","memberName":"length","nodeType":"MemberAccess","src":"13168:17:12","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":"13188:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"13168:21:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f207374616b657320617661696c61626c65","id":2315,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"13191:21:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_2c1545a468168af67c0991f4493f605bb35531d3f741d96256911830016317fd","typeString":"literal_string \"No stakes available\""},"value":"No stakes available"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2c1545a468168af67c0991f4493f605bb35531d3f741d96256911830016317fd","typeString":"literal_string \"No stakes available\""}],"id":2310,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"13160:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2316,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13160:53:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2317,"nodeType":"ExpressionStatement","src":"13160:53:12"},{"body":{"id":2375,"nodeType":"Block","src":"13280:704:12","statements":[{"assignments":[2331],"declarations":[{"constant":false,"id":2331,"mutability":"mutable","name":"stake","nameLocation":"13316:5:12","nodeType":"VariableDeclaration","scope":2375,"src":"13294:27:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1528_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake"},"typeName":{"id":2330,"nodeType":"UserDefinedTypeName","pathNode":{"id":2329,"name":"WithdrawStake","nameLocations":["13294:13:12"],"nodeType":"IdentifierPath","referencedDeclaration":1528,"src":"13294:13:12"},"referencedDeclaration":1528,"src":"13294:13:12","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1528_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake"}},"visibility":"internal"}],"id":2335,"initialValue":{"baseExpression":{"id":2332,"name":"userStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2304,"src":"13324:10:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref[] storage pointer"}},"id":2334,"indexExpression":{"id":2333,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2319,"src":"13335:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13324:13:12","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1528_storage","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref"}},"nodeType":"VariableDeclarationStatement","src":"13294:43:12"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2336,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2331,"src":"13355:5:12","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1528_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake storage pointer"}},"id":2337,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13361:7:12","memberName":"stakeId","nodeType":"MemberAccess","referencedDeclaration":1523,"src":"13355:13:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2338,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2295,"src":"13372:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13355:24:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2340,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2331,"src":"13383:5:12","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1528_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake storage pointer"}},"id":2341,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13389:6:12","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":1525,"src":"13383:12:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2342,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13398:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"13383:16:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"13355:44:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2374,"nodeType":"IfStatement","src":"13351:623:12","trueBody":{"id":2373,"nodeType":"Block","src":"13401:573:12","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2350,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2346,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"13427:5:12","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13433:9:12","memberName":"timestamp","nodeType":"MemberAccess","src":"13427:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":2348,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2331,"src":"13446:5:12","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1528_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake storage pointer"}},"id":2349,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13452:10:12","memberName":"unlockTime","nodeType":"MemberAccess","referencedDeclaration":1527,"src":"13446:16:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13427:35:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5374616b65206c6f636b6564","id":2351,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"13464:14:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_c96e0a341c9518256eddb565314349d39d191e3a702caab37452bb2761e74717","typeString":"literal_string \"Stake locked\""},"value":"Stake locked"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c96e0a341c9518256eddb565314349d39d191e3a702caab37452bb2761e74717","typeString":"literal_string \"Stake locked\""}],"id":2345,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"13419:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2352,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13419:60:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2353,"nodeType":"ExpressionStatement","src":"13419:60:12"},{"assignments":[2355],"declarations":[{"constant":false,"id":2355,"mutability":"mutable","name":"amount","nameLocation":"13522:6:12","nodeType":"VariableDeclaration","scope":2373,"src":"13514:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2354,"name":"uint256","nodeType":"ElementaryTypeName","src":"13514:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2358,"initialValue":{"expression":{"id":2356,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2331,"src":"13531:5:12","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1528_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake storage pointer"}},"id":2357,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13537:6:12","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":1525,"src":"13531:12:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13514:29:12"},{"expression":{"id":2363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2359,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2331,"src":"13561:5:12","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1528_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake storage pointer"}},"id":2361,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13567:6:12","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":1525,"src":"13561:12:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":2362,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13576:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"13561:16:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2364,"nodeType":"ExpressionStatement","src":"13561:16:12"},{"eventCall":{"arguments":[{"expression":{"id":2366,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"13907:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13911:6:12","memberName":"sender","nodeType":"MemberAccess","src":"13907:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2368,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2355,"src":"13919:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2369,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2295,"src":"13927:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2365,"name":"StakeWithdrawn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1726,"src":"13892:14:12","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256)"}},"id":2370,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13892:43:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2371,"nodeType":"EmitStatement","src":"13887:48:12"},{"functionReturnParameters":2299,"id":2372,"nodeType":"Return","src":"13953:7:12"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2322,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2319,"src":"13252:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":2323,"name":"userStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2304,"src":"13256:10:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref[] storage pointer"}},"id":2324,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13267:6:12","memberName":"length","nodeType":"MemberAccess","src":"13256:17:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13252:21:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2376,"initializationExpression":{"assignments":[2319],"declarations":[{"constant":false,"id":2319,"mutability":"mutable","name":"i","nameLocation":"13245:1:12","nodeType":"VariableDeclaration","scope":2376,"src":"13237:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2318,"name":"uint256","nodeType":"ElementaryTypeName","src":"13237:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2321,"initialValue":{"hexValue":"30","id":2320,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13249:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"13237:13:12"},"loopExpression":{"expression":{"id":2327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"13275:3:12","subExpression":{"id":2326,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2319,"src":"13275:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2328,"nodeType":"ExpressionStatement","src":"13275:3:12"},"nodeType":"ForStatement","src":"13232:752:12"},{"expression":{"arguments":[{"hexValue":"5374616b65206e6f7420666f756e64","id":2378,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14009:17:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_c720c01b1ab900eae0624fc88257558becc0dda54896b3f86c3f492482a20d30","typeString":"literal_string \"Stake not found\""},"value":"Stake not found"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c720c01b1ab900eae0624fc88257558becc0dda54896b3f86c3f492482a20d30","typeString":"literal_string \"Stake not found\""}],"id":2377,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"14002:6:12","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":2379,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14002:25:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2380,"nodeType":"ExpressionStatement","src":"14002:25:12"}]},"documentation":{"id":2293,"nodeType":"StructuredDocumentation","src":"12956:54:12","text":"@notice Withdraw claimed funds after unlock period"},"functionSelector":"25d5971f","id":2382,"implemented":true,"kind":"function","modifiers":[{"id":2298,"kind":"modifierInvocation","modifierName":{"id":2297,"name":"nonReentrant","nameLocations":["13064:12:12"],"nodeType":"IdentifierPath","referencedDeclaration":1408,"src":"13064:12:12"},"nodeType":"ModifierInvocation","src":"13064:12:12"}],"name":"withdrawStake","nameLocation":"13024:13:12","nodeType":"FunctionDefinition","parameters":{"id":2296,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2295,"mutability":"mutable","name":"stakeId","nameLocation":"13046:7:12","nodeType":"VariableDeclaration","scope":2382,"src":"13038:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2294,"name":"uint256","nodeType":"ElementaryTypeName","src":"13038:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13037:17:12"},"returnParameters":{"id":2299,"nodeType":"ParameterList","parameters":[],"src":"13077:0:12"},"scope":4510,"src":"13015:1019:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2430,"nodeType":"Block","src":"14433:360:12","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2398,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2393,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2385,"src":"14451:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2396,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14467:1:12","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":2395,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14459:7:12","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2394,"name":"address","nodeType":"ElementaryTypeName","src":"14459:7:12","typeDescriptions":{}}},"id":2397,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14459:10:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"14451:18:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642061646472657373","id":2399,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14471:17:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_1462473b7a4b33d32b109b815fd2324d00c9e5839b707ecf16d0ab5744f99226","typeString":"literal_string \"Invalid address\""},"value":"Invalid address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1462473b7a4b33d32b109b815fd2324d00c9e5839b707ecf16d0ab5744f99226","typeString":"literal_string \"Invalid address\""}],"id":2392,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"14443:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2400,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14443:46:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2401,"nodeType":"ExpressionStatement","src":"14443:46:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2405,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2403,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2387,"src":"14507:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2404,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14516:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14507:10:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c696420616d6f756e74","id":2406,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14519:16:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_2fd1dfd944df9898ee4c79794168926172c3d96d7664ff9919bb7080bb018af1","typeString":"literal_string \"Invalid amount\""},"value":"Invalid amount"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2fd1dfd944df9898ee4c79794168926172c3d96d7664ff9919bb7080bb018af1","typeString":"literal_string \"Invalid amount\""}],"id":2402,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"14499:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2407,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14499:37:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2408,"nodeType":"ExpressionStatement","src":"14499:37:12"},{"expression":{"id":2417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2409,"name":"totalBigStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"14597:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2416,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2414,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2410,"name":"totalBigStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"14614:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"baseExpression":{"id":2411,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1617,"src":"14631:12:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2413,"indexExpression":{"id":2412,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2385,"src":"14644:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"14631:18:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14614:35:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":2415,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2387,"src":"14652:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14614:44:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14597:61:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2418,"nodeType":"ExpressionStatement","src":"14597:61:12"},{"expression":{"id":2423,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2419,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1617,"src":"14709:12:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2421,"indexExpression":{"id":2420,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2385,"src":"14722:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"14709:18:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2422,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2387,"src":"14730:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14709:27:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2424,"nodeType":"ExpressionStatement","src":"14709:27:12"},{"eventCall":{"arguments":[{"id":2426,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2385,"src":"14773:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2427,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2387,"src":"14779:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2425,"name":"StakeCreated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1712,"src":"14760:12:12","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2428,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14760:26:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2429,"nodeType":"EmitStatement","src":"14755:31:12"}]},"documentation":{"id":2383,"nodeType":"StructuredDocumentation","src":"14089:267:12","text":"@notice Create or update a user's big stake (for migration or manual adjustment)\n @dev Only to be used by bots for initial setup or emergency adjustments\n @param user The user address to create/update stake for\n @param amount The stake amount"},"functionSelector":"f109208f","id":2431,"implemented":true,"kind":"function","modifiers":[{"id":2390,"kind":"modifierInvocation","modifierName":{"id":2389,"name":"onlyBot","nameLocations":["14425:7:12"],"nodeType":"IdentifierPath","referencedDeclaration":1782,"src":"14425:7:12"},"nodeType":"ModifierInvocation","src":"14425:7:12"}],"name":"createUserStake","nameLocation":"14370:15:12","nodeType":"FunctionDefinition","parameters":{"id":2388,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2385,"mutability":"mutable","name":"user","nameLocation":"14394:4:12","nodeType":"VariableDeclaration","scope":2431,"src":"14386:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2384,"name":"address","nodeType":"ElementaryTypeName","src":"14386:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2387,"mutability":"mutable","name":"amount","nameLocation":"14408:6:12","nodeType":"VariableDeclaration","scope":2431,"src":"14400:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2386,"name":"uint256","nodeType":"ElementaryTypeName","src":"14400:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14385:30:12"},"returnParameters":{"id":2391,"nodeType":"ParameterList","parameters":[],"src":"14433:0:12"},"scope":4510,"src":"14361:432:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2535,"nodeType":"Block","src":"15154:727:12","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2444,"name":"users","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2435,"src":"15172:5:12","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":2445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15178:6:12","memberName":"length","nodeType":"MemberAccess","src":"15172:12:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":2446,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2438,"src":"15188:7:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":2447,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15196:6:12","memberName":"length","nodeType":"MemberAccess","src":"15188:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15172:30:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4172726179206c656e677468206d69736d61746368","id":2449,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"15204:23:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_179ae693e0c70d403e6d1a2bebe6454a8d095a8abd12c6f3f032c5018f3e2aea","typeString":"literal_string \"Array length mismatch\""},"value":"Array length mismatch"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_179ae693e0c70d403e6d1a2bebe6454a8d095a8abd12c6f3f032c5018f3e2aea","typeString":"literal_string \"Array length mismatch\""}],"id":2443,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"15164:7:12","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":"15164:64:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2451,"nodeType":"ExpressionStatement","src":"15164:64:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2456,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2453,"name":"users","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2435,"src":"15246:5:12","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":2454,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15252:6:12","memberName":"length","nodeType":"MemberAccess","src":"15246:12:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2455,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15261:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"15246:16:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"456d70747920617272617973","id":2457,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"15264:14:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_920fc87d8e9a45232b5e4c2c36e3c0fff5f09b5434a80d6ec35d7f09f9d69c29","typeString":"literal_string \"Empty arrays\""},"value":"Empty arrays"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_920fc87d8e9a45232b5e4c2c36e3c0fff5f09b5434a80d6ec35d7f09f9d69c29","typeString":"literal_string \"Empty arrays\""}],"id":2452,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"15238:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2458,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15238:41:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2459,"nodeType":"ExpressionStatement","src":"15238:41:12"},{"assignments":[2461],"declarations":[{"constant":false,"id":2461,"mutability":"mutable","name":"totalAdded","nameLocation":"15306:10:12","nodeType":"VariableDeclaration","scope":2535,"src":"15298:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2460,"name":"uint256","nodeType":"ElementaryTypeName","src":"15298:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2463,"initialValue":{"hexValue":"30","id":2462,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15319:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"15298:22:12"},{"body":{"id":2529,"nodeType":"Block","src":"15382:415:12","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2483,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":2476,"name":"users","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2435,"src":"15404:5:12","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":2478,"indexExpression":{"id":2477,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2465,"src":"15410:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15404:8:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2481,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15424:1:12","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":2480,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15416:7:12","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2479,"name":"address","nodeType":"ElementaryTypeName","src":"15416:7:12","typeDescriptions":{}}},"id":2482,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15416:10:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"15404:22:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642061646472657373","id":2484,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"15428:17:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_1462473b7a4b33d32b109b815fd2324d00c9e5839b707ecf16d0ab5744f99226","typeString":"literal_string \"Invalid address\""},"value":"Invalid address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1462473b7a4b33d32b109b815fd2324d00c9e5839b707ecf16d0ab5744f99226","typeString":"literal_string \"Invalid address\""}],"id":2475,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"15396:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2485,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15396:50:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2486,"nodeType":"ExpressionStatement","src":"15396:50:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2492,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":2488,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2438,"src":"15468:7:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":2490,"indexExpression":{"id":2489,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2465,"src":"15476:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15468:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2491,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15481:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"15468:14:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c696420616d6f756e74","id":2493,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"15484:16:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_2fd1dfd944df9898ee4c79794168926172c3d96d7664ff9919bb7080bb018af1","typeString":"literal_string \"Invalid amount\""},"value":"Invalid amount"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2fd1dfd944df9898ee4c79794168926172c3d96d7664ff9919bb7080bb018af1","typeString":"literal_string \"Invalid amount\""}],"id":2487,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"15460:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2494,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15460:41:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2495,"nodeType":"ExpressionStatement","src":"15460:41:12"},{"expression":{"id":2508,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2496,"name":"totalAdded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2461,"src":"15561:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2507,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2503,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2497,"name":"totalAdded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2461,"src":"15574:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"baseExpression":{"id":2498,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1617,"src":"15587:12:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2502,"indexExpression":{"baseExpression":{"id":2499,"name":"users","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2435,"src":"15600:5:12","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":2501,"indexExpression":{"id":2500,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2465,"src":"15606:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15600:8:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15587:22:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15574:35:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"baseExpression":{"id":2504,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2438,"src":"15612:7:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":2506,"indexExpression":{"id":2505,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2465,"src":"15620:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15612:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15574:48:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15561:61:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2509,"nodeType":"ExpressionStatement","src":"15561:61:12"},{"expression":{"id":2518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2510,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1617,"src":"15685:12:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2514,"indexExpression":{"baseExpression":{"id":2511,"name":"users","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2435,"src":"15698:5:12","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":2513,"indexExpression":{"id":2512,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2465,"src":"15704:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15698:8:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"15685:22:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":2515,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2438,"src":"15710:7:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":2517,"indexExpression":{"id":2516,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2465,"src":"15718:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15710:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15685:35:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2519,"nodeType":"ExpressionStatement","src":"15685:35:12"},{"eventCall":{"arguments":[{"baseExpression":{"id":2521,"name":"users","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2435,"src":"15765:5:12","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":2523,"indexExpression":{"id":2522,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2465,"src":"15771:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15765:8:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":2524,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2438,"src":"15775:7:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":2526,"indexExpression":{"id":2525,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2465,"src":"15783:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15775:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2520,"name":"StakeCreated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1712,"src":"15752:12:12","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15752:34:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2528,"nodeType":"EmitStatement","src":"15747:39:12"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2468,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2465,"src":"15359:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":2469,"name":"users","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2435,"src":"15363:5:12","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":2470,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15369:6:12","memberName":"length","nodeType":"MemberAccess","src":"15363:12:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15359:16:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2530,"initializationExpression":{"assignments":[2465],"declarations":[{"constant":false,"id":2465,"mutability":"mutable","name":"i","nameLocation":"15352:1:12","nodeType":"VariableDeclaration","scope":2530,"src":"15344:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2464,"name":"uint256","nodeType":"ElementaryTypeName","src":"15344:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2467,"initialValue":{"hexValue":"30","id":2466,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15356:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"15344:13:12"},"loopExpression":{"expression":{"id":2473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"15377:3:12","subExpression":{"id":2472,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2465,"src":"15377:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2474,"nodeType":"ExpressionStatement","src":"15377:3:12"},"nodeType":"ForStatement","src":"15339:458:12"},{"expression":{"id":2533,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2531,"name":"totalBigStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"15846:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":2532,"name":"totalAdded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2461,"src":"15864:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15846:28:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2534,"nodeType":"ExpressionStatement","src":"15846:28:12"}]},"documentation":{"id":2432,"nodeType":"StructuredDocumentation","src":"14799:248:12","text":"@notice Batch create stakes for multiple users (efficient for migration)\n @dev Only to be used by bots for initial setup\n @param users Array of user addresses\n @param amounts Array of stake amounts (must match users length)"},"functionSelector":"549e61d3","id":2536,"implemented":true,"kind":"function","modifiers":[{"id":2441,"kind":"modifierInvocation","modifierName":{"id":2440,"name":"onlyBot","nameLocations":["15146:7:12"],"nodeType":"IdentifierPath","referencedDeclaration":1782,"src":"15146:7:12"},"nodeType":"ModifierInvocation","src":"15146:7:12"}],"name":"batchCreateUserStakes","nameLocation":"15061:21:12","nodeType":"FunctionDefinition","parameters":{"id":2439,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2435,"mutability":"mutable","name":"users","nameLocation":"15102:5:12","nodeType":"VariableDeclaration","scope":2536,"src":"15083:24:12","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":2433,"name":"address","nodeType":"ElementaryTypeName","src":"15083:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2434,"nodeType":"ArrayTypeName","src":"15083:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":2438,"mutability":"mutable","name":"amounts","nameLocation":"15128:7:12","nodeType":"VariableDeclaration","scope":2536,"src":"15109:26:12","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2436,"name":"uint256","nodeType":"ElementaryTypeName","src":"15109:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2437,"nodeType":"ArrayTypeName","src":"15109:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"15082:54:12"},"returnParameters":{"id":2442,"nodeType":"ParameterList","parameters":[],"src":"15154:0:12"},"scope":4510,"src":"15052:829:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2550,"nodeType":"Block","src":"16063:44:12","statements":[{"expression":{"baseExpression":{"id":2546,"name":"withdrawStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1627,"src":"16080:14:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawStake storage ref[] storage ref)"}},"id":2548,"indexExpression":{"id":2547,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2539,"src":"16095:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16080:20:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref[] storage ref"}},"functionReturnParameters":2545,"id":2549,"nodeType":"Return","src":"16073:27:12"}]},"documentation":{"id":2537,"nodeType":"StructuredDocumentation","src":"15921:46:12","text":"@notice Get all withdraw stakes for a user"},"functionSelector":"c7b530b0","id":2551,"implemented":true,"kind":"function","modifiers":[],"name":"getAllWithdrawStakes","nameLocation":"15981:20:12","nodeType":"FunctionDefinition","parameters":{"id":2540,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2539,"mutability":"mutable","name":"user","nameLocation":"16010:4:12","nodeType":"VariableDeclaration","scope":2551,"src":"16002:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2538,"name":"address","nodeType":"ElementaryTypeName","src":"16002:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"16001:14:12"},"returnParameters":{"id":2545,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2544,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2551,"src":"16039:22:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1528_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake[]"},"typeName":{"baseType":{"id":2542,"nodeType":"UserDefinedTypeName","pathNode":{"id":2541,"name":"WithdrawStake","nameLocations":["16039:13:12"],"nodeType":"IdentifierPath","referencedDeclaration":1528,"src":"16039:13:12"},"referencedDeclaration":1528,"src":"16039:13:12","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1528_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake"}},"id":2543,"nodeType":"ArrayTypeName","src":"16039:15:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake[]"}},"visibility":"internal"}],"src":"16038:24:12"},"scope":4510,"src":"15972:135:12","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":2600,"nodeType":"Block","src":"16270:281:12","statements":[{"assignments":[2566],"declarations":[{"constant":false,"id":2566,"mutability":"mutable","name":"userStakes","nameLocation":"16304:10:12","nodeType":"VariableDeclaration","scope":2600,"src":"16280:34:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake[]"},"typeName":{"baseType":{"id":2564,"nodeType":"UserDefinedTypeName","pathNode":{"id":2563,"name":"WithdrawStake","nameLocations":["16280:13:12"],"nodeType":"IdentifierPath","referencedDeclaration":1528,"src":"16280:13:12"},"referencedDeclaration":1528,"src":"16280:13:12","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1528_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake"}},"id":2565,"nodeType":"ArrayTypeName","src":"16280:15:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake[]"}},"visibility":"internal"}],"id":2570,"initialValue":{"baseExpression":{"id":2567,"name":"withdrawStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1627,"src":"16317:14:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawStake storage ref[] storage ref)"}},"id":2569,"indexExpression":{"id":2568,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2554,"src":"16332:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16317:20:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref[] storage ref"}},"nodeType":"VariableDeclarationStatement","src":"16280:57:12"},{"body":{"id":2594,"nodeType":"Block","src":"16395:115:12","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2587,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":2582,"name":"userStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2566,"src":"16413:10:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref[] storage pointer"}},"id":2584,"indexExpression":{"id":2583,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2572,"src":"16424:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16413:13:12","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1528_storage","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref"}},"id":2585,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16427:7:12","memberName":"stakeId","nodeType":"MemberAccess","referencedDeclaration":1523,"src":"16413:21:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2586,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2556,"src":"16438:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16413:32:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2593,"nodeType":"IfStatement","src":"16409:91:12","trueBody":{"id":2592,"nodeType":"Block","src":"16447:53:12","statements":[{"expression":{"baseExpression":{"id":2588,"name":"userStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2566,"src":"16472:10:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref[] storage pointer"}},"id":2590,"indexExpression":{"id":2589,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2572,"src":"16483:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16472:13:12","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1528_storage","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref"}},"functionReturnParameters":2561,"id":2591,"nodeType":"Return","src":"16465:20:12"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2578,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2575,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2572,"src":"16367:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":2576,"name":"userStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2566,"src":"16371:10:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1528_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref[] storage pointer"}},"id":2577,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16382:6:12","memberName":"length","nodeType":"MemberAccess","src":"16371:17:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16367:21:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2595,"initializationExpression":{"assignments":[2572],"declarations":[{"constant":false,"id":2572,"mutability":"mutable","name":"i","nameLocation":"16360:1:12","nodeType":"VariableDeclaration","scope":2595,"src":"16352:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2571,"name":"uint256","nodeType":"ElementaryTypeName","src":"16352:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2574,"initialValue":{"hexValue":"30","id":2573,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16364:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"16352:13:12"},"loopExpression":{"expression":{"id":2580,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"16390:3:12","subExpression":{"id":2579,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2572,"src":"16390:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2581,"nodeType":"ExpressionStatement","src":"16390:3:12"},"nodeType":"ForStatement","src":"16347:163:12"},{"expression":{"arguments":[{"hexValue":"5374616b65206e6f7420666f756e64","id":2597,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16526:17:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_c720c01b1ab900eae0624fc88257558becc0dda54896b3f86c3f492482a20d30","typeString":"literal_string \"Stake not found\""},"value":"Stake not found"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c720c01b1ab900eae0624fc88257558becc0dda54896b3f86c3f492482a20d30","typeString":"literal_string \"Stake not found\""}],"id":2596,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"16519:6:12","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":2598,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16519:25:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2599,"nodeType":"ExpressionStatement","src":"16519:25:12"}]},"documentation":{"id":2552,"nodeType":"StructuredDocumentation","src":"16113:50:12","text":"@notice Get specific withdraw stake by stakeId"},"functionSelector":"b6c3dc4c","id":2601,"implemented":true,"kind":"function","modifiers":[],"name":"getWithdrawStake","nameLocation":"16177:16:12","nodeType":"FunctionDefinition","parameters":{"id":2557,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2554,"mutability":"mutable","name":"user","nameLocation":"16202:4:12","nodeType":"VariableDeclaration","scope":2601,"src":"16194:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2553,"name":"address","nodeType":"ElementaryTypeName","src":"16194:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2556,"mutability":"mutable","name":"stakeId","nameLocation":"16216:7:12","nodeType":"VariableDeclaration","scope":2601,"src":"16208:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2555,"name":"uint256","nodeType":"ElementaryTypeName","src":"16208:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16193:31:12"},"returnParameters":{"id":2561,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2560,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2601,"src":"16248:20:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1528_memory_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake"},"typeName":{"id":2559,"nodeType":"UserDefinedTypeName","pathNode":{"id":2558,"name":"WithdrawStake","nameLocations":["16248:13:12"],"nodeType":"IdentifierPath","referencedDeclaration":1528,"src":"16248:13:12"},"referencedDeclaration":1528,"src":"16248:13:12","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1528_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake"}},"visibility":"internal"}],"src":"16247:22:12"},"scope":4510,"src":"16168:383:12","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":2621,"nodeType":"Block","src":"16673:101:12","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2613,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2611,"name":"epochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2604,"src":"16691:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":2612,"name":"currentEpochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1629,"src":"16701:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16691:24:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45706f6368206e6f7420666f756e64","id":2614,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16717:17:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_804bf3e06a7bf92133efba56bc925714e4bd93bde4bd86e97734c971603054e8","typeString":"literal_string \"Epoch not found\""},"value":"Epoch not found"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_804bf3e06a7bf92133efba56bc925714e4bd93bde4bd86e97734c971603054e8","typeString":"literal_string \"Epoch not found\""}],"id":2610,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"16683:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2615,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16683:52:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2616,"nodeType":"ExpressionStatement","src":"16683:52:12"},{"expression":{"baseExpression":{"id":2617,"name":"epochs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1613,"src":"16752:6:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Epoch_$1521_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.Epoch storage ref)"}},"id":2619,"indexExpression":{"id":2618,"name":"epochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2604,"src":"16759:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16752:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1521_storage","typeString":"struct CunaFinanceBsc.Epoch storage ref"}},"functionReturnParameters":2609,"id":2620,"nodeType":"Return","src":"16745:22:12"}]},"documentation":{"id":2602,"nodeType":"StructuredDocumentation","src":"16557:39:12","text":"@notice Get epoch information by ID"},"functionSelector":"bc0bc6ba","id":2622,"implemented":true,"kind":"function","modifiers":[],"name":"getEpoch","nameLocation":"16610:8:12","nodeType":"FunctionDefinition","parameters":{"id":2605,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2604,"mutability":"mutable","name":"epochId","nameLocation":"16627:7:12","nodeType":"VariableDeclaration","scope":2622,"src":"16619:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2603,"name":"uint256","nodeType":"ElementaryTypeName","src":"16619:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16618:17:12"},"returnParameters":{"id":2609,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2608,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2622,"src":"16659:12:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1521_memory_ptr","typeString":"struct CunaFinanceBsc.Epoch"},"typeName":{"id":2607,"nodeType":"UserDefinedTypeName","pathNode":{"id":2606,"name":"Epoch","nameLocations":["16659:5:12"],"nodeType":"IdentifierPath","referencedDeclaration":1521,"src":"16659:5:12"},"referencedDeclaration":1521,"src":"16659:5:12","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1521_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch"}},"visibility":"internal"}],"src":"16658:14:12"},"scope":4510,"src":"16601:173:12","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":2692,"nodeType":"Block","src":"16919:374:12","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2637,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2635,"name":"startId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2625,"src":"16937:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":2636,"name":"endId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2627,"src":"16948:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16937:16:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642072616e6765","id":2638,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16955:15:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_86f5232cd420b5d8e89c0911fc290331f6cfd7bd7824383c43ece46e2a1c20ec","typeString":"literal_string \"Invalid range\""},"value":"Invalid range"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_86f5232cd420b5d8e89c0911fc290331f6cfd7bd7824383c43ece46e2a1c20ec","typeString":"literal_string \"Invalid range\""}],"id":2634,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"16929:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2639,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16929:42:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2640,"nodeType":"ExpressionStatement","src":"16929:42:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2644,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2642,"name":"endId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2627,"src":"16989:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":2643,"name":"currentEpochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1629,"src":"16997:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16989:22:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"456e642065706f6368206e6f7420666f756e64","id":2645,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17013:21:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_c205ddc0e8dee9f6a699462fe56d0ef15d0fbd12a7f42fd9d0f08d7b477e733b","typeString":"literal_string \"End epoch not found\""},"value":"End epoch not found"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c205ddc0e8dee9f6a699462fe56d0ef15d0fbd12a7f42fd9d0f08d7b477e733b","typeString":"literal_string \"End epoch not found\""}],"id":2641,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"16981:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2646,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16981:54:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2647,"nodeType":"ExpressionStatement","src":"16981:54:12"},{"assignments":[2649],"declarations":[{"constant":false,"id":2649,"mutability":"mutable","name":"length","nameLocation":"17062:6:12","nodeType":"VariableDeclaration","scope":2692,"src":"17054:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2648,"name":"uint256","nodeType":"ElementaryTypeName","src":"17054:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2655,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2654,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2652,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2650,"name":"endId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2627,"src":"17071:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2651,"name":"startId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2625,"src":"17079:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17071:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":2653,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17089:1:12","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"17071:19:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"17054:36:12"},{"assignments":[2660],"declarations":[{"constant":false,"id":2660,"mutability":"mutable","name":"result","nameLocation":"17115:6:12","nodeType":"VariableDeclaration","scope":2692,"src":"17100:21:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Epoch_$1521_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.Epoch[]"},"typeName":{"baseType":{"id":2658,"nodeType":"UserDefinedTypeName","pathNode":{"id":2657,"name":"Epoch","nameLocations":["17100:5:12"],"nodeType":"IdentifierPath","referencedDeclaration":1521,"src":"17100:5:12"},"referencedDeclaration":1521,"src":"17100:5:12","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1521_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch"}},"id":2659,"nodeType":"ArrayTypeName","src":"17100:7:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Epoch_$1521_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch[]"}},"visibility":"internal"}],"id":2667,"initialValue":{"arguments":[{"id":2665,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2649,"src":"17136:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2664,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"17124:11:12","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_Epoch_$1521_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct CunaFinanceBsc.Epoch memory[] memory)"},"typeName":{"baseType":{"id":2662,"nodeType":"UserDefinedTypeName","pathNode":{"id":2661,"name":"Epoch","nameLocations":["17128:5:12"],"nodeType":"IdentifierPath","referencedDeclaration":1521,"src":"17128:5:12"},"referencedDeclaration":1521,"src":"17128:5:12","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1521_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch"}},"id":2663,"nodeType":"ArrayTypeName","src":"17128:7:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Epoch_$1521_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch[]"}}},"id":2666,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17124:19:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Epoch_$1521_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.Epoch memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"17100:43:12"},{"body":{"id":2688,"nodeType":"Block","src":"17199:56:12","statements":[{"expression":{"id":2686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2678,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2660,"src":"17213:6:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Epoch_$1521_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.Epoch memory[] memory"}},"id":2680,"indexExpression":{"id":2679,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2669,"src":"17220:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"17213:9:12","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1521_memory_ptr","typeString":"struct CunaFinanceBsc.Epoch memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":2681,"name":"epochs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1613,"src":"17225:6:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Epoch_$1521_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.Epoch storage ref)"}},"id":2685,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2684,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2682,"name":"startId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2625,"src":"17232:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":2683,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2669,"src":"17242:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17232:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17225:19:12","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1521_storage","typeString":"struct CunaFinanceBsc.Epoch storage ref"}},"src":"17213:31:12","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1521_memory_ptr","typeString":"struct CunaFinanceBsc.Epoch memory"}},"id":2687,"nodeType":"ExpressionStatement","src":"17213:31:12"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2674,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2672,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2669,"src":"17182:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":2673,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2649,"src":"17186:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17182:10:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2689,"initializationExpression":{"assignments":[2669],"declarations":[{"constant":false,"id":2669,"mutability":"mutable","name":"i","nameLocation":"17175:1:12","nodeType":"VariableDeclaration","scope":2689,"src":"17167:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2668,"name":"uint256","nodeType":"ElementaryTypeName","src":"17167:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2671,"initialValue":{"hexValue":"30","id":2670,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17179:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"17167:13:12"},"loopExpression":{"expression":{"id":2676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"17194:3:12","subExpression":{"id":2675,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2669,"src":"17194:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2677,"nodeType":"ExpressionStatement","src":"17194:3:12"},"nodeType":"ForStatement","src":"17162:93:12"},{"expression":{"id":2690,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2660,"src":"17280:6:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Epoch_$1521_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.Epoch memory[] memory"}},"functionReturnParameters":2633,"id":2691,"nodeType":"Return","src":"17273:13:12"}]},"documentation":{"id":2623,"nodeType":"StructuredDocumentation","src":"16780:44:12","text":"@notice Get multiple epochs for analysis"},"functionSelector":"96fd111a","id":2693,"implemented":true,"kind":"function","modifiers":[],"name":"getEpochs","nameLocation":"16838:9:12","nodeType":"FunctionDefinition","parameters":{"id":2628,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2625,"mutability":"mutable","name":"startId","nameLocation":"16856:7:12","nodeType":"VariableDeclaration","scope":2693,"src":"16848:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2624,"name":"uint256","nodeType":"ElementaryTypeName","src":"16848:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2627,"mutability":"mutable","name":"endId","nameLocation":"16873:5:12","nodeType":"VariableDeclaration","scope":2693,"src":"16865:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2626,"name":"uint256","nodeType":"ElementaryTypeName","src":"16865:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16847:32:12"},"returnParameters":{"id":2633,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2632,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2693,"src":"16903:14:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Epoch_$1521_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.Epoch[]"},"typeName":{"baseType":{"id":2630,"nodeType":"UserDefinedTypeName","pathNode":{"id":2629,"name":"Epoch","nameLocations":["16903:5:12"],"nodeType":"IdentifierPath","referencedDeclaration":1521,"src":"16903:5:12"},"referencedDeclaration":1521,"src":"16903:5:12","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1521_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch"}},"id":2631,"nodeType":"ArrayTypeName","src":"16903:7:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Epoch_$1521_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch[]"}},"visibility":"internal"}],"src":"16902:16:12"},"scope":4510,"src":"16829:464:12","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":2888,"nodeType":"Block","src":"17543:1484:12","statements":[{"assignments":[2708],"declarations":[{"constant":false,"id":2708,"mutability":"mutable","name":"remainingStake","nameLocation":"17561:14:12","nodeType":"VariableDeclaration","scope":2888,"src":"17553:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2707,"name":"uint256","nodeType":"ElementaryTypeName","src":"17553:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2712,"initialValue":{"baseExpression":{"id":2709,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1617,"src":"17578:12:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2711,"indexExpression":{"id":2710,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2696,"src":"17591:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17578:18:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"17553:43:12"},{"assignments":[2714],"declarations":[{"constant":false,"id":2714,"mutability":"mutable","name":"startEpoch","nameLocation":"17614:10:12","nodeType":"VariableDeclaration","scope":2888,"src":"17606:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2713,"name":"uint256","nodeType":"ElementaryTypeName","src":"17606:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2718,"initialValue":{"baseExpression":{"id":2715,"name":"userLastClaimedEpoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1621,"src":"17627:20:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2717,"indexExpression":{"id":2716,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2696,"src":"17648:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17627:26:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"17606:47:12"},{"assignments":[2720],"declarations":[{"constant":false,"id":2720,"mutability":"mutable","name":"epochCount","nameLocation":"17671:10:12","nodeType":"VariableDeclaration","scope":2888,"src":"17663:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2719,"name":"uint256","nodeType":"ElementaryTypeName","src":"17663:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2724,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2723,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2721,"name":"currentEpochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1629,"src":"17684:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2722,"name":"startEpoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2714,"src":"17701:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17684:27:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"17663:48:12"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2727,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2725,"name":"epochCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2720,"src":"17734:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2726,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17748:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17734:15:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2742,"nodeType":"IfStatement","src":"17730:92:12","trueBody":{"id":2741,"nodeType":"Block","src":"17751:71:12","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":2731,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17787:1:12","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":2730,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"17773:13:12","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint256[] memory)"},"typeName":{"baseType":{"id":2728,"name":"uint256","nodeType":"ElementaryTypeName","src":"17777:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2729,"nodeType":"ArrayTypeName","src":"17777:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":2732,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17773:16:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"arguments":[{"hexValue":"30","id":2736,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17805:1:12","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":2735,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"17791:13:12","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint256[] memory)"},"typeName":{"baseType":{"id":2733,"name":"uint256","nodeType":"ElementaryTypeName","src":"17795:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2734,"nodeType":"ArrayTypeName","src":"17795:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":2737,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17791:16:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"hexValue":"30","id":2738,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17809:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":2739,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"17772:39:12","typeDescriptions":{"typeIdentifier":"t_tuple$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_rational_0_by_1_$","typeString":"tuple(uint256[] memory,uint256[] memory,int_const 0)"}},"functionReturnParameters":2706,"id":2740,"nodeType":"Return","src":"17765:46:12"}]}},{"expression":{"id":2749,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2743,"name":"epochIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2700,"src":"17840:8:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":2747,"name":"epochCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2720,"src":"17865:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2746,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"17851:13:12","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint256[] memory)"},"typeName":{"baseType":{"id":2744,"name":"uint256","nodeType":"ElementaryTypeName","src":"17855:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2745,"nodeType":"ArrayTypeName","src":"17855:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":2748,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17851:25:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"src":"17840:36:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":2750,"nodeType":"ExpressionStatement","src":"17840:36:12"},{"expression":{"id":2757,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2751,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2703,"src":"17886:7:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":2755,"name":"epochCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2720,"src":"17910:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2754,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"17896:13:12","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint256[] memory)"},"typeName":{"baseType":{"id":2752,"name":"uint256","nodeType":"ElementaryTypeName","src":"17900:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2753,"nodeType":"ArrayTypeName","src":"17900:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":2756,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17896:25:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"src":"17886:35:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":2758,"nodeType":"ExpressionStatement","src":"17886:35:12"},{"assignments":[2760],"declarations":[{"constant":false,"id":2760,"mutability":"mutable","name":"actualCount","nameLocation":"17948:11:12","nodeType":"VariableDeclaration","scope":2888,"src":"17940:19:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2759,"name":"uint256","nodeType":"ElementaryTypeName","src":"17940:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2762,"initialValue":{"hexValue":"30","id":2761,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17962:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"17940:23:12"},{"body":{"id":2818,"nodeType":"Block","src":"18027:438:12","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2773,"name":"remainingStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2708,"src":"18045:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2774,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18062:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18045:18:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2817,"nodeType":"IfStatement","src":"18041:414:12","trueBody":{"id":2816,"nodeType":"Block","src":"18065:390:12","statements":[{"assignments":[2777],"declarations":[{"constant":false,"id":2777,"mutability":"mutable","name":"unlocked","nameLocation":"18091:8:12","nodeType":"VariableDeclaration","scope":2816,"src":"18083:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2776,"name":"uint256","nodeType":"ElementaryTypeName","src":"18083:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2787,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2786,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2778,"name":"remainingStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2708,"src":"18103:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"baseExpression":{"id":2779,"name":"epochs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1613,"src":"18120:6:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Epoch_$1521_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.Epoch storage ref)"}},"id":2781,"indexExpression":{"id":2780,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2764,"src":"18127:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18120:9:12","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1521_storage","typeString":"struct CunaFinanceBsc.Epoch storage ref"}},"id":2782,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18130:16:12","memberName":"unlockPercentage","nodeType":"MemberAccess","referencedDeclaration":1518,"src":"18120:26:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18103:43:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2784,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"18102:45:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130303030","id":2785,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18150:5:12","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"18102:53:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18083:72:12"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2790,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2788,"name":"unlocked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2777,"src":"18177:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2789,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18188:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18177:12:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2815,"nodeType":"IfStatement","src":"18173:268:12","trueBody":{"id":2814,"nodeType":"Block","src":"18191:250:12","statements":[{"expression":{"id":2795,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2791,"name":"epochIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2700,"src":"18213:8:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":2793,"indexExpression":{"id":2792,"name":"actualCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2760,"src":"18222:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18213:21:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2794,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2764,"src":"18237:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18213:25:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2796,"nodeType":"ExpressionStatement","src":"18213:25:12"},{"expression":{"id":2801,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2797,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2703,"src":"18260:7:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":2799,"indexExpression":{"id":2798,"name":"actualCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2760,"src":"18268:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18260:20:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2800,"name":"unlocked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2777,"src":"18283:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18260:31:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2802,"nodeType":"ExpressionStatement","src":"18260:31:12"},{"expression":{"id":2805,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2803,"name":"totalUnclaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2705,"src":"18313:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":2804,"name":"unlocked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2777,"src":"18331:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18313:26:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2806,"nodeType":"ExpressionStatement","src":"18313:26:12"},{"expression":{"id":2809,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2807,"name":"remainingStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2708,"src":"18361:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":2808,"name":"unlocked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2777,"src":"18379:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18361:26:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2810,"nodeType":"ExpressionStatement","src":"18361:26:12"},{"expression":{"id":2812,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18409:13:12","subExpression":{"id":2811,"name":"actualCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2760,"src":"18409:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2813,"nodeType":"ExpressionStatement","src":"18409:13:12"}]}}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2769,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2767,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2764,"src":"18002:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":2768,"name":"currentEpochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1629,"src":"18006:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18002:18:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2819,"initializationExpression":{"assignments":[2764],"declarations":[{"constant":false,"id":2764,"mutability":"mutable","name":"i","nameLocation":"17986:1:12","nodeType":"VariableDeclaration","scope":2819,"src":"17978:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2763,"name":"uint256","nodeType":"ElementaryTypeName","src":"17978:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2766,"initialValue":{"id":2765,"name":"startEpoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2714,"src":"17990:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"17978:22:12"},"loopExpression":{"expression":{"id":2771,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18022:3:12","subExpression":{"id":2770,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2764,"src":"18022:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2772,"nodeType":"ExpressionStatement","src":"18022:3:12"},"nodeType":"ForStatement","src":"17973:492:12"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2822,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2820,"name":"actualCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2760,"src":"18528:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":2821,"name":"epochCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2720,"src":"18542:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18528:24:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2882,"nodeType":"IfStatement","src":"18524:436:12","trueBody":{"id":2881,"nodeType":"Block","src":"18554:406:12","statements":[{"assignments":[2827],"declarations":[{"constant":false,"id":2827,"mutability":"mutable","name":"resizedEpochIds","nameLocation":"18585:15:12","nodeType":"VariableDeclaration","scope":2881,"src":"18568:32:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2825,"name":"uint256","nodeType":"ElementaryTypeName","src":"18568:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2826,"nodeType":"ArrayTypeName","src":"18568:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"id":2833,"initialValue":{"arguments":[{"id":2831,"name":"actualCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2760,"src":"18617:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2830,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"18603:13:12","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint256[] memory)"},"typeName":{"baseType":{"id":2828,"name":"uint256","nodeType":"ElementaryTypeName","src":"18607:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2829,"nodeType":"ArrayTypeName","src":"18607:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":2832,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18603:26:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"VariableDeclarationStatement","src":"18568:61:12"},{"assignments":[2838],"declarations":[{"constant":false,"id":2838,"mutability":"mutable","name":"resizedAmounts","nameLocation":"18660:14:12","nodeType":"VariableDeclaration","scope":2881,"src":"18643:31:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2836,"name":"uint256","nodeType":"ElementaryTypeName","src":"18643:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2837,"nodeType":"ArrayTypeName","src":"18643:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"id":2844,"initialValue":{"arguments":[{"id":2842,"name":"actualCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2760,"src":"18691:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2841,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"18677:13:12","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint256[] memory)"},"typeName":{"baseType":{"id":2839,"name":"uint256","nodeType":"ElementaryTypeName","src":"18681:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2840,"nodeType":"ArrayTypeName","src":"18681:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":2843,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18677:26:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"VariableDeclarationStatement","src":"18643:60:12"},{"body":{"id":2871,"nodeType":"Block","src":"18759:113:12","statements":[{"expression":{"id":2861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2855,"name":"resizedEpochIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2827,"src":"18777:15:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":2857,"indexExpression":{"id":2856,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2846,"src":"18793:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18777:18:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":2858,"name":"epochIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2700,"src":"18798:8:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":2860,"indexExpression":{"id":2859,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2846,"src":"18807:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18798:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18777:32:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2862,"nodeType":"ExpressionStatement","src":"18777:32:12"},{"expression":{"id":2869,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2863,"name":"resizedAmounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2838,"src":"18827:14:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":2865,"indexExpression":{"id":2864,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2846,"src":"18842:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18827:17:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":2866,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2703,"src":"18847:7:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":2868,"indexExpression":{"id":2867,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2846,"src":"18855:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18847:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18827:30:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2870,"nodeType":"ExpressionStatement","src":"18827:30:12"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2851,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2849,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2846,"src":"18737:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":2850,"name":"actualCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2760,"src":"18741:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18737:15:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2872,"initializationExpression":{"assignments":[2846],"declarations":[{"constant":false,"id":2846,"mutability":"mutable","name":"i","nameLocation":"18730:1:12","nodeType":"VariableDeclaration","scope":2872,"src":"18722:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2845,"name":"uint256","nodeType":"ElementaryTypeName","src":"18722:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2848,"initialValue":{"hexValue":"30","id":2847,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18734:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"18722:13:12"},"loopExpression":{"expression":{"id":2853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18754:3:12","subExpression":{"id":2852,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2846,"src":"18754:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2854,"nodeType":"ExpressionStatement","src":"18754:3:12"},"nodeType":"ForStatement","src":"18717:155:12"},{"expression":{"id":2875,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2873,"name":"epochIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2700,"src":"18885:8:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2874,"name":"resizedEpochIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2827,"src":"18896:15:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"src":"18885:26:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":2876,"nodeType":"ExpressionStatement","src":"18885:26:12"},{"expression":{"id":2879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2877,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2703,"src":"18925:7:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2878,"name":"resizedAmounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2838,"src":"18935:14:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"src":"18925:24:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":2880,"nodeType":"ExpressionStatement","src":"18925:24:12"}]}},{"expression":{"components":[{"id":2883,"name":"epochIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2700,"src":"18986:8:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":2884,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2703,"src":"18996:7:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":2885,"name":"totalUnclaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2705,"src":"19005:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2886,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"18985:35:12","typeDescriptions":{"typeIdentifier":"t_tuple$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_uint256_$","typeString":"tuple(uint256[] memory,uint256[] memory,uint256)"}},"functionReturnParameters":2706,"id":2887,"nodeType":"Return","src":"18978:42:12"}]},"documentation":{"id":2694,"nodeType":"StructuredDocumentation","src":"17299:59:12","text":"@notice Get detailed unclaimed funds breakdown by epoch"},"functionSelector":"e88f8e66","id":2889,"implemented":true,"kind":"function","modifiers":[],"name":"getUnclaimedFundsBreakdown","nameLocation":"17372:26:12","nodeType":"FunctionDefinition","parameters":{"id":2697,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2696,"mutability":"mutable","name":"user","nameLocation":"17407:4:12","nodeType":"VariableDeclaration","scope":2889,"src":"17399:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2695,"name":"address","nodeType":"ElementaryTypeName","src":"17399:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"17398:14:12"},"returnParameters":{"id":2706,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2700,"mutability":"mutable","name":"epochIds","nameLocation":"17462:8:12","nodeType":"VariableDeclaration","scope":2889,"src":"17445:25:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2698,"name":"uint256","nodeType":"ElementaryTypeName","src":"17445:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2699,"nodeType":"ArrayTypeName","src":"17445:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2703,"mutability":"mutable","name":"amounts","nameLocation":"17497:7:12","nodeType":"VariableDeclaration","scope":2889,"src":"17480:24:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":2701,"name":"uint256","nodeType":"ElementaryTypeName","src":"17480:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2702,"nodeType":"ArrayTypeName","src":"17480:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":2705,"mutability":"mutable","name":"totalUnclaimed","nameLocation":"17522:14:12","nodeType":"VariableDeclaration","scope":2889,"src":"17514:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2704,"name":"uint256","nodeType":"ElementaryTypeName","src":"17514:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17435:107:12"},"scope":4510,"src":"17363:1664:12","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":3008,"nodeType":"Block","src":"19335:1303:12","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2900,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"19353:5:12","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":"19361:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"19353:9:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642076616c7565","id":2903,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"19364:15:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_a06538b932a313089ae566efd0e7e26dd4e72c52e77044e966d0526f069591e6","typeString":"literal_string \"Invalid value\""},"value":"Invalid value"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a06538b932a313089ae566efd0e7e26dd4e72c52e77044e966d0526f069591e6","typeString":"literal_string \"Invalid value\""}],"id":2899,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"19345:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2904,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19345:35:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2905,"nodeType":"ExpressionStatement","src":"19345:35:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2909,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2907,"name":"salePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2894,"src":"19398:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2908,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19410:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"19398:13:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642073616c65207072696365","id":2910,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"19413:20:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_41afe65c2f48450cc65afb8258dbcfd4711efe900a4abbb354fb78b64cb78f3c","typeString":"literal_string \"Invalid sale price\""},"value":"Invalid sale price"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_41afe65c2f48450cc65afb8258dbcfd4711efe900a4abbb354fb78b64cb78f3c","typeString":"literal_string \"Invalid sale price\""}],"id":2906,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"19390:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2911,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19390:44:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2912,"nodeType":"ExpressionStatement","src":"19390:44:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2916,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2914,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"19452:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":2915,"name":"marketplaceMin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1642,"src":"19461:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19452:23:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"56616c75652062656c6f77206d696e696d756d","id":2917,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"19477:21:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_07ac34a80b409cb13a59b255bc41aced9c990f0df5c1385b4a46b6b34a89399d","typeString":"literal_string \"Value below minimum\""},"value":"Value below minimum"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_07ac34a80b409cb13a59b255bc41aced9c990f0df5c1385b4a46b6b34a89399d","typeString":"literal_string \"Value below minimum\""}],"id":2913,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"19444:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2918,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19444:55:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2919,"nodeType":"ExpressionStatement","src":"19444:55:12"},{"assignments":[2921],"declarations":[{"constant":false,"id":2921,"mutability":"mutable","name":"netStake","nameLocation":"19593:8:12","nodeType":"VariableDeclaration","scope":3008,"src":"19585:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2920,"name":"uint256","nodeType":"ElementaryTypeName","src":"19585:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2926,"initialValue":{"arguments":[{"expression":{"id":2923,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"19616:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2924,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19620:6:12","memberName":"sender","nodeType":"MemberAccess","src":"19616:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2922,"name":"getNetStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2201,"src":"19604:11:12","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":2925,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19604:23:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"19585:42:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2930,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2928,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"19645:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":2929,"name":"netStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2921,"src":"19654:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19645:17:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e73756666696369656e74206e6574207374616b65","id":2931,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"19664:24:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_e5b6e7e123f74d79e5b22a141b369c822da4aa28e7734495eb76a647065377a9","typeString":"literal_string \"Insufficient net stake\""},"value":"Insufficient net stake"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_e5b6e7e123f74d79e5b22a141b369c822da4aa28e7734495eb76a647065377a9","typeString":"literal_string \"Insufficient net stake\""}],"id":2927,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"19637:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2932,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19637:52:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2933,"nodeType":"ExpressionStatement","src":"19637:52:12"},{"assignments":[2935],"declarations":[{"constant":false,"id":2935,"mutability":"mutable","name":"stakeId","nameLocation":"19767:7:12","nodeType":"VariableDeclaration","scope":3008,"src":"19759:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2934,"name":"uint256","nodeType":"ElementaryTypeName","src":"19759:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2938,"initialValue":{"expression":{"id":2936,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"19777:5:12","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2937,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19783:9:12","memberName":"timestamp","nodeType":"MemberAccess","src":"19777:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"19759:33:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2948,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"baseExpression":{"id":2940,"name":"sellStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1640,"src":"19872:10:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_SellStake_$1537_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref))"}},"id":2943,"indexExpression":{"expression":{"id":2941,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"19883:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19887:6:12","memberName":"sender","nodeType":"MemberAccess","src":"19883:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19872:22:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_SellStake_$1537_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref)"}},"id":2945,"indexExpression":{"id":2944,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2935,"src":"19895:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19872:31:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage","typeString":"struct CunaFinanceBsc.SellStake storage ref"}},"id":2946,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19904:5:12","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1530,"src":"19872:37:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2947,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19913:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"19872:42:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5374616b65496420616c726561647920657869737473","id":2949,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"19916:24:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_fd2d1480c29e633e4ed2aa8313e3466de57935c6340707dcc6cfdb3e277782af","typeString":"literal_string \"StakeId already exists\""},"value":"StakeId already exists"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_fd2d1480c29e633e4ed2aa8313e3466de57935c6340707dcc6cfdb3e277782af","typeString":"literal_string \"StakeId already exists\""}],"id":2939,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"19864:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2950,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19864:77:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2951,"nodeType":"ExpressionStatement","src":"19864:77:12"},{"expression":{"id":2957,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2952,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1617,"src":"20018:12:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2955,"indexExpression":{"expression":{"id":2953,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"20031:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2954,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20035:6:12","memberName":"sender","nodeType":"MemberAccess","src":"20031:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"20018:24:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":2956,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"20046:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20018:33:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2958,"nodeType":"ExpressionStatement","src":"20018:33:12"},{"expression":{"id":2961,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2959,"name":"totalBigStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"20061:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":2960,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"20079:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20061:23:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2962,"nodeType":"ExpressionStatement","src":"20061:23:12"},{"expression":{"id":2977,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":2963,"name":"sellStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1640,"src":"20141:10:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_SellStake_$1537_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref))"}},"id":2967,"indexExpression":{"expression":{"id":2964,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"20152:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2965,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20156:6:12","memberName":"sender","nodeType":"MemberAccess","src":"20152:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"20141:22:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_SellStake_$1537_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref)"}},"id":2968,"indexExpression":{"id":2966,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2935,"src":"20164:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"20141:31:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage","typeString":"struct CunaFinanceBsc.SellStake storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":2970,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"20206:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2971,"name":"salePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2894,"src":"20236:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":2972,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"20267:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2973,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20271:6:12","memberName":"sender","nodeType":"MemberAccess","src":"20267:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":2974,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"20301:5:12","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2975,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20307:9:12","memberName":"timestamp","nodeType":"MemberAccess","src":"20301:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2969,"name":"SellStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1537,"src":"20175:9:12","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_SellStake_$1537_storage_ptr_$","typeString":"type(struct CunaFinanceBsc.SellStake storage pointer)"}},"id":2976,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["20199:5:12","20225:9:12","20259:6:12","20291:8:12"],"names":["value","salePrice","seller","listTime"],"nodeType":"FunctionCall","src":"20175:152:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_memory_ptr","typeString":"struct CunaFinanceBsc.SellStake memory"}},"src":"20141:186:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage","typeString":"struct CunaFinanceBsc.SellStake storage ref"}},"id":2978,"nodeType":"ExpressionStatement","src":"20141:186:12"},{"expression":{"arguments":[{"arguments":[{"expression":{"id":2983,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"20434:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2984,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20438:6:12","memberName":"sender","nodeType":"MemberAccess","src":"20434:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2985,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2935,"src":"20467:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2982,"name":"SellStakeKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1542,"src":"20399:12:12","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_SellStakeKey_$1542_storage_ptr_$","typeString":"type(struct CunaFinanceBsc.SellStakeKey storage pointer)"}},"id":2986,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["20426:6:12","20458:7:12"],"names":["seller","stakeId"],"nodeType":"FunctionCall","src":"20399:86:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_SellStakeKey_$1542_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}],"expression":{"id":2979,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1652,"src":"20380:13:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1542_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":2981,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20394:4:12","memberName":"push","nodeType":"MemberAccess","src":"20380:18:12","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_SellStakeKey_$1542_storage_$dyn_storage_ptr_$_t_struct$_SellStakeKey_$1542_storage_$returns$__$attached_to$_t_array$_t_struct$_SellStakeKey_$1542_storage_$dyn_storage_ptr_$","typeString":"function (struct CunaFinanceBsc.SellStakeKey storage ref[] storage pointer,struct CunaFinanceBsc.SellStakeKey storage ref)"}},"id":2987,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20380:106:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2988,"nodeType":"ExpressionStatement","src":"20380:106:12"},{"expression":{"id":2999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":2989,"name":"sellStakeKeyIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1658,"src":"20496:17:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"}},"id":2993,"indexExpression":{"expression":{"id":2990,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"20514:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2991,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20518:6:12","memberName":"sender","nodeType":"MemberAccess","src":"20514:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"20496:29:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":2994,"indexExpression":{"id":2992,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2935,"src":"20526:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"20496:38:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2998,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2995,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1652,"src":"20537:13:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1542_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":2996,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20551:6:12","memberName":"length","nodeType":"MemberAccess","src":"20537:20:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":2997,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20560:1:12","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"20537:24:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20496:65:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3000,"nodeType":"ExpressionStatement","src":"20496:65:12"},{"eventCall":{"arguments":[{"expression":{"id":3002,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"20600:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3003,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20604:6:12","memberName":"sender","nodeType":"MemberAccess","src":"20600:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3004,"name":"salePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2894,"src":"20612:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3005,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2935,"src":"20623:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3001,"name":"StakeUpForSale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1734,"src":"20585:14:12","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256)"}},"id":3006,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20585:46:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3007,"nodeType":"EmitStatement","src":"20580:51:12"}]},"documentation":{"id":2890,"nodeType":"StructuredDocumentation","src":"19067:188:12","text":"@notice List payback value for sale on marketplace\n @param value The payback value to sell (must be >= marketplaceMin)\n @param salePrice The price seller wants to receive"},"functionSelector":"58116227","id":3009,"implemented":true,"kind":"function","modifiers":[{"id":2897,"kind":"modifierInvocation","modifierName":{"id":2896,"name":"nonReentrant","nameLocations":["19322:12:12"],"nodeType":"IdentifierPath","referencedDeclaration":1408,"src":"19322:12:12"},"nodeType":"ModifierInvocation","src":"19322:12:12"}],"name":"sellStake","nameLocation":"19269:9:12","nodeType":"FunctionDefinition","parameters":{"id":2895,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2892,"mutability":"mutable","name":"value","nameLocation":"19287:5:12","nodeType":"VariableDeclaration","scope":3009,"src":"19279:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2891,"name":"uint256","nodeType":"ElementaryTypeName","src":"19279:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2894,"mutability":"mutable","name":"salePrice","nameLocation":"19302:9:12","nodeType":"VariableDeclaration","scope":3009,"src":"19294:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2893,"name":"uint256","nodeType":"ElementaryTypeName","src":"19294:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19278:34:12"},"returnParameters":{"id":2898,"nodeType":"ParameterList","parameters":[],"src":"19335:0:12"},"scope":4510,"src":"19260:1378:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":3156,"nodeType":"Block","src":"20838:1442:12","statements":[{"assignments":[3017],"declarations":[{"constant":false,"id":3017,"mutability":"mutable","name":"sellStakeEntry","nameLocation":"20866:14:12","nodeType":"VariableDeclaration","scope":3156,"src":"20848:32:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake"},"typeName":{"id":3016,"nodeType":"UserDefinedTypeName","pathNode":{"id":3015,"name":"SellStake","nameLocations":["20848:9:12"],"nodeType":"IdentifierPath","referencedDeclaration":1537,"src":"20848:9:12"},"referencedDeclaration":1537,"src":"20848:9:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake"}},"visibility":"internal"}],"id":3024,"initialValue":{"baseExpression":{"baseExpression":{"id":3018,"name":"sellStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1640,"src":"20883:10:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_SellStake_$1537_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref))"}},"id":3021,"indexExpression":{"expression":{"id":3019,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"20894:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3020,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20898:6:12","memberName":"sender","nodeType":"MemberAccess","src":"20894:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"20883:22:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_SellStake_$1537_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref)"}},"id":3023,"indexExpression":{"id":3022,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3012,"src":"20906:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"20883:31:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage","typeString":"struct CunaFinanceBsc.SellStake storage ref"}},"nodeType":"VariableDeclarationStatement","src":"20848:66:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3029,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3026,"name":"sellStakeEntry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3017,"src":"20932:14:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake storage pointer"}},"id":3027,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"20947:5:12","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1530,"src":"20932:20:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3028,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20955:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"20932:24:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4c697374696e67206e6f7420666f756e64","id":3030,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"20958:19:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_e65aeb0dca34957cd75dcf5edf664369a554ea0a38af77ddcfdf2ec419a8424a","typeString":"literal_string \"Listing not found\""},"value":"Listing not found"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_e65aeb0dca34957cd75dcf5edf664369a554ea0a38af77ddcfdf2ec419a8424a","typeString":"literal_string \"Listing not found\""}],"id":3025,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"20924:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20924:54:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3032,"nodeType":"ExpressionStatement","src":"20924:54:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3034,"name":"sellStakeEntry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3017,"src":"20996:14:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake storage pointer"}},"id":3035,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"21011:6:12","memberName":"seller","nodeType":"MemberAccess","referencedDeclaration":1534,"src":"20996:21:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":3036,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"21021:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21025:6:12","memberName":"sender","nodeType":"MemberAccess","src":"21021:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"20996:35:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f74207468652073656c6c6572","id":3039,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"21033:16:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_ce57addf3f5de810402cc65bacdf9d6eb19fb240991cacfdb84749b70a2ea3ec","typeString":"literal_string \"Not the seller\""},"value":"Not the seller"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ce57addf3f5de810402cc65bacdf9d6eb19fb240991cacfdb84749b70a2ea3ec","typeString":"literal_string \"Not the seller\""}],"id":3033,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"20988:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3040,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20988:62:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3041,"nodeType":"ExpressionStatement","src":"20988:62:12"},{"assignments":[3043],"declarations":[{"constant":false,"id":3043,"mutability":"mutable","name":"value","nameLocation":"21077:5:12","nodeType":"VariableDeclaration","scope":3156,"src":"21069:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3042,"name":"uint256","nodeType":"ElementaryTypeName","src":"21069:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3046,"initialValue":{"expression":{"id":3044,"name":"sellStakeEntry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3017,"src":"21085:14:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake storage pointer"}},"id":3045,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"21100:5:12","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1530,"src":"21085:20:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"21069:36:12"},{"assignments":[3048],"declarations":[{"constant":false,"id":3048,"mutability":"mutable","name":"fee","nameLocation":"21170:3:12","nodeType":"VariableDeclaration","scope":3156,"src":"21162:11:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3047,"name":"uint256","nodeType":"ElementaryTypeName","src":"21162:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3055,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3054,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3051,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3049,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3043,"src":"21177:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":3050,"name":"cancellationFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1644,"src":"21185:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"21177:23:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3052,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"21176:25:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130303030","id":3053,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21204:5:12","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"21176:33:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"21162:47:12"},{"assignments":[3057],"declarations":[{"constant":false,"id":3057,"mutability":"mutable","name":"valueAfterFee","nameLocation":"21227:13:12","nodeType":"VariableDeclaration","scope":3156,"src":"21219:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3056,"name":"uint256","nodeType":"ElementaryTypeName","src":"21219:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3061,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3058,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3043,"src":"21243:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":3059,"name":"fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3048,"src":"21251:3:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"21243:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"21219:35:12"},{"expression":{"id":3067,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3062,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1617,"src":"21328:12:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3065,"indexExpression":{"expression":{"id":3063,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"21341:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3064,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21345:6:12","memberName":"sender","nodeType":"MemberAccess","src":"21341:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"21328:24:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3066,"name":"valueAfterFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3057,"src":"21356:13:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"21328:41:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3068,"nodeType":"ExpressionStatement","src":"21328:41:12"},{"expression":{"id":3071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3069,"name":"totalBigStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"21379:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3070,"name":"valueAfterFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3057,"src":"21397:13:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"21379:31:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3072,"nodeType":"ExpressionStatement","src":"21379:31:12"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3075,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3073,"name":"fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3048,"src":"21539:3:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3074,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21545:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"21539:7:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3084,"nodeType":"IfStatement","src":"21535:88:12","trueBody":{"id":3083,"nodeType":"Block","src":"21548:75:12","statements":[{"eventCall":{"arguments":[{"expression":{"id":3077,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"21587:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3078,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21591:6:12","memberName":"sender","nodeType":"MemberAccess","src":"21587:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3079,"name":"fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3048,"src":"21599:3:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3080,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3012,"src":"21604:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3076,"name":"CancellationFeePaid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1758,"src":"21567:19:12","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256)"}},"id":3081,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21567:45:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3082,"nodeType":"EmitStatement","src":"21562:50:12"}]}},{"expression":{"id":3091,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"21675:38:12","subExpression":{"baseExpression":{"baseExpression":{"id":3085,"name":"sellStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1640,"src":"21682:10:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_SellStake_$1537_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref))"}},"id":3088,"indexExpression":{"expression":{"id":3086,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"21693:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3087,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21697:6:12","memberName":"sender","nodeType":"MemberAccess","src":"21693:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"21682:22:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_SellStake_$1537_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref)"}},"id":3090,"indexExpression":{"id":3089,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3012,"src":"21705:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"21682:31:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage","typeString":"struct CunaFinanceBsc.SellStake storage ref"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3092,"nodeType":"ExpressionStatement","src":"21675:38:12"},{"assignments":[3094],"declarations":[{"constant":false,"id":3094,"mutability":"mutable","name":"index","nameLocation":"21798:5:12","nodeType":"VariableDeclaration","scope":3156,"src":"21790:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3093,"name":"uint256","nodeType":"ElementaryTypeName","src":"21790:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3101,"initialValue":{"baseExpression":{"baseExpression":{"id":3095,"name":"sellStakeKeyIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1658,"src":"21806:17:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"}},"id":3098,"indexExpression":{"expression":{"id":3096,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"21824:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3097,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21828:6:12","memberName":"sender","nodeType":"MemberAccess","src":"21824:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"21806:29:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3100,"indexExpression":{"id":3099,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3012,"src":"21836:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"21806:38:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"21790:54:12"},{"assignments":[3103],"declarations":[{"constant":false,"id":3103,"mutability":"mutable","name":"lastIndex","nameLocation":"21862:9:12","nodeType":"VariableDeclaration","scope":3156,"src":"21854:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3102,"name":"uint256","nodeType":"ElementaryTypeName","src":"21854:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3108,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3107,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3104,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1652,"src":"21874:13:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1542_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":3105,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21888:6:12","memberName":"length","nodeType":"MemberAccess","src":"21874:20:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":3106,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21897:1:12","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"21874:24:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"21854:44:12"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3111,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3109,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3094,"src":"21912:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":3110,"name":"lastIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3103,"src":"21921:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"21912:18:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3136,"nodeType":"IfStatement","src":"21908:219:12","trueBody":{"id":3135,"nodeType":"Block","src":"21932:195:12","statements":[{"assignments":[3114],"declarations":[{"constant":false,"id":3114,"mutability":"mutable","name":"lastKey","nameLocation":"21966:7:12","nodeType":"VariableDeclaration","scope":3135,"src":"21946:27:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey"},"typeName":{"id":3113,"nodeType":"UserDefinedTypeName","pathNode":{"id":3112,"name":"SellStakeKey","nameLocations":["21946:12:12"],"nodeType":"IdentifierPath","referencedDeclaration":1542,"src":"21946:12:12"},"referencedDeclaration":1542,"src":"21946:12:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_storage_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey"}},"visibility":"internal"}],"id":3118,"initialValue":{"baseExpression":{"id":3115,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1652,"src":"21976:13:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1542_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":3117,"indexExpression":{"id":3116,"name":"lastIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3103,"src":"21990:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"21976:24:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref"}},"nodeType":"VariableDeclarationStatement","src":"21946:54:12"},{"expression":{"id":3123,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3119,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1652,"src":"22014:13:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1542_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":3121,"indexExpression":{"id":3120,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3094,"src":"22028:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"22014:20:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3122,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3114,"src":"22037:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}},"src":"22014:30:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref"}},"id":3124,"nodeType":"ExpressionStatement","src":"22014:30:12"},{"expression":{"id":3133,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":3125,"name":"sellStakeKeyIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1658,"src":"22058:17:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"}},"id":3130,"indexExpression":{"expression":{"id":3126,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3114,"src":"22076:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}},"id":3127,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"22084:6:12","memberName":"seller","nodeType":"MemberAccess","referencedDeclaration":1539,"src":"22076:14:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22058:33:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3131,"indexExpression":{"expression":{"id":3128,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3114,"src":"22092:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}},"id":3129,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"22100:7:12","memberName":"stakeId","nodeType":"MemberAccess","referencedDeclaration":1541,"src":"22092:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"22058:50:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3132,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3094,"src":"22111:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22058:58:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3134,"nodeType":"ExpressionStatement","src":"22058:58:12"}]}},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":3137,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1652,"src":"22136:13:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1542_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":3139,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22150:3:12","memberName":"pop","nodeType":"MemberAccess","src":"22136:17:12","typeDescriptions":{"typeIdentifier":"t_function_arraypop_nonpayable$_t_array$_t_struct$_SellStakeKey_$1542_storage_$dyn_storage_ptr_$returns$__$attached_to$_t_array$_t_struct$_SellStakeKey_$1542_storage_$dyn_storage_ptr_$","typeString":"function (struct CunaFinanceBsc.SellStakeKey storage ref[] storage pointer)"}},"id":3140,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22136:19:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3141,"nodeType":"ExpressionStatement","src":"22136:19:12"},{"expression":{"id":3148,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"22165:45:12","subExpression":{"baseExpression":{"baseExpression":{"id":3142,"name":"sellStakeKeyIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1658,"src":"22172:17:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"}},"id":3145,"indexExpression":{"expression":{"id":3143,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"22190:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3144,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22194:6:12","memberName":"sender","nodeType":"MemberAccess","src":"22190:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22172:29:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3147,"indexExpression":{"id":3146,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3012,"src":"22202:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"22172:38:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3149,"nodeType":"ExpressionStatement","src":"22165:45:12"},{"eventCall":{"arguments":[{"expression":{"id":3151,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"22253:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3152,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22257:6:12","memberName":"sender","nodeType":"MemberAccess","src":"22253:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3153,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3012,"src":"22265:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3150,"name":"StakeSaleCancelled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1740,"src":"22234:18:12","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":3154,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22234:39:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3155,"nodeType":"EmitStatement","src":"22229:44:12"}]},"documentation":{"id":3010,"nodeType":"StructuredDocumentation","src":"20648:134:12","text":"@notice Cancel a listing and restore the value to big stake (minus cancellation fee)\n @param stakeId The stake ID to cancel"},"functionSelector":"953d16bf","id":3157,"implemented":true,"kind":"function","modifiers":[],"name":"cancelSellStake","nameLocation":"20796:15:12","nodeType":"FunctionDefinition","parameters":{"id":3013,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3012,"mutability":"mutable","name":"stakeId","nameLocation":"20820:7:12","nodeType":"VariableDeclaration","scope":3157,"src":"20812:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3011,"name":"uint256","nodeType":"ElementaryTypeName","src":"20812:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20811:17:12"},"returnParameters":{"id":3014,"nodeType":"ParameterList","parameters":[],"src":"20838:0:12"},"scope":4510,"src":"20787:1493:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":3212,"nodeType":"Block","src":"22507:407:12","statements":[{"assignments":[3167],"declarations":[{"constant":false,"id":3167,"mutability":"mutable","name":"sellStakeEntry","nameLocation":"22535:14:12","nodeType":"VariableDeclaration","scope":3212,"src":"22517:32:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake"},"typeName":{"id":3166,"nodeType":"UserDefinedTypeName","pathNode":{"id":3165,"name":"SellStake","nameLocations":["22517:9:12"],"nodeType":"IdentifierPath","referencedDeclaration":1537,"src":"22517:9:12"},"referencedDeclaration":1537,"src":"22517:9:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake"}},"visibility":"internal"}],"id":3174,"initialValue":{"baseExpression":{"baseExpression":{"id":3168,"name":"sellStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1640,"src":"22552:10:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_SellStake_$1537_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref))"}},"id":3171,"indexExpression":{"expression":{"id":3169,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"22563:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3170,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22567:6:12","memberName":"sender","nodeType":"MemberAccess","src":"22563:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22552:22:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_SellStake_$1537_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref)"}},"id":3173,"indexExpression":{"id":3172,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3160,"src":"22575:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22552:31:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage","typeString":"struct CunaFinanceBsc.SellStake storage ref"}},"nodeType":"VariableDeclarationStatement","src":"22517:66:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3179,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3176,"name":"sellStakeEntry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3167,"src":"22601:14:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake storage pointer"}},"id":3177,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"22616:5:12","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1530,"src":"22601:20:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3178,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22624:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"22601:24:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4c697374696e67206e6f7420666f756e64","id":3180,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22627:19:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_e65aeb0dca34957cd75dcf5edf664369a554ea0a38af77ddcfdf2ec419a8424a","typeString":"literal_string \"Listing not found\""},"value":"Listing not found"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_e65aeb0dca34957cd75dcf5edf664369a554ea0a38af77ddcfdf2ec419a8424a","typeString":"literal_string \"Listing not found\""}],"id":3175,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"22593:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3181,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22593:54:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3182,"nodeType":"ExpressionStatement","src":"22593:54:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3188,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3184,"name":"sellStakeEntry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3167,"src":"22665:14:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake storage pointer"}},"id":3185,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"22680:6:12","memberName":"seller","nodeType":"MemberAccess","referencedDeclaration":1534,"src":"22665:21:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":3186,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"22690:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3187,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22694:6:12","memberName":"sender","nodeType":"MemberAccess","src":"22690:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"22665:35:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f74207468652073656c6c6572","id":3189,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22702:16:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_ce57addf3f5de810402cc65bacdf9d6eb19fb240991cacfdb84749b70a2ea3ec","typeString":"literal_string \"Not the seller\""},"value":"Not the seller"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ce57addf3f5de810402cc65bacdf9d6eb19fb240991cacfdb84749b70a2ea3ec","typeString":"literal_string \"Not the seller\""}],"id":3183,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"22657:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3190,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22657:62:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3191,"nodeType":"ExpressionStatement","src":"22657:62:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3195,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3193,"name":"newSalePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3162,"src":"22737:12:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3194,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22752:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"22737:16:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642073616c65207072696365","id":3196,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22755:20:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_41afe65c2f48450cc65afb8258dbcfd4711efe900a4abbb354fb78b64cb78f3c","typeString":"literal_string \"Invalid sale price\""},"value":"Invalid sale price"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_41afe65c2f48450cc65afb8258dbcfd4711efe900a4abbb354fb78b64cb78f3c","typeString":"literal_string \"Invalid sale price\""}],"id":3192,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"22729:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3197,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22729:47:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3198,"nodeType":"ExpressionStatement","src":"22729:47:12"},{"expression":{"id":3203,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3199,"name":"sellStakeEntry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3167,"src":"22795:14:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake storage pointer"}},"id":3201,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"22810:9:12","memberName":"salePrice","nodeType":"MemberAccess","referencedDeclaration":1532,"src":"22795:24:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3202,"name":"newSalePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3162,"src":"22822:12:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22795:39:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3204,"nodeType":"ExpressionStatement","src":"22795:39:12"},{"eventCall":{"arguments":[{"expression":{"id":3206,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"22873:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3207,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22877:6:12","memberName":"sender","nodeType":"MemberAccess","src":"22873:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3208,"name":"newSalePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3162,"src":"22885:12:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3209,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3160,"src":"22899:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3205,"name":"StakeUpForSale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1734,"src":"22858:14:12","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256)"}},"id":3210,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22858:49:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3211,"nodeType":"EmitStatement","src":"22853:54:12"}]},"documentation":{"id":3158,"nodeType":"StructuredDocumentation","src":"22290:139:12","text":"@notice Update the sale price of a listing\n @param stakeId The stake ID to update\n @param newSalePrice The new sale price"},"functionSelector":"f2bb5630","id":3213,"implemented":true,"kind":"function","modifiers":[],"name":"updateSellStake","nameLocation":"22443:15:12","nodeType":"FunctionDefinition","parameters":{"id":3163,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3160,"mutability":"mutable","name":"stakeId","nameLocation":"22467:7:12","nodeType":"VariableDeclaration","scope":3213,"src":"22459:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3159,"name":"uint256","nodeType":"ElementaryTypeName","src":"22459:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3162,"mutability":"mutable","name":"newSalePrice","nameLocation":"22484:12:12","nodeType":"VariableDeclaration","scope":3213,"src":"22476:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3161,"name":"uint256","nodeType":"ElementaryTypeName","src":"22476:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"22458:39:12"},"returnParameters":{"id":3164,"nodeType":"ParameterList","parameters":[],"src":"22507:0:12"},"scope":4510,"src":"22434:480:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":3388,"nodeType":"Block","src":"23146:2347:12","statements":[{"assignments":[3225],"declarations":[{"constant":false,"id":3225,"mutability":"mutable","name":"sellStakeEntry","nameLocation":"23174:14:12","nodeType":"VariableDeclaration","scope":3388,"src":"23156:32:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake"},"typeName":{"id":3224,"nodeType":"UserDefinedTypeName","pathNode":{"id":3223,"name":"SellStake","nameLocations":["23156:9:12"],"nodeType":"IdentifierPath","referencedDeclaration":1537,"src":"23156:9:12"},"referencedDeclaration":1537,"src":"23156:9:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake"}},"visibility":"internal"}],"id":3231,"initialValue":{"baseExpression":{"baseExpression":{"id":3226,"name":"sellStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1640,"src":"23191:10:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_SellStake_$1537_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref))"}},"id":3228,"indexExpression":{"id":3227,"name":"seller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3216,"src":"23202:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"23191:18:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_SellStake_$1537_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref)"}},"id":3230,"indexExpression":{"id":3229,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3218,"src":"23210:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"23191:27:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage","typeString":"struct CunaFinanceBsc.SellStake storage ref"}},"nodeType":"VariableDeclarationStatement","src":"23156:62:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3233,"name":"sellStakeEntry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3225,"src":"23236:14:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake storage pointer"}},"id":3234,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23251:5:12","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1530,"src":"23236:20:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3235,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23259:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"23236:24:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4c697374696e67206e6f7420666f756e64","id":3237,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"23262:19:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_e65aeb0dca34957cd75dcf5edf664369a554ea0a38af77ddcfdf2ec419a8424a","typeString":"literal_string \"Listing not found\""},"value":"Listing not found"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_e65aeb0dca34957cd75dcf5edf664369a554ea0a38af77ddcfdf2ec419a8424a","typeString":"literal_string \"Listing not found\""}],"id":3232,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"23228:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3238,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23228:54:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3239,"nodeType":"ExpressionStatement","src":"23228:54:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3244,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3241,"name":"seller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3216,"src":"23300:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":3242,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"23310:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3243,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23314:6:12","memberName":"sender","nodeType":"MemberAccess","src":"23310:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"23300:20:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"43616e6e6f7420627579206f776e206c697374696e67","id":3245,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"23322:24:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_beaa7de9c81be7521b658b5b0a3f8866d9ed560c21a4f26c1d2fa6ffaaeb68c3","typeString":"literal_string \"Cannot buy own listing\""},"value":"Cannot buy own listing"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_beaa7de9c81be7521b658b5b0a3f8866d9ed560c21a4f26c1d2fa6ffaaeb68c3","typeString":"literal_string \"Cannot buy own listing\""}],"id":3240,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"23292:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3246,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23292:55:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3247,"nodeType":"ExpressionStatement","src":"23292:55:12"},{"assignments":[3249],"declarations":[{"constant":false,"id":3249,"mutability":"mutable","name":"value","nameLocation":"23374:5:12","nodeType":"VariableDeclaration","scope":3388,"src":"23366:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3248,"name":"uint256","nodeType":"ElementaryTypeName","src":"23366:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3252,"initialValue":{"expression":{"id":3250,"name":"sellStakeEntry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3225,"src":"23382:14:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake storage pointer"}},"id":3251,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23397:5:12","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1530,"src":"23382:20:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23366:36:12"},{"assignments":[3254],"declarations":[{"constant":false,"id":3254,"mutability":"mutable","name":"salePrice","nameLocation":"23420:9:12","nodeType":"VariableDeclaration","scope":3388,"src":"23412:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3253,"name":"uint256","nodeType":"ElementaryTypeName","src":"23412:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3257,"initialValue":{"expression":{"id":3255,"name":"sellStakeEntry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3225,"src":"23432:14:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake storage pointer"}},"id":3256,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23447:9:12","memberName":"salePrice","nodeType":"MemberAccess","referencedDeclaration":1532,"src":"23432:24:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23412:44:12"},{"assignments":[3259],"declarations":[{"constant":false,"id":3259,"mutability":"mutable","name":"listTime","nameLocation":"23474:8:12","nodeType":"VariableDeclaration","scope":3388,"src":"23466:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3258,"name":"uint256","nodeType":"ElementaryTypeName","src":"23466:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3262,"initialValue":{"expression":{"id":3260,"name":"sellStakeEntry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3225,"src":"23485:14:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake storage pointer"}},"id":3261,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23500:8:12","memberName":"listTime","nodeType":"MemberAccess","referencedDeclaration":1536,"src":"23485:23:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23466:42:12"},{"assignments":[3264],"declarations":[{"constant":false,"id":3264,"mutability":"mutable","name":"difference","nameLocation":"23586:10:12","nodeType":"VariableDeclaration","scope":3388,"src":"23578:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3263,"name":"uint256","nodeType":"ElementaryTypeName","src":"23578:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3273,"initialValue":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3267,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3265,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3249,"src":"23599:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":3266,"name":"salePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3254,"src":"23607:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23599:17:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":3271,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23639:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":3272,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"23599:41:12","trueExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3268,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3249,"src":"23619:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":3269,"name":"salePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3254,"src":"23627:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23619:17:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23578:62:12"},{"assignments":[3275],"declarations":[{"constant":false,"id":3275,"mutability":"mutable","name":"protocolShare","nameLocation":"23658:13:12","nodeType":"VariableDeclaration","scope":3388,"src":"23650:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3274,"name":"uint256","nodeType":"ElementaryTypeName","src":"23650:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3279,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3278,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3276,"name":"difference","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3264,"src":"23674:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"32","id":3277,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23687:1:12","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"23674:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23650:38:12"},{"assignments":[3281],"declarations":[{"constant":false,"id":3281,"mutability":"mutable","name":"buyerStake","nameLocation":"23744:10:12","nodeType":"VariableDeclaration","scope":3388,"src":"23736:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3280,"name":"uint256","nodeType":"ElementaryTypeName","src":"23736:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3285,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3284,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3282,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3249,"src":"23757:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":3283,"name":"protocolShare","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3275,"src":"23765:13:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23757:21:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23736:42:12"},{"expression":{"id":3291,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3286,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1617,"src":"24256:12:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3289,"indexExpression":{"expression":{"id":3287,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"24269:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3288,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24273:6:12","memberName":"sender","nodeType":"MemberAccess","src":"24269:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"24256:24:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3290,"name":"buyerStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3281,"src":"24284:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24256:38:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3292,"nodeType":"ExpressionStatement","src":"24256:38:12"},{"expression":{"id":3295,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3293,"name":"totalBigStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"24304:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3294,"name":"buyerStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3281,"src":"24322:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24304:28:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3296,"nodeType":"ExpressionStatement","src":"24304:28:12"},{"expression":{"id":3301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3297,"name":"marketplace_sales","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1648,"src":"24487:17:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3299,"indexExpression":{"id":3298,"name":"seller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3216,"src":"24505:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"24487:25:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3300,"name":"salePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3254,"src":"24516:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24487:38:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3302,"nodeType":"ExpressionStatement","src":"24487:38:12"},{"expression":{"arguments":[{"arguments":[{"id":3307,"name":"listTime","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3259,"src":"24655:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3308,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"24687:5:12","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3309,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24693:9:12","memberName":"timestamp","nodeType":"MemberAccess","src":"24687:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3310,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3249,"src":"24727:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3311,"name":"salePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3254,"src":"24757:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3312,"name":"seller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3216,"src":"24788:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":3313,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"24815:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24819:6:12","memberName":"sender","nodeType":"MemberAccess","src":"24815:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":3306,"name":"MarketplaceHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1555,"src":"24612:18:12","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_MarketplaceHistory_$1555_storage_ptr_$","typeString":"type(struct CunaFinanceBsc.MarketplaceHistory storage pointer)"}},"id":3315,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["24645:8:12","24677:8:12","24716:9:12","24746:9:12","24780:6:12","24808:5:12"],"names":["listTime","saleTime","origValue","saleValue","seller","buyer"],"nodeType":"FunctionCall","src":"24612:224:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_MarketplaceHistory_$1555_memory_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_MarketplaceHistory_$1555_memory_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory memory"}],"expression":{"id":3303,"name":"marketplaceHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"24588:18:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1555_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.MarketplaceHistory storage ref[] storage ref"}},"id":3305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24607:4:12","memberName":"push","nodeType":"MemberAccess","src":"24588:23:12","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_MarketplaceHistory_$1555_storage_$dyn_storage_ptr_$_t_struct$_MarketplaceHistory_$1555_storage_$returns$__$attached_to$_t_array$_t_struct$_MarketplaceHistory_$1555_storage_$dyn_storage_ptr_$","typeString":"function (struct CunaFinanceBsc.MarketplaceHistory storage ref[] storage pointer,struct CunaFinanceBsc.MarketplaceHistory storage ref)"}},"id":3316,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24588:249:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3317,"nodeType":"ExpressionStatement","src":"24588:249:12"},{"expression":{"id":3323,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"24890:34:12","subExpression":{"baseExpression":{"baseExpression":{"id":3318,"name":"sellStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1640,"src":"24897:10:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_SellStake_$1537_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref))"}},"id":3320,"indexExpression":{"id":3319,"name":"seller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3216,"src":"24908:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"24897:18:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_SellStake_$1537_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref)"}},"id":3322,"indexExpression":{"id":3321,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3218,"src":"24916:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"24897:27:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage","typeString":"struct CunaFinanceBsc.SellStake storage ref"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3324,"nodeType":"ExpressionStatement","src":"24890:34:12"},{"assignments":[3326],"declarations":[{"constant":false,"id":3326,"mutability":"mutable","name":"index","nameLocation":"25009:5:12","nodeType":"VariableDeclaration","scope":3388,"src":"25001:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3325,"name":"uint256","nodeType":"ElementaryTypeName","src":"25001:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3332,"initialValue":{"baseExpression":{"baseExpression":{"id":3327,"name":"sellStakeKeyIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1658,"src":"25017:17:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"}},"id":3329,"indexExpression":{"id":3328,"name":"seller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3216,"src":"25035:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"25017:25:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3331,"indexExpression":{"id":3330,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3218,"src":"25043:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"25017:34:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"25001:50:12"},{"assignments":[3334],"declarations":[{"constant":false,"id":3334,"mutability":"mutable","name":"lastIndex","nameLocation":"25069:9:12","nodeType":"VariableDeclaration","scope":3388,"src":"25061:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3333,"name":"uint256","nodeType":"ElementaryTypeName","src":"25061:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3339,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3338,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3335,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1652,"src":"25081:13:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1542_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":3336,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25095:6:12","memberName":"length","nodeType":"MemberAccess","src":"25081:20:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":3337,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25104:1:12","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"25081:24:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"25061:44:12"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3342,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3340,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3326,"src":"25119:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":3341,"name":"lastIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3334,"src":"25128:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25119:18:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3367,"nodeType":"IfStatement","src":"25115:219:12","trueBody":{"id":3366,"nodeType":"Block","src":"25139:195:12","statements":[{"assignments":[3345],"declarations":[{"constant":false,"id":3345,"mutability":"mutable","name":"lastKey","nameLocation":"25173:7:12","nodeType":"VariableDeclaration","scope":3366,"src":"25153:27:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey"},"typeName":{"id":3344,"nodeType":"UserDefinedTypeName","pathNode":{"id":3343,"name":"SellStakeKey","nameLocations":["25153:12:12"],"nodeType":"IdentifierPath","referencedDeclaration":1542,"src":"25153:12:12"},"referencedDeclaration":1542,"src":"25153:12:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_storage_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey"}},"visibility":"internal"}],"id":3349,"initialValue":{"baseExpression":{"id":3346,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1652,"src":"25183:13:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1542_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":3348,"indexExpression":{"id":3347,"name":"lastIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3334,"src":"25197:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"25183:24:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref"}},"nodeType":"VariableDeclarationStatement","src":"25153:54:12"},{"expression":{"id":3354,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3350,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1652,"src":"25221:13:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1542_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":3352,"indexExpression":{"id":3351,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3326,"src":"25235:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"25221:20:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3353,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3345,"src":"25244:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}},"src":"25221:30:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref"}},"id":3355,"nodeType":"ExpressionStatement","src":"25221:30:12"},{"expression":{"id":3364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":3356,"name":"sellStakeKeyIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1658,"src":"25265:17:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"}},"id":3361,"indexExpression":{"expression":{"id":3357,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3345,"src":"25283:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}},"id":3358,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25291:6:12","memberName":"seller","nodeType":"MemberAccess","referencedDeclaration":1539,"src":"25283:14:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"25265:33:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3362,"indexExpression":{"expression":{"id":3359,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3345,"src":"25299:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}},"id":3360,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25307:7:12","memberName":"stakeId","nodeType":"MemberAccess","referencedDeclaration":1541,"src":"25299:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"25265:50:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3363,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3326,"src":"25318:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25265:58:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3365,"nodeType":"ExpressionStatement","src":"25265:58:12"}]}},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":3368,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1652,"src":"25343:13:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1542_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":3370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25357:3:12","memberName":"pop","nodeType":"MemberAccess","src":"25343:17:12","typeDescriptions":{"typeIdentifier":"t_function_arraypop_nonpayable$_t_array$_t_struct$_SellStakeKey_$1542_storage_$dyn_storage_ptr_$returns$__$attached_to$_t_array$_t_struct$_SellStakeKey_$1542_storage_$dyn_storage_ptr_$","typeString":"function (struct CunaFinanceBsc.SellStakeKey storage ref[] storage pointer)"}},"id":3371,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25343:19:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3372,"nodeType":"ExpressionStatement","src":"25343:19:12"},{"expression":{"id":3378,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"25372:41:12","subExpression":{"baseExpression":{"baseExpression":{"id":3373,"name":"sellStakeKeyIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1658,"src":"25379:17:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"}},"id":3375,"indexExpression":{"id":3374,"name":"seller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3216,"src":"25397:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"25379:25:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3377,"indexExpression":{"id":3376,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3218,"src":"25405:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"25379:34:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3379,"nodeType":"ExpressionStatement","src":"25372:41:12"},{"eventCall":{"arguments":[{"id":3381,"name":"seller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3216,"src":"25447:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":3382,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"25455:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3383,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25459:6:12","memberName":"sender","nodeType":"MemberAccess","src":"25455:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3384,"name":"salePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3254,"src":"25467:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3385,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3218,"src":"25478:7:12","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":3380,"name":"StakeSold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1750,"src":"25437:9:12","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":3386,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25437:49:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3387,"nodeType":"EmitStatement","src":"25432:54:12"}]},"documentation":{"id":3214,"nodeType":"StructuredDocumentation","src":"22924:140:12","text":"@notice Buy a listed stake from marketplace\n @param seller The address of the seller \n @param stakeId The stake ID to buy"},"functionSelector":"eb44e0a3","id":3389,"implemented":true,"kind":"function","modifiers":[{"id":3221,"kind":"modifierInvocation","modifierName":{"id":3220,"name":"nonReentrant","nameLocations":["23133:12:12"],"nodeType":"IdentifierPath","referencedDeclaration":1408,"src":"23133:12:12"},"nodeType":"ModifierInvocation","src":"23133:12:12"}],"name":"buySellStake","nameLocation":"23078:12:12","nodeType":"FunctionDefinition","parameters":{"id":3219,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3216,"mutability":"mutable","name":"seller","nameLocation":"23099:6:12","nodeType":"VariableDeclaration","scope":3389,"src":"23091:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3215,"name":"address","nodeType":"ElementaryTypeName","src":"23091:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3218,"mutability":"mutable","name":"stakeId","nameLocation":"23115:7:12","nodeType":"VariableDeclaration","scope":3389,"src":"23107:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3217,"name":"uint256","nodeType":"ElementaryTypeName","src":"23107:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23090:33:12"},"returnParameters":{"id":3222,"nodeType":"ParameterList","parameters":[],"src":"23146:0:12"},"scope":4510,"src":"23069:2424:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":3488,"nodeType":"Block","src":"25784:748:12","statements":[{"body":{"id":3486,"nodeType":"Block","src":"25846:680:12","statements":[{"assignments":[3412],"declarations":[{"constant":false,"id":3412,"mutability":"mutable","name":"vesting","nameLocation":"25876:7:12","nodeType":"VariableDeclaration","scope":3486,"src":"25860:23:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"},"typeName":{"id":3411,"nodeType":"UserDefinedTypeName","pathNode":{"id":3410,"name":"Vesting","nameLocations":["25860:7:12"],"nodeType":"IdentifierPath","referencedDeclaration":1496,"src":"25860:7:12"},"referencedDeclaration":1496,"src":"25860:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"}},"visibility":"internal"}],"id":3418,"initialValue":{"baseExpression":{"baseExpression":{"id":3413,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1571,"src":"25886:8:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":3415,"indexExpression":{"id":3414,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3392,"src":"25895:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"25886:14:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"id":3417,"indexExpression":{"id":3416,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3398,"src":"25901:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"25886:17:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref"}},"nodeType":"VariableDeclarationStatement","src":"25860:43:12"},{"condition":{"id":3421,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"25996:17:12","subExpression":{"expression":{"id":3419,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3412,"src":"25997:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3420,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26005:8:12","memberName":"complete","nodeType":"MemberAccess","referencedDeclaration":1493,"src":"25997:16:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3455,"nodeType":"IfStatement","src":"25992:334:12","trueBody":{"id":3454,"nodeType":"Block","src":"26015:311:12","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3427,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":3422,"name":"dollarsVested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1585,"src":"26037:13:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3424,"indexExpression":{"id":3423,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3392,"src":"26051:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"26037:19:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":3425,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3412,"src":"26060:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3426,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26068:9:12","memberName":"usdAmount","nodeType":"MemberAccess","referencedDeclaration":1495,"src":"26060:17:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26037:40:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3436,"nodeType":"IfStatement","src":"26033:127:12","trueBody":{"id":3435,"nodeType":"Block","src":"26079:81:12","statements":[{"expression":{"id":3433,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3428,"name":"dollarsVested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1585,"src":"26101:13:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3430,"indexExpression":{"id":3429,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3392,"src":"26115:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"26101:19:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"expression":{"id":3431,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3412,"src":"26124:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3432,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26132:9:12","memberName":"usdAmount","nodeType":"MemberAccess","referencedDeclaration":1495,"src":"26124:17:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26101:40:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3434,"nodeType":"ExpressionStatement","src":"26101:40:12"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3443,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":3437,"name":"vestedTotal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1589,"src":"26181:11:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3440,"indexExpression":{"expression":{"id":3438,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3412,"src":"26193:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3439,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26201:5:12","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":1491,"src":"26193:13:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"26181:26:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":3441,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3412,"src":"26211:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3442,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26219:6:12","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":1477,"src":"26211:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26181:44:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3453,"nodeType":"IfStatement","src":"26177:135:12","trueBody":{"id":3452,"nodeType":"Block","src":"26227:85:12","statements":[{"expression":{"id":3450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3444,"name":"vestedTotal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1589,"src":"26249:11:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3447,"indexExpression":{"expression":{"id":3445,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3412,"src":"26261:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3446,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26269:5:12","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":1491,"src":"26261:13:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"26249:26:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"expression":{"id":3448,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3412,"src":"26279:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3449,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26287:6:12","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":1477,"src":"26279:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26249:44:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3451,"nodeType":"ExpressionStatement","src":"26249:44:12"}]}}]}},{"expression":{"id":3460,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3456,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3412,"src":"26352:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3458,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"26360:6:12","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":1477,"src":"26352:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":3459,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26369:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"26352:18:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3461,"nodeType":"ExpressionStatement","src":"26352:18:12"},{"expression":{"id":3466,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3462,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3412,"src":"26384:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3464,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"26392:5:12","memberName":"bonus","nodeType":"MemberAccess","referencedDeclaration":1479,"src":"26384:13:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":3465,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26400:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"26384:17:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3467,"nodeType":"ExpressionStatement","src":"26384:17:12"},{"expression":{"id":3472,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3468,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3412,"src":"26415:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3470,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"26423:13:12","memberName":"claimedAmount","nodeType":"MemberAccess","referencedDeclaration":1483,"src":"26415:21:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":3471,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26439:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"26415:25:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3473,"nodeType":"ExpressionStatement","src":"26415:25:12"},{"expression":{"id":3478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3474,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3412,"src":"26454:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3476,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"26462:12:12","memberName":"claimedBonus","nodeType":"MemberAccess","referencedDeclaration":1485,"src":"26454:20:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":3477,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26477:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"26454:24:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3479,"nodeType":"ExpressionStatement","src":"26454:24:12"},{"expression":{"id":3484,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3480,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3412,"src":"26492:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3482,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"26500:8:12","memberName":"complete","nodeType":"MemberAccess","referencedDeclaration":1493,"src":"26492:16:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":3483,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"26511:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"26492:23:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3485,"nodeType":"ExpressionStatement","src":"26492:23:12"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3406,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3401,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3398,"src":"25814:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"baseExpression":{"id":3402,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1571,"src":"25818:8:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":3404,"indexExpression":{"id":3403,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3392,"src":"25827:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"25818:14:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"id":3405,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25833:6:12","memberName":"length","nodeType":"MemberAccess","src":"25818:21:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25814:25:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3487,"initializationExpression":{"assignments":[3398],"declarations":[{"constant":false,"id":3398,"mutability":"mutable","name":"i","nameLocation":"25807:1:12","nodeType":"VariableDeclaration","scope":3487,"src":"25799:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3397,"name":"uint256","nodeType":"ElementaryTypeName","src":"25799:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3400,"initialValue":{"hexValue":"30","id":3399,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25811:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"25799:13:12"},"loopExpression":{"expression":{"id":3408,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"25841:3:12","subExpression":{"id":3407,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3398,"src":"25843:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3409,"nodeType":"ExpressionStatement","src":"25841:3:12"},"nodeType":"ForStatement","src":"25794:732:12"}]},"documentation":{"id":3390,"nodeType":"StructuredDocumentation","src":"25545:181:12","text":"@notice This function will end and clear a user's vestings.\n @dev Only to be used by bots in emergencies\n @param user The user whose vestings will be ended and 0'd"},"functionSelector":"48ea286d","id":3489,"implemented":true,"kind":"function","modifiers":[{"id":3395,"kind":"modifierInvocation","modifierName":{"id":3394,"name":"onlyBot","nameLocations":["25776:7:12"],"nodeType":"IdentifierPath","referencedDeclaration":1782,"src":"25776:7:12"},"nodeType":"ModifierInvocation","src":"25776:7:12"}],"name":"clearVesting","nameLocation":"25740:12:12","nodeType":"FunctionDefinition","parameters":{"id":3393,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3392,"mutability":"mutable","name":"user","nameLocation":"25761:4:12","nodeType":"VariableDeclaration","scope":3489,"src":"25753:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3391,"name":"address","nodeType":"ElementaryTypeName","src":"25753:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"25752:14:12"},"returnParameters":{"id":3396,"nodeType":"ParameterList","parameters":[],"src":"25784:0:12"},"scope":4510,"src":"25731:801:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":3520,"nodeType":"Block","src":"27133:116:12","statements":[{"expression":{"arguments":[{"id":3508,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3492,"src":"27157:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3509,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3494,"src":"27163:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3510,"name":"bonus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3496,"src":"27171:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3511,"name":"lockedUntil","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3498,"src":"27178:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3512,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3500,"src":"27191:5:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3513,"name":"usdAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3502,"src":"27198:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3514,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"27209:5:12","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27215:9:12","memberName":"timestamp","nodeType":"MemberAccess","src":"27209:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3516,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"27226:5:12","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3517,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27232:9:12","memberName":"timestamp","nodeType":"MemberAccess","src":"27226:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3507,"name":"createVesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3573,"src":"27143:13:12","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_uint256_$_t_uint256_$_t_address_$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256,uint256,address,uint256,uint256,uint256)"}},"id":3518,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27143:99:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3519,"nodeType":"ExpressionStatement","src":"27143:99:12"}]},"documentation":{"id":3490,"nodeType":"StructuredDocumentation","src":"26538:450:12","text":"@notice Creates a vesting for a given user\n @dev Only to be used by bots for manual vesting creation\n @param user The user address to create the vesting for\n @param amount The amount for the vesting\n @param bonus The bonus amount for the vesting\n @param lockedUntil The unlock timestamp for the vesting\n @param token The token address for the vesting\n @param usdAmount The USD value of the vesting"},"functionSelector":"9437e32e","id":3521,"implemented":true,"kind":"function","modifiers":[{"id":3505,"kind":"modifierInvocation","modifierName":{"id":3504,"name":"onlyBot","nameLocations":["27125:7:12"],"nodeType":"IdentifierPath","referencedDeclaration":1782,"src":"27125:7:12"},"nodeType":"ModifierInvocation","src":"27125:7:12"}],"name":"createVesting","nameLocation":"27002:13:12","nodeType":"FunctionDefinition","parameters":{"id":3503,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3492,"mutability":"mutable","name":"user","nameLocation":"27024:4:12","nodeType":"VariableDeclaration","scope":3521,"src":"27016:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3491,"name":"address","nodeType":"ElementaryTypeName","src":"27016:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3494,"mutability":"mutable","name":"amount","nameLocation":"27038:6:12","nodeType":"VariableDeclaration","scope":3521,"src":"27030:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3493,"name":"uint256","nodeType":"ElementaryTypeName","src":"27030:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3496,"mutability":"mutable","name":"bonus","nameLocation":"27054:5:12","nodeType":"VariableDeclaration","scope":3521,"src":"27046:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3495,"name":"uint256","nodeType":"ElementaryTypeName","src":"27046:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3498,"mutability":"mutable","name":"lockedUntil","nameLocation":"27069:11:12","nodeType":"VariableDeclaration","scope":3521,"src":"27061:19:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3497,"name":"uint256","nodeType":"ElementaryTypeName","src":"27061:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3500,"mutability":"mutable","name":"token","nameLocation":"27090:5:12","nodeType":"VariableDeclaration","scope":3521,"src":"27082:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3499,"name":"address","nodeType":"ElementaryTypeName","src":"27082:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3502,"mutability":"mutable","name":"usdAmount","nameLocation":"27105:9:12","nodeType":"VariableDeclaration","scope":3521,"src":"27097:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3501,"name":"uint256","nodeType":"ElementaryTypeName","src":"27097:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"27015:100:12"},"returnParameters":{"id":3506,"nodeType":"ParameterList","parameters":[],"src":"27133:0:12"},"scope":4510,"src":"26993:256:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":3572,"nodeType":"Block","src":"27433:458:12","statements":[{"expression":{"arguments":[{"arguments":[{"id":3547,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3525,"src":"27493:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3548,"name":"bonus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3527,"src":"27520:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3549,"name":"lockedUntil","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3529,"src":"27552:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"30","id":3550,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27592:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":3551,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27621:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":3552,"name":"lastClaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3535,"src":"27649:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3553,"name":"createdAt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3537,"src":"27685:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3554,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3531,"src":"27715:5:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"66616c7365","id":3555,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"27744:5:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"id":3556,"name":"usdAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3533,"src":"27774:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3546,"name":"Vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1496,"src":"27463:7:12","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Vesting_$1496_storage_ptr_$","typeString":"type(struct CunaFinanceBsc.Vesting storage pointer)"}},"id":3557,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["27485:6:12","27513:5:12","27539:11:12","27577:13:12","27607:12:12","27636:11:12","27674:9:12","27708:5:12","27734:8:12","27763:9:12"],"names":["amount","bonus","lockedUntil","claimedAmount","claimedBonus","lastClaimed","createdAt","token","complete","usdAmount"],"nodeType":"FunctionCall","src":"27463:331:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_memory_ptr","typeString":"struct CunaFinanceBsc.Vesting memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Vesting_$1496_memory_ptr","typeString":"struct CunaFinanceBsc.Vesting memory"}],"expression":{"baseExpression":{"id":3542,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1571,"src":"27443:8:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":3544,"indexExpression":{"id":3543,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3523,"src":"27452:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"27443:14:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"id":3545,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27458:4:12","memberName":"push","nodeType":"MemberAccess","src":"27443:19:12","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_ptr_$_t_struct$_Vesting_$1496_storage_$returns$__$attached_to$_t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_ptr_$","typeString":"function (struct CunaFinanceBsc.Vesting storage ref[] storage pointer,struct CunaFinanceBsc.Vesting storage ref)"}},"id":3558,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27443:352:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3559,"nodeType":"ExpressionStatement","src":"27443:352:12"},{"expression":{"id":3564,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3560,"name":"dollarsVested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1585,"src":"27814:13:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3562,"indexExpression":{"id":3561,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3523,"src":"27828:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"27814:19:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3563,"name":"usdAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3533,"src":"27837:9:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27814:32:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3565,"nodeType":"ExpressionStatement","src":"27814:32:12"},{"expression":{"id":3570,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3566,"name":"vestedTotal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1589,"src":"27856:11:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3568,"indexExpression":{"id":3567,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3531,"src":"27868:5:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"27856:18:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3569,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3525,"src":"27878:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27856:28:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3571,"nodeType":"ExpressionStatement","src":"27856:28:12"}]},"functionSelector":"74d1c8e3","id":3573,"implemented":true,"kind":"function","modifiers":[{"id":3540,"kind":"modifierInvocation","modifierName":{"id":3539,"name":"onlyBot","nameLocations":["27425:7:12"],"nodeType":"IdentifierPath","referencedDeclaration":1782,"src":"27425:7:12"},"nodeType":"ModifierInvocation","src":"27425:7:12"}],"name":"createVesting","nameLocation":"27264:13:12","nodeType":"FunctionDefinition","parameters":{"id":3538,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3523,"mutability":"mutable","name":"user","nameLocation":"27286:4:12","nodeType":"VariableDeclaration","scope":3573,"src":"27278:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3522,"name":"address","nodeType":"ElementaryTypeName","src":"27278:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3525,"mutability":"mutable","name":"amount","nameLocation":"27300:6:12","nodeType":"VariableDeclaration","scope":3573,"src":"27292:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3524,"name":"uint256","nodeType":"ElementaryTypeName","src":"27292:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3527,"mutability":"mutable","name":"bonus","nameLocation":"27316:5:12","nodeType":"VariableDeclaration","scope":3573,"src":"27308:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3526,"name":"uint256","nodeType":"ElementaryTypeName","src":"27308:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3529,"mutability":"mutable","name":"lockedUntil","nameLocation":"27331:11:12","nodeType":"VariableDeclaration","scope":3573,"src":"27323:19:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3528,"name":"uint256","nodeType":"ElementaryTypeName","src":"27323:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3531,"mutability":"mutable","name":"token","nameLocation":"27352:5:12","nodeType":"VariableDeclaration","scope":3573,"src":"27344:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3530,"name":"address","nodeType":"ElementaryTypeName","src":"27344:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3533,"mutability":"mutable","name":"usdAmount","nameLocation":"27367:9:12","nodeType":"VariableDeclaration","scope":3573,"src":"27359:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3532,"name":"uint256","nodeType":"ElementaryTypeName","src":"27359:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3535,"mutability":"mutable","name":"lastClaimed","nameLocation":"27386:11:12","nodeType":"VariableDeclaration","scope":3573,"src":"27378:19:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3534,"name":"uint256","nodeType":"ElementaryTypeName","src":"27378:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3537,"mutability":"mutable","name":"createdAt","nameLocation":"27407:9:12","nodeType":"VariableDeclaration","scope":3573,"src":"27399:17:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3536,"name":"uint256","nodeType":"ElementaryTypeName","src":"27399:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"27277:140:12"},"returnParameters":{"id":3541,"nodeType":"ParameterList","parameters":[],"src":"27433:0:12"},"scope":4510,"src":"27255:636:12","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":3780,"nodeType":"Block","src":"28252:1703:12","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3596,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3589,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3584,"name":"oldAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3576,"src":"28270:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":3587,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28292:1:12","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":3586,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28284:7:12","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3585,"name":"address","nodeType":"ElementaryTypeName","src":"28284:7:12","typeDescriptions":{}}},"id":3588,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28284:10:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"28270:24:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3595,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3590,"name":"newAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3578,"src":"28298:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":3593,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28320:1:12","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":3592,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28312:7:12","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3591,"name":"address","nodeType":"ElementaryTypeName","src":"28312:7:12","typeDescriptions":{}}},"id":3594,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28312:10:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"28298:24:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"28270:52:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3599,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3597,"name":"oldAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3576,"src":"28326:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":3598,"name":"newAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3578,"src":"28340:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"28326:24:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"28270:80:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642061646472657373","id":3601,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"28352:17:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_1462473b7a4b33d32b109b815fd2324d00c9e5839b707ecf16d0ab5744f99226","typeString":"literal_string \"Invalid address\""},"value":"Invalid address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1462473b7a4b33d32b109b815fd2324d00c9e5839b707ecf16d0ab5744f99226","typeString":"literal_string \"Invalid address\""}],"id":3583,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"28262:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28262:108:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3603,"nodeType":"ExpressionStatement","src":"28262:108:12"},{"assignments":[3608],"declarations":[{"constant":false,"id":3608,"mutability":"mutable","name":"oldVestings","nameLocation":"28407:11:12","nodeType":"VariableDeclaration","scope":3780,"src":"28389:29:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting[]"},"typeName":{"baseType":{"id":3606,"nodeType":"UserDefinedTypeName","pathNode":{"id":3605,"name":"Vesting","nameLocations":["28389:7:12"],"nodeType":"IdentifierPath","referencedDeclaration":1496,"src":"28389:7:12"},"referencedDeclaration":1496,"src":"28389:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"}},"id":3607,"nodeType":"ArrayTypeName","src":"28389:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting[]"}},"visibility":"internal"}],"id":3612,"initialValue":{"baseExpression":{"id":3609,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1571,"src":"28421:8:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":3611,"indexExpression":{"id":3610,"name":"oldAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3576,"src":"28430:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"28421:20:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"nodeType":"VariableDeclarationStatement","src":"28389:52:12"},{"assignments":[3614],"declarations":[{"constant":false,"id":3614,"mutability":"mutable","name":"vestingCount","nameLocation":"28459:12:12","nodeType":"VariableDeclaration","scope":3780,"src":"28451:20:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3613,"name":"uint256","nodeType":"ElementaryTypeName","src":"28451:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3617,"initialValue":{"expression":{"id":3615,"name":"oldVestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3608,"src":"28474:11:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage pointer"}},"id":3616,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28486:6:12","memberName":"length","nodeType":"MemberAccess","src":"28474:18:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28451:41:12"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3621,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3619,"name":"vestingCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3614,"src":"28510:12:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3620,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28525:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"28510:16:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f2076657374696e677320617661696c61626c65","id":3622,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"28528:23:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_cf7bf03ffa0f3da677adf7e97e2d75567c809ca39257ccf6603f40c13c2ab5f1","typeString":"literal_string \"No vestings available\""},"value":"No vestings available"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cf7bf03ffa0f3da677adf7e97e2d75567c809ca39257ccf6603f40c13c2ab5f1","typeString":"literal_string \"No vestings available\""}],"id":3618,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"28502:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3623,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28502:50:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3624,"nodeType":"ExpressionStatement","src":"28502:50:12"},{"assignments":[3629],"declarations":[{"constant":false,"id":3629,"mutability":"mutable","name":"newVestings","nameLocation":"28589:11:12","nodeType":"VariableDeclaration","scope":3780,"src":"28571:29:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting[]"},"typeName":{"baseType":{"id":3627,"nodeType":"UserDefinedTypeName","pathNode":{"id":3626,"name":"Vesting","nameLocations":["28571:7:12"],"nodeType":"IdentifierPath","referencedDeclaration":1496,"src":"28571:7:12"},"referencedDeclaration":1496,"src":"28571:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"}},"id":3628,"nodeType":"ArrayTypeName","src":"28571:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting[]"}},"visibility":"internal"}],"id":3633,"initialValue":{"baseExpression":{"id":3630,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1571,"src":"28603:8:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":3632,"indexExpression":{"id":3631,"name":"newAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3578,"src":"28612:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"28603:20:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"nodeType":"VariableDeclarationStatement","src":"28571:52:12"},{"body":{"id":3711,"nodeType":"Block","src":"28685:560:12","statements":[{"assignments":[3646],"declarations":[{"constant":false,"id":3646,"mutability":"mutable","name":"oldVesting","nameLocation":"28715:10:12","nodeType":"VariableDeclaration","scope":3711,"src":"28699:26:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"},"typeName":{"id":3645,"nodeType":"UserDefinedTypeName","pathNode":{"id":3644,"name":"Vesting","nameLocations":["28699:7:12"],"nodeType":"IdentifierPath","referencedDeclaration":1496,"src":"28699:7:12"},"referencedDeclaration":1496,"src":"28699:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"}},"visibility":"internal"}],"id":3650,"initialValue":{"baseExpression":{"id":3647,"name":"oldVestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3608,"src":"28728:11:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage pointer"}},"id":3649,"indexExpression":{"id":3648,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3635,"src":"28740:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"28728:14:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref"}},"nodeType":"VariableDeclarationStatement","src":"28699:43:12"},{"expression":{"arguments":[{"id":3654,"name":"oldVesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3646,"src":"28829:10:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}],"expression":{"id":3651,"name":"newVestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3629,"src":"28812:11:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage pointer"}},"id":3653,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28824:4:12","memberName":"push","nodeType":"MemberAccess","src":"28812:16:12","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_ptr_$_t_struct$_Vesting_$1496_storage_$returns$__$attached_to$_t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_ptr_$","typeString":"function (struct CunaFinanceBsc.Vesting storage ref[] storage pointer,struct CunaFinanceBsc.Vesting storage ref)"}},"id":3655,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28812:28:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3656,"nodeType":"ExpressionStatement","src":"28812:28:12"},{"expression":{"id":3661,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3657,"name":"oldVesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3646,"src":"28900:10:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3659,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"28911:6:12","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":1477,"src":"28900:17:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":3660,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28920:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"28900:21:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3662,"nodeType":"ExpressionStatement","src":"28900:21:12"},{"expression":{"id":3667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3663,"name":"oldVesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3646,"src":"28935:10:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3665,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"28946:5:12","memberName":"bonus","nodeType":"MemberAccess","referencedDeclaration":1479,"src":"28935:16:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":3666,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28954:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"28935:20:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3668,"nodeType":"ExpressionStatement","src":"28935:20:12"},{"expression":{"id":3673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3669,"name":"oldVesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3646,"src":"28969:10:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3671,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"28980:11:12","memberName":"lockedUntil","nodeType":"MemberAccess","referencedDeclaration":1481,"src":"28969:22:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":3672,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28994:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"28969:26:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3674,"nodeType":"ExpressionStatement","src":"28969:26:12"},{"expression":{"id":3679,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3675,"name":"oldVesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3646,"src":"29009:10:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3677,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"29020:13:12","memberName":"claimedAmount","nodeType":"MemberAccess","referencedDeclaration":1483,"src":"29009:24:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":3678,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29036:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"29009:28:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3680,"nodeType":"ExpressionStatement","src":"29009:28:12"},{"expression":{"id":3685,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3681,"name":"oldVesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3646,"src":"29051:10:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3683,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"29062:12:12","memberName":"claimedBonus","nodeType":"MemberAccess","referencedDeclaration":1485,"src":"29051:23:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":3684,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29077:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"29051:27:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3686,"nodeType":"ExpressionStatement","src":"29051:27:12"},{"expression":{"id":3691,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3687,"name":"oldVesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3646,"src":"29092:10:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3689,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"29103:11:12","memberName":"lastClaimed","nodeType":"MemberAccess","referencedDeclaration":1487,"src":"29092:22:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":3690,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29117:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"29092:26:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3692,"nodeType":"ExpressionStatement","src":"29092:26:12"},{"expression":{"id":3697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3693,"name":"oldVesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3646,"src":"29132:10:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3695,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"29143:9:12","memberName":"createdAt","nodeType":"MemberAccess","referencedDeclaration":1489,"src":"29132:20:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":3696,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29155:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"29132:24:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3698,"nodeType":"ExpressionStatement","src":"29132:24:12"},{"expression":{"id":3703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3699,"name":"oldVesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3646,"src":"29170:10:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3701,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"29181:9:12","memberName":"usdAmount","nodeType":"MemberAccess","referencedDeclaration":1495,"src":"29170:20:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":3702,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29193:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"29170:24:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3704,"nodeType":"ExpressionStatement","src":"29170:24:12"},{"expression":{"id":3709,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3705,"name":"oldVesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3646,"src":"29208:10:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3707,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"29219:8:12","memberName":"complete","nodeType":"MemberAccess","referencedDeclaration":1493,"src":"29208:19:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":3708,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"29230:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"29208:26:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3710,"nodeType":"ExpressionStatement","src":"29208:26:12"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3640,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3638,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3635,"src":"28662:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":3639,"name":"vestingCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3614,"src":"28666:12:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28662:16:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3712,"initializationExpression":{"assignments":[3635],"declarations":[{"constant":false,"id":3635,"mutability":"mutable","name":"i","nameLocation":"28655:1:12","nodeType":"VariableDeclaration","scope":3712,"src":"28647:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3634,"name":"uint256","nodeType":"ElementaryTypeName","src":"28647:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3637,"initialValue":{"hexValue":"30","id":3636,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28659:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"28647:13:12"},"loopExpression":{"expression":{"id":3642,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"28680:3:12","subExpression":{"id":3641,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3635,"src":"28680:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3643,"nodeType":"ExpressionStatement","src":"28680:3:12"},"nodeType":"ForStatement","src":"28642:603:12"},{"expression":{"id":3719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3713,"name":"dollarsVested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1585,"src":"29297:13:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3715,"indexExpression":{"id":3714,"name":"newAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3578,"src":"29311:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"29297:25:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"baseExpression":{"id":3716,"name":"dollarsVested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1585,"src":"29326:13:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3718,"indexExpression":{"id":3717,"name":"oldAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3576,"src":"29340:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"29326:25:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"29297:54:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3720,"nodeType":"ExpressionStatement","src":"29297:54:12"},{"expression":{"id":3725,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3721,"name":"dollarsVested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1585,"src":"29361:13:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3723,"indexExpression":{"id":3722,"name":"oldAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3576,"src":"29375:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"29361:25:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":3724,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29389:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"29361:29:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3726,"nodeType":"ExpressionStatement","src":"29361:29:12"},{"assignments":[3731],"declarations":[{"constant":false,"id":3731,"mutability":"mutable","name":"oldWithdrawVestings","nameLocation":"29482:19:12","nodeType":"VariableDeclaration","scope":3780,"src":"29456:45:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1510_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting[]"},"typeName":{"baseType":{"id":3729,"nodeType":"UserDefinedTypeName","pathNode":{"id":3728,"name":"WithdrawVesting","nameLocations":["29456:15:12"],"nodeType":"IdentifierPath","referencedDeclaration":1510,"src":"29456:15:12"},"referencedDeclaration":1510,"src":"29456:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawVesting_$1510_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting"}},"id":3730,"nodeType":"ArrayTypeName","src":"29456:17:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1510_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting[]"}},"visibility":"internal"}],"id":3735,"initialValue":{"baseExpression":{"id":3732,"name":"withdrawVestingActual","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1602,"src":"29504:21:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawVesting_$1510_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawVesting storage ref[] storage ref)"}},"id":3734,"indexExpression":{"id":3733,"name":"oldAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3576,"src":"29526:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"29504:33:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1510_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.WithdrawVesting storage ref[] storage ref"}},"nodeType":"VariableDeclarationStatement","src":"29456:81:12"},{"assignments":[3737],"declarations":[{"constant":false,"id":3737,"mutability":"mutable","name":"withdrawVestingCount","nameLocation":"29555:20:12","nodeType":"VariableDeclaration","scope":3780,"src":"29547:28:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3736,"name":"uint256","nodeType":"ElementaryTypeName","src":"29547:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3740,"initialValue":{"expression":{"id":3738,"name":"oldWithdrawVestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3731,"src":"29578:19:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1510_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting storage ref[] storage pointer"}},"id":3739,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29598:6:12","memberName":"length","nodeType":"MemberAccess","src":"29578:26:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"29547:57:12"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3743,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3741,"name":"withdrawVestingCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3737,"src":"29618:20:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3742,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29641:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"29618:24:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3779,"nodeType":"IfStatement","src":"29614:335:12","trueBody":{"id":3778,"nodeType":"Block","src":"29644:305:12","statements":[{"assignments":[3748],"declarations":[{"constant":false,"id":3748,"mutability":"mutable","name":"newWithdrawVestings","nameLocation":"29684:19:12","nodeType":"VariableDeclaration","scope":3778,"src":"29658:45:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1510_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting[]"},"typeName":{"baseType":{"id":3746,"nodeType":"UserDefinedTypeName","pathNode":{"id":3745,"name":"WithdrawVesting","nameLocations":["29658:15:12"],"nodeType":"IdentifierPath","referencedDeclaration":1510,"src":"29658:15:12"},"referencedDeclaration":1510,"src":"29658:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawVesting_$1510_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting"}},"id":3747,"nodeType":"ArrayTypeName","src":"29658:17:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1510_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting[]"}},"visibility":"internal"}],"id":3752,"initialValue":{"baseExpression":{"id":3749,"name":"withdrawVestingActual","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1602,"src":"29706:21:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawVesting_$1510_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawVesting storage ref[] storage ref)"}},"id":3751,"indexExpression":{"id":3750,"name":"newAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3578,"src":"29728:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"29706:33:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1510_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.WithdrawVesting storage ref[] storage ref"}},"nodeType":"VariableDeclarationStatement","src":"29658:81:12"},{"body":{"id":3771,"nodeType":"Block","src":"29804:81:12","statements":[{"expression":{"arguments":[{"baseExpression":{"id":3766,"name":"oldWithdrawVestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3731,"src":"29847:19:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1510_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting storage ref[] storage pointer"}},"id":3768,"indexExpression":{"id":3767,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3754,"src":"29867:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"29847:22:12","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawVesting_$1510_storage","typeString":"struct CunaFinanceBsc.WithdrawVesting storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_WithdrawVesting_$1510_storage","typeString":"struct CunaFinanceBsc.WithdrawVesting storage ref"}],"expression":{"id":3763,"name":"newWithdrawVestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3748,"src":"29822:19:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1510_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting storage ref[] storage pointer"}},"id":3765,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29842:4:12","memberName":"push","nodeType":"MemberAccess","src":"29822:24:12","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_WithdrawVesting_$1510_storage_$dyn_storage_ptr_$_t_struct$_WithdrawVesting_$1510_storage_$returns$__$attached_to$_t_array$_t_struct$_WithdrawVesting_$1510_storage_$dyn_storage_ptr_$","typeString":"function (struct CunaFinanceBsc.WithdrawVesting storage ref[] storage pointer,struct CunaFinanceBsc.WithdrawVesting storage ref)"}},"id":3769,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29822:48:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3770,"nodeType":"ExpressionStatement","src":"29822:48:12"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3759,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3757,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3754,"src":"29773:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":3758,"name":"withdrawVestingCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3737,"src":"29777:20:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"29773:24:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3772,"initializationExpression":{"assignments":[3754],"declarations":[{"constant":false,"id":3754,"mutability":"mutable","name":"i","nameLocation":"29766:1:12","nodeType":"VariableDeclaration","scope":3772,"src":"29758:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3753,"name":"uint256","nodeType":"ElementaryTypeName","src":"29758:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3756,"initialValue":{"hexValue":"30","id":3755,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29770:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"29758:13:12"},"loopExpression":{"expression":{"id":3761,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"29799:3:12","subExpression":{"id":3760,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3754,"src":"29799:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3762,"nodeType":"ExpressionStatement","src":"29799:3:12"},"nodeType":"ForStatement","src":"29753:132:12"},{"expression":{"id":3776,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"29898:40:12","subExpression":{"baseExpression":{"id":3773,"name":"withdrawVestingActual","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1602,"src":"29905:21:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawVesting_$1510_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawVesting storage ref[] storage ref)"}},"id":3775,"indexExpression":{"id":3774,"name":"oldAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3576,"src":"29927:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"29905:33:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1510_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.WithdrawVesting storage ref[] storage ref"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3777,"nodeType":"ExpressionStatement","src":"29898:40:12"}]}}]},"documentation":{"id":3574,"nodeType":"StructuredDocumentation","src":"27897:268:12","text":"@notice Migrates all vestings from an old address to a new address\n @dev Only to be used by bots for account migrations\n @param oldAddress The address with existing vestings to migrate from\n @param newAddress The address to migrate vestings to"},"functionSelector":"7b3cbecb","id":3781,"implemented":true,"kind":"function","modifiers":[{"id":3581,"kind":"modifierInvocation","modifierName":{"id":3580,"name":"onlyBot","nameLocations":["28244:7:12"],"nodeType":"IdentifierPath","referencedDeclaration":1782,"src":"28244:7:12"},"nodeType":"ModifierInvocation","src":"28244:7:12"}],"name":"migrateVestings","nameLocation":"28179:15:12","nodeType":"FunctionDefinition","parameters":{"id":3579,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3576,"mutability":"mutable","name":"oldAddress","nameLocation":"28203:10:12","nodeType":"VariableDeclaration","scope":3781,"src":"28195:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3575,"name":"address","nodeType":"ElementaryTypeName","src":"28195:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3578,"mutability":"mutable","name":"newAddress","nameLocation":"28223:10:12","nodeType":"VariableDeclaration","scope":3781,"src":"28215:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3577,"name":"address","nodeType":"ElementaryTypeName","src":"28215:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"28194:40:12"},"returnParameters":{"id":3582,"nodeType":"ParameterList","parameters":[],"src":"28252:0:12"},"scope":4510,"src":"28170:1785:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":3870,"nodeType":"Block","src":"30087:641:12","statements":[{"assignments":[3792],"declarations":[{"constant":false,"id":3792,"mutability":"mutable","name":"vesting","nameLocation":"30113:7:12","nodeType":"VariableDeclaration","scope":3870,"src":"30097:23:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"},"typeName":{"id":3791,"nodeType":"UserDefinedTypeName","pathNode":{"id":3790,"name":"Vesting","nameLocations":["30097:7:12"],"nodeType":"IdentifierPath","referencedDeclaration":1496,"src":"30097:7:12"},"referencedDeclaration":1496,"src":"30097:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"}},"visibility":"internal"}],"id":3798,"initialValue":{"baseExpression":{"baseExpression":{"id":3793,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1571,"src":"30123:8:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":3795,"indexExpression":{"id":3794,"name":"_user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3783,"src":"30132:5:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"30123:15:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"id":3797,"indexExpression":{"id":3796,"name":"_vestingIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3785,"src":"30139:13:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"30123:30:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref"}},"nodeType":"VariableDeclarationStatement","src":"30097:56:12"},{"assignments":[3800],"declarations":[{"constant":false,"id":3800,"mutability":"mutable","name":"timeElapsed","nameLocation":"30171:11:12","nodeType":"VariableDeclaration","scope":3870,"src":"30163:19:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3799,"name":"uint256","nodeType":"ElementaryTypeName","src":"30163:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3806,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3805,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3801,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"30185:5:12","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3802,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30191:9:12","memberName":"timestamp","nodeType":"MemberAccess","src":"30185:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":3803,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3792,"src":"30203:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3804,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30211:9:12","memberName":"createdAt","nodeType":"MemberAccess","referencedDeclaration":1489,"src":"30203:17:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30185:35:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"30163:57:12"},{"assignments":[3808],"declarations":[{"constant":false,"id":3808,"mutability":"mutable","name":"token","nameLocation":"30238:5:12","nodeType":"VariableDeclaration","scope":3870,"src":"30230:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3807,"name":"address","nodeType":"ElementaryTypeName","src":"30230:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":3811,"initialValue":{"expression":{"id":3809,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3792,"src":"30246:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3810,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30254:5:12","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":1491,"src":"30246:13:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"30230:29:12"},{"assignments":[3813],"declarations":[{"constant":false,"id":3813,"mutability":"mutable","name":"unlockedAmount","nameLocation":"30278:14:12","nodeType":"VariableDeclaration","scope":3870,"src":"30270:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3812,"name":"uint256","nodeType":"ElementaryTypeName","src":"30270:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3815,"initialValue":{"hexValue":"30","id":3814,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30295:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"30270:26:12"},{"body":{"id":3866,"nodeType":"Block","src":"30367:323:12","statements":[{"assignments":[3831],"declarations":[{"constant":false,"id":3831,"mutability":"mutable","name":"step","nameLocation":"30400:4:12","nodeType":"VariableDeclaration","scope":3866,"src":"30381:23:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1501_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep"},"typeName":{"id":3830,"nodeType":"UserDefinedTypeName","pathNode":{"id":3829,"name":"UnlockStep","nameLocations":["30381:10:12"],"nodeType":"IdentifierPath","referencedDeclaration":1501,"src":"30381:10:12"},"referencedDeclaration":1501,"src":"30381:10:12","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1501_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep"}},"visibility":"internal"}],"id":3837,"initialValue":{"baseExpression":{"baseExpression":{"id":3832,"name":"unlockSchedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1577,"src":"30407:15:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_UnlockStep_$1501_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.UnlockStep storage ref[] storage ref)"}},"id":3834,"indexExpression":{"id":3833,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3808,"src":"30423:5:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"30407:22:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UnlockStep_$1501_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.UnlockStep storage ref[] storage ref"}},"id":3836,"indexExpression":{"id":3835,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3817,"src":"30430:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"30407:25:12","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1501_storage","typeString":"struct CunaFinanceBsc.UnlockStep storage ref"}},"nodeType":"VariableDeclarationStatement","src":"30381:51:12"},{"assignments":[3839],"declarations":[{"constant":false,"id":3839,"mutability":"mutable","name":"timeTier","nameLocation":"30454:8:12","nodeType":"VariableDeclaration","scope":3866,"src":"30446:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3838,"name":"uint256","nodeType":"ElementaryTypeName","src":"30446:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3842,"initialValue":{"expression":{"id":3840,"name":"step","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3831,"src":"30465:4:12","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1501_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep storage pointer"}},"id":3841,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30470:10:12","memberName":"timeOffset","nodeType":"MemberAccess","referencedDeclaration":1498,"src":"30465:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"30446:34:12"},{"assignments":[3844],"declarations":[{"constant":false,"id":3844,"mutability":"mutable","name":"percentage","nameLocation":"30502:10:12","nodeType":"VariableDeclaration","scope":3866,"src":"30494:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3843,"name":"uint256","nodeType":"ElementaryTypeName","src":"30494:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3847,"initialValue":{"expression":{"id":3845,"name":"step","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3831,"src":"30515:4:12","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1501_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep storage pointer"}},"id":3846,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30520:10:12","memberName":"percentage","nodeType":"MemberAccess","referencedDeclaration":1500,"src":"30515:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"30494:36:12"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3850,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3848,"name":"timeElapsed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3800,"src":"30549:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":3849,"name":"timeTier","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3839,"src":"30564:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30549:23:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3865,"nodeType":"IfStatement","src":"30545:135:12","trueBody":{"id":3864,"nodeType":"Block","src":"30574:106:12","statements":[{"expression":{"id":3862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3851,"name":"unlockedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3813,"src":"30592:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3852,"name":"unlockedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3813,"src":"30609:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3859,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3856,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3853,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3792,"src":"30628:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3854,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30636:6:12","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":1477,"src":"30628:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":3855,"name":"percentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3844,"src":"30645:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30628:27:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3857,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"30627:29:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130303030","id":3858,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30659:5:12","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"30627:37:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3860,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"30626:39:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30609:56:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30592:73:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3863,"nodeType":"ExpressionStatement","src":"30592:73:12"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3825,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3820,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3817,"src":"30327:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"baseExpression":{"id":3821,"name":"unlockSchedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1577,"src":"30331:15:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_UnlockStep_$1501_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.UnlockStep storage ref[] storage ref)"}},"id":3823,"indexExpression":{"id":3822,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3808,"src":"30347:5:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"30331:22:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UnlockStep_$1501_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.UnlockStep storage ref[] storage ref"}},"id":3824,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30354:6:12","memberName":"length","nodeType":"MemberAccess","src":"30331:29:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30327:33:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3867,"initializationExpression":{"assignments":[3817],"declarations":[{"constant":false,"id":3817,"mutability":"mutable","name":"i","nameLocation":"30320:1:12","nodeType":"VariableDeclaration","scope":3867,"src":"30312:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3816,"name":"uint256","nodeType":"ElementaryTypeName","src":"30312:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3819,"initialValue":{"hexValue":"30","id":3818,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30324:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"30312:13:12"},"loopExpression":{"expression":{"id":3827,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"30362:3:12","subExpression":{"id":3826,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3817,"src":"30364:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3828,"nodeType":"ExpressionStatement","src":"30362:3:12"},"nodeType":"ForStatement","src":"30307:383:12"},{"expression":{"id":3868,"name":"unlockedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3813,"src":"30707:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3789,"id":3869,"nodeType":"Return","src":"30700:21:12"}]},"functionSelector":"80ca0ecf","id":3871,"implemented":true,"kind":"function","modifiers":[],"name":"getUnlockedVesting","nameLocation":"30000:18:12","nodeType":"FunctionDefinition","parameters":{"id":3786,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3783,"mutability":"mutable","name":"_user","nameLocation":"30027:5:12","nodeType":"VariableDeclaration","scope":3871,"src":"30019:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3782,"name":"address","nodeType":"ElementaryTypeName","src":"30019:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3785,"mutability":"mutable","name":"_vestingIndex","nameLocation":"30042:13:12","nodeType":"VariableDeclaration","scope":3871,"src":"30034:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3784,"name":"uint256","nodeType":"ElementaryTypeName","src":"30034:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30018:38:12"},"returnParameters":{"id":3789,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3788,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3871,"src":"30078:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3787,"name":"uint256","nodeType":"ElementaryTypeName","src":"30078:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30077:9:12"},"scope":4510,"src":"29991:737:12","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":3969,"nodeType":"Block","src":"30857:755:12","statements":[{"assignments":[3886],"declarations":[{"constant":false,"id":3886,"mutability":"mutable","name":"vesting","nameLocation":"30883:7:12","nodeType":"VariableDeclaration","scope":3969,"src":"30867:23:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"},"typeName":{"id":3885,"nodeType":"UserDefinedTypeName","pathNode":{"id":3884,"name":"Vesting","nameLocations":["30867:7:12"],"nodeType":"IdentifierPath","referencedDeclaration":1496,"src":"30867:7:12"},"referencedDeclaration":1496,"src":"30867:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"}},"visibility":"internal"}],"id":3892,"initialValue":{"baseExpression":{"baseExpression":{"id":3887,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1571,"src":"30893:8:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":3889,"indexExpression":{"id":3888,"name":"_user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3873,"src":"30902:5:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"30893:15:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"id":3891,"indexExpression":{"id":3890,"name":"_vestingIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3875,"src":"30909:13:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"30893:30:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref"}},"nodeType":"VariableDeclarationStatement","src":"30867:56:12"},{"assignments":[3894],"declarations":[{"constant":false,"id":3894,"mutability":"mutable","name":"token","nameLocation":"30941:5:12","nodeType":"VariableDeclaration","scope":3969,"src":"30933:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3893,"name":"address","nodeType":"ElementaryTypeName","src":"30933:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":3897,"initialValue":{"expression":{"id":3895,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3886,"src":"30949:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3896,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30957:5:12","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":1491,"src":"30949:13:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"30933:29:12"},{"assignments":[3899],"declarations":[{"constant":false,"id":3899,"mutability":"mutable","name":"scheduleLength","nameLocation":"30981:14:12","nodeType":"VariableDeclaration","scope":3969,"src":"30973:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3898,"name":"uint256","nodeType":"ElementaryTypeName","src":"30973:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3904,"initialValue":{"expression":{"baseExpression":{"id":3900,"name":"unlockSchedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1577,"src":"30998:15:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_UnlockStep_$1501_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.UnlockStep storage ref[] storage ref)"}},"id":3902,"indexExpression":{"id":3901,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3894,"src":"31014:5:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"30998:22:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UnlockStep_$1501_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.UnlockStep storage ref[] storage ref"}},"id":3903,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31021:6:12","memberName":"length","nodeType":"MemberAccess","src":"30998:29:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"30973:54:12"},{"assignments":[3909],"declarations":[{"constant":false,"id":3909,"mutability":"mutable","name":"unlockTimestamps","nameLocation":"31054:16:12","nodeType":"VariableDeclaration","scope":3969,"src":"31037:33:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":3907,"name":"uint256","nodeType":"ElementaryTypeName","src":"31037:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3908,"nodeType":"ArrayTypeName","src":"31037:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"id":3915,"initialValue":{"arguments":[{"id":3913,"name":"scheduleLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3899,"src":"31087:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3912,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"31073:13:12","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint256[] memory)"},"typeName":{"baseType":{"id":3910,"name":"uint256","nodeType":"ElementaryTypeName","src":"31077:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3911,"nodeType":"ArrayTypeName","src":"31077:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":3914,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31073:29:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"VariableDeclarationStatement","src":"31037:65:12"},{"assignments":[3920],"declarations":[{"constant":false,"id":3920,"mutability":"mutable","name":"unlockPercentages","nameLocation":"31129:17:12","nodeType":"VariableDeclaration","scope":3969,"src":"31112:34:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":3918,"name":"uint256","nodeType":"ElementaryTypeName","src":"31112:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3919,"nodeType":"ArrayTypeName","src":"31112:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"id":3926,"initialValue":{"arguments":[{"id":3924,"name":"scheduleLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3899,"src":"31163:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3923,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"31149:13:12","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint256[] memory)"},"typeName":{"baseType":{"id":3921,"name":"uint256","nodeType":"ElementaryTypeName","src":"31153:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3922,"nodeType":"ArrayTypeName","src":"31153:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":3925,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31149:29:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"VariableDeclarationStatement","src":"31112:66:12"},{"body":{"id":3963,"nodeType":"Block","src":"31234:317:12","statements":[{"assignments":[3939],"declarations":[{"constant":false,"id":3939,"mutability":"mutable","name":"step","nameLocation":"31267:4:12","nodeType":"VariableDeclaration","scope":3963,"src":"31248:23:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1501_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep"},"typeName":{"id":3938,"nodeType":"UserDefinedTypeName","pathNode":{"id":3937,"name":"UnlockStep","nameLocations":["31248:10:12"],"nodeType":"IdentifierPath","referencedDeclaration":1501,"src":"31248:10:12"},"referencedDeclaration":1501,"src":"31248:10:12","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1501_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep"}},"visibility":"internal"}],"id":3945,"initialValue":{"baseExpression":{"baseExpression":{"id":3940,"name":"unlockSchedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1577,"src":"31274:15:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_UnlockStep_$1501_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.UnlockStep storage ref[] storage ref)"}},"id":3942,"indexExpression":{"id":3941,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3894,"src":"31290:5:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"31274:22:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UnlockStep_$1501_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.UnlockStep storage ref[] storage ref"}},"id":3944,"indexExpression":{"id":3943,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3928,"src":"31297:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"31274:25:12","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1501_storage","typeString":"struct CunaFinanceBsc.UnlockStep storage ref"}},"nodeType":"VariableDeclarationStatement","src":"31248:51:12"},{"expression":{"id":3954,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3946,"name":"unlockTimestamps","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3909,"src":"31369:16:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":3948,"indexExpression":{"id":3947,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3928,"src":"31386:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"31369:19:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3953,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3949,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3886,"src":"31391:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3950,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31399:9:12","memberName":"createdAt","nodeType":"MemberAccess","referencedDeclaration":1489,"src":"31391:17:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":3951,"name":"step","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3939,"src":"31411:4:12","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1501_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep storage pointer"}},"id":3952,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31416:10:12","memberName":"timeOffset","nodeType":"MemberAccess","referencedDeclaration":1498,"src":"31411:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31391:35:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31369:57:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3955,"nodeType":"ExpressionStatement","src":"31369:57:12"},{"expression":{"id":3961,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3956,"name":"unlockPercentages","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3920,"src":"31440:17:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":3958,"indexExpression":{"id":3957,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3928,"src":"31458:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"31440:20:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":3959,"name":"step","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3939,"src":"31463:4:12","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1501_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep storage pointer"}},"id":3960,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31468:10:12","memberName":"percentage","nodeType":"MemberAccess","referencedDeclaration":1500,"src":"31463:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31440:38:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3962,"nodeType":"ExpressionStatement","src":"31440:38:12"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3933,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3931,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3928,"src":"31209:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":3932,"name":"scheduleLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3899,"src":"31213:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31209:18:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3964,"initializationExpression":{"assignments":[3928],"declarations":[{"constant":false,"id":3928,"mutability":"mutable","name":"i","nameLocation":"31202:1:12","nodeType":"VariableDeclaration","scope":3964,"src":"31194:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3927,"name":"uint256","nodeType":"ElementaryTypeName","src":"31194:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3930,"initialValue":{"hexValue":"30","id":3929,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31206:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"31194:13:12"},"loopExpression":{"expression":{"id":3935,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"31229:3:12","subExpression":{"id":3934,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3928,"src":"31231:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3936,"nodeType":"ExpressionStatement","src":"31229:3:12"},"nodeType":"ForStatement","src":"31189:362:12"},{"expression":{"components":[{"id":3965,"name":"unlockTimestamps","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3909,"src":"31569:16:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":3966,"name":"unlockPercentages","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3920,"src":"31587:17:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}}],"id":3967,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31568:37:12","typeDescriptions":{"typeIdentifier":"t_tuple$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"tuple(uint256[] memory,uint256[] memory)"}},"functionReturnParameters":3883,"id":3968,"nodeType":"Return","src":"31561:44:12"}]},"functionSelector":"bed9757e","id":3970,"implemented":true,"kind":"function","modifiers":[],"name":"getVestingSchedule","nameLocation":"30743:18:12","nodeType":"FunctionDefinition","parameters":{"id":3876,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3873,"mutability":"mutable","name":"_user","nameLocation":"30770:5:12","nodeType":"VariableDeclaration","scope":3970,"src":"30762:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3872,"name":"address","nodeType":"ElementaryTypeName","src":"30762:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3875,"mutability":"mutable","name":"_vestingIndex","nameLocation":"30785:13:12","nodeType":"VariableDeclaration","scope":3970,"src":"30777:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3874,"name":"uint256","nodeType":"ElementaryTypeName","src":"30777:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30761:38:12"},"returnParameters":{"id":3883,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3879,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3970,"src":"30821:16:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":3877,"name":"uint256","nodeType":"ElementaryTypeName","src":"30821:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3878,"nodeType":"ArrayTypeName","src":"30821:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":3882,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3970,"src":"30839:16:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":3880,"name":"uint256","nodeType":"ElementaryTypeName","src":"30839:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3881,"nodeType":"ArrayTypeName","src":"30839:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"30820:36:12"},"scope":4510,"src":"30734:878:12","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":4068,"nodeType":"Block","src":"31719:724:12","statements":[{"assignments":[3981],"declarations":[{"constant":false,"id":3981,"mutability":"mutable","name":"vesting","nameLocation":"31745:7:12","nodeType":"VariableDeclaration","scope":4068,"src":"31729:23:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"},"typeName":{"id":3980,"nodeType":"UserDefinedTypeName","pathNode":{"id":3979,"name":"Vesting","nameLocations":["31729:7:12"],"nodeType":"IdentifierPath","referencedDeclaration":1496,"src":"31729:7:12"},"referencedDeclaration":1496,"src":"31729:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"}},"visibility":"internal"}],"id":3987,"initialValue":{"baseExpression":{"baseExpression":{"id":3982,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1571,"src":"31755:8:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":3984,"indexExpression":{"id":3983,"name":"_user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3972,"src":"31764:5:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"31755:15:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"id":3986,"indexExpression":{"id":3985,"name":"_vestingIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3974,"src":"31771:13:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"31755:30:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref"}},"nodeType":"VariableDeclarationStatement","src":"31729:56:12"},{"assignments":[3989],"declarations":[{"constant":false,"id":3989,"mutability":"mutable","name":"timeElapsed","nameLocation":"31803:11:12","nodeType":"VariableDeclaration","scope":4068,"src":"31795:19:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3988,"name":"uint256","nodeType":"ElementaryTypeName","src":"31795:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3995,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3994,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3990,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"31817:5:12","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3991,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31823:9:12","memberName":"timestamp","nodeType":"MemberAccess","src":"31817:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":3992,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3981,"src":"31835:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3993,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31843:9:12","memberName":"createdAt","nodeType":"MemberAccess","referencedDeclaration":1489,"src":"31835:17:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31817:35:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"31795:57:12"},{"assignments":[3997],"declarations":[{"constant":false,"id":3997,"mutability":"mutable","name":"token","nameLocation":"31870:5:12","nodeType":"VariableDeclaration","scope":4068,"src":"31862:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3996,"name":"address","nodeType":"ElementaryTypeName","src":"31862:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":4000,"initialValue":{"expression":{"id":3998,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3981,"src":"31878:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":3999,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31886:5:12","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":1491,"src":"31878:13:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"31862:29:12"},{"assignments":[4002],"declarations":[{"constant":false,"id":4002,"mutability":"mutable","name":"unlockedAmount","nameLocation":"31910:14:12","nodeType":"VariableDeclaration","scope":4068,"src":"31902:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4001,"name":"uint256","nodeType":"ElementaryTypeName","src":"31902:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4004,"initialValue":{"hexValue":"30","id":4003,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31927:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"31902:26:12"},{"body":{"id":4064,"nodeType":"Block","src":"31999:406:12","statements":[{"assignments":[4020],"declarations":[{"constant":false,"id":4020,"mutability":"mutable","name":"step","nameLocation":"32032:4:12","nodeType":"VariableDeclaration","scope":4064,"src":"32013:23:12","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1501_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep"},"typeName":{"id":4019,"nodeType":"UserDefinedTypeName","pathNode":{"id":4018,"name":"UnlockStep","nameLocations":["32013:10:12"],"nodeType":"IdentifierPath","referencedDeclaration":1501,"src":"32013:10:12"},"referencedDeclaration":1501,"src":"32013:10:12","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1501_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep"}},"visibility":"internal"}],"id":4026,"initialValue":{"baseExpression":{"baseExpression":{"id":4021,"name":"unlockSchedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1577,"src":"32039:15:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_UnlockStep_$1501_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.UnlockStep storage ref[] storage ref)"}},"id":4023,"indexExpression":{"id":4022,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3997,"src":"32055:5:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"32039:22:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UnlockStep_$1501_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.UnlockStep storage ref[] storage ref"}},"id":4025,"indexExpression":{"id":4024,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4006,"src":"32062:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"32039:25:12","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1501_storage","typeString":"struct CunaFinanceBsc.UnlockStep storage ref"}},"nodeType":"VariableDeclarationStatement","src":"32013:51:12"},{"assignments":[4028],"declarations":[{"constant":false,"id":4028,"mutability":"mutable","name":"timeTier","nameLocation":"32086:8:12","nodeType":"VariableDeclaration","scope":4064,"src":"32078:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4027,"name":"uint256","nodeType":"ElementaryTypeName","src":"32078:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4031,"initialValue":{"expression":{"id":4029,"name":"step","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4020,"src":"32097:4:12","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1501_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep storage pointer"}},"id":4030,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32102:10:12","memberName":"timeOffset","nodeType":"MemberAccess","referencedDeclaration":1498,"src":"32097:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"32078:34:12"},{"assignments":[4033],"declarations":[{"constant":false,"id":4033,"mutability":"mutable","name":"percentage","nameLocation":"32134:10:12","nodeType":"VariableDeclaration","scope":4064,"src":"32126:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4032,"name":"uint256","nodeType":"ElementaryTypeName","src":"32126:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4036,"initialValue":{"expression":{"id":4034,"name":"step","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4020,"src":"32147:4:12","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1501_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep storage pointer"}},"id":4035,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32152:10:12","memberName":"percentage","nodeType":"MemberAccess","referencedDeclaration":1500,"src":"32147:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"32126:36:12"},{"assignments":[4038],"declarations":[{"constant":false,"id":4038,"mutability":"mutable","name":"maxBonusAmount","nameLocation":"32184:14:12","nodeType":"VariableDeclaration","scope":4064,"src":"32176:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4037,"name":"uint256","nodeType":"ElementaryTypeName","src":"32176:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4046,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4045,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4042,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4039,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3981,"src":"32202:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4040,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32210:9:12","memberName":"usdAmount","nodeType":"MemberAccess","referencedDeclaration":1495,"src":"32202:17:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4041,"name":"BONUS_PERCENTAGE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1596,"src":"32222:16:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"32202:36:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4043,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"32201:38:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"313030","id":4044,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32242:3:12","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"32201:44:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"32176:69:12"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4049,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4047,"name":"timeElapsed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3989,"src":"32264:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":4048,"name":"timeTier","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4028,"src":"32279:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"32264:23:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4063,"nodeType":"IfStatement","src":"32260:135:12","trueBody":{"id":4062,"nodeType":"Block","src":"32289:106:12","statements":[{"expression":{"id":4060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4050,"name":"unlockedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4002,"src":"32307:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4059,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4051,"name":"unlockedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4002,"src":"32324:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4057,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4054,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4052,"name":"maxBonusAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4038,"src":"32343:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4053,"name":"percentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4033,"src":"32360:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"32343:27:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4055,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"32342:29:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130303030","id":4056,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32374:5:12","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"32342:37:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4058,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"32341:39:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"32324:56:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"32307:73:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4061,"nodeType":"ExpressionStatement","src":"32307:73:12"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4014,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4009,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4006,"src":"31959:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"baseExpression":{"id":4010,"name":"unlockSchedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1577,"src":"31963:15:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_UnlockStep_$1501_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.UnlockStep storage ref[] storage ref)"}},"id":4012,"indexExpression":{"id":4011,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3997,"src":"31979:5:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"31963:22:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UnlockStep_$1501_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.UnlockStep storage ref[] storage ref"}},"id":4013,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31986:6:12","memberName":"length","nodeType":"MemberAccess","src":"31963:29:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31959:33:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4065,"initializationExpression":{"assignments":[4006],"declarations":[{"constant":false,"id":4006,"mutability":"mutable","name":"i","nameLocation":"31952:1:12","nodeType":"VariableDeclaration","scope":4065,"src":"31944:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4005,"name":"uint256","nodeType":"ElementaryTypeName","src":"31944:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4008,"initialValue":{"hexValue":"30","id":4007,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31956:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"31944:13:12"},"loopExpression":{"expression":{"id":4016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"31994:3:12","subExpression":{"id":4015,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4006,"src":"31996:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4017,"nodeType":"ExpressionStatement","src":"31994:3:12"},"nodeType":"ForStatement","src":"31939:466:12"},{"expression":{"id":4066,"name":"unlockedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4002,"src":"32422:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3978,"id":4067,"nodeType":"Return","src":"32415:21:12"}]},"functionSelector":"0a84096a","id":4069,"implemented":true,"kind":"function","modifiers":[],"name":"getUnlockedVestingBonus","nameLocation":"31627:23:12","nodeType":"FunctionDefinition","parameters":{"id":3975,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3972,"mutability":"mutable","name":"_user","nameLocation":"31659:5:12","nodeType":"VariableDeclaration","scope":4069,"src":"31651:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3971,"name":"address","nodeType":"ElementaryTypeName","src":"31651:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3974,"mutability":"mutable","name":"_vestingIndex","nameLocation":"31674:13:12","nodeType":"VariableDeclaration","scope":4069,"src":"31666:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3973,"name":"uint256","nodeType":"ElementaryTypeName","src":"31666:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31650:38:12"},"returnParameters":{"id":3978,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3977,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4069,"src":"31710:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3976,"name":"uint256","nodeType":"ElementaryTypeName","src":"31710:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31709:9:12"},"scope":4510,"src":"31618:825:12","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":4083,"nodeType":"Block","src":"32598:38:12","statements":[{"expression":{"baseExpression":{"id":4079,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1571,"src":"32615:8:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":4081,"indexExpression":{"id":4080,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4072,"src":"32624:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"32615:14:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"functionReturnParameters":4078,"id":4082,"nodeType":"Return","src":"32608:21:12"}]},"documentation":{"id":4070,"nodeType":"StructuredDocumentation","src":"32449:68:12","text":"@notice View function to get all vestings for a specific address"},"functionSelector":"7a0c6dc0","id":4084,"implemented":true,"kind":"function","modifiers":[],"name":"getVestings","nameLocation":"32531:11:12","nodeType":"FunctionDefinition","parameters":{"id":4073,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4072,"mutability":"mutable","name":"user","nameLocation":"32551:4:12","nodeType":"VariableDeclaration","scope":4084,"src":"32543:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4071,"name":"address","nodeType":"ElementaryTypeName","src":"32543:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"32542:14:12"},"returnParameters":{"id":4078,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4077,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4084,"src":"32580:16:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1496_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.Vesting[]"},"typeName":{"baseType":{"id":4075,"nodeType":"UserDefinedTypeName","pathNode":{"id":4074,"name":"Vesting","nameLocations":["32580:7:12"],"nodeType":"IdentifierPath","referencedDeclaration":1496,"src":"32580:7:12"},"referencedDeclaration":1496,"src":"32580:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"}},"id":4076,"nodeType":"ArrayTypeName","src":"32580:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting[]"}},"visibility":"internal"}],"src":"32579:18:12"},"scope":4510,"src":"32522:114:12","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":4185,"nodeType":"Block","src":"33252:915:12","statements":[{"assignments":[4100],"declarations":[{"constant":false,"id":4100,"mutability":"mutable","name":"length","nameLocation":"33270:6:12","nodeType":"VariableDeclaration","scope":4185,"src":"33262:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4099,"name":"uint256","nodeType":"ElementaryTypeName","src":"33262:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4103,"initialValue":{"expression":{"id":4101,"name":"_tokens","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4088,"src":"33279:7:12","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":4102,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"33287:6:12","memberName":"length","nodeType":"MemberAccess","src":"33279:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"33262:31:12"},{"expression":{"id":4110,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4104,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4092,"src":"33303:7:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4108,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4100,"src":"33327:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4107,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"33313:13:12","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint256[] memory)"},"typeName":{"baseType":{"id":4105,"name":"uint256","nodeType":"ElementaryTypeName","src":"33317:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4106,"nodeType":"ArrayTypeName","src":"33317:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":4109,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33313:21:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"src":"33303:31:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":4111,"nodeType":"ExpressionStatement","src":"33303:31:12"},{"expression":{"id":4118,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4112,"name":"usdValues","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4095,"src":"33344:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4116,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4100,"src":"33370:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4115,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"33356:13:12","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint256[] memory)"},"typeName":{"baseType":{"id":4113,"name":"uint256","nodeType":"ElementaryTypeName","src":"33360:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4114,"nodeType":"ArrayTypeName","src":"33360:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":4117,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33356:21:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"src":"33344:33:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":4119,"nodeType":"ExpressionStatement","src":"33344:33:12"},{"body":{"id":4178,"nodeType":"Block","src":"33425:688:12","statements":[{"assignments":[4131],"declarations":[{"constant":false,"id":4131,"mutability":"mutable","name":"token","nameLocation":"33447:5:12","nodeType":"VariableDeclaration","scope":4178,"src":"33439:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4130,"name":"address","nodeType":"ElementaryTypeName","src":"33439:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":4135,"initialValue":{"baseExpression":{"id":4132,"name":"_tokens","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4088,"src":"33455:7:12","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":4134,"indexExpression":{"id":4133,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4121,"src":"33463:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"33455:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"33439:26:12"},{"assignments":[4137],"declarations":[{"constant":false,"id":4137,"mutability":"mutable","name":"tokenAmount","nameLocation":"33550:11:12","nodeType":"VariableDeclaration","scope":4178,"src":"33542:19:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4136,"name":"uint256","nodeType":"ElementaryTypeName","src":"33542:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4141,"initialValue":{"baseExpression":{"id":4138,"name":"vestedTotal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1589,"src":"33564:11:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4140,"indexExpression":{"id":4139,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4131,"src":"33576:5:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"33564:18:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"33542:40:12"},{"expression":{"id":4146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4142,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4092,"src":"33596:7:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":4144,"indexExpression":{"id":4143,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4121,"src":"33604:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"33596:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4145,"name":"tokenAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4137,"src":"33609:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"33596:24:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4147,"nodeType":"ExpressionStatement","src":"33596:24:12"},{"assignments":[4149],"declarations":[{"constant":false,"id":4149,"mutability":"mutable","name":"price","nameLocation":"33775:5:12","nodeType":"VariableDeclaration","scope":4178,"src":"33767:13:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4148,"name":"uint256","nodeType":"ElementaryTypeName","src":"33767:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4158,"initialValue":{"arguments":[{"id":4156,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4131,"src":"33832:5:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"baseExpression":{"id":4151,"name":"priceOracles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1581,"src":"33796:12:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}},"id":4153,"indexExpression":{"id":4152,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4131,"src":"33809:5:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"33796:19:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4150,"name":"iPriceOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1469,"src":"33783:12:12","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_iPriceOracle_$1469_$","typeString":"type(contract iPriceOracle)"}},"id":4154,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33783:33:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_iPriceOracle_$1469","typeString":"contract iPriceOracle"}},"id":4155,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"33817:14:12","memberName":"getLatestPrice","nodeType":"MemberAccess","referencedDeclaration":1468,"src":"33783:48:12","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":4157,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33783:55:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"33767:71:12"},{"assignments":[4160],"declarations":[{"constant":false,"id":4160,"mutability":"mutable","name":"valueInUsd","nameLocation":"33935:10:12","nodeType":"VariableDeclaration","scope":4178,"src":"33927:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4159,"name":"uint256","nodeType":"ElementaryTypeName","src":"33927:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4167,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4166,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4161,"name":"price","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4149,"src":"33949:5:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4162,"name":"tokenAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4137,"src":"33957:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"33949:19:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4164,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"33948:21:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"31653138","id":4165,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33972:4:12","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"src":"33948:28:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"33927:49:12"},{"expression":{"id":4172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4168,"name":"usdValues","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4095,"src":"33990:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":4170,"indexExpression":{"id":4169,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4121,"src":"34000:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"33990:12:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4171,"name":"valueInUsd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4160,"src":"34005:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"33990:25:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4173,"nodeType":"ExpressionStatement","src":"33990:25:12"},{"expression":{"id":4176,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4174,"name":"totalUsd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4097,"src":"34080:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":4175,"name":"valueInUsd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4160,"src":"34092:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"34080:22:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4177,"nodeType":"ExpressionStatement","src":"34080:22:12"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4126,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4124,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4121,"src":"33408:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":4125,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4100,"src":"33412:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"33408:10:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4179,"initializationExpression":{"assignments":[4121],"declarations":[{"constant":false,"id":4121,"mutability":"mutable","name":"i","nameLocation":"33401:1:12","nodeType":"VariableDeclaration","scope":4179,"src":"33393:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4120,"name":"uint256","nodeType":"ElementaryTypeName","src":"33393:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4123,"initialValue":{"hexValue":"30","id":4122,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33405:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"33393:13:12"},"loopExpression":{"expression":{"id":4128,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"33420:3:12","subExpression":{"id":4127,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4121,"src":"33420:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4129,"nodeType":"ExpressionStatement","src":"33420:3:12"},"nodeType":"ForStatement","src":"33388:725:12"},{"expression":{"components":[{"id":4180,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4092,"src":"34131:7:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":4181,"name":"usdValues","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4095,"src":"34140:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":4182,"name":"totalUsd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4097,"src":"34151:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4183,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"34130:30:12","typeDescriptions":{"typeIdentifier":"t_tuple$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_uint256_$","typeString":"tuple(uint256[] memory,uint256[] memory,uint256)"}},"functionReturnParameters":4098,"id":4184,"nodeType":"Return","src":"34123:37:12"}]},"documentation":{"id":4085,"nodeType":"StructuredDocumentation","src":"32642:383:12","text":" @notice Returns the vested amounts and USD values for an array of tokens.\n @param _tokens The array of token addresses to evaluate.\n @return amounts The array of vested amounts for each token.\n @return usdValues The array of USD values for each token's vested amount.\n @return totalUsd The total USD value of all vested tokens in the array."},"functionSelector":"3c92f98d","id":4186,"implemented":true,"kind":"function","modifiers":[],"name":"getVestedTotals","nameLocation":"33039:15:12","nodeType":"FunctionDefinition","parameters":{"id":4089,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4088,"mutability":"mutable","name":"_tokens","nameLocation":"33074:7:12","nodeType":"VariableDeclaration","scope":4186,"src":"33055:26:12","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":4086,"name":"address","nodeType":"ElementaryTypeName","src":"33055:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4087,"nodeType":"ArrayTypeName","src":"33055:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"}],"src":"33054:28:12"},"returnParameters":{"id":4098,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4092,"mutability":"mutable","name":"amounts","nameLocation":"33160:7:12","nodeType":"VariableDeclaration","scope":4186,"src":"33143:24:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4090,"name":"uint256","nodeType":"ElementaryTypeName","src":"33143:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4091,"nodeType":"ArrayTypeName","src":"33143:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":4095,"mutability":"mutable","name":"usdValues","nameLocation":"33198:9:12","nodeType":"VariableDeclaration","scope":4186,"src":"33181:26:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4093,"name":"uint256","nodeType":"ElementaryTypeName","src":"33181:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4094,"nodeType":"ArrayTypeName","src":"33181:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":4097,"mutability":"mutable","name":"totalUsd","nameLocation":"33229:8:12","nodeType":"VariableDeclaration","scope":4186,"src":"33221:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4096,"name":"uint256","nodeType":"ElementaryTypeName","src":"33221:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"33129:118:12"},"scope":4510,"src":"33030:1137:12","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":4263,"nodeType":"Block","src":"34493:626:12","statements":[{"assignments":[4195],"declarations":[{"constant":false,"id":4195,"mutability":"mutable","name":"length","nameLocation":"34511:6:12","nodeType":"VariableDeclaration","scope":4263,"src":"34503:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4194,"name":"uint256","nodeType":"ElementaryTypeName","src":"34503:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4200,"initialValue":{"expression":{"baseExpression":{"id":4196,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1571,"src":"34520:8:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":4198,"indexExpression":{"id":4197,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4189,"src":"34529:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"34520:14:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"id":4199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"34535:6:12","memberName":"length","nodeType":"MemberAccess","src":"34520:21:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"34503:38:12"},{"body":{"id":4259,"nodeType":"Block","src":"34588:500:12","statements":[{"assignments":[4213],"declarations":[{"constant":false,"id":4213,"mutability":"mutable","name":"v","nameLocation":"34617:1:12","nodeType":"VariableDeclaration","scope":4259,"src":"34602:16:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_memory_ptr","typeString":"struct CunaFinanceBsc.Vesting"},"typeName":{"id":4212,"nodeType":"UserDefinedTypeName","pathNode":{"id":4211,"name":"Vesting","nameLocations":["34602:7:12"],"nodeType":"IdentifierPath","referencedDeclaration":1496,"src":"34602:7:12"},"referencedDeclaration":1496,"src":"34602:7:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"}},"visibility":"internal"}],"id":4219,"initialValue":{"baseExpression":{"baseExpression":{"id":4214,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1571,"src":"34621:8:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":4216,"indexExpression":{"id":4215,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4189,"src":"34630:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"34621:14:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1496_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"id":4218,"indexExpression":{"id":4217,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4202,"src":"34636:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"34621:17:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref"}},"nodeType":"VariableDeclarationStatement","src":"34602:36:12"},{"condition":{"id":4222,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"34656:11:12","subExpression":{"expression":{"id":4220,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4213,"src":"34657:1:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_memory_ptr","typeString":"struct CunaFinanceBsc.Vesting memory"}},"id":4221,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34659:8:12","memberName":"complete","nodeType":"MemberAccess","referencedDeclaration":1493,"src":"34657:10:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4258,"nodeType":"IfStatement","src":"34652:426:12","trueBody":{"id":4257,"nodeType":"Block","src":"34669:409:12","statements":[{"assignments":[4224],"declarations":[{"constant":false,"id":4224,"mutability":"mutable","name":"tokenPrice","nameLocation":"34695:10:12","nodeType":"VariableDeclaration","scope":4257,"src":"34687:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4223,"name":"uint256","nodeType":"ElementaryTypeName","src":"34687:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4235,"initialValue":{"arguments":[{"expression":{"id":4232,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4213,"src":"34759:1:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_memory_ptr","typeString":"struct CunaFinanceBsc.Vesting memory"}},"id":4233,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34761:5:12","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":1491,"src":"34759:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"baseExpression":{"id":4226,"name":"priceOracles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1581,"src":"34721:12:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}},"id":4229,"indexExpression":{"expression":{"id":4227,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4213,"src":"34734:1:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_memory_ptr","typeString":"struct CunaFinanceBsc.Vesting memory"}},"id":4228,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34736:5:12","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":1491,"src":"34734:7:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"34721:21:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4225,"name":"iPriceOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1469,"src":"34708:12:12","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_iPriceOracle_$1469_$","typeString":"type(contract iPriceOracle)"}},"id":4230,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34708:35:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_iPriceOracle_$1469","typeString":"contract iPriceOracle"}},"id":4231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"34744:14:12","memberName":"getLatestPrice","nodeType":"MemberAccess","referencedDeclaration":1468,"src":"34708:50:12","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":4234,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34708:59:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"34687:80:12"},{"assignments":[4237],"declarations":[{"constant":false,"id":4237,"mutability":"mutable","name":"unclaimedAmount","nameLocation":"34848:15:12","nodeType":"VariableDeclaration","scope":4257,"src":"34840:23:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4236,"name":"uint256","nodeType":"ElementaryTypeName","src":"34840:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4243,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4242,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4238,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4213,"src":"34866:1:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_memory_ptr","typeString":"struct CunaFinanceBsc.Vesting memory"}},"id":4239,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34868:6:12","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":1477,"src":"34866:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":4240,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4213,"src":"34877:1:12","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1496_memory_ptr","typeString":"struct CunaFinanceBsc.Vesting memory"}},"id":4241,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34879:13:12","memberName":"claimedAmount","nodeType":"MemberAccess","referencedDeclaration":1483,"src":"34877:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"34866:26:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"34840:52:12"},{"assignments":[4245],"declarations":[{"constant":false,"id":4245,"mutability":"mutable","name":"stakeUsd","nameLocation":"34976:8:12","nodeType":"VariableDeclaration","scope":4257,"src":"34968:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4244,"name":"uint256","nodeType":"ElementaryTypeName","src":"34968:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4252,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4251,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4246,"name":"tokenPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4224,"src":"34988:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4247,"name":"unclaimedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4237,"src":"35001:15:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"34988:28:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4249,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"34987:30:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"31653138","id":4250,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"35020:4:12","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"src":"34987:37:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"34968:56:12"},{"expression":{"id":4255,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4253,"name":"totalUsd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4192,"src":"35043:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":4254,"name":"stakeUsd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4245,"src":"35055:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"35043:20:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4256,"nodeType":"ExpressionStatement","src":"35043:20:12"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4207,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4205,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4202,"src":"34571:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":4206,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4195,"src":"34575:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"34571:10:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4260,"initializationExpression":{"assignments":[4202],"declarations":[{"constant":false,"id":4202,"mutability":"mutable","name":"i","nameLocation":"34564:1:12","nodeType":"VariableDeclaration","scope":4260,"src":"34556:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4201,"name":"uint256","nodeType":"ElementaryTypeName","src":"34556:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4204,"initialValue":{"hexValue":"30","id":4203,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"34568:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"34556:13:12"},"loopExpression":{"expression":{"id":4209,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"34583:3:12","subExpression":{"id":4208,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4202,"src":"34583:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4210,"nodeType":"ExpressionStatement","src":"34583:3:12"},"nodeType":"ForStatement","src":"34551:537:12"},{"expression":{"id":4261,"name":"totalUsd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4192,"src":"35104:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4193,"id":4262,"nodeType":"Return","src":"35097:15:12"}]},"documentation":{"id":4187,"nodeType":"StructuredDocumentation","src":"34173:221:12","text":"@notice Returns the total USD value of the user's unclaimed, uncomplete, stake amounts, based on current token prices from the oracle.\n @return totalUsd The total unclaimed stake value, in USD (1e18 precision)."},"functionSelector":"7bc221ac","id":4264,"implemented":true,"kind":"function","modifiers":[],"name":"getUserTotalUnclaimedUsdValue","nameLocation":"34408:29:12","nodeType":"FunctionDefinition","parameters":{"id":4190,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4189,"mutability":"mutable","name":"user","nameLocation":"34446:4:12","nodeType":"VariableDeclaration","scope":4264,"src":"34438:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4188,"name":"address","nodeType":"ElementaryTypeName","src":"34438:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"34437:14:12"},"returnParameters":{"id":4193,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4192,"mutability":"mutable","name":"totalUsd","nameLocation":"34483:8:12","nodeType":"VariableDeclaration","scope":4264,"src":"34475:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4191,"name":"uint256","nodeType":"ElementaryTypeName","src":"34475:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34474:18:12"},"scope":4510,"src":"34399:720:12","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":4278,"nodeType":"Block","src":"35412:51:12","statements":[{"expression":{"baseExpression":{"id":4274,"name":"withdrawVestingActual","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1602,"src":"35429:21:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawVesting_$1510_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawVesting storage ref[] storage ref)"}},"id":4276,"indexExpression":{"id":4275,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4267,"src":"35451:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"35429:27:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1510_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.WithdrawVesting storage ref[] storage ref"}},"functionReturnParameters":4273,"id":4277,"nodeType":"Return","src":"35422:34:12"}]},"documentation":{"id":4265,"nodeType":"StructuredDocumentation","src":"35125:187:12","text":"@notice Function that returns an array of all the user's withdrawVestings.\n @param user The address to evaluate.\n @return An array of WithdrawVesting for the given user."},"functionSelector":"7d08af97","id":4279,"implemented":true,"kind":"function","modifiers":[],"name":"getAllWithdrawVestings","nameLocation":"35326:22:12","nodeType":"FunctionDefinition","parameters":{"id":4268,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4267,"mutability":"mutable","name":"user","nameLocation":"35357:4:12","nodeType":"VariableDeclaration","scope":4279,"src":"35349:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4266,"name":"address","nodeType":"ElementaryTypeName","src":"35349:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"35348:14:12"},"returnParameters":{"id":4273,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4272,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4279,"src":"35386:24:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1510_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting[]"},"typeName":{"baseType":{"id":4270,"nodeType":"UserDefinedTypeName","pathNode":{"id":4269,"name":"WithdrawVesting","nameLocations":["35386:15:12"],"nodeType":"IdentifierPath","referencedDeclaration":1510,"src":"35386:15:12"},"referencedDeclaration":1510,"src":"35386:15:12","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawVesting_$1510_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting"}},"id":4271,"nodeType":"ArrayTypeName","src":"35386:17:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1510_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting[]"}},"visibility":"internal"}],"src":"35385:26:12"},"scope":4510,"src":"35317:146:12","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":4287,"nodeType":"Block","src":"35678:52:12","statements":[{"expression":{"id":4285,"name":"withdrawVestingCounterActual","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1604,"src":"35695:28:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4284,"id":4286,"nodeType":"Return","src":"35688:35:12"}]},"documentation":{"id":4280,"nodeType":"StructuredDocumentation","src":"35469:135:12","text":"@notice Returns the current withdraw vesting counter value\n @return Current counter value for tracking unique withdrawal IDs"},"functionSelector":"e079fd91","id":4288,"implemented":true,"kind":"function","modifiers":[],"name":"getWithdrawVestingCounter","nameLocation":"35618:25:12","nodeType":"FunctionDefinition","parameters":{"id":4281,"nodeType":"ParameterList","parameters":[],"src":"35643:2:12"},"returnParameters":{"id":4284,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4283,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4288,"src":"35669:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4282,"name":"uint256","nodeType":"ElementaryTypeName","src":"35669:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"35668:9:12"},"scope":4510,"src":"35609:121:12","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":4382,"nodeType":"Block","src":"36146:521:12","statements":[{"assignments":[4303],"declarations":[{"constant":false,"id":4303,"mutability":"mutable","name":"length","nameLocation":"36164:6:12","nodeType":"VariableDeclaration","scope":4382,"src":"36156:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4302,"name":"uint256","nodeType":"ElementaryTypeName","src":"36156:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4306,"initialValue":{"expression":{"id":4304,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1652,"src":"36173:13:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1542_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":4305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"36187:6:12","memberName":"length","nodeType":"MemberAccess","src":"36173:20:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"36156:37:12"},{"expression":{"id":4313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4307,"name":"sellers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4293,"src":"36212:7:12","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4311,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4303,"src":"36236:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4310,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"36222:13:12","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_address_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (address[] memory)"},"typeName":{"baseType":{"id":4308,"name":"address","nodeType":"ElementaryTypeName","src":"36226:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4309,"nodeType":"ArrayTypeName","src":"36226:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}}},"id":4312,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36222:21:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"src":"36212:31:12","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":4314,"nodeType":"ExpressionStatement","src":"36212:31:12"},{"expression":{"id":4321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4315,"name":"stakeIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4296,"src":"36253:8:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4319,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4303,"src":"36278:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4318,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"36264:13:12","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint256[] memory)"},"typeName":{"baseType":{"id":4316,"name":"uint256","nodeType":"ElementaryTypeName","src":"36268:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4317,"nodeType":"ArrayTypeName","src":"36268:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":4320,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36264:21:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"src":"36253:32:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":4322,"nodeType":"ExpressionStatement","src":"36253:32:12"},{"expression":{"id":4330,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4323,"name":"sellStakeData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4300,"src":"36295:13:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStake_$1537_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.SellStake memory[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4328,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4303,"src":"36327:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4327,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"36311:15:12","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_SellStake_$1537_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct CunaFinanceBsc.SellStake memory[] memory)"},"typeName":{"baseType":{"id":4325,"nodeType":"UserDefinedTypeName","pathNode":{"id":4324,"name":"SellStake","nameLocations":["36315:9:12"],"nodeType":"IdentifierPath","referencedDeclaration":1537,"src":"36315:9:12"},"referencedDeclaration":1537,"src":"36315:9:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake"}},"id":4326,"nodeType":"ArrayTypeName","src":"36315:11:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStake_$1537_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake[]"}}},"id":4329,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36311:23:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStake_$1537_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.SellStake memory[] memory"}},"src":"36295:39:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStake_$1537_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.SellStake memory[] memory"}},"id":4331,"nodeType":"ExpressionStatement","src":"36295:39:12"},{"body":{"id":4375,"nodeType":"Block","src":"36390:211:12","statements":[{"assignments":[4344],"declarations":[{"constant":false,"id":4344,"mutability":"mutable","name":"key","nameLocation":"36424:3:12","nodeType":"VariableDeclaration","scope":4375,"src":"36404:23:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey"},"typeName":{"id":4343,"nodeType":"UserDefinedTypeName","pathNode":{"id":4342,"name":"SellStakeKey","nameLocations":["36404:12:12"],"nodeType":"IdentifierPath","referencedDeclaration":1542,"src":"36404:12:12"},"referencedDeclaration":1542,"src":"36404:12:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_storage_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey"}},"visibility":"internal"}],"id":4348,"initialValue":{"baseExpression":{"id":4345,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1652,"src":"36430:13:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1542_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":4347,"indexExpression":{"id":4346,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4333,"src":"36444:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"36430:16:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref"}},"nodeType":"VariableDeclarationStatement","src":"36404:42:12"},{"expression":{"id":4354,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4349,"name":"sellers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4293,"src":"36460:7:12","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":4351,"indexExpression":{"id":4350,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4333,"src":"36468:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"36460:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":4352,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4344,"src":"36473:3:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}},"id":4353,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"36477:6:12","memberName":"seller","nodeType":"MemberAccess","referencedDeclaration":1539,"src":"36473:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"36460:23:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4355,"nodeType":"ExpressionStatement","src":"36460:23:12"},{"expression":{"id":4361,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4356,"name":"stakeIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4296,"src":"36497:8:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":4358,"indexExpression":{"id":4357,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4333,"src":"36506:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"36497:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":4359,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4344,"src":"36511:3:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}},"id":4360,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"36515:7:12","memberName":"stakeId","nodeType":"MemberAccess","referencedDeclaration":1541,"src":"36511:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"36497:25:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4362,"nodeType":"ExpressionStatement","src":"36497:25:12"},{"expression":{"id":4373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4363,"name":"sellStakeData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4300,"src":"36536:13:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStake_$1537_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.SellStake memory[] memory"}},"id":4365,"indexExpression":{"id":4364,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4333,"src":"36550:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"36536:16:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_memory_ptr","typeString":"struct CunaFinanceBsc.SellStake memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"baseExpression":{"id":4366,"name":"sellStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1640,"src":"36555:10:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_SellStake_$1537_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref))"}},"id":4369,"indexExpression":{"expression":{"id":4367,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4344,"src":"36566:3:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}},"id":4368,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"36570:6:12","memberName":"seller","nodeType":"MemberAccess","referencedDeclaration":1539,"src":"36566:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"36555:22:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_SellStake_$1537_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref)"}},"id":4372,"indexExpression":{"expression":{"id":4370,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4344,"src":"36578:3:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1542_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}},"id":4371,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"36582:7:12","memberName":"stakeId","nodeType":"MemberAccess","referencedDeclaration":1541,"src":"36578:11:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"36555:35:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage","typeString":"struct CunaFinanceBsc.SellStake storage ref"}},"src":"36536:54:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_memory_ptr","typeString":"struct CunaFinanceBsc.SellStake memory"}},"id":4374,"nodeType":"ExpressionStatement","src":"36536:54:12"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4338,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4336,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4333,"src":"36373:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":4337,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4303,"src":"36377:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"36373:10:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4376,"initializationExpression":{"assignments":[4333],"declarations":[{"constant":false,"id":4333,"mutability":"mutable","name":"i","nameLocation":"36366:1:12","nodeType":"VariableDeclaration","scope":4376,"src":"36358:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4332,"name":"uint256","nodeType":"ElementaryTypeName","src":"36358:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4335,"initialValue":{"hexValue":"30","id":4334,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"36370:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"36358:13:12"},"loopExpression":{"expression":{"id":4340,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"36385:3:12","subExpression":{"id":4339,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4333,"src":"36385:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4341,"nodeType":"ExpressionStatement","src":"36385:3:12"},"nodeType":"ForStatement","src":"36353:248:12"},{"expression":{"components":[{"id":4377,"name":"sellers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4293,"src":"36627:7:12","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":4378,"name":"stakeIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4296,"src":"36636:8:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":4379,"name":"sellStakeData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4300,"src":"36646:13:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStake_$1537_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.SellStake memory[] memory"}}],"id":4380,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"36626:34:12","typeDescriptions":{"typeIdentifier":"t_tuple$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_struct$_SellStake_$1537_memory_ptr_$dyn_memory_ptr_$","typeString":"tuple(address[] memory,uint256[] memory,struct CunaFinanceBsc.SellStake memory[] memory)"}},"functionReturnParameters":4301,"id":4381,"nodeType":"Return","src":"36619:41:12"}]},"documentation":{"id":4289,"nodeType":"StructuredDocumentation","src":"35775:198:12","text":"@notice Get all active marketplace listings\n @return sellers Array of seller addresses\n @return stakeIds Array of stake IDs\n @return sellStakeData Array of SellStake structs"},"functionSelector":"62cd6a09","id":4383,"implemented":true,"kind":"function","modifiers":[],"name":"getAllSellStakes","nameLocation":"35987:16:12","nodeType":"FunctionDefinition","parameters":{"id":4290,"nodeType":"ParameterList","parameters":[],"src":"36003:2:12"},"returnParameters":{"id":4301,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4293,"mutability":"mutable","name":"sellers","nameLocation":"36055:7:12","nodeType":"VariableDeclaration","scope":4383,"src":"36038:24:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":4291,"name":"address","nodeType":"ElementaryTypeName","src":"36038:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4292,"nodeType":"ArrayTypeName","src":"36038:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":4296,"mutability":"mutable","name":"stakeIds","nameLocation":"36089:8:12","nodeType":"VariableDeclaration","scope":4383,"src":"36072:25:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4294,"name":"uint256","nodeType":"ElementaryTypeName","src":"36072:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4295,"nodeType":"ArrayTypeName","src":"36072:9:12","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":4300,"mutability":"mutable","name":"sellStakeData","nameLocation":"36126:13:12","nodeType":"VariableDeclaration","scope":4383,"src":"36107:32:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStake_$1537_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.SellStake[]"},"typeName":{"baseType":{"id":4298,"nodeType":"UserDefinedTypeName","pathNode":{"id":4297,"name":"SellStake","nameLocations":["36107:9:12"],"nodeType":"IdentifierPath","referencedDeclaration":1537,"src":"36107:9:12"},"referencedDeclaration":1537,"src":"36107:9:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake"}},"id":4299,"nodeType":"ArrayTypeName","src":"36107:11:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStake_$1537_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake[]"}},"visibility":"internal"}],"src":"36028:117:12"},"scope":4510,"src":"35978:689:12","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":4400,"nodeType":"Block","src":"36938:51:12","statements":[{"expression":{"baseExpression":{"baseExpression":{"id":4394,"name":"sellStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1640,"src":"36955:10:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_SellStake_$1537_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref))"}},"id":4396,"indexExpression":{"id":4395,"name":"seller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4386,"src":"36966:6:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"36955:18:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_SellStake_$1537_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref)"}},"id":4398,"indexExpression":{"id":4397,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4388,"src":"36974:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"36955:27:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage","typeString":"struct CunaFinanceBsc.SellStake storage ref"}},"functionReturnParameters":4393,"id":4399,"nodeType":"Return","src":"36948:34:12"}]},"documentation":{"id":4384,"nodeType":"StructuredDocumentation","src":"36677:160:12","text":"@notice Get a specific marketplace listing\n @param seller The seller address\n @param stakeId The stake ID\n @return The SellStake struct"},"functionSelector":"a0d46758","id":4401,"implemented":true,"kind":"function","modifiers":[],"name":"getSellStake","nameLocation":"36851:12:12","nodeType":"FunctionDefinition","parameters":{"id":4389,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4386,"mutability":"mutable","name":"seller","nameLocation":"36872:6:12","nodeType":"VariableDeclaration","scope":4401,"src":"36864:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4385,"name":"address","nodeType":"ElementaryTypeName","src":"36864:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4388,"mutability":"mutable","name":"stakeId","nameLocation":"36888:7:12","nodeType":"VariableDeclaration","scope":4401,"src":"36880:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4387,"name":"uint256","nodeType":"ElementaryTypeName","src":"36880:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"36863:33:12"},"returnParameters":{"id":4393,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4392,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4401,"src":"36920:16:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_memory_ptr","typeString":"struct CunaFinanceBsc.SellStake"},"typeName":{"id":4391,"nodeType":"UserDefinedTypeName","pathNode":{"id":4390,"name":"SellStake","nameLocations":["36920:9:12"],"nodeType":"IdentifierPath","referencedDeclaration":1537,"src":"36920:9:12"},"referencedDeclaration":1537,"src":"36920:9:12","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1537_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake"}},"visibility":"internal"}],"src":"36919:18:12"},"scope":4510,"src":"36842:147:12","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":4476,"nodeType":"Block","src":"37327:525:12","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4414,"name":"startIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4404,"src":"37345:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":4415,"name":"marketplaceHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"37358:18:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1555_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.MarketplaceHistory storage ref[] storage ref"}},"id":4416,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"37377:6:12","memberName":"length","nodeType":"MemberAccess","src":"37358:25:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"37345:38:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"537461727420696e646578206f7574206f6620626f756e6473","id":4418,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"37385:27:12","typeDescriptions":{"typeIdentifier":"t_stringliteral_e68aa2945d9d826fe10860e3b76417578773840626355af3554acc1da6ab249f","typeString":"literal_string \"Start index out of bounds\""},"value":"Start index out of bounds"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_e68aa2945d9d826fe10860e3b76417578773840626355af3554acc1da6ab249f","typeString":"literal_string \"Start index out of bounds\""}],"id":4413,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"37337:7:12","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4419,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37337:76:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4420,"nodeType":"ExpressionStatement","src":"37337:76:12"},{"assignments":[4422],"declarations":[{"constant":false,"id":4422,"mutability":"mutable","name":"endIndex","nameLocation":"37440:8:12","nodeType":"VariableDeclaration","scope":4476,"src":"37432:16:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4421,"name":"uint256","nodeType":"ElementaryTypeName","src":"37432:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4426,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4425,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4423,"name":"startIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4404,"src":"37451:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":4424,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4406,"src":"37464:6:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"37451:19:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"37432:38:12"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4430,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4427,"name":"endIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4422,"src":"37484:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":4428,"name":"marketplaceHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"37495:18:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1555_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.MarketplaceHistory storage ref[] storage ref"}},"id":4429,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"37514:6:12","memberName":"length","nodeType":"MemberAccess","src":"37495:25:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"37484:36:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4437,"nodeType":"IfStatement","src":"37480:103:12","trueBody":{"id":4436,"nodeType":"Block","src":"37522:61:12","statements":[{"expression":{"id":4434,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4431,"name":"endIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4422,"src":"37536:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":4432,"name":"marketplaceHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"37547:18:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1555_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.MarketplaceHistory storage ref[] storage ref"}},"id":4433,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"37566:6:12","memberName":"length","nodeType":"MemberAccess","src":"37547:25:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"37536:36:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4435,"nodeType":"ExpressionStatement","src":"37536:36:12"}]}},{"assignments":[4442],"declarations":[{"constant":false,"id":4442,"mutability":"mutable","name":"result","nameLocation":"37629:6:12","nodeType":"VariableDeclaration","scope":4476,"src":"37601:34:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1555_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory[]"},"typeName":{"baseType":{"id":4440,"nodeType":"UserDefinedTypeName","pathNode":{"id":4439,"name":"MarketplaceHistory","nameLocations":["37601:18:12"],"nodeType":"IdentifierPath","referencedDeclaration":1555,"src":"37601:18:12"},"referencedDeclaration":1555,"src":"37601:18:12","typeDescriptions":{"typeIdentifier":"t_struct$_MarketplaceHistory_$1555_storage_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory"}},"id":4441,"nodeType":"ArrayTypeName","src":"37601:20:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1555_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory[]"}},"visibility":"internal"}],"id":4451,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4449,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4447,"name":"endIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4422,"src":"37663:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":4448,"name":"startIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4404,"src":"37674:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"37663:21:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4446,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"37638:24:12","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_MarketplaceHistory_$1555_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct CunaFinanceBsc.MarketplaceHistory memory[] memory)"},"typeName":{"baseType":{"id":4444,"nodeType":"UserDefinedTypeName","pathNode":{"id":4443,"name":"MarketplaceHistory","nameLocations":["37642:18:12"],"nodeType":"IdentifierPath","referencedDeclaration":1555,"src":"37642:18:12"},"referencedDeclaration":1555,"src":"37642:18:12","typeDescriptions":{"typeIdentifier":"t_struct$_MarketplaceHistory_$1555_storage_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory"}},"id":4445,"nodeType":"ArrayTypeName","src":"37642:20:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1555_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory[]"}}},"id":4450,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37638:47:12","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1555_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"37601:84:12"},{"body":{"id":4472,"nodeType":"Block","src":"37743:71:12","statements":[{"expression":{"id":4470,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4462,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4442,"src":"37757:6:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1555_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory memory[] memory"}},"id":4466,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4465,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4463,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4453,"src":"37764:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":4464,"name":"startIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4404,"src":"37768:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"37764:14:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"37757:22:12","typeDescriptions":{"typeIdentifier":"t_struct$_MarketplaceHistory_$1555_memory_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":4467,"name":"marketplaceHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"37782:18:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1555_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.MarketplaceHistory storage ref[] storage ref"}},"id":4469,"indexExpression":{"id":4468,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4453,"src":"37801:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"37782:21:12","typeDescriptions":{"typeIdentifier":"t_struct$_MarketplaceHistory_$1555_storage","typeString":"struct CunaFinanceBsc.MarketplaceHistory storage ref"}},"src":"37757:46:12","typeDescriptions":{"typeIdentifier":"t_struct$_MarketplaceHistory_$1555_memory_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory memory"}},"id":4471,"nodeType":"ExpressionStatement","src":"37757:46:12"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4458,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4456,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4453,"src":"37724:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":4457,"name":"endIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4422,"src":"37728:8:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"37724:12:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4473,"initializationExpression":{"assignments":[4453],"declarations":[{"constant":false,"id":4453,"mutability":"mutable","name":"i","nameLocation":"37708:1:12","nodeType":"VariableDeclaration","scope":4473,"src":"37700:9:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4452,"name":"uint256","nodeType":"ElementaryTypeName","src":"37700:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4455,"initialValue":{"id":4454,"name":"startIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4404,"src":"37712:10:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"37700:22:12"},"loopExpression":{"expression":{"id":4460,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"37738:3:12","subExpression":{"id":4459,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4453,"src":"37738:1:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4461,"nodeType":"ExpressionStatement","src":"37738:3:12"},"nodeType":"ForStatement","src":"37695:119:12"},{"expression":{"id":4474,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4442,"src":"37839:6:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1555_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory memory[] memory"}},"functionReturnParameters":4412,"id":4475,"nodeType":"Return","src":"37832:13:12"}]},"documentation":{"id":4402,"nodeType":"StructuredDocumentation","src":"36999:195:12","text":"@notice Get marketplace history\n @param startIndex Starting index in history array\n @param length Number of entries to return\n @return Array of MarketplaceHistory structs"},"functionSelector":"cfcf3319","id":4477,"implemented":true,"kind":"function","modifiers":[],"name":"getMarketplaceHistory","nameLocation":"37208:21:12","nodeType":"FunctionDefinition","parameters":{"id":4407,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4404,"mutability":"mutable","name":"startIndex","nameLocation":"37238:10:12","nodeType":"VariableDeclaration","scope":4477,"src":"37230:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4403,"name":"uint256","nodeType":"ElementaryTypeName","src":"37230:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4406,"mutability":"mutable","name":"length","nameLocation":"37258:6:12","nodeType":"VariableDeclaration","scope":4477,"src":"37250:14:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4405,"name":"uint256","nodeType":"ElementaryTypeName","src":"37250:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"37229:36:12"},"returnParameters":{"id":4412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4411,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4477,"src":"37298:27:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1555_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory[]"},"typeName":{"baseType":{"id":4409,"nodeType":"UserDefinedTypeName","pathNode":{"id":4408,"name":"MarketplaceHistory","nameLocations":["37298:18:12"],"nodeType":"IdentifierPath","referencedDeclaration":1555,"src":"37298:18:12"},"referencedDeclaration":1555,"src":"37298:18:12","typeDescriptions":{"typeIdentifier":"t_struct$_MarketplaceHistory_$1555_storage_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory"}},"id":4410,"nodeType":"ArrayTypeName","src":"37298:20:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1555_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory[]"}},"visibility":"internal"}],"src":"37297:29:12"},"scope":4510,"src":"37199:653:12","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":4486,"nodeType":"Block","src":"38041:49:12","statements":[{"expression":{"expression":{"id":4483,"name":"marketplaceHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1662,"src":"38058:18:12","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1555_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.MarketplaceHistory storage ref[] storage ref"}},"id":4484,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"38077:6:12","memberName":"length","nodeType":"MemberAccess","src":"38058:25:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4482,"id":4485,"nodeType":"Return","src":"38051:32:12"}]},"documentation":{"id":4478,"nodeType":"StructuredDocumentation","src":"37862:104:12","text":"@notice Get total marketplace history count\n @return Total number of marketplace transactions"},"functionSelector":"61d1080b","id":4487,"implemented":true,"kind":"function","modifiers":[],"name":"getMarketplaceHistoryCount","nameLocation":"37980:26:12","nodeType":"FunctionDefinition","parameters":{"id":4479,"nodeType":"ParameterList","parameters":[],"src":"38006:2:12"},"returnParameters":{"id":4482,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4481,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4487,"src":"38032:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4480,"name":"uint256","nodeType":"ElementaryTypeName","src":"38032:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"38031:9:12"},"scope":4510,"src":"37971:119:12","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":4499,"nodeType":"Block","src":"38315:47:12","statements":[{"expression":{"baseExpression":{"id":4495,"name":"marketplace_sales","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1648,"src":"38332:17:12","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4497,"indexExpression":{"id":4496,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4490,"src":"38350:4:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"38332:23:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4494,"id":4498,"nodeType":"Return","src":"38325:30:12"}]},"documentation":{"id":4488,"nodeType":"StructuredDocumentation","src":"38100:131:12","text":"@notice Get user's total marketplace sales\n @param user The user address\n @return Total sales amount for the user"},"functionSelector":"7e6d9926","id":4500,"implemented":true,"kind":"function","modifiers":[],"name":"getUserMarketplaceSales","nameLocation":"38245:23:12","nodeType":"FunctionDefinition","parameters":{"id":4491,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4490,"mutability":"mutable","name":"user","nameLocation":"38277:4:12","nodeType":"VariableDeclaration","scope":4500,"src":"38269:12:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4489,"name":"address","nodeType":"ElementaryTypeName","src":"38269:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"38268:14:12"},"returnParameters":{"id":4494,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4493,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4500,"src":"38306:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4492,"name":"uint256","nodeType":"ElementaryTypeName","src":"38306:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"38305:9:12"},"scope":4510,"src":"38236:126:12","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":4508,"nodeType":"Block","src":"38552:85:12","statements":[{"expression":{"hexValue":"393939","id":4506,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"38569:3:12","typeDescriptions":{"typeIdentifier":"t_rational_999_by_1","typeString":"int_const 999"},"value":"999"},"functionReturnParameters":4505,"id":4507,"nodeType":"Return","src":"38562:10:12"}]},"documentation":{"id":4501,"nodeType":"StructuredDocumentation","src":"38368:116:12","text":"@notice Test function for upgrade verification\n @return Returns a constant value to verify upgrade worked"},"functionSelector":"c2676603","id":4509,"implemented":true,"kind":"function","modifiers":[],"name":"testUpgradeFunction","nameLocation":"38498:19:12","nodeType":"FunctionDefinition","parameters":{"id":4502,"nodeType":"ParameterList","parameters":[],"src":"38517:2:12"},"returnParameters":{"id":4505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4504,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4509,"src":"38543:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4503,"name":"uint256","nodeType":"ElementaryTypeName","src":"38543:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"38542:9:12"},"scope":4510,"src":"38489:148:12","stateMutability":"pure","virtual":false,"visibility":"external"}],"scope":4511,"src":"414:38226:12","usedErrors":[893,1389],"usedEvents":[1670,1678,1684,1688,1696,1706,1712,1718,1726,1734,1740,1750,1758]}],"src":"32:38608:12"},"id":12},"contracts/mocks/MockERC20.sol":{"ast":{"absolutePath":"contracts/mocks/MockERC20.sol","exportedSymbols":{"Context":[1375],"ERC20":[741],"IERC20":[819],"IERC20Errors":[131],"IERC20Metadata":[845],"MockERC20":[4549]},"id":4550,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4512,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"32:24:13"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"@openzeppelin/contracts/token/ERC20/ERC20.sol","id":4513,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4550,"sourceUnit":742,"src":"58:55:13","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":4514,"name":"ERC20","nameLocations":["137:5:13"],"nodeType":"IdentifierPath","referencedDeclaration":741,"src":"137:5:13"},"id":4515,"nodeType":"InheritanceSpecifier","src":"137:5:13"}],"canonicalName":"MockERC20","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":4549,"linearizedBaseContracts":[4549,741,131,845,819,1375],"name":"MockERC20","nameLocation":"124:9:13","nodeType":"ContractDefinition","nodes":[{"body":{"id":4534,"nodeType":"Block","src":"276:49:13","statements":[{"expression":{"arguments":[{"expression":{"id":4529,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"292:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4530,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"296:6:13","memberName":"sender","nodeType":"MemberAccess","src":"292:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4531,"name":"initialSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4521,"src":"304:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4528,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":581,"src":"286:5:13","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":4532,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"286:32:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4533,"nodeType":"ExpressionStatement","src":"286:32:13"}]},"id":4535,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":4524,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4517,"src":"262:4:13","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":4525,"name":"symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4519,"src":"268:6:13","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":4526,"kind":"baseConstructorSpecifier","modifierName":{"id":4523,"name":"ERC20","nameLocations":["256:5:13"],"nodeType":"IdentifierPath","referencedDeclaration":741,"src":"256:5:13"},"nodeType":"ModifierInvocation","src":"256:19:13"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":4522,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4517,"mutability":"mutable","name":"name","nameLocation":"184:4:13","nodeType":"VariableDeclaration","scope":4535,"src":"170:18:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4516,"name":"string","nodeType":"ElementaryTypeName","src":"170:6:13","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":4519,"mutability":"mutable","name":"symbol","nameLocation":"212:6:13","nodeType":"VariableDeclaration","scope":4535,"src":"198:20:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4518,"name":"string","nodeType":"ElementaryTypeName","src":"198:6:13","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":4521,"mutability":"mutable","name":"initialSupply","nameLocation":"236:13:13","nodeType":"VariableDeclaration","scope":4535,"src":"228:21:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4520,"name":"uint256","nodeType":"ElementaryTypeName","src":"228:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"160:95:13"},"returnParameters":{"id":4527,"nodeType":"ParameterList","parameters":[],"src":"276:0:13"},"scope":4549,"src":"149:176:13","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":4547,"nodeType":"Block","src":"386:34:13","statements":[{"expression":{"arguments":[{"id":4543,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4537,"src":"402:2:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4544,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4539,"src":"406:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4542,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":581,"src":"396:5:13","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":4545,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"396:17:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4546,"nodeType":"ExpressionStatement","src":"396:17:13"}]},"functionSelector":"40c10f19","id":4548,"implemented":true,"kind":"function","modifiers":[],"name":"mint","nameLocation":"344:4:13","nodeType":"FunctionDefinition","parameters":{"id":4540,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4537,"mutability":"mutable","name":"to","nameLocation":"357:2:13","nodeType":"VariableDeclaration","scope":4548,"src":"349:10:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4536,"name":"address","nodeType":"ElementaryTypeName","src":"349:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4539,"mutability":"mutable","name":"amount","nameLocation":"369:6:13","nodeType":"VariableDeclaration","scope":4548,"src":"361:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4538,"name":"uint256","nodeType":"ElementaryTypeName","src":"361:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"348:28:13"},"returnParameters":{"id":4541,"nodeType":"ParameterList","parameters":[],"src":"386:0:13"},"scope":4549,"src":"335:85:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":4550,"src":"115:307:13","usedErrors":[101,106,111,120,125,130],"usedEvents":[753,762]}],"src":"32:390:13"},"id":13},"contracts/mocks/MockPriceOracle.sol":{"ast":{"absolutePath":"contracts/mocks/MockPriceOracle.sol","exportedSymbols":{"MockPriceOracle":[4604]},"id":4605,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4551,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"32:24:14"},{"abstract":false,"baseContracts":[],"canonicalName":"MockPriceOracle","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":4604,"linearizedBaseContracts":[4604],"name":"MockPriceOracle","nameLocation":"67:15:14","nodeType":"ContractDefinition","nodes":[{"constant":false,"functionSelector":"cfed246b","id":4555,"mutability":"mutable","name":"prices","nameLocation":"124:6:14","nodeType":"VariableDeclaration","scope":4604,"src":"89:41:14","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":4554,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":4552,"name":"address","nodeType":"ElementaryTypeName","src":"97:7:14","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"89:27:14","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":4553,"name":"uint256","nodeType":"ElementaryTypeName","src":"108:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"public"},{"constant":false,"id":4558,"mutability":"mutable","name":"defaultPrice","nameLocation":"152:12:14","nodeType":"VariableDeclaration","scope":4604,"src":"136:35:14","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4556,"name":"uint256","nodeType":"ElementaryTypeName","src":"136:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31653138","id":4557,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"167:4:14","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"visibility":"private"},{"body":{"id":4571,"nodeType":"Block","src":"262:38:14","statements":[{"expression":{"id":4569,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4565,"name":"prices","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4555,"src":"272:6:14","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4567,"indexExpression":{"id":4566,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4560,"src":"279:5:14","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"272:13:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4568,"name":"price","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4562,"src":"288:5:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"272:21:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4570,"nodeType":"ExpressionStatement","src":"272:21:14"}]},"functionSelector":"00e4768b","id":4572,"implemented":true,"kind":"function","modifiers":[],"name":"setPrice","nameLocation":"214:8:14","nodeType":"FunctionDefinition","parameters":{"id":4563,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4560,"mutability":"mutable","name":"token","nameLocation":"231:5:14","nodeType":"VariableDeclaration","scope":4572,"src":"223:13:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4559,"name":"address","nodeType":"ElementaryTypeName","src":"223:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4562,"mutability":"mutable","name":"price","nameLocation":"246:5:14","nodeType":"VariableDeclaration","scope":4572,"src":"238:13:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4561,"name":"uint256","nodeType":"ElementaryTypeName","src":"238:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"222:30:14"},"returnParameters":{"id":4564,"nodeType":"ParameterList","parameters":[],"src":"262:0:14"},"scope":4604,"src":"205:95:14","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":4592,"nodeType":"Block","src":"381:96:14","statements":[{"assignments":[4580],"declarations":[{"constant":false,"id":4580,"mutability":"mutable","name":"price","nameLocation":"399:5:14","nodeType":"VariableDeclaration","scope":4592,"src":"391:13:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4579,"name":"uint256","nodeType":"ElementaryTypeName","src":"391:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4584,"initialValue":{"baseExpression":{"id":4581,"name":"prices","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4555,"src":"407:6:14","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4583,"indexExpression":{"id":4582,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4574,"src":"414:5:14","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"407:13:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"391:29:14"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4587,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4585,"name":"price","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4580,"src":"437:5:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":4586,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"446:1:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"437:10:14","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":4589,"name":"price","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4580,"src":"465:5:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"437:33:14","trueExpression":{"id":4588,"name":"defaultPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4558,"src":"450:12:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4578,"id":4591,"nodeType":"Return","src":"430:40:14"}]},"functionSelector":"16345f18","id":4593,"implemented":true,"kind":"function","modifiers":[],"name":"getLatestPrice","nameLocation":"319:14:14","nodeType":"FunctionDefinition","parameters":{"id":4575,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4574,"mutability":"mutable","name":"token","nameLocation":"342:5:14","nodeType":"VariableDeclaration","scope":4593,"src":"334:13:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4573,"name":"address","nodeType":"ElementaryTypeName","src":"334:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"333:15:14"},"returnParameters":{"id":4578,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4577,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4593,"src":"372:7:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4576,"name":"uint256","nodeType":"ElementaryTypeName","src":"372:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"371:9:14"},"scope":4604,"src":"310:167:14","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":4602,"nodeType":"Block","src":"536:37:14","statements":[{"expression":{"id":4600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4598,"name":"defaultPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4558,"src":"546:12:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4599,"name":"price","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4595,"src":"561:5:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"546:20:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4601,"nodeType":"ExpressionStatement","src":"546:20:14"}]},"functionSelector":"6d3c7ec5","id":4603,"implemented":true,"kind":"function","modifiers":[],"name":"setDefaultPrice","nameLocation":"496:15:14","nodeType":"FunctionDefinition","parameters":{"id":4596,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4595,"mutability":"mutable","name":"price","nameLocation":"520:5:14","nodeType":"VariableDeclaration","scope":4603,"src":"512:13:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4594,"name":"uint256","nodeType":"ElementaryTypeName","src":"512:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"511:15:14"},"returnParameters":{"id":4597,"nodeType":"ParameterList","parameters":[],"src":"536:0:14"},"scope":4604,"src":"487:86:14","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":4605,"src":"58:517:14","usedErrors":[],"usedEvents":[]}],"src":"32:543:14"},"id":14}},"contracts":{"@openzeppelin/contracts/interfaces/IERC1363.sol":{"IERC1363":{"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"approveAndCall","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferAndCall","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":"value","type":"uint256"}],"name":"transferFrom","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":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferFromAndCall","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":"value","type":"uint256"}],"name":"transferFromAndCall","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","approveAndCall(address,uint256)":"3177029f","approveAndCall(address,uint256,bytes)":"cae9ca51","balanceOf(address)":"70a08231","supportsInterface(bytes4)":"01ffc9a7","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferAndCall(address,uint256)":"1296ee62","transferAndCall(address,uint256,bytes)":"4000aea0","transferFrom(address,address,uint256)":"23b872dd","transferFromAndCall(address,address,uint256)":"d8fbe994","transferFromAndCall(address,address,uint256,bytes)":"c1d34b89"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approveAndCall\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"approveAndCall\",\"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\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferAndCall\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"transferAndCall\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"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\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"transferFromAndCall\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFromAndCall\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363]. Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction.\",\"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 a `value` amount of tokens 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.\"},\"approveAndCall(address,uint256)\":{\"details\":\"Sets a `value` amount of tokens as the allowance of `spender` over the caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\",\"params\":{\"spender\":\"The address which will spend the funds.\",\"value\":\"The amount of tokens to be spent.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}},\"approveAndCall(address,uint256,bytes)\":{\"details\":\"Sets a `value` amount of tokens as the allowance of `spender` over the caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\",\"params\":{\"data\":\"Additional data with no specified format, sent in call to `spender`.\",\"spender\":\"The address which will spend the funds.\",\"value\":\"The amount of tokens to be spent.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferAndCall(address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from the caller's account to `to` and then calls {IERC1363Receiver-onTransferReceived} on `to`.\",\"params\":{\"to\":\"The address which you want to transfer to.\",\"value\":\"The amount of tokens to be transferred.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}},\"transferAndCall(address,uint256,bytes)\":{\"details\":\"Moves a `value` amount of tokens from the caller's account to `to` and then calls {IERC1363Receiver-onTransferReceived} on `to`.\",\"params\":{\"data\":\"Additional data with no specified format, sent in call to `to`.\",\"to\":\"The address which you want to transfer to.\",\"value\":\"The amount of tokens to be transferred.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism. `value` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFromAndCall(address,address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism and then calls {IERC1363Receiver-onTransferReceived} on `to`.\",\"params\":{\"from\":\"The address which you want to send tokens from.\",\"to\":\"The address which you want to transfer to.\",\"value\":\"The amount of tokens to be transferred.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}},\"transferFromAndCall(address,address,uint256,bytes)\":{\"details\":\"Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism and then calls {IERC1363Receiver-onTransferReceived} on `to`.\",\"params\":{\"data\":\"Additional data with no specified format, sent in call to `to`.\",\"from\":\"The address which you want to send tokens from.\",\"to\":\"The address which you want to transfer to.\",\"value\":\"The amount of tokens to be transferred.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}}},\"title\":\"IERC1363\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/IERC1363.sol\":\"IERC1363\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"version\":1}"}},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"IERC1155Errors":{"abi":[{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC1155InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC1155InvalidApprover","type":"error"},{"inputs":[{"internalType":"uint256","name":"idsLength","type":"uint256"},{"internalType":"uint256","name":"valuesLength","type":"uint256"}],"name":"ERC1155InvalidArrayLength","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC1155InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC1155InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC1155InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC1155MissingApprovalForAll","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC1155InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"idsLength\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"valuesLength\",\"type\":\"uint256\"}],\"name\":\"ERC1155InvalidArrayLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidOperator\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC1155MissingApprovalForAll\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC-1155 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.\",\"errors\":{\"ERC1155InsufficientBalance(address,uint256,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC1155InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC1155InvalidArrayLength(uint256,uint256)\":[{\"details\":\"Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. Used in batch transfers.\",\"params\":{\"idsLength\":\"Length of the array of token identifiers\",\"valuesLength\":\"Length of the array of token amounts\"}}],\"ERC1155InvalidOperator(address)\":[{\"details\":\"Indicates a failure with the `operator` to be approved. Used in approvals.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC1155InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC1155InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC1155MissingApprovalForAll(address,address)\":[{\"details\":\"Indicates a failure with the `operator`\\u2019s approval. Used in transfers.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\",\"owner\":\"Address of the current owner of a token.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC1155Errors\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x19fdfb0f3b89a230e7dbd1cf416f1a6b531a3ee5db4da483f946320fc74afc0e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3490d794728f5bfecb46820431adaff71ba374141545ec20b650bb60353fac23\",\"dweb:/ipfs/QmPsfxjVpMcZbpE7BH93DzTpEaktESigEw4SmDzkXuJ4WR\"]}},\"version\":1}"},"IERC20Errors":{"abi":[{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC-20 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.\",\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC20Errors\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x19fdfb0f3b89a230e7dbd1cf416f1a6b531a3ee5db4da483f946320fc74afc0e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3490d794728f5bfecb46820431adaff71ba374141545ec20b650bb60353fac23\",\"dweb:/ipfs/QmPsfxjVpMcZbpE7BH93DzTpEaktESigEw4SmDzkXuJ4WR\"]}},\"version\":1}"},"IERC721Errors":{"abi":[{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC721IncorrectOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC721InsufficientApproval\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC721InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"ERC721InvalidOperator\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC721InvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC721InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC721InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC721NonexistentToken\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC-721 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.\",\"errors\":{\"ERC721IncorrectOwner(address,uint256,address)\":[{\"details\":\"Indicates an error related to the ownership over a particular token. Used in transfers.\",\"params\":{\"owner\":\"Address of the current owner of a token.\",\"sender\":\"Address whose tokens are being transferred.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC721InsufficientApproval(address,uint256)\":[{\"details\":\"Indicates a failure with the `operator`\\u2019s approval. Used in transfers.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC721InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC721InvalidOperator(address)\":[{\"details\":\"Indicates a failure with the `operator` to be approved. Used in approvals.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC721InvalidOwner(address)\":[{\"details\":\"Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. Used in balance queries.\",\"params\":{\"owner\":\"Address of the current owner of a token.\"}}],\"ERC721InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC721InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC721NonexistentToken(uint256)\":[{\"details\":\"Indicates a `tokenId` whose `owner` is the zero address.\",\"params\":{\"tokenId\":\"Identifier number of a token.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC721Errors\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x19fdfb0f3b89a230e7dbd1cf416f1a6b531a3ee5db4da483f946320fc74afc0e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3490d794728f5bfecb46820431adaff71ba374141545ec20b650bb60353fac23\",\"dweb:/ipfs/QmPsfxjVpMcZbpE7BH93DzTpEaktESigEw4SmDzkXuJ4WR\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"ERC20":{"abi":[{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"value","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":"value","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":"value","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.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"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\":\"value\",\"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\":\"value\",\"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\":\"value\",\"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}. 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]. The default value of {decimals} is 18. To change this, you should override this function so it returns a different value. 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 ERC-20 applications.\",\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}]},\"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\":\"See {IERC20-approve}. NOTE: If `value` 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\":\"Returns the value of tokens owned by `account`.\"},\"constructor\":{\"details\":\"Sets the values for {name} and {symbol}. Both 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 default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"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\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. 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 `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":\"ERC20\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x19fdfb0f3b89a230e7dbd1cf416f1a6b531a3ee5db4da483f946320fc74afc0e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3490d794728f5bfecb46820431adaff71ba374141545ec20b650bb60353fac23\",\"dweb:/ipfs/QmPsfxjVpMcZbpE7BH93DzTpEaktESigEw4SmDzkXuJ4WR\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x86b7b71a6aedefdad89b607378eeab1dcc5389b9ea7d17346d08af01d7190994\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1dc2db8d94a21eac8efe03adf574c419b08536409b416057a2b5b95cb772c43c\",\"dweb:/ipfs/QmZfqJCKVU1ScuX2A7s8WZdQEaikwJbDH5JBrBdKTUT4Gu\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"IERC20":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"value","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":"value","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.20+commit.a1b79de6\"},\"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\":\"value\",\"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\":\"value\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-20 standard as defined in the ERC.\",\"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 a `value` amount of tokens 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 value of tokens owned by `account`.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves a `value` amount of 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 a `value` amount of tokens from `from` to `to` using the allowance mechanism. `value` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":\"IERC20\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"IERC20Metadata":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"value","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":"value","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.20+commit.a1b79de6\"},\"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\":\"value\",\"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\":\"value\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for the optional metadata functions from the ERC-20 standard.\",\"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 a `value` amount of tokens 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 value 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 value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves a `value` amount of 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 a `value` amount of tokens from `from` to `to` using the allowance mechanism. `value` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":\"IERC20Metadata\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol":{"IERC20Permit":{"abi":[{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"DOMAIN_SEPARATOR()":"3644e515","nonces(address)":"7ecebe00","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in https://eips.ethereum.org/EIPS/eip-2612[ERC-2612]. Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't need to send a transaction, and thus is not required to hold Ether at all. ==== Security Considerations There are two important considerations concerning the use of `permit`. The first is that a valid permit signature expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be considered as an intention to spend the allowance in any specific way. The second is that because permits have built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be generally recommended is: ```solidity function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} doThing(..., value); } function doThing(..., uint256 value) public { token.safeTransferFrom(msg.sender, address(this), value); ... } ``` Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also {SafeERC20-safeTransferFrom}). Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so contracts should have entry points that don't rely on permit.\",\"kind\":\"dev\",\"methods\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\"},\"nonces(address)\":{\"details\":\"Returns the current nonce for `owner`. This value must be included whenever a signature is generated for {permit}. Every successful call to {permit} increases ``owner``'s nonce by one. This prevents a signature from being used multiple times.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Sets `value` as the allowance of `spender` over ``owner``'s tokens, given ``owner``'s signed approval. IMPORTANT: The same issues {IERC20-approve} has related to transaction ordering also apply here. Emits an {Approval} event. Requirements: - `spender` cannot be the zero address. - `deadline` must be a timestamp in the future. - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` over the EIP712-formatted function arguments. - the signature must use ``owner``'s current nonce (see {nonces}). For more information on the signature format, see the https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP section]. CAUTION: See Security Considerations above.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":\"IERC20Permit\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x2fa0657dd7b8bc75475a47f64bc04a9adb42236b15d65e6781594ea69a46c3e4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7496f42681aed94bf0142a077324e50b86046610c1724e7c12e96cf1c365914a\",\"dweb:/ipfs/QmZvhNdSAAbN4PKPdheAqwpXukUiXp3Q3TdQccDMg2NDTV\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol":{"SafeERC20":{"abi":[{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"currentAllowance","type":"uint256"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"SafeERC20FailedDecreaseAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122087d2304e86c07eccd4f9f39f79c28cf8db16e46e5d8ee645e6e8b23c0c5e7a7e64736f6c63430008140033","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 DUP8 0xD2 ADDRESS 0x4E DUP7 0xC0 PUSH31 0xCCD4F9F39F79C28CF8DB16E46E5D8EE645E6E8B23C0C5E7A7E64736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"698:9376:8:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;698:9376:8;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122087d2304e86c07eccd4f9f39f79c28cf8db16e46e5d8ee645e6e8b23c0c5e7a7e64736f6c63430008140033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP8 0xD2 ADDRESS 0x4E DUP7 0xC0 PUSH31 0xCCD4F9F39F79C28CF8DB16E46E5D8EE645E6E8B23C0C5E7A7E64736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"698:9376:8:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentAllowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"requestedDecrease\",\"type\":\"uint256\"}],\"name\":\"SafeERC20FailedDecreaseAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Wrappers around ERC-20 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.\",\"errors\":{\"SafeERC20FailedDecreaseAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failed `decreaseAllowance` request.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}]},\"kind\":\"dev\",\"methods\":{},\"title\":\"SafeERC20\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":\"SafeERC20\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x982c5cb790ab941d1e04f807120a71709d4c313ba0bfc16006447ffbd27fbbd5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8150ceb4ac947e8a442b2a9c017e01e880b2be2dd958f1fa9bc405f4c5a86508\",\"dweb:/ipfs/QmbcBmFX66AY6Kbhnd5gx7zpkgqnUafo43XnmayAM7zVdB\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/Context.sol":{"Context":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Context.sol\":\"Context\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/ReentrancyGuard.sol":{"ReentrancyGuard":{"abi":[{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"ReentrancyGuardReentrantCall\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Contract module that helps prevent reentrant calls to a function. Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier available, which can be applied to functions to make sure there are no nested (reentrant) calls to them. Note that because there is a single `nonReentrant` guard, functions marked as `nonReentrant` may not call one another. This can be worked around by making those functions `private`, and then adding `external` `nonReentrant` entry points to them. TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at, consider using {ReentrancyGuardTransient} instead. TIP: If you would like to learn more about reentrancy and alternative ways to protect against it, check out our blog post https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\",\"errors\":{\"ReentrancyGuardReentrantCall()\":[{\"details\":\"Unauthorized reentrant call.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/ReentrancyGuard.sol\":\"ReentrancyGuard\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/ReentrancyGuard.sol\":{\"keccak256\":\"0x11a5a79827df29e915a12740caf62fe21ebe27c08c9ae3e09abe9ee3ba3866d3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3cf0c69ab827e3251db9ee6a50647d62c90ba580a4d7bbff21f2bea39e7b2f4a\",\"dweb:/ipfs/QmZiKwtKU1SBX4RGfQtY7PZfiapbbu6SZ9vizGQD9UHjRA\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"IERC165":{"abi":[{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-165 standard, as defined in the https://eips.ethereum.org/EIPS/eip-165[ERC]. Implementers can declare support of contract interfaces, which can then be queried by others ({ERC165Checker}). For an implementation, see {ERC165}.\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":\"IERC165\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"version\":1}"}},"contracts/CunaFinanceBsc.sol":{"CunaFinanceBsc":{"abi":[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"bonus","type":"uint256"}],"name":"BonusClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"seller","type":"address"},{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"stakeId","type":"uint256"}],"name":"CancellationFeePaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"epochId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"treasuryTvl","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"unlockPercentage","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"paybackPercent","type":"uint256"}],"name":"EpochEnded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FundsClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FundsWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"StakeCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"seller","type":"address"},{"indexed":false,"internalType":"uint256","name":"stakeId","type":"uint256"}],"name":"StakeSaleCancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"seller","type":"address"},{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"saleAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"stakeId","type":"uint256"}],"name":"StakeSold","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"seller","type":"address"},{"indexed":false,"internalType":"uint256","name":"saleAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"stakeId","type":"uint256"}],"name":"StakeUpForSale","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"stakeId","type":"uint256"}],"name":"StakeWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"}],"name":"UnlockScheduleSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bonus","type":"uint256"}],"name":"VestingClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bonus","type":"uint256"}],"name":"VestingCreated","type":"event"},{"inputs":[{"internalType":"address","name":"bot","type":"address"}],"name":"addBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"addOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"authorizedBots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"batchCreateUserStakes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"seller","type":"address"},{"internalType":"uint256","name":"stakeId","type":"uint256"}],"name":"buySellStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"calculateUnclaimedFunds","outputs":[{"internalType":"uint256","name":"totalUnclaimed","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"stakeId","type":"uint256"}],"name":"cancelSellStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cancellationFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimUnlockedFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"clearVesting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"createUserStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"bonus","type":"uint256"},{"internalType":"uint256","name":"lockedUntil","type":"uint256"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"usdAmount","type":"uint256"},{"internalType":"uint256","name":"lastClaimed","type":"uint256"},{"internalType":"uint256","name":"createdAt","type":"uint256"}],"name":"createVesting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"bonus","type":"uint256"},{"internalType":"uint256","name":"lockedUntil","type":"uint256"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"usdAmount","type":"uint256"}],"name":"createVesting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentEpochId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"dollarsVested","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"estDaysRemaining","type":"uint256"},{"internalType":"uint256","name":"currentTreasuryTvl","type":"uint256"},{"internalType":"uint256","name":"_paybackPercent","type":"uint256"}],"name":"endEpoch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"epochs","outputs":[{"internalType":"uint256","name":"estDaysRemaining","type":"uint256"},{"internalType":"uint256","name":"currentTreasuryTvl","type":"uint256"},{"internalType":"uint256","name":"totalLiability","type":"uint256"},{"internalType":"uint256","name":"unlockPercentage","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllSellStakes","outputs":[{"internalType":"address[]","name":"sellers","type":"address[]"},{"internalType":"uint256[]","name":"stakeIds","type":"uint256[]"},{"components":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"},{"internalType":"address","name":"seller","type":"address"},{"internalType":"uint256","name":"listTime","type":"uint256"}],"internalType":"struct CunaFinanceBsc.SellStake[]","name":"sellStakeData","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getAllWithdrawStakes","outputs":[{"components":[{"internalType":"uint256","name":"stakeId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"unlockTime","type":"uint256"}],"internalType":"struct CunaFinanceBsc.WithdrawStake[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getAllWithdrawVestings","outputs":[{"components":[{"internalType":"uint256","name":"vestingId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"unlockTime","type":"uint256"},{"internalType":"address","name":"token","type":"address"}],"internalType":"struct CunaFinanceBsc.WithdrawVesting[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"epochId","type":"uint256"}],"name":"getEpoch","outputs":[{"components":[{"internalType":"uint256","name":"estDaysRemaining","type":"uint256"},{"internalType":"uint256","name":"currentTreasuryTvl","type":"uint256"},{"internalType":"uint256","name":"totalLiability","type":"uint256"},{"internalType":"uint256","name":"unlockPercentage","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"internalType":"struct CunaFinanceBsc.Epoch","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"startId","type":"uint256"},{"internalType":"uint256","name":"endId","type":"uint256"}],"name":"getEpochs","outputs":[{"components":[{"internalType":"uint256","name":"estDaysRemaining","type":"uint256"},{"internalType":"uint256","name":"currentTreasuryTvl","type":"uint256"},{"internalType":"uint256","name":"totalLiability","type":"uint256"},{"internalType":"uint256","name":"unlockPercentage","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"internalType":"struct CunaFinanceBsc.Epoch[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"startIndex","type":"uint256"},{"internalType":"uint256","name":"length","type":"uint256"}],"name":"getMarketplaceHistory","outputs":[{"components":[{"internalType":"uint256","name":"listTime","type":"uint256"},{"internalType":"uint256","name":"saleTime","type":"uint256"},{"internalType":"uint256","name":"origValue","type":"uint256"},{"internalType":"uint256","name":"saleValue","type":"uint256"},{"internalType":"address","name":"seller","type":"address"},{"internalType":"address","name":"buyer","type":"address"}],"internalType":"struct CunaFinanceBsc.MarketplaceHistory[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMarketplaceHistoryCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNetStake","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"seller","type":"address"},{"internalType":"uint256","name":"stakeId","type":"uint256"}],"name":"getSellStake","outputs":[{"components":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"},{"internalType":"address","name":"seller","type":"address"},{"internalType":"uint256","name":"listTime","type":"uint256"}],"internalType":"struct CunaFinanceBsc.SellStake","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getUnclaimedFundsBreakdown","outputs":[{"internalType":"uint256[]","name":"epochIds","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"uint256","name":"totalUnclaimed","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_vestingIndex","type":"uint256"}],"name":"getUnlockedVesting","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_vestingIndex","type":"uint256"}],"name":"getUnlockedVestingBonus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getUserMarketplaceSales","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getUserStakeInfo","outputs":[{"internalType":"uint256","name":"netStake","type":"uint256"},{"internalType":"uint256","name":"unclaimedFunds","type":"uint256"},{"internalType":"uint256","name":"totalOriginalStake","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getUserTotalUnclaimedUsdValue","outputs":[{"internalType":"uint256","name":"totalUsd","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tokens","type":"address[]"}],"name":"getVestedTotals","outputs":[{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"uint256[]","name":"usdValues","type":"uint256[]"},{"internalType":"uint256","name":"totalUsd","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_vestingIndex","type":"uint256"}],"name":"getVestingSchedule","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getVestings","outputs":[{"components":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"bonus","type":"uint256"},{"internalType":"uint256","name":"lockedUntil","type":"uint256"},{"internalType":"uint256","name":"claimedAmount","type":"uint256"},{"internalType":"uint256","name":"claimedBonus","type":"uint256"},{"internalType":"uint256","name":"lastClaimed","type":"uint256"},{"internalType":"uint256","name":"createdAt","type":"uint256"},{"internalType":"address","name":"token","type":"address"},{"internalType":"bool","name":"complete","type":"bool"},{"internalType":"uint256","name":"usdAmount","type":"uint256"}],"internalType":"struct CunaFinanceBsc.Vesting[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"stakeId","type":"uint256"}],"name":"getWithdrawStake","outputs":[{"components":[{"internalType":"uint256","name":"stakeId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"unlockTime","type":"uint256"}],"internalType":"struct CunaFinanceBsc.WithdrawStake","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWithdrawVestingCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockupDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"marketplaceHistory","outputs":[{"internalType":"uint256","name":"listTime","type":"uint256"},{"internalType":"uint256","name":"saleTime","type":"uint256"},{"internalType":"uint256","name":"origValue","type":"uint256"},{"internalType":"uint256","name":"saleValue","type":"uint256"},{"internalType":"address","name":"seller","type":"address"},{"internalType":"address","name":"buyer","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketplaceMin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"marketplace_sales","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"oldAddress","type":"address"},{"internalType":"address","name":"newAddress","type":"address"}],"name":"migrateVestings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"owners","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paybackPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"priceOracles","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"removeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"sellStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"sellStakeKeys","outputs":[{"internalType":"address","name":"seller","type":"address"},{"internalType":"uint256","name":"stakeId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"sellStakes","outputs":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"},{"internalType":"address","name":"seller","type":"address"},{"internalType":"uint256","name":"listTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_oracle","type":"address"}],"name":"setPriceOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"testUpgradeFunction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalBigStakes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlockDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"unlockSchedules","outputs":[{"internalType":"uint256","name":"timeOffset","type":"uint256"},{"internalType":"uint256","name":"percentage","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFee","type":"uint256"}],"name":"updateCancellationFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"updateLockupDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMin","type":"uint256"}],"name":"updateMarketplaceMin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPercent","type":"uint256"}],"name":"updatePaybackPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"stakeId","type":"uint256"},{"internalType":"uint256","name":"newSalePrice","type":"uint256"}],"name":"updateSellStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_delay","type":"uint256"}],"name":"updateUnlockDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userBigStake","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userLastClaimedEpoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"vestedTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"vestings","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"bonus","type":"uint256"},{"internalType":"uint256","name":"lockedUntil","type":"uint256"},{"internalType":"uint256","name":"claimedAmount","type":"uint256"},{"internalType":"uint256","name":"claimedBonus","type":"uint256"},{"internalType":"uint256","name":"lastClaimed","type":"uint256"},{"internalType":"uint256","name":"createdAt","type":"uint256"},{"internalType":"address","name":"token","type":"address"},{"internalType":"bool","name":"complete","type":"bool"},{"internalType":"uint256","name":"usdAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawFromVestingPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"stakeId","type":"uint256"}],"name":"withdrawStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"withdrawStakes","outputs":[{"internalType":"uint256","name":"stakeId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"unlockTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"withdrawVestingLiabilities","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_1397":{"entryPoint":null,"id":1397,"parameterSlots":0,"returnSlots":0},"@_1796":{"entryPoint":null,"id":1796,"parameterSlots":0,"returnSlots":0}},"generatedSources":[],"linkReferences":{},"object":"608060405234801561001057600080fd5b506001600081815581546001600160a01b0319167341970ce76b656030a79e7c1fa76fc4eb939802559081178355905260026020527fe1c78590f35b2f928da6f79dc6bc631e6dfc2ed933da7c0f9d40509fb8cefddf805460ff19169091179055614c59806100806000396000f3fe608060405234801561001057600080fd5b50600436106104065760003560e01c80637bc221ac11610220578063bed9757e11610130578063da1b4364116100b8578063eb44e0a311610087578063eb44e0a314610b5a578063f109208f14610b6d578063f2bb563014610b80578063fe2f50d014610b93578063ffecf51614610b9c57600080fd5b8063da1b436414610b16578063e079fd9114610b36578063e88f8e6614610b3e578063eacdc5ff14610b5157600080fd5b8063c6b61e4c116100ff578063c6b61e4c14610a4b578063c7b530b014610ab0578063cc573a9114610ad0578063ce13d09014610ae3578063cfcf331914610af657600080fd5b8063bed9757e146109e1578063c267660314610a02578063c32d3ae214610a0a578063c36d03fd14610a3857600080fd5b80639437e32e116101b3578063a0d4675811610182578063a0d4675814610910578063a36be55c14610930578063b6c3dc4c14610939578063bc0bc6ba14610959578063bd84477d1461097957600080fd5b80639437e32e1461087e578063953d16bf1461089157806396fd111a146108a45780639f3a676c146108c457600080fd5b806387b4b105116101ef57806387b4b105146108185780638851ec0f146108385780638da5cb5b1461084b5780638f82818f1461085e57600080fd5b80637bc221ac146107a95780637d08af97146107bc5780637e6d9926146107dc57806380ca0ecf1461080557600080fd5b80633f35e7221161031b578063592d1dd1116102ae5780636ef569a51161027d5780636ef569a5146107475780637065cb481461075057806374d1c8e3146107635780637a0c6dc0146107765780637b3cbecb1461079657600080fd5b8063592d1dd1146106f557806361d1080b1461071557806362cd6a091461071d57806367a74ddc1461073457600080fd5b806351e62472116102ea57806351e624721461069457806351f6cf2f146106a7578063549e61d3146106cf57806358116227146106e257600080fd5b80633f35e722146105c157806343a32f89146105d4578063441a41751461064f57806348ea286d1461068157600080fd5b8063173825d91161039e57806325d5971f1161036d57806325d5971f1461054d5780632ded58aa146105605780633253ea5c146105695780633ba8396e1461057c5780633c92f98d1461059f57600080fd5b8063173825d91461050b5780631ada70a81461051e5780631aefa2d1146105275780631eb9e53e1461053a57600080fd5b8063092c7610116103da578063092c7610146104ae5780630a84096a146104ce5780630c7d6386146104e157806313baee5b146104eb57600080fd5b8062159da61461040b5780630137451814610431578063022914a7146104725780630519da32146104a5575b600080fd5b61041e6104193660046143e1565b610baf565b6040519081526020015b60405180910390f35b61045a61043f3660046143e1565b6006602052600090815260409020546001600160a01b031681565b6040516001600160a01b039091168152602001610428565b6104956104803660046143e1565b60026020526000908152604090205460ff1681565b6040519015158152602001610428565b61041e600a5481565b61041e6104bc3660046143e1565b60086020526000908152604090205481565b61041e6104dc366004614403565b610c45565b6104e9610d7d565b005b61041e6104f93660046143e1565b600f6020526000908152604090205481565b6104e96105193660046143e1565b610ed1565b61041e60095481565b6104e961053536600461442d565b610fc2565b61041e6105483660046143e1565b610ff6565b6104e961055b36600461442d565b61102d565b61041e60135481565b6104e961057736600461442d565b6111c1565b61049561058a3660046143e1565b60036020526000908152604090205460ff1681565b6105b26105ad36600461448a565b6111f5565b60405161042893929190614506565b6104e96105cf366004614403565b6113e3565b6106206105e2366004614403565b60156020908152600092835260408084209091529082529020805460018201546002830154600390930154919290916001600160a01b039091169084565b604051610428949392919093845260208401929092526001600160a01b03166040830152606082015260800190565b61066261065d36600461442d565b61146a565b604080516001600160a01b039093168352602083019190915201610428565b6104e961068f3660046143e1565b6114a2565b6104e96106a236600461442d565b611632565b6106ba6106b5366004614403565b611666565b60408051928352602083019190915201610428565b6104e96106dd36600461453c565b6116a2565b6104e96106f03660046145a7565b61198c565b61041e6107033660046143e1565b60076020526000908152604090205481565b601b5461041e565b610725611cb9565b604051610428939291906145c9565b6104e9610742366004614692565b611f0c565b61041e60175481565b6104e961075e3660046143e1565b611f69565b6104e96107713660046146c5565b612015565b6107896107843660046143e1565b6121f8565b6040516104289190614730565b6104e96107a4366004614692565b6122df565b61041e6107b73660046143e1565b61264d565b6107cf6107ca3660046143e1565b612820565b60405161042891906147de565b61041e6107ea3660046143e1565b6001600160a01b031660009081526018602052604090205490565b61041e610813366004614403565b6128b5565b61041e6108263660046143e1565b600d6020526000908152604090205481565b6104e961084636600461483e565b6129c1565b60015461045a906001600160a01b031681565b61041e61086c3660046143e1565b60186020526000908152604090205481565b6104e961088c36600461486a565b612af9565b6104e961089f36600461442d565b612b40565b6108b76108b23660046145a7565b612e2a565b60405161042891906148c2565b6108d76108d236600461442d565b612fe9565b6040805196875260208701959095529385019290925260608401526001600160a01b0390811660808401521660a082015260c001610428565b61092361091e366004614403565b61303c565b604051610428919061493b565b61041e60145481565b61094c610947366004614403565b6130cc565b604051610428919061496f565b61096c61096736600461442d565b6131a1565b6040516104289190614990565b61098c610987366004614403565b613265565b604080519a8b5260208b0199909952978901969096526060880194909452608087019290925260a086015260c08501526001600160a01b031660e0840152151561010083015261012082015261014001610428565b6109f46109ef366004614403565b6132e3565b6040516104289291906149c9565b6103e761041e565b610a1d610a183660046143e1565b613489565b60408051938452602084019290925290820152606001610428565b6104e9610a4636600461442d565b6134e8565b610a88610a5936600461442d565b600e60205260009081526040902080546001820154600283015460038401546004909401549293919290919085565b604080519586526020860194909452928401919091526060830152608082015260a001610428565b610ac3610abe3660046143e1565b61351c565b60405161042891906149ee565b610a1d610ade366004614403565b6135a4565b6104e9610af136600461442d565b6135e6565b610b09610b043660046145a7565b61361a565b6040516104289190614a44565b61041e610b243660046143e1565b60106020526000908152604090205481565b600c5461041e565b6105b2610b4c3660046143e1565b6137e7565b61041e60125481565b6104e9610b68366004614403565b613acd565b6104e9610b7b366004614403565b613f33565b6104e9610b8e3660046145a7565b614056565b61041e60165481565b6104e9610baa3660046143e1565b614167565b6001600160a01b0381166000908152600f60209081526040808320546010909252822054805b601254811015610c3d578215610c2b576000818152600e602052604081206003015461271090610c059086614ad4565b610c0f9190614aeb565b9050610c1b8186614b0d565b9450610c278185614b20565b9350505b80610c3581614b33565b915050610bd5565b505050919050565b6001600160a01b0382166000908152600460205260408120805482919084908110610c7257610c72614b4c565b906000526020600020906009020190506000816006015442610c949190614b20565b60078301549091506001600160a01b03166000805b6001600160a01b038316600090815260056020526040902054811015610d70576001600160a01b0383166000908152600560205260408120805483908110610cf357610cf3614b4c565b6000918252602082206002909102018054600182015460088a015492945090929091606490610d2490600a90614ad4565b610d2e9190614aeb565b9050828810610d5b57612710610d448383614ad4565b610d4e9190614aeb565b610d589087614b0d565b95505b5050505080610d6990614b33565b9050610ca9565b5093505050505b92915050565b610d856141e0565b6000610d9033610baf565b905060008111610dda5760405162461bcd60e51b815260206004820152601060248201526f4e6f7468696e6720746f20636c61696d60801b60448201526064015b60405180910390fd5b336000908152600f602052604081208054839290610df9908490614b20565b925050819055508060136000828254610e129190614b20565b9091555050601254336000908152601060209081526040808320939093556011815290829020825160608101845242808252928101859052600a549193909290830191610e5e91614b0d565b90528154600180820184556000938452602093849020835160039093020191825582840151908201556040918201516002909101555182815233917fa65a8b4f7f65a1063243d7f7e9e4da00ff767599acf21549ef2548a45d1695ae910160405180910390a250610ecf6001600055565b565b3360009081526002602052604090205460ff16610f005760405162461bcd60e51b8152600401610dd190614b62565b6001600160a01b03811660009081526002602052604090205460ff16610f545760405162461bcd60e51b81526020600482015260096024820152682737ba1037bbb732b960b91b6044820152606401610dd1565b336001600160a01b03821603610fa15760405162461bcd60e51b815260206004820152601260248201527121b0b73737ba103932b6b7bb329039b2b63360711b6044820152606401610dd1565b6001600160a01b03166000908152600260205260409020805460ff19169055565b3360009081526002602052604090205460ff16610ff15760405162461bcd60e51b8152600401610dd190614b62565b601755565b6001600160a01b0381166000908152600f60205260408120548161101984610baf565b90506110258183614b20565b949350505050565b6110356141e0565b33600090815260116020526040902080546110885760405162461bcd60e51b81526020600482015260136024820152724e6f207374616b657320617661696c61626c6560681b6044820152606401610dd1565b60005b81548110156111795760008282815481106110a8576110a8614b4c565b906000526020600020906003020190508381600001541480156110cf575060008160010154115b156111665780600201544210156111175760405162461bcd60e51b815260206004820152600c60248201526b14dd185ad9481b1bd8dad95960a21b6044820152606401610dd1565b6001810180546000909155604080518281526020810187905233917f933735aa8de6d7547d0126171b2f31b9c34dd00f3ecd4be85a0ba047db4fafef910160405180910390a2505050506111b4565b508061117181614b33565b91505061108b565b5060405162461bcd60e51b815260206004820152600f60248201526e14dd185ad9481b9bdd08199bdd5b99608a1b6044820152606401610dd1565b6111be6001600055565b50565b3360009081526002602052604090205460ff166111f05760405162461bcd60e51b8152600401610dd190614b62565b601455565b606080600083806001600160401b0381111561121357611213614b8a565b60405190808252806020026020018201604052801561123c578160200160208202803683370190505b509350806001600160401b0381111561125757611257614b8a565b604051908082528060200260200182016040528015611280578160200160208202803683370190505b50925060005b818110156113da5760008787838181106112a2576112a2614b4c565b90506020020160208101906112b791906143e1565b6001600160a01b03811660009081526008602052604090205487519192509081908890859081106112ea576112ea614b4c565b6020908102919091018101919091526001600160a01b038381166000818152600690935260408084205490516302c68be360e31b81526004810192909252909116906316345f1890602401602060405180830381865afa158015611352573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113769190614ba0565b90506000670de0b6b3a764000061138d8484614ad4565b6113979190614aeb565b9050808886815181106113ac576113ac614b4c565b60209081029190910101526113c18188614b0d565b96505050505080806113d290614b33565b915050611286565b50509250925092565b3360009081526002602052604090205460ff166114125760405162461bcd60e51b8152600401610dd190614b62565b6114266001600160a01b038316338361420a565b6040518181526001600160a01b0383169033907fa92ff919b850e4909ab2261d907ef955f11bc1716733a6cbece38d163a69af8a9060200160405180910390a35050565b6019818154811061147a57600080fd5b6000918252602090912060029091020180546001909101546001600160a01b03909116915082565b3360009081526003602052604090205460ff166114d15760405162461bcd60e51b8152600401610dd190614b62565b60005b6001600160a01b03821660009081526004602052604090205481101561162e576001600160a01b038216600090815260046020526040812080548390811061151e5761151e614b4c565b906000526020600020906009020190508060070160149054906101000a900460ff166115f25760088101546001600160a01b0384166000908152600760205260409020541061159a5760088101546001600160a01b03841660009081526007602052604081208054909190611594908490614b20565b90915550505b805460078201546001600160a01b0316600090815260086020526040902054106115f257805460078201546001600160a01b0316600090815260086020526040812080549091906115ec908490614b20565b90915550505b600080825560018201819055600382018190556004820155600701805460ff60a01b1916600160a01b17905561162781614b33565b90506114d4565b5050565b3360009081526002602052604090205460ff166116615760405162461bcd60e51b8152600401610dd190614b62565b601655565b6005602052816000526040600020818154811061168257600080fd5b600091825260209091206002909102018054600190910154909250905082565b3360009081526003602052604090205460ff166116d15760405162461bcd60e51b8152600401610dd190614b62565b8281146117185760405162461bcd60e51b8152602060048201526015602482015274082e4e4c2f240d8cadccee8d040dad2e6dac2e8c6d605b1b6044820152606401610dd1565b826117545760405162461bcd60e51b815260206004820152600c60248201526b456d7074792061727261797360a01b6044820152606401610dd1565b6000805b8481101561196d57600086868381811061177457611774614b4c565b905060200201602081019061178991906143e1565b6001600160a01b0316036117af5760405162461bcd60e51b8152600401610dd190614bb9565b60008484838181106117c3576117c3614b4c565b90506020020135116118085760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610dd1565b83838281811061181a5761181a614b4c565b90506020020135600f600088888581811061183757611837614b4c565b905060200201602081019061184c91906143e1565b6001600160a01b031681526020810191909152604001600020546118709084614b20565b61187a9190614b0d565b915083838281811061188e5761188e614b4c565b90506020020135600f60008888858181106118ab576118ab614b4c565b90506020020160208101906118c091906143e1565b6001600160a01b031681526020810191909152604001600020558585828181106118ec576118ec614b4c565b905060200201602081019061190191906143e1565b6001600160a01b03167fec7e3594982826a1f90c8fc76513357b83a691b7f4e38b8be04f3d40f9b1583985858481811061193d5761193d614b4c565b9050602002013560405161195391815260200190565b60405180910390a28061196581614b33565b915050611758565b5080601360008282546119809190614b0d565b90915550505050505050565b6119946141e0565b600082116119d45760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642076616c756560981b6044820152606401610dd1565b60008111611a195760405162461bcd60e51b8152602060048201526012602482015271496e76616c69642073616c6520707269636560701b6044820152606401610dd1565b601654821015611a615760405162461bcd60e51b815260206004820152601360248201527256616c75652062656c6f77206d696e696d756d60681b6044820152606401610dd1565b6000611a6c33610ff6565b905080831115611ab75760405162461bcd60e51b8152602060048201526016602482015275496e73756666696369656e74206e6574207374616b6560501b6044820152606401610dd1565b3360009081526015602090815260408083204280855292529091205415611b195760405162461bcd60e51b81526020600482015260166024820152755374616b65496420616c72656164792065786973747360501b6044820152606401610dd1565b336000908152600f602052604081208054869290611b38908490614b20565b925050819055508360136000828254611b519190614b20565b909155505060408051608081018252858152602080820186815233838501818152426060860190815260008381526015865287812089825286528781209651875593516001808801919091559151600280880180546001600160a01b039384166001600160a01b03199182161790915592516003909801979097558751808901909852928752938601878152601980548084018255948190529651939095027f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c969581018054949093169390941692909217905591517f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c9696909101559054611c569190614b20565b336000818152601a6020908152604080832086845282529182902093909355805186815292830184905290917f8e79b7ba8dab5ebfa59b9c6af1743c3ef14863680b3cc5ac837f8d636f76031c910160405180910390a2505061162e6001600055565b60195460609081908190806001600160401b03811115611cdb57611cdb614b8a565b604051908082528060200260200182016040528015611d04578160200160208202803683370190505b509350806001600160401b03811115611d1f57611d1f614b8a565b604051908082528060200260200182016040528015611d48578160200160208202803683370190505b509250806001600160401b03811115611d6357611d63614b8a565b604051908082528060200260200182016040528015611dc857816020015b611db56040518060800160405280600081526020016000815260200160006001600160a01b03168152602001600081525090565b815260200190600190039081611d815790505b50915060005b81811015611f0557600060198281548110611deb57611deb614b4c565b60009182526020918290206040805180820190915260029092020180546001600160a01b0316808352600190910154928201929092528751909250879084908110611e3857611e38614b4c565b60200260200101906001600160a01b031690816001600160a01b0316815250508060200151858381518110611e6f57611e6f614b4c565b60209081029190910181019190915281516001600160a01b0390811660009081526015835260408082208585015183528452908190208151608081018352815481526001820154948101949094526002810154909216908301526003015460608201528451859084908110611ee657611ee6614b4c565b6020026020010181905250508080611efd90614b33565b915050611dce565b5050909192565b3360009081526002602052604090205460ff16611f3b5760405162461bcd60e51b8152600401610dd190614b62565b6001600160a01b03918216600090815260066020526040902080546001600160a01b03191691909216179055565b3360009081526002602052604090205460ff16611f985760405162461bcd60e51b8152600401610dd190614b62565b6001600160a01b03811660009081526002602052604090205460ff1615611ff15760405162461bcd60e51b815260206004820152600d60248201526c20b63932b0b23c9037bbb732b960991b6044820152606401610dd1565b6001600160a01b03166000908152600260205260409020805460ff19166001179055565b3360009081526003602052604090205460ff166120445760405162461bcd60e51b8152600401610dd190614b62565b60046000896001600160a01b03166001600160a01b031681526020019081526020016000206040518061014001604052808981526020018881526020018781526020016000815260200160008152602001848152602001838152602001866001600160a01b03168152602001600015158152602001858152509080600181540180825580915050600190039060005260206000209060090201600090919091909150600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e08201518160070160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506101008201518160070160146101000a81548160ff0219169083151502179055506101208201518160080155505082600760008a6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546121bc9190614b0d565b90915550506001600160a01b038416600090815260086020526040812080548992906121e9908490614b0d565b90915550505050505050505050565b6001600160a01b0381166000908152600460209081526040808320805482518185028101850190935280835260609492939192909184015b828210156122d457600084815260209081902060408051610140810182526009860290920180548352600180820154848601526002820154928401929092526003810154606084015260048101546080840152600581015460a0840152600681015460c084015260078101546001600160a01b03811660e0850152600160a01b900460ff161515610100840152600801546101208301529083529092019101612230565b505050509050919050565b3360009081526003602052604090205460ff1661230e5760405162461bcd60e51b8152600401610dd190614b62565b6001600160a01b0382161580159061232e57506001600160a01b03811615155b801561234c5750806001600160a01b0316826001600160a01b031614155b6123685760405162461bcd60e51b8152600401610dd190614bb9565b6001600160a01b03821660009081526004602052604090208054806123c75760405162461bcd60e51b81526020600482015260156024820152744e6f2076657374696e677320617661696c61626c6560581b6044820152606401610dd1565b6001600160a01b0383166000908152600460205260408120905b8281101561250c5760008482815481106123fd576123fd614b4c565b6000918252602080832086546001808201895588865292852060099485029092018054949091029091019283558082018054928401929092556002808201805491850191909155600380830180549186019190915560048084018054918701919091556005808501805491880191909155600680860180549189019190915560078087018054918a0180546001600160a01b039093166001600160a01b031984168117825582546001600160a81b031990941617600160a01b9384900460ff16151584021790556008808901805491909b0155968a905596899055938890559187905586905585905584905592909155815460ff60a01b1916179055508061250481614b33565b9150506123e1565b506001600160a01b038086166000908152600760205260408082205492871682528120805490919061253f908490614b0d565b90915550506001600160a01b0385166000908152600760209081526040808320839055600b909152902080548015612644576001600160a01b0386166000908152600b60205260408120905b8281101561262057818482815481106125a6576125a6614b4c565b60009182526020808320845460018181018755958552919093206004928302909301805491909202909201918255828101549282019290925560028083015490820155600391820154910180546001600160a01b0319166001600160a01b039092169190911790558061261881614b33565b91505061258b565b506001600160a01b0388166000908152600b6020526040812061264291614371565b505b50505050505050565b6001600160a01b038116600090815260046020526040812054815b81811015612819576001600160a01b038416600090815260046020526040812080548390811061269a5761269a614b4c565b600091825260209182902060408051610140810182526009909302909101805483526001810154938301939093526002830154908201526003820154606082015260048201546080820152600582015460a0820152600682015460c082015260078201546001600160a01b03811660e083015260ff600160a01b909104161515610100820181905260089092015461012082015291506128065760e0810180516001600160a01b0390811660009081526006602052604080822054935190516302c68be360e31b815290831660048201529092909116906316345f1890602401602060405180830381865afa158015612797573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127bb9190614ba0565b90506000826060015183600001516127d39190614b20565b90506000670de0b6b3a76400006127ea8385614ad4565b6127f49190614aeb565b90506128008188614b0d565b96505050505b508061281181614b33565b915050612668565b5050919050565b6001600160a01b0381166000908152600b60209081526040808320805482518185028101850190935280835260609492939192909184015b828210156122d457600084815260209081902060408051608081018252600486029092018054835260018082015484860152600282015492840192909252600301546001600160a01b031660608301529083529092019101612858565b6001600160a01b03821660009081526004602052604081208054829190849081106128e2576128e2614b4c565b9060005260206000209060090201905060008160060154426129049190614b20565b60078301549091506001600160a01b03166000805b6001600160a01b038316600090815260056020526040902054811015610d70576001600160a01b038316600090815260056020526040812080548390811061296357612963614b4c565b6000918252602090912060029091020180546001820154919250908187106129ad57875461271090612996908390614ad4565b6129a09190614aeb565b6129aa9086614b0d565b94505b505050806129ba90614b33565b9050612919565b3360009081526002602052604090205460ff166129f05760405162461bcd60e51b8152600401610dd190614b62565b601481905560125460009015612a40576000600e60006001601254612a159190614b20565b81526020019081526020016000209050612a3c846013548360010154846002015487614261565b9150505b6040805160a081018252858152602080820186815260135483850190815260608085018781524260808701908152601280546000908152600e885289902097518855945160018801559251600287015551600386015590516004909401939093555483518781529182018590529281018590527feadbedb993dfca23e4c79bf4fa5fe531c2e0e926258fabb8445e8bc5c472780f910160405180910390a260128054906000612aee83614b33565b919050555050505050565b3360009081526003602052604090205460ff16612b285760405162461bcd60e51b8152600401610dd190614b62565b612b388686868686864242612015565b505050505050565b33600090815260156020908152604080832084845290915290208054612b785760405162461bcd60e51b8152600401610dd190614be2565b60028101546001600160a01b03163314612bc55760405162461bcd60e51b815260206004820152600e60248201526d2737ba103a34329039b2b63632b960911b6044820152606401610dd1565b805460175460009061271090612bdb9084614ad4565b612be59190614aeb565b90506000612bf38284614b20565b336000908152600f6020526040812080549293508392909190612c17908490614b0d565b925050819055508060136000828254612c309190614b0d565b90915550508115612c7757604080518381526020810187905233917f4725a4d4de9bff212d0885095e27515072f73f427df55e52f37f241321ef88f9910160405180910390a25b336000818152601560209081526040808320898452825280832083815560018082018590556002820180546001600160a01b03191690556003909101849055938352601a82528083208984529091528120546019549092612cd791614b20565b9050808214612d9857600060198281548110612cf557612cf5614b4c565b60009182526020918290206040805180820190915260029092020180546001600160a01b03168252600101549181019190915260198054919250829185908110612d4157612d41614b4c565b6000918252602080832084516002939093020180546001600160a01b0319166001600160a01b03938416178155938101516001909401939093558351168152601a8252604080822093830151825292909152208290555b6019805480612da957612da9614c0d565b600082815260208082206002600019949094019384020180546001600160a01b03191681556001018290559190925533808352601a825260408084208b855283528084209390935591518981527f73d12dec3eb3b445b6c9feb2fd559ba7c852c525bc1e59d8f7ff760c55df041d910160405180910390a250505050505050565b606081831115612e6c5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642072616e676560981b6044820152606401610dd1565b6012548210612eb35760405162461bcd60e51b8152602060048201526013602482015272115b9908195c1bd8da081b9bdd08199bdd5b99606a1b6044820152606401610dd1565b6000612ebf8484614b20565b612eca906001614b0d565b90506000816001600160401b03811115612ee657612ee6614b8a565b604051908082528060200260200182016040528015612f4957816020015b612f366040518060a0016040528060008152602001600081526020016000815260200160008152602001600081525090565b815260200190600190039081612f045790505b50905060005b82811015612fe057600e6000612f658389614b0d565b81526020019081526020016000206040518060a001604052908160008201548152602001600182015481526020016002820154815260200160038201548152602001600482015481525050828281518110612fc257612fc2614b4c565b60200260200101819052508080612fd890614b33565b915050612f4f565b50949350505050565b601b8181548110612ff957600080fd5b6000918252602090912060069091020180546001820154600283015460038401546004850154600590950154939550919390926001600160a01b03918216911686565b6130706040518060800160405280600081526020016000815260200160006001600160a01b03168152602001600081525090565b506001600160a01b03918216600090815260156020908152604080832093835292815290829020825160808101845281548152600182015492810192909252600281015490931691810191909152600390910154606082015290565b6130f060405180606001604052806000815260200160008152602001600081525090565b6001600160a01b0383166000908152601160205260408120905b8154811015611179578382828154811061312657613126614b4c565b9060005260206000209060030201600001540361318f5781818154811061314f5761314f614b4c565b9060005260206000209060030201604051806060016040529081600082015481526020016001820154815260200160028201548152505092505050610d77565b8061319981614b33565b91505061310a565b6131d36040518060a0016040528060008152602001600081526020016000815260200160008152602001600081525090565b60125482106132165760405162461bcd60e51b815260206004820152600f60248201526e115c1bd8da081b9bdd08199bdd5b99608a1b6044820152606401610dd1565b506000908152600e6020908152604091829020825160a0810184528154815260018201549281019290925260028101549282019290925260038201546060820152600490910154608082015290565b6004602052816000526040600020818154811061328157600080fd5b6000918252602090912060099091020180546001820154600283015460038401546004850154600586015460068701546007880154600890980154969950949750929591949093916001600160a01b03811691600160a01b90910460ff16908a565b6001600160a01b03821660009081526004602052604081208054606092839290918590811061331457613314614b4c565b600091825260208083206007600990930201918201546001600160a01b03168084526005909152604083205491935091816001600160401b0381111561335c5761335c614b8a565b604051908082528060200260200182016040528015613385578160200160208202803683370190505b5090506000826001600160401b038111156133a2576133a2614b8a565b6040519080825280602002602001820160405280156133cb578160200160208202803683370190505b50905060005b83811015613478576001600160a01b038516600090815260056020526040812080548390811061340357613403614b4c565b90600052602060002090600202019050806000015487600601546134279190614b0d565b84838151811061343957613439614b4c565b602002602001018181525050806001015483838151811061345c5761345c614b4c565b60209081029190910101525061347181614b33565b90506133d1565b5090955093505050505b9250929050565b60008060008061349885610baf565b6001600160a01b0386166000908152600f60205260409020549091506134bf908290614b20565b6001600160a01b0386166000908152600f602052604090205490945090925090505b9193909250565b3360009081526002602052604090205460ff166135175760405162461bcd60e51b8152600401610dd190614b62565b600955565b6001600160a01b0381166000908152601160209081526040808320805482518185028101850190935280835260609492939192909184015b828210156122d45783829060005260206000209060030201604051806060016040529081600082015481526020016001820154815260200160028201548152505081526020019060010190613554565b601160205281600052604060002081815481106135c057600080fd5b600091825260209091206003909102018054600182015460029092015490935090915083565b3360009081526002602052604090205460ff166136155760405162461bcd60e51b8152600401610dd190614b62565b600a55565b601b54606090831061366e5760405162461bcd60e51b815260206004820152601960248201527f537461727420696e646578206f7574206f6620626f756e6473000000000000006044820152606401610dd1565b600061367a8385614b0d565b601b5490915081111561368c5750601b545b60006136988583614b20565b6001600160401b038111156136af576136af614b8a565b60405190808252806020026020018201604052801561372b57816020015b6137186040518060c001604052806000815260200160008152602001600081526020016000815260200160006001600160a01b0316815260200160006001600160a01b031681525090565b8152602001906001900390816136cd5790505b509050845b82811015612fe057601b818154811061374b5761374b614b4c565b60009182526020918290206040805160c0810182526006909302909101805483526001810154938301939093526002830154908201526003820154606082015260048201546001600160a01b03908116608083015260059092015490911660a0820152826137b98884614b20565b815181106137c9576137c9614b4c565b602002602001018190525080806137df90614b33565b915050613730565b6001600160a01b0381166000908152600f602090815260408083205460109092528220546012546060938493909290918390613824908390614b20565b9050806000036138555750506040805160008082526020820181815282840190935290955090935091506134e19050565b806001600160401b0381111561386d5761386d614b8a565b604051908082528060200260200182016040528015613896578160200160208202803683370190505b509550806001600160401b038111156138b1576138b1614b8a565b6040519080825280602002602001820160405280156138da578160200160208202803683370190505b5094506000825b60125481101561399a578415613988576000818152600e6020526040812060030154612710906139119088614ad4565b61391b9190614aeb565b90508015613986578189848151811061393657613936614b4c565b6020026020010181815250508088848151811061395557613955614b4c565b602090810291909101015261396a8188614b0d565b96506139768187614b20565b95508261398281614b33565b9350505b505b8061399281614b33565b9150506138e1565b5081811015613ac2576000816001600160401b038111156139bd576139bd614b8a565b6040519080825280602002602001820160405280156139e6578160200160208202803683370190505b5090506000826001600160401b03811115613a0357613a03614b8a565b604051908082528060200260200182016040528015613a2c578160200160208202803683370190505b50905060005b83811015613abb57898181518110613a4c57613a4c614b4c565b6020026020010151838281518110613a6657613a66614b4c565b602002602001018181525050888181518110613a8457613a84614b4c565b6020026020010151828281518110613a9e57613a9e614b4c565b602090810291909101015280613ab381614b33565b915050613a32565b5090975095505b505050509193909250565b613ad56141e0565b6001600160a01b038216600090815260156020908152604080832084845290915290208054613b165760405162461bcd60e51b8152600401610dd190614be2565b336001600160a01b03841603613b675760405162461bcd60e51b815260206004820152601660248201527543616e6e6f7420627579206f776e206c697374696e6760501b6044820152606401610dd1565b8054600182015460038301546000828411613b83576000613b8d565b613b8d8385614b20565b90506000613b9c600283614aeb565b90506000613baa8287614b20565b336000908152600f6020526040812080549293508392909190613bce908490614b0d565b925050819055508060136000828254613be79190614b0d565b90915550506001600160a01b03891660009081526018602052604081208054879290613c14908490614b0d565b92505081905550601b6040518060c001604052808681526020014281526020018881526020018781526020018b6001600160a01b03168152602001336001600160a01b031681525090806001815401808255809150506001900390600052602060002090600602016000909190919091506000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060a08201518160050160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505050601560008a6001600160a01b03166001600160a01b03168152602001908152602001600020600089815260200190815260200160002060008082016000905560018201600090556002820160006101000a8154906001600160a01b030219169055600382016000905550506000601a60008b6001600160a01b03166001600160a01b0316815260200190815260200160002060008a815260200190815260200160002054905060006001601980549050613dc39190614b20565b9050808214613e8457600060198281548110613de157613de1614b4c565b60009182526020918290206040805180820190915260029092020180546001600160a01b03168252600101549181019190915260198054919250829185908110613e2d57613e2d614b4c565b6000918252602080832084516002939093020180546001600160a01b0319166001600160a01b03938416178155938101516001909401939093558351168152601a8252604080822093830151825292909152208290555b6019805480613e9557613e95614c0d565b600082815260208082206002600019949094019384020180546001600160a01b0319168155600101829055919092556001600160a01b038d16808352601a825260408084208e855283528084209390935582518a81529182018d9052339290917f7bb39d095b04a9986ed34adf14d74c33294d0a9e807f02bf634d532507422eba910160405180910390a350505050505050505061162e6001600055565b3360009081526003602052604090205460ff16613f625760405162461bcd60e51b8152600401610dd190614b62565b6001600160a01b038216613f885760405162461bcd60e51b8152600401610dd190614bb9565b60008111613fc95760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610dd1565b6001600160a01b0382166000908152600f60205260409020546013548291613ff091614b20565b613ffa9190614b0d565b6013556001600160a01b0382166000818152600f602052604090819020839055517fec7e3594982826a1f90c8fc76513357b83a691b7f4e38b8be04f3d40f9b158399061404a9084815260200190565b60405180910390a25050565b3360009081526015602090815260408083208584529091529020805461408e5760405162461bcd60e51b8152600401610dd190614be2565b60028101546001600160a01b031633146140db5760405162461bcd60e51b815260206004820152600e60248201526d2737ba103a34329039b2b63632b960911b6044820152606401610dd1565b600082116141205760405162461bcd60e51b8152602060048201526012602482015271496e76616c69642073616c6520707269636560701b6044820152606401610dd1565b60018101829055604080518381526020810185905233917f8e79b7ba8dab5ebfa59b9c6af1743c3ef14863680b3cc5ac837f8d636f76031c910160405180910390a2505050565b3360009081526003602052604090205460ff166141965760405162461bcd60e51b8152600401610dd190614b62565b6001600160a01b0381166141bc5760405162461bcd60e51b8152600401610dd190614bb9565b6001600160a01b03166000908152600360205260409020805460ff19166001179055565b60026000540361420357604051633ee5aeb560e01b815260040160405180910390fd5b6002600055565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261425c9084906142fa565b505050565b600082158061426e575084155b1561427b575060006142f1565b60008561428a88612710614ad4565b6142949190614aeb565b90506000846142a587612710614ad4565b6142af9190614aeb565b90508082116142c3576000925050506142f1565b60006142cf8284614b20565b905060006127106142e08784614ad4565b6142ea9190614aeb565b9450505050505b95945050505050565b600080602060008451602086016000885af18061431d576040513d6000823e3d81fd5b50506000513d91508115614335578060011415614342565b6001600160a01b0384163b155b1561436b57604051635274afe760e01b81526001600160a01b0385166004820152602401610dd1565b50505050565b50805460008255600402906000526020600020908101906111be91905b808211156143c15760008082556001820181905560028201556003810180546001600160a01b031916905560040161438e565b5090565b80356001600160a01b03811681146143dc57600080fd5b919050565b6000602082840312156143f357600080fd5b6143fc826143c5565b9392505050565b6000806040838503121561441657600080fd5b61441f836143c5565b946020939093013593505050565b60006020828403121561443f57600080fd5b5035919050565b60008083601f84011261445857600080fd5b5081356001600160401b0381111561446f57600080fd5b6020830191508360208260051b850101111561348257600080fd5b6000806020838503121561449d57600080fd5b82356001600160401b038111156144b357600080fd5b6144bf85828601614446565b90969095509350505050565b600081518084526020808501945080840160005b838110156144fb578151875295820195908201906001016144df565b509495945050505050565b60608152600061451960608301866144cb565b828103602084015261452b81866144cb565b915050826040830152949350505050565b6000806000806040858703121561455257600080fd5b84356001600160401b038082111561456957600080fd5b61457588838901614446565b9096509450602087013591508082111561458e57600080fd5b5061459b87828801614446565b95989497509550505050565b600080604083850312156145ba57600080fd5b50508035926020909101359150565b60608082528451908201819052600090608090818401906020808901855b8381101561460c5781516001600160a01b0316855293820193908201906001016145e7565b50508583038187015261461f83896144cb565b868103604088015287518082528289019450908201925060005b818110156146835761467384865180518252602080820151908301526040808201516001600160a01b031690830152606090810151910152565b9382019392850192600101614639565b50919998505050505050505050565b600080604083850312156146a557600080fd5b6146ae836143c5565b91506146bc602084016143c5565b90509250929050565b600080600080600080600080610100898b0312156146e257600080fd5b6146eb896143c5565b975060208901359650604089013595506060890135945061470e60808a016143c5565b979a969950949793969560a0850135955060c08501359460e001359350915050565b602080825282518282018190526000919060409081850190868401855b828110156147d15781518051855286810151878601528581015186860152606080820151908601526080808201519086015260a0808201519086015260c0808201519086015260e0808201516001600160a01b031690860152610100808201511515908601526101209081015190850152610140909301929085019060010161474d565b5091979650505050505050565b602080825282518282018190526000919060409081850190868401855b828110156147d157815180518552868101518786015285810151868601526060908101516001600160a01b031690850152608090930192908501906001016147fb565b60008060006060848603121561485357600080fd5b505081359360208301359350604090920135919050565b60008060008060008060c0878903121561488357600080fd5b61488c876143c5565b95506020870135945060408701359350606087013592506148af608088016143c5565b915060a087013590509295509295509295565b6020808252825182820181905260009190848201906040850190845b8181101561492f5761491c83855180518252602081015160208301526040810151604083015260608101516060830152608081015160808301525050565b9284019260a092909201916001016148de565b50909695505050505050565b81518152602080830151908201526040808301516001600160a01b0316908201526060808301519082015260808101610d77565b81518152602080830151908201526040808301519082015260608101610d77565b60a08101610d77828480518252602081015160208301526040810151604083015260608101516060830152608081015160808301525050565b6040815260006149dc60408301856144cb565b82810360208401526142f181856144cb565b6020808252825182820181905260009190848201906040850190845b8181101561492f57614a318385518051825260208082015190830152604090810151910152565b9284019260609290920191600101614a0a565b602080825282518282018190526000919060409081850190868401855b828110156147d15781518051855286810151878601528581015186860152606080820151908601526080808201516001600160a01b039081169187019190915260a091820151169085015260c09093019290850190600101614a61565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610d7757610d77614abe565b600082614b0857634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610d7757610d77614abe565b81810381811115610d7757610d77614abe565b600060018201614b4557614b45614abe565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6020808252600e908201526d139bdd08185d5d1a1bdc9a5e995960921b604082015260600190565b634e487b7160e01b600052604160045260246000fd5b600060208284031215614bb257600080fd5b5051919050565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b602080825260119082015270131a5cdd1a5b99c81b9bdd08199bdd5b99607a1b604082015260600190565b634e487b7160e01b600052603160045260246000fdfea26469706673582212205deb74d788a03e6d506f98684ea6de969afe71445fa5d3a07707633f07ee655c64736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x1 PUSH1 0x0 DUP2 DUP2 SSTORE DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH20 0x41970CE76B656030A79E7C1FA76FC4EB93980255 SWAP1 DUP2 OR DUP4 SSTORE SWAP1 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH32 0xE1C78590F35B2F928DA6F79DC6BC631E6DFC2ED933DA7C0F9D40509FB8CEFDDF DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x4C59 DUP1 PUSH2 0x80 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 0x406 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7BC221AC GT PUSH2 0x220 JUMPI DUP1 PUSH4 0xBED9757E GT PUSH2 0x130 JUMPI DUP1 PUSH4 0xDA1B4364 GT PUSH2 0xB8 JUMPI DUP1 PUSH4 0xEB44E0A3 GT PUSH2 0x87 JUMPI DUP1 PUSH4 0xEB44E0A3 EQ PUSH2 0xB5A JUMPI DUP1 PUSH4 0xF109208F EQ PUSH2 0xB6D JUMPI DUP1 PUSH4 0xF2BB5630 EQ PUSH2 0xB80 JUMPI DUP1 PUSH4 0xFE2F50D0 EQ PUSH2 0xB93 JUMPI DUP1 PUSH4 0xFFECF516 EQ PUSH2 0xB9C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xDA1B4364 EQ PUSH2 0xB16 JUMPI DUP1 PUSH4 0xE079FD91 EQ PUSH2 0xB36 JUMPI DUP1 PUSH4 0xE88F8E66 EQ PUSH2 0xB3E JUMPI DUP1 PUSH4 0xEACDC5FF EQ PUSH2 0xB51 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xC6B61E4C GT PUSH2 0xFF JUMPI DUP1 PUSH4 0xC6B61E4C EQ PUSH2 0xA4B JUMPI DUP1 PUSH4 0xC7B530B0 EQ PUSH2 0xAB0 JUMPI DUP1 PUSH4 0xCC573A91 EQ PUSH2 0xAD0 JUMPI DUP1 PUSH4 0xCE13D090 EQ PUSH2 0xAE3 JUMPI DUP1 PUSH4 0xCFCF3319 EQ PUSH2 0xAF6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xBED9757E EQ PUSH2 0x9E1 JUMPI DUP1 PUSH4 0xC2676603 EQ PUSH2 0xA02 JUMPI DUP1 PUSH4 0xC32D3AE2 EQ PUSH2 0xA0A JUMPI DUP1 PUSH4 0xC36D03FD EQ PUSH2 0xA38 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9437E32E GT PUSH2 0x1B3 JUMPI DUP1 PUSH4 0xA0D46758 GT PUSH2 0x182 JUMPI DUP1 PUSH4 0xA0D46758 EQ PUSH2 0x910 JUMPI DUP1 PUSH4 0xA36BE55C EQ PUSH2 0x930 JUMPI DUP1 PUSH4 0xB6C3DC4C EQ PUSH2 0x939 JUMPI DUP1 PUSH4 0xBC0BC6BA EQ PUSH2 0x959 JUMPI DUP1 PUSH4 0xBD84477D EQ PUSH2 0x979 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9437E32E EQ PUSH2 0x87E JUMPI DUP1 PUSH4 0x953D16BF EQ PUSH2 0x891 JUMPI DUP1 PUSH4 0x96FD111A EQ PUSH2 0x8A4 JUMPI DUP1 PUSH4 0x9F3A676C EQ PUSH2 0x8C4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x87B4B105 GT PUSH2 0x1EF JUMPI DUP1 PUSH4 0x87B4B105 EQ PUSH2 0x818 JUMPI DUP1 PUSH4 0x8851EC0F EQ PUSH2 0x838 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x84B JUMPI DUP1 PUSH4 0x8F82818F EQ PUSH2 0x85E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7BC221AC EQ PUSH2 0x7A9 JUMPI DUP1 PUSH4 0x7D08AF97 EQ PUSH2 0x7BC JUMPI DUP1 PUSH4 0x7E6D9926 EQ PUSH2 0x7DC JUMPI DUP1 PUSH4 0x80CA0ECF EQ PUSH2 0x805 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3F35E722 GT PUSH2 0x31B JUMPI DUP1 PUSH4 0x592D1DD1 GT PUSH2 0x2AE JUMPI DUP1 PUSH4 0x6EF569A5 GT PUSH2 0x27D JUMPI DUP1 PUSH4 0x6EF569A5 EQ PUSH2 0x747 JUMPI DUP1 PUSH4 0x7065CB48 EQ PUSH2 0x750 JUMPI DUP1 PUSH4 0x74D1C8E3 EQ PUSH2 0x763 JUMPI DUP1 PUSH4 0x7A0C6DC0 EQ PUSH2 0x776 JUMPI DUP1 PUSH4 0x7B3CBECB EQ PUSH2 0x796 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x592D1DD1 EQ PUSH2 0x6F5 JUMPI DUP1 PUSH4 0x61D1080B EQ PUSH2 0x715 JUMPI DUP1 PUSH4 0x62CD6A09 EQ PUSH2 0x71D JUMPI DUP1 PUSH4 0x67A74DDC EQ PUSH2 0x734 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x51E62472 GT PUSH2 0x2EA JUMPI DUP1 PUSH4 0x51E62472 EQ PUSH2 0x694 JUMPI DUP1 PUSH4 0x51F6CF2F EQ PUSH2 0x6A7 JUMPI DUP1 PUSH4 0x549E61D3 EQ PUSH2 0x6CF JUMPI DUP1 PUSH4 0x58116227 EQ PUSH2 0x6E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3F35E722 EQ PUSH2 0x5C1 JUMPI DUP1 PUSH4 0x43A32F89 EQ PUSH2 0x5D4 JUMPI DUP1 PUSH4 0x441A4175 EQ PUSH2 0x64F JUMPI DUP1 PUSH4 0x48EA286D EQ PUSH2 0x681 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x173825D9 GT PUSH2 0x39E JUMPI DUP1 PUSH4 0x25D5971F GT PUSH2 0x36D JUMPI DUP1 PUSH4 0x25D5971F EQ PUSH2 0x54D JUMPI DUP1 PUSH4 0x2DED58AA EQ PUSH2 0x560 JUMPI DUP1 PUSH4 0x3253EA5C EQ PUSH2 0x569 JUMPI DUP1 PUSH4 0x3BA8396E EQ PUSH2 0x57C JUMPI DUP1 PUSH4 0x3C92F98D EQ PUSH2 0x59F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x173825D9 EQ PUSH2 0x50B JUMPI DUP1 PUSH4 0x1ADA70A8 EQ PUSH2 0x51E JUMPI DUP1 PUSH4 0x1AEFA2D1 EQ PUSH2 0x527 JUMPI DUP1 PUSH4 0x1EB9E53E EQ PUSH2 0x53A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x92C7610 GT PUSH2 0x3DA JUMPI DUP1 PUSH4 0x92C7610 EQ PUSH2 0x4AE JUMPI DUP1 PUSH4 0xA84096A EQ PUSH2 0x4CE JUMPI DUP1 PUSH4 0xC7D6386 EQ PUSH2 0x4E1 JUMPI DUP1 PUSH4 0x13BAEE5B EQ PUSH2 0x4EB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH3 0x159DA6 EQ PUSH2 0x40B JUMPI DUP1 PUSH4 0x1374518 EQ PUSH2 0x431 JUMPI DUP1 PUSH4 0x22914A7 EQ PUSH2 0x472 JUMPI DUP1 PUSH4 0x519DA32 EQ PUSH2 0x4A5 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x41E PUSH2 0x419 CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0xBAF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x45A PUSH2 0x43F CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x428 JUMP JUMPDEST PUSH2 0x495 PUSH2 0x480 CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x428 JUMP JUMPDEST PUSH2 0x41E PUSH1 0xA SLOAD DUP2 JUMP JUMPDEST PUSH2 0x41E PUSH2 0x4BC CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x41E PUSH2 0x4DC CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH2 0xC45 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0xD7D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x41E PUSH2 0x4F9 CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x519 CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0xED1 JUMP JUMPDEST PUSH2 0x41E PUSH1 0x9 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x535 CALLDATASIZE PUSH1 0x4 PUSH2 0x442D JUMP JUMPDEST PUSH2 0xFC2 JUMP JUMPDEST PUSH2 0x41E PUSH2 0x548 CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0xFF6 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x55B CALLDATASIZE PUSH1 0x4 PUSH2 0x442D JUMP JUMPDEST PUSH2 0x102D JUMP JUMPDEST PUSH2 0x41E PUSH1 0x13 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x577 CALLDATASIZE PUSH1 0x4 PUSH2 0x442D JUMP JUMPDEST PUSH2 0x11C1 JUMP JUMPDEST PUSH2 0x495 PUSH2 0x58A CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x5B2 PUSH2 0x5AD CALLDATASIZE PUSH1 0x4 PUSH2 0x448A JUMP JUMPDEST PUSH2 0x11F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4506 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x5CF CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH2 0x13E3 JUMP JUMPDEST PUSH2 0x620 PUSH2 0x5E2 CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH1 0x15 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x0 SWAP3 DUP4 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 SWAP1 SWAP2 MSTORE SWAP1 DUP3 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP3 ADD SLOAD PUSH1 0x2 DUP4 ADD SLOAD PUSH1 0x3 SWAP1 SWAP4 ADD SLOAD SWAP2 SWAP3 SWAP1 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 DUP5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 SWAP4 DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH2 0x662 PUSH2 0x65D CALLDATASIZE PUSH1 0x4 PUSH2 0x442D JUMP JUMPDEST PUSH2 0x146A JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x428 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x68F CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0x14A2 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x6A2 CALLDATASIZE PUSH1 0x4 PUSH2 0x442D JUMP JUMPDEST PUSH2 0x1632 JUMP JUMPDEST PUSH2 0x6BA PUSH2 0x6B5 CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH2 0x1666 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x428 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x6DD CALLDATASIZE PUSH1 0x4 PUSH2 0x453C JUMP JUMPDEST PUSH2 0x16A2 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x6F0 CALLDATASIZE PUSH1 0x4 PUSH2 0x45A7 JUMP JUMPDEST PUSH2 0x198C JUMP JUMPDEST PUSH2 0x41E PUSH2 0x703 CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1B SLOAD PUSH2 0x41E JUMP JUMPDEST PUSH2 0x725 PUSH2 0x1CB9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x45C9 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x742 CALLDATASIZE PUSH1 0x4 PUSH2 0x4692 JUMP JUMPDEST PUSH2 0x1F0C JUMP JUMPDEST PUSH2 0x41E PUSH1 0x17 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x75E CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0x1F69 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x771 CALLDATASIZE PUSH1 0x4 PUSH2 0x46C5 JUMP JUMPDEST PUSH2 0x2015 JUMP JUMPDEST PUSH2 0x789 PUSH2 0x784 CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP2 SWAP1 PUSH2 0x4730 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x7A4 CALLDATASIZE PUSH1 0x4 PUSH2 0x4692 JUMP JUMPDEST PUSH2 0x22DF JUMP JUMPDEST PUSH2 0x41E PUSH2 0x7B7 CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0x264D JUMP JUMPDEST PUSH2 0x7CF PUSH2 0x7CA CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0x2820 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP2 SWAP1 PUSH2 0x47DE JUMP JUMPDEST PUSH2 0x41E PUSH2 0x7EA CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x41E PUSH2 0x813 CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH2 0x28B5 JUMP JUMPDEST PUSH2 0x41E PUSH2 0x826 CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0xD PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x846 CALLDATASIZE PUSH1 0x4 PUSH2 0x483E JUMP JUMPDEST PUSH2 0x29C1 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x45A SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH2 0x41E PUSH2 0x86C CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x88C CALLDATASIZE PUSH1 0x4 PUSH2 0x486A JUMP JUMPDEST PUSH2 0x2AF9 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x89F CALLDATASIZE PUSH1 0x4 PUSH2 0x442D JUMP JUMPDEST PUSH2 0x2B40 JUMP JUMPDEST PUSH2 0x8B7 PUSH2 0x8B2 CALLDATASIZE PUSH1 0x4 PUSH2 0x45A7 JUMP JUMPDEST PUSH2 0x2E2A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP2 SWAP1 PUSH2 0x48C2 JUMP JUMPDEST PUSH2 0x8D7 PUSH2 0x8D2 CALLDATASIZE PUSH1 0x4 PUSH2 0x442D JUMP JUMPDEST PUSH2 0x2FE9 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP7 DUP8 MSTORE PUSH1 0x20 DUP8 ADD SWAP6 SWAP1 SWAP6 MSTORE SWAP4 DUP6 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x80 DUP5 ADD MSTORE AND PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 ADD PUSH2 0x428 JUMP JUMPDEST PUSH2 0x923 PUSH2 0x91E CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH2 0x303C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP2 SWAP1 PUSH2 0x493B JUMP JUMPDEST PUSH2 0x41E PUSH1 0x14 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x94C PUSH2 0x947 CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH2 0x30CC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP2 SWAP1 PUSH2 0x496F JUMP JUMPDEST PUSH2 0x96C PUSH2 0x967 CALLDATASIZE PUSH1 0x4 PUSH2 0x442D JUMP JUMPDEST PUSH2 0x31A1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP2 SWAP1 PUSH2 0x4990 JUMP JUMPDEST PUSH2 0x98C PUSH2 0x987 CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH2 0x3265 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP11 DUP12 MSTORE PUSH1 0x20 DUP12 ADD SWAP10 SWAP1 SWAP10 MSTORE SWAP8 DUP10 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x60 DUP9 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x80 DUP8 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0xC0 DUP6 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0xE0 DUP5 ADD MSTORE ISZERO ISZERO PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP3 ADD MSTORE PUSH2 0x140 ADD PUSH2 0x428 JUMP JUMPDEST PUSH2 0x9F4 PUSH2 0x9EF CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH2 0x32E3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP3 SWAP2 SWAP1 PUSH2 0x49C9 JUMP JUMPDEST PUSH2 0x3E7 PUSH2 0x41E JUMP JUMPDEST PUSH2 0xA1D PUSH2 0xA18 CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0x3489 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP4 DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0x428 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0xA46 CALLDATASIZE PUSH1 0x4 PUSH2 0x442D JUMP JUMPDEST PUSH2 0x34E8 JUMP JUMPDEST PUSH2 0xA88 PUSH2 0xA59 CALLDATASIZE PUSH1 0x4 PUSH2 0x442D JUMP JUMPDEST PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP3 ADD SLOAD PUSH1 0x2 DUP4 ADD SLOAD PUSH1 0x3 DUP5 ADD SLOAD PUSH1 0x4 SWAP1 SWAP5 ADD SLOAD SWAP3 SWAP4 SWAP2 SWAP3 SWAP1 SWAP2 SWAP1 DUP6 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP6 DUP7 MSTORE PUSH1 0x20 DUP7 ADD SWAP5 SWAP1 SWAP5 MSTORE SWAP3 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD PUSH2 0x428 JUMP JUMPDEST PUSH2 0xAC3 PUSH2 0xABE CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0x351C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP2 SWAP1 PUSH2 0x49EE JUMP JUMPDEST PUSH2 0xA1D PUSH2 0xADE CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH2 0x35A4 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0xAF1 CALLDATASIZE PUSH1 0x4 PUSH2 0x442D JUMP JUMPDEST PUSH2 0x35E6 JUMP JUMPDEST PUSH2 0xB09 PUSH2 0xB04 CALLDATASIZE PUSH1 0x4 PUSH2 0x45A7 JUMP JUMPDEST PUSH2 0x361A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP2 SWAP1 PUSH2 0x4A44 JUMP JUMPDEST PUSH2 0x41E PUSH2 0xB24 CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x10 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH1 0xC SLOAD PUSH2 0x41E JUMP JUMPDEST PUSH2 0x5B2 PUSH2 0xB4C CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0x37E7 JUMP JUMPDEST PUSH2 0x41E PUSH1 0x12 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0xB68 CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH2 0x3ACD JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0xB7B CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH2 0x3F33 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0xB8E CALLDATASIZE PUSH1 0x4 PUSH2 0x45A7 JUMP JUMPDEST PUSH2 0x4056 JUMP JUMPDEST PUSH2 0x41E PUSH1 0x16 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0xBAA CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0x4167 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD PUSH1 0x10 SWAP1 SWAP3 MSTORE DUP3 KECCAK256 SLOAD DUP1 JUMPDEST PUSH1 0x12 SLOAD DUP2 LT ISZERO PUSH2 0xC3D JUMPI DUP3 ISZERO PUSH2 0xC2B JUMPI PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x3 ADD SLOAD PUSH2 0x2710 SWAP1 PUSH2 0xC05 SWAP1 DUP7 PUSH2 0x4AD4 JUMP JUMPDEST PUSH2 0xC0F SWAP2 SWAP1 PUSH2 0x4AEB JUMP JUMPDEST SWAP1 POP PUSH2 0xC1B DUP2 DUP7 PUSH2 0x4B0D JUMP JUMPDEST SWAP5 POP PUSH2 0xC27 DUP2 DUP6 PUSH2 0x4B20 JUMP JUMPDEST SWAP4 POP POP JUMPDEST DUP1 PUSH2 0xC35 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xBD5 JUMP JUMPDEST POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP3 SWAP2 SWAP1 DUP5 SWAP1 DUP2 LT PUSH2 0xC72 JUMPI PUSH2 0xC72 PUSH2 0x4B4C JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x9 MUL ADD SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x6 ADD SLOAD TIMESTAMP PUSH2 0xC94 SWAP2 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST PUSH1 0x7 DUP4 ADD SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP1 JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 LT ISZERO PUSH2 0xD70 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0xCF3 JUMPI PUSH2 0xCF3 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 KECCAK256 PUSH1 0x2 SWAP1 SWAP2 MUL ADD DUP1 SLOAD PUSH1 0x1 DUP3 ADD SLOAD PUSH1 0x8 DUP11 ADD SLOAD SWAP3 SWAP5 POP SWAP1 SWAP3 SWAP1 SWAP2 PUSH1 0x64 SWAP1 PUSH2 0xD24 SWAP1 PUSH1 0xA SWAP1 PUSH2 0x4AD4 JUMP JUMPDEST PUSH2 0xD2E SWAP2 SWAP1 PUSH2 0x4AEB JUMP JUMPDEST SWAP1 POP DUP3 DUP9 LT PUSH2 0xD5B JUMPI PUSH2 0x2710 PUSH2 0xD44 DUP4 DUP4 PUSH2 0x4AD4 JUMP JUMPDEST PUSH2 0xD4E SWAP2 SWAP1 PUSH2 0x4AEB JUMP JUMPDEST PUSH2 0xD58 SWAP1 DUP8 PUSH2 0x4B0D JUMP JUMPDEST SWAP6 POP JUMPDEST POP POP POP POP DUP1 PUSH2 0xD69 SWAP1 PUSH2 0x4B33 JUMP JUMPDEST SWAP1 POP PUSH2 0xCA9 JUMP JUMPDEST POP SWAP4 POP POP POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xD85 PUSH2 0x41E0 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD90 CALLER PUSH2 0xBAF JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 GT PUSH2 0xDDA 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 0x4E6F7468696E6720746F20636C61696D PUSH1 0x80 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0xDF9 SWAP1 DUP5 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x13 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xE12 SWAP2 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x12 SLOAD CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x10 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE PUSH1 0x11 DUP2 MSTORE SWAP1 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0x60 DUP2 ADD DUP5 MSTORE TIMESTAMP DUP1 DUP3 MSTORE SWAP3 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0xA SLOAD SWAP2 SWAP4 SWAP1 SWAP3 SWAP1 DUP4 ADD SWAP2 PUSH2 0xE5E SWAP2 PUSH2 0x4B0D JUMP JUMPDEST SWAP1 MSTORE DUP2 SLOAD PUSH1 0x1 DUP1 DUP3 ADD DUP5 SSTORE PUSH1 0x0 SWAP4 DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 SWAP1 KECCAK256 DUP4 MLOAD PUSH1 0x3 SWAP1 SWAP4 MUL ADD SWAP2 DUP3 SSTORE DUP3 DUP5 ADD MLOAD SWAP1 DUP3 ADD SSTORE PUSH1 0x40 SWAP2 DUP3 ADD MLOAD PUSH1 0x2 SWAP1 SWAP2 ADD SSTORE MLOAD DUP3 DUP2 MSTORE CALLER SWAP2 PUSH32 0xA65A8B4F7F65A1063243D7F7E9E4DA00FF767599ACF21549EF2548A45D1695AE SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH2 0xECF PUSH1 0x1 PUSH1 0x0 SSTORE JUMP JUMPDEST JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0xF00 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0xF54 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x9 PUSH1 0x24 DUP3 ADD MSTORE PUSH9 0x2737BA1037BBB732B9 PUSH1 0xB9 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SUB PUSH2 0xFA1 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 0x21B0B73737BA103932B6B7BB329039B2B633 PUSH1 0x71 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0xFF1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x17 SSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD DUP2 PUSH2 0x1019 DUP5 PUSH2 0xBAF JUMP JUMPDEST SWAP1 POP PUSH2 0x1025 DUP2 DUP4 PUSH2 0x4B20 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x1035 PUSH2 0x41E0 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH2 0x1088 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x4E6F207374616B657320617661696C61626C65 PUSH1 0x68 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 SLOAD DUP2 LT ISZERO PUSH2 0x1179 JUMPI PUSH1 0x0 DUP3 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x10A8 JUMPI PUSH2 0x10A8 PUSH2 0x4B4C JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD SWAP1 POP DUP4 DUP2 PUSH1 0x0 ADD SLOAD EQ DUP1 ISZERO PUSH2 0x10CF JUMPI POP PUSH1 0x0 DUP2 PUSH1 0x1 ADD SLOAD GT JUMPDEST ISZERO PUSH2 0x1166 JUMPI DUP1 PUSH1 0x2 ADD SLOAD TIMESTAMP LT ISZERO PUSH2 0x1117 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x14DD185AD9481B1BD8DAD959 PUSH1 0xA2 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD DUP1 SLOAD PUSH1 0x0 SWAP1 SWAP2 SSTORE PUSH1 0x40 DUP1 MLOAD DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP8 SWAP1 MSTORE CALLER SWAP2 PUSH32 0x933735AA8DE6D7547D0126171B2F31B9C34DD00F3ECD4BE85A0BA047DB4FAFEF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP PUSH2 0x11B4 JUMP JUMPDEST POP DUP1 PUSH2 0x1171 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x108B JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x14DD185AD9481B9BDD08199BDD5B99 PUSH1 0x8A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH2 0x11BE PUSH1 0x1 PUSH1 0x0 SSTORE JUMP JUMPDEST POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x11F0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x14 SSTORE JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 DUP4 DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1213 JUMPI PUSH2 0x1213 PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x123C JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP4 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1257 JUMPI PUSH2 0x1257 PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1280 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP3 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x13DA JUMPI PUSH1 0x0 DUP8 DUP8 DUP4 DUP2 DUP2 LT PUSH2 0x12A2 JUMPI PUSH2 0x12A2 PUSH2 0x4B4C JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x12B7 SWAP2 SWAP1 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP8 MLOAD SWAP2 SWAP3 POP SWAP1 DUP2 SWAP1 DUP9 SWAP1 DUP6 SWAP1 DUP2 LT PUSH2 0x12EA JUMPI PUSH2 0x12EA PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x6 SWAP1 SWAP4 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 SLOAD SWAP1 MLOAD PUSH4 0x2C68BE3 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 SWAP2 AND SWAP1 PUSH4 0x16345F18 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1352 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 0x1376 SWAP2 SWAP1 PUSH2 0x4BA0 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 PUSH2 0x138D DUP5 DUP5 PUSH2 0x4AD4 JUMP JUMPDEST PUSH2 0x1397 SWAP2 SWAP1 PUSH2 0x4AEB JUMP JUMPDEST SWAP1 POP DUP1 DUP9 DUP7 DUP2 MLOAD DUP2 LT PUSH2 0x13AC JUMPI PUSH2 0x13AC PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH2 0x13C1 DUP2 DUP9 PUSH2 0x4B0D JUMP JUMPDEST SWAP7 POP POP POP POP POP DUP1 DUP1 PUSH2 0x13D2 SWAP1 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1286 JUMP JUMPDEST POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x1412 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH2 0x1426 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND CALLER DUP4 PUSH2 0x420A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 CALLER SWAP1 PUSH32 0xA92FF919B850E4909AB2261D907EF955F11BC1716733A6CBECE38D163A69AF8A SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x19 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x147A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 PUSH1 0x2 SWAP1 SWAP2 MUL ADD DUP1 SLOAD PUSH1 0x1 SWAP1 SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP2 POP DUP3 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x14D1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 LT ISZERO PUSH2 0x162E JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0x151E JUMPI PUSH2 0x151E PUSH2 0x4B4C JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x9 MUL ADD SWAP1 POP DUP1 PUSH1 0x7 ADD PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x15F2 JUMPI PUSH1 0x8 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD LT PUSH2 0x159A JUMPI PUSH1 0x8 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP1 SWAP2 SWAP1 PUSH2 0x1594 SWAP1 DUP5 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP JUMPDEST DUP1 SLOAD PUSH1 0x7 DUP3 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD LT PUSH2 0x15F2 JUMPI DUP1 SLOAD PUSH1 0x7 DUP3 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP1 SWAP2 SWAP1 PUSH2 0x15EC SWAP1 DUP5 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP JUMPDEST PUSH1 0x0 DUP1 DUP3 SSTORE PUSH1 0x1 DUP3 ADD DUP2 SWAP1 SSTORE PUSH1 0x3 DUP3 ADD DUP2 SWAP1 SSTORE PUSH1 0x4 DUP3 ADD SSTORE PUSH1 0x7 ADD DUP1 SLOAD PUSH1 0xFF PUSH1 0xA0 SHL NOT AND PUSH1 0x1 PUSH1 0xA0 SHL OR SWAP1 SSTORE PUSH2 0x1627 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP1 POP PUSH2 0x14D4 JUMP JUMPDEST POP POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x1661 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x16 SSTORE JUMP JUMPDEST PUSH1 0x5 PUSH1 0x20 MSTORE DUP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1682 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 PUSH1 0x2 SWAP1 SWAP2 MUL ADD DUP1 SLOAD PUSH1 0x1 SWAP1 SWAP2 ADD SLOAD SWAP1 SWAP3 POP SWAP1 POP DUP3 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x16D1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST DUP3 DUP2 EQ PUSH2 0x1718 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 0x82E4E4C2F240D8CADCCEE8D040DAD2E6DAC2E8C6D PUSH1 0x5B SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST DUP3 PUSH2 0x1754 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x456D70747920617272617973 PUSH1 0xA0 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x0 DUP1 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x196D JUMPI PUSH1 0x0 DUP7 DUP7 DUP4 DUP2 DUP2 LT PUSH2 0x1774 JUMPI PUSH2 0x1774 PUSH2 0x4B4C JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1789 SWAP2 SWAP1 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x17AF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4BB9 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 DUP4 DUP2 DUP2 LT PUSH2 0x17C3 JUMPI PUSH2 0x17C3 PUSH2 0x4B4C JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD GT PUSH2 0x1808 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x125B9D985B1A5908185B5BDD5B9D PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST DUP4 DUP4 DUP3 DUP2 DUP2 LT PUSH2 0x181A JUMPI PUSH2 0x181A PUSH2 0x4B4C JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD PUSH1 0xF PUSH1 0x0 DUP9 DUP9 DUP6 DUP2 DUP2 LT PUSH2 0x1837 JUMPI PUSH2 0x1837 PUSH2 0x4B4C JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x184C SWAP2 SWAP1 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x1870 SWAP1 DUP5 PUSH2 0x4B20 JUMP JUMPDEST PUSH2 0x187A SWAP2 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST SWAP2 POP DUP4 DUP4 DUP3 DUP2 DUP2 LT PUSH2 0x188E JUMPI PUSH2 0x188E PUSH2 0x4B4C JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD PUSH1 0xF PUSH1 0x0 DUP9 DUP9 DUP6 DUP2 DUP2 LT PUSH2 0x18AB JUMPI PUSH2 0x18AB PUSH2 0x4B4C JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x18C0 SWAP2 SWAP1 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 SSTORE DUP6 DUP6 DUP3 DUP2 DUP2 LT PUSH2 0x18EC JUMPI PUSH2 0x18EC PUSH2 0x4B4C JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1901 SWAP2 SWAP1 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xEC7E3594982826A1F90C8FC76513357B83A691B7F4E38B8BE04F3D40F9B15839 DUP6 DUP6 DUP5 DUP2 DUP2 LT PUSH2 0x193D JUMPI PUSH2 0x193D PUSH2 0x4B4C JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD PUSH1 0x40 MLOAD PUSH2 0x1953 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP1 PUSH2 0x1965 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1758 JUMP JUMPDEST POP DUP1 PUSH1 0x13 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1980 SWAP2 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1994 PUSH2 0x41E0 JUMP JUMPDEST PUSH1 0x0 DUP3 GT PUSH2 0x19D4 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 0x496E76616C69642076616C7565 PUSH1 0x98 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x0 DUP2 GT PUSH2 0x1A19 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 0x496E76616C69642073616C65207072696365 PUSH1 0x70 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x16 SLOAD DUP3 LT ISZERO PUSH2 0x1A61 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x56616C75652062656C6F77206D696E696D756D PUSH1 0x68 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A6C CALLER PUSH2 0xFF6 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 GT ISZERO PUSH2 0x1AB7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH22 0x496E73756666696369656E74206E6574207374616B65 PUSH1 0x50 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x15 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 TIMESTAMP DUP1 DUP6 MSTORE SWAP3 MSTORE SWAP1 SWAP2 KECCAK256 SLOAD ISZERO PUSH2 0x1B19 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH22 0x5374616B65496420616C726561647920657869737473 PUSH1 0x50 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP7 SWAP3 SWAP1 PUSH2 0x1B38 SWAP1 DUP5 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP4 PUSH1 0x13 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1B51 SWAP2 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD DUP3 MSTORE DUP6 DUP2 MSTORE PUSH1 0x20 DUP1 DUP3 ADD DUP7 DUP2 MSTORE CALLER DUP4 DUP6 ADD DUP2 DUP2 MSTORE TIMESTAMP PUSH1 0x60 DUP7 ADD SWAP1 DUP2 MSTORE PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x15 DUP7 MSTORE DUP8 DUP2 KECCAK256 DUP10 DUP3 MSTORE DUP7 MSTORE DUP8 DUP2 KECCAK256 SWAP7 MLOAD DUP8 SSTORE SWAP4 MLOAD PUSH1 0x1 DUP1 DUP9 ADD SWAP2 SWAP1 SWAP2 SSTORE SWAP2 MLOAD PUSH1 0x2 DUP1 DUP9 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP2 DUP3 AND OR SWAP1 SWAP2 SSTORE SWAP3 MLOAD PUSH1 0x3 SWAP1 SWAP9 ADD SWAP8 SWAP1 SWAP8 SSTORE DUP8 MLOAD DUP1 DUP10 ADD SWAP1 SWAP9 MSTORE SWAP3 DUP8 MSTORE SWAP4 DUP7 ADD DUP8 DUP2 MSTORE PUSH1 0x19 DUP1 SLOAD DUP1 DUP5 ADD DUP3 SSTORE SWAP5 DUP2 SWAP1 MSTORE SWAP7 MLOAD SWAP4 SWAP1 SWAP6 MUL PUSH32 0x944998273E477B495144FB8794C914197F3CCB46BE2900F4698FD0EF743C9695 DUP2 ADD DUP1 SLOAD SWAP5 SWAP1 SWAP4 AND SWAP4 SWAP1 SWAP5 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SSTORE SWAP2 MLOAD PUSH32 0x944998273E477B495144FB8794C914197F3CCB46BE2900F4698FD0EF743C9696 SWAP1 SWAP2 ADD SSTORE SWAP1 SLOAD PUSH2 0x1C56 SWAP2 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1A PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP7 DUP5 MSTORE DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE DUP1 MLOAD DUP7 DUP2 MSTORE SWAP3 DUP4 ADD DUP5 SWAP1 MSTORE SWAP1 SWAP2 PUSH32 0x8E79B7BA8DAB5EBFA59B9C6AF1743C3EF14863680B3CC5AC837F8D636F76031C SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP PUSH2 0x162E PUSH1 0x1 PUSH1 0x0 SSTORE JUMP JUMPDEST PUSH1 0x19 SLOAD PUSH1 0x60 SWAP1 DUP2 SWAP1 DUP2 SWAP1 DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1CDB JUMPI PUSH2 0x1CDB PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1D04 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP4 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1D1F JUMPI PUSH2 0x1D1F PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1D48 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP3 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1D63 JUMPI PUSH2 0x1D63 PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1DC8 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x1DB5 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND 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 0x1D81 JUMPI SWAP1 POP JUMPDEST POP SWAP2 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1F05 JUMPI PUSH1 0x0 PUSH1 0x19 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x1DEB JUMPI PUSH2 0x1DEB PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x2 SWAP1 SWAP3 MUL ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 DUP4 MSTORE PUSH1 0x1 SWAP1 SWAP2 ADD SLOAD SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE DUP8 MLOAD SWAP1 SWAP3 POP DUP8 SWAP1 DUP5 SWAP1 DUP2 LT PUSH2 0x1E38 JUMPI PUSH2 0x1E38 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP POP DUP1 PUSH1 0x20 ADD MLOAD DUP6 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1E6F JUMPI PUSH2 0x1E6F PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x15 DUP4 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 ADD MLOAD DUP4 MSTORE DUP5 MSTORE SWAP1 DUP2 SWAP1 KECCAK256 DUP2 MLOAD PUSH1 0x80 DUP2 ADD DUP4 MSTORE DUP2 SLOAD DUP2 MSTORE PUSH1 0x1 DUP3 ADD SLOAD SWAP5 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x2 DUP2 ADD SLOAD SWAP1 SWAP3 AND SWAP1 DUP4 ADD MSTORE PUSH1 0x3 ADD SLOAD PUSH1 0x60 DUP3 ADD MSTORE DUP5 MLOAD DUP6 SWAP1 DUP5 SWAP1 DUP2 LT PUSH2 0x1EE6 JUMPI PUSH2 0x1EE6 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP POP DUP1 DUP1 PUSH2 0x1EFD SWAP1 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1DCE JUMP JUMPDEST POP POP SWAP1 SWAP2 SWAP3 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x1F3B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP2 SWAP1 SWAP3 AND OR SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x1F98 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND ISZERO PUSH2 0x1FF1 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 0x20B63932B0B23C9037BBB732B9 PUSH1 0x99 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x2044 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP10 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 PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 DUP10 DUP2 MSTORE PUSH1 0x20 ADD DUP9 DUP2 MSTORE PUSH1 0x20 ADD DUP8 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD DUP6 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x9 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SSTORE PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE PUSH1 0xA0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD SSTORE PUSH1 0xC0 DUP3 ADD MLOAD DUP2 PUSH1 0x6 ADD SSTORE PUSH1 0xE0 DUP3 ADD MLOAD DUP2 PUSH1 0x7 ADD 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 PUSH2 0x100 DUP3 ADD MLOAD DUP2 PUSH1 0x7 ADD PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0x120 DUP3 ADD MLOAD DUP2 PUSH1 0x8 ADD SSTORE POP POP DUP3 PUSH1 0x7 PUSH1 0x0 DUP11 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 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x21BC SWAP2 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP10 SWAP3 SWAP1 PUSH2 0x21E9 SWAP1 DUP5 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD DUP3 MLOAD DUP2 DUP6 MUL DUP2 ADD DUP6 ADD SWAP1 SWAP4 MSTORE DUP1 DUP4 MSTORE PUSH1 0x60 SWAP5 SWAP3 SWAP4 SWAP2 SWAP3 SWAP1 SWAP2 DUP5 ADD JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x22D4 JUMPI PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 SWAP1 DUP2 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD PUSH2 0x140 DUP2 ADD DUP3 MSTORE PUSH1 0x9 DUP7 MUL SWAP1 SWAP3 ADD DUP1 SLOAD DUP4 MSTORE PUSH1 0x1 DUP1 DUP3 ADD SLOAD DUP5 DUP7 ADD MSTORE PUSH1 0x2 DUP3 ADD SLOAD SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x3 DUP2 ADD SLOAD PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x4 DUP2 ADD SLOAD PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0x5 DUP2 ADD SLOAD PUSH1 0xA0 DUP5 ADD MSTORE PUSH1 0x6 DUP2 ADD SLOAD PUSH1 0xC0 DUP5 ADD MSTORE PUSH1 0x7 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0xE0 DUP6 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO PUSH2 0x100 DUP5 ADD MSTORE PUSH1 0x8 ADD SLOAD PUSH2 0x120 DUP4 ADD MSTORE SWAP1 DUP4 MSTORE SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x2230 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x230E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0x232E JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x234C JUMPI POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST PUSH2 0x2368 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4BB9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP1 PUSH2 0x23C7 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 0x4E6F2076657374696E677320617661696C61626C65 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x250C JUMPI PUSH1 0x0 DUP5 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x23FD JUMPI PUSH2 0x23FD PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 DUP7 SLOAD PUSH1 0x1 DUP1 DUP3 ADD DUP10 SSTORE DUP9 DUP7 MSTORE SWAP3 DUP6 KECCAK256 PUSH1 0x9 SWAP5 DUP6 MUL SWAP1 SWAP3 ADD DUP1 SLOAD SWAP5 SWAP1 SWAP2 MUL SWAP1 SWAP2 ADD SWAP3 DUP4 SSTORE DUP1 DUP3 ADD DUP1 SLOAD SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 SSTORE PUSH1 0x2 DUP1 DUP3 ADD DUP1 SLOAD SWAP2 DUP6 ADD SWAP2 SWAP1 SWAP2 SSTORE PUSH1 0x3 DUP1 DUP4 ADD DUP1 SLOAD SWAP2 DUP7 ADD SWAP2 SWAP1 SWAP2 SSTORE PUSH1 0x4 DUP1 DUP5 ADD DUP1 SLOAD SWAP2 DUP8 ADD SWAP2 SWAP1 SWAP2 SSTORE PUSH1 0x5 DUP1 DUP6 ADD DUP1 SLOAD SWAP2 DUP9 ADD SWAP2 SWAP1 SWAP2 SSTORE PUSH1 0x6 DUP1 DUP7 ADD DUP1 SLOAD SWAP2 DUP10 ADD SWAP2 SWAP1 SWAP2 SSTORE PUSH1 0x7 DUP1 DUP8 ADD DUP1 SLOAD SWAP2 DUP11 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP5 AND DUP2 OR DUP3 SSTORE DUP3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA8 SHL SUB NOT SWAP1 SWAP5 AND OR PUSH1 0x1 PUSH1 0xA0 SHL SWAP4 DUP5 SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO DUP5 MUL OR SWAP1 SSTORE PUSH1 0x8 DUP1 DUP10 ADD DUP1 SLOAD SWAP2 SWAP1 SWAP12 ADD SSTORE SWAP7 DUP11 SWAP1 SSTORE SWAP7 DUP10 SWAP1 SSTORE SWAP4 DUP9 SWAP1 SSTORE SWAP2 DUP8 SWAP1 SSTORE DUP7 SWAP1 SSTORE DUP6 SWAP1 SSTORE DUP5 SWAP1 SSTORE SWAP3 SWAP1 SWAP2 SSTORE DUP2 SLOAD PUSH1 0xFF PUSH1 0xA0 SHL NOT AND OR SWAP1 SSTORE POP DUP1 PUSH2 0x2504 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x23E1 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SLOAD SWAP3 DUP8 AND DUP3 MSTORE DUP2 KECCAK256 DUP1 SLOAD SWAP1 SWAP2 SWAP1 PUSH2 0x253F SWAP1 DUP5 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP4 SWAP1 SSTORE PUSH1 0xB SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD DUP1 ISZERO PUSH2 0x2644 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xB PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x2620 JUMPI DUP2 DUP5 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x25A6 JUMPI PUSH2 0x25A6 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 DUP5 SLOAD PUSH1 0x1 DUP2 DUP2 ADD DUP8 SSTORE SWAP6 DUP6 MSTORE SWAP2 SWAP1 SWAP4 KECCAK256 PUSH1 0x4 SWAP3 DUP4 MUL SWAP1 SWAP4 ADD DUP1 SLOAD SWAP2 SWAP1 SWAP3 MUL SWAP1 SWAP3 ADD SWAP2 DUP3 SSTORE DUP3 DUP2 ADD SLOAD SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 SSTORE PUSH1 0x2 DUP1 DUP4 ADD SLOAD SWAP1 DUP3 ADD SSTORE PUSH1 0x3 SWAP2 DUP3 ADD SLOAD SWAP2 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE DUP1 PUSH2 0x2618 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x258B JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xB PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH2 0x2642 SWAP2 PUSH2 0x4371 JUMP JUMPDEST POP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2819 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0x269A JUMPI PUSH2 0x269A PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD PUSH2 0x140 DUP2 ADD DUP3 MSTORE PUSH1 0x9 SWAP1 SWAP4 MUL SWAP1 SWAP2 ADD DUP1 SLOAD DUP4 MSTORE PUSH1 0x1 DUP2 ADD SLOAD SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x2 DUP4 ADD SLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x3 DUP3 ADD SLOAD PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x4 DUP3 ADD SLOAD PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0x5 DUP3 ADD SLOAD PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0x6 DUP3 ADD SLOAD PUSH1 0xC0 DUP3 ADD MSTORE PUSH1 0x7 DUP3 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0xE0 DUP4 ADD MSTORE PUSH1 0xFF PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV AND ISZERO ISZERO PUSH2 0x100 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x8 SWAP1 SWAP3 ADD SLOAD PUSH2 0x120 DUP3 ADD MSTORE SWAP2 POP PUSH2 0x2806 JUMPI PUSH1 0xE0 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SLOAD SWAP4 MLOAD SWAP1 MLOAD PUSH4 0x2C68BE3 PUSH1 0xE3 SHL DUP2 MSTORE SWAP1 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP1 SWAP3 SWAP1 SWAP2 AND SWAP1 PUSH4 0x16345F18 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2797 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 0x27BB SWAP2 SWAP1 PUSH2 0x4BA0 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP3 PUSH1 0x60 ADD MLOAD DUP4 PUSH1 0x0 ADD MLOAD PUSH2 0x27D3 SWAP2 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 PUSH2 0x27EA DUP4 DUP6 PUSH2 0x4AD4 JUMP JUMPDEST PUSH2 0x27F4 SWAP2 SWAP1 PUSH2 0x4AEB JUMP JUMPDEST SWAP1 POP PUSH2 0x2800 DUP2 DUP9 PUSH2 0x4B0D JUMP JUMPDEST SWAP7 POP POP POP POP JUMPDEST POP DUP1 PUSH2 0x2811 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x2668 JUMP JUMPDEST POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xB PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD DUP3 MLOAD DUP2 DUP6 MUL DUP2 ADD DUP6 ADD SWAP1 SWAP4 MSTORE DUP1 DUP4 MSTORE PUSH1 0x60 SWAP5 SWAP3 SWAP4 SWAP2 SWAP3 SWAP1 SWAP2 DUP5 ADD JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x22D4 JUMPI PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 SWAP1 DUP2 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD DUP3 MSTORE PUSH1 0x4 DUP7 MUL SWAP1 SWAP3 ADD DUP1 SLOAD DUP4 MSTORE PUSH1 0x1 DUP1 DUP3 ADD SLOAD DUP5 DUP7 ADD MSTORE PUSH1 0x2 DUP3 ADD SLOAD SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x3 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x60 DUP4 ADD MSTORE SWAP1 DUP4 MSTORE SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x2858 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP3 SWAP2 SWAP1 DUP5 SWAP1 DUP2 LT PUSH2 0x28E2 JUMPI PUSH2 0x28E2 PUSH2 0x4B4C JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x9 MUL ADD SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x6 ADD SLOAD TIMESTAMP PUSH2 0x2904 SWAP2 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST PUSH1 0x7 DUP4 ADD SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP1 JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 LT ISZERO PUSH2 0xD70 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0x2963 JUMPI PUSH2 0x2963 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 PUSH1 0x2 SWAP1 SWAP2 MUL ADD DUP1 SLOAD PUSH1 0x1 DUP3 ADD SLOAD SWAP2 SWAP3 POP SWAP1 DUP2 DUP8 LT PUSH2 0x29AD JUMPI DUP8 SLOAD PUSH2 0x2710 SWAP1 PUSH2 0x2996 SWAP1 DUP4 SWAP1 PUSH2 0x4AD4 JUMP JUMPDEST PUSH2 0x29A0 SWAP2 SWAP1 PUSH2 0x4AEB JUMP JUMPDEST PUSH2 0x29AA SWAP1 DUP7 PUSH2 0x4B0D JUMP JUMPDEST SWAP5 POP JUMPDEST POP POP POP DUP1 PUSH2 0x29BA SWAP1 PUSH2 0x4B33 JUMP JUMPDEST SWAP1 POP PUSH2 0x2919 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x29F0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x14 DUP2 SWAP1 SSTORE PUSH1 0x12 SLOAD PUSH1 0x0 SWAP1 ISZERO PUSH2 0x2A40 JUMPI PUSH1 0x0 PUSH1 0xE PUSH1 0x0 PUSH1 0x1 PUSH1 0x12 SLOAD PUSH2 0x2A15 SWAP2 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH2 0x2A3C DUP5 PUSH1 0x13 SLOAD DUP4 PUSH1 0x1 ADD SLOAD DUP5 PUSH1 0x2 ADD SLOAD DUP8 PUSH2 0x4261 JUMP JUMPDEST SWAP2 POP POP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE DUP6 DUP2 MSTORE PUSH1 0x20 DUP1 DUP3 ADD DUP7 DUP2 MSTORE PUSH1 0x13 SLOAD DUP4 DUP6 ADD SWAP1 DUP2 MSTORE PUSH1 0x60 DUP1 DUP6 ADD DUP8 DUP2 MSTORE TIMESTAMP PUSH1 0x80 DUP8 ADD SWAP1 DUP2 MSTORE PUSH1 0x12 DUP1 SLOAD PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xE DUP9 MSTORE DUP10 SWAP1 KECCAK256 SWAP8 MLOAD DUP9 SSTORE SWAP5 MLOAD PUSH1 0x1 DUP9 ADD SSTORE SWAP3 MLOAD PUSH1 0x2 DUP8 ADD SSTORE MLOAD PUSH1 0x3 DUP7 ADD SSTORE SWAP1 MLOAD PUSH1 0x4 SWAP1 SWAP5 ADD SWAP4 SWAP1 SWAP4 SSTORE SLOAD DUP4 MLOAD DUP8 DUP2 MSTORE SWAP2 DUP3 ADD DUP6 SWAP1 MSTORE SWAP3 DUP2 ADD DUP6 SWAP1 MSTORE PUSH32 0xEADBEDB993DFCA23E4C79BF4FA5FE531C2E0E926258FABB8445E8BC5C472780F SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x12 DUP1 SLOAD SWAP1 PUSH1 0x0 PUSH2 0x2AEE DUP4 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x2B28 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH2 0x2B38 DUP7 DUP7 DUP7 DUP7 DUP7 DUP7 TIMESTAMP TIMESTAMP PUSH2 0x2015 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x15 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP5 DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH2 0x2B78 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4BE2 JUMP JUMPDEST PUSH1 0x2 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x2BC5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x2737BA103A34329039B2B63632B9 PUSH1 0x91 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x17 SLOAD PUSH1 0x0 SWAP1 PUSH2 0x2710 SWAP1 PUSH2 0x2BDB SWAP1 DUP5 PUSH2 0x4AD4 JUMP JUMPDEST PUSH2 0x2BE5 SWAP2 SWAP1 PUSH2 0x4AEB JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2BF3 DUP3 DUP5 PUSH2 0x4B20 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP3 SWAP4 POP DUP4 SWAP3 SWAP1 SWAP2 SWAP1 PUSH2 0x2C17 SWAP1 DUP5 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x13 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2C30 SWAP2 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP DUP2 ISZERO PUSH2 0x2C77 JUMPI PUSH1 0x40 DUP1 MLOAD DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP8 SWAP1 MSTORE CALLER SWAP2 PUSH32 0x4725A4D4DE9BFF212D0885095E27515072F73F427DF55E52F37F241321EF88F9 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x15 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP10 DUP5 MSTORE DUP3 MSTORE DUP1 DUP4 KECCAK256 DUP4 DUP2 SSTORE PUSH1 0x1 DUP1 DUP3 ADD DUP6 SWAP1 SSTORE PUSH1 0x2 DUP3 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE PUSH1 0x3 SWAP1 SWAP2 ADD DUP5 SWAP1 SSTORE SWAP4 DUP4 MSTORE PUSH1 0x1A DUP3 MSTORE DUP1 DUP4 KECCAK256 DUP10 DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH1 0x19 SLOAD SWAP1 SWAP3 PUSH2 0x2CD7 SWAP2 PUSH2 0x4B20 JUMP JUMPDEST SWAP1 POP DUP1 DUP3 EQ PUSH2 0x2D98 JUMPI PUSH1 0x0 PUSH1 0x19 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x2CF5 JUMPI PUSH2 0x2CF5 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x2 SWAP1 SWAP3 MUL ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE PUSH1 0x1 ADD SLOAD SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x19 DUP1 SLOAD SWAP2 SWAP3 POP DUP3 SWAP2 DUP6 SWAP1 DUP2 LT PUSH2 0x2D41 JUMPI PUSH2 0x2D41 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 DUP5 MLOAD PUSH1 0x2 SWAP4 SWAP1 SWAP4 MUL ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND OR DUP2 SSTORE SWAP4 DUP2 ADD MLOAD PUSH1 0x1 SWAP1 SWAP5 ADD SWAP4 SWAP1 SWAP4 SSTORE DUP4 MLOAD AND DUP2 MSTORE PUSH1 0x1A DUP3 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP4 DUP4 ADD MLOAD DUP3 MSTORE SWAP3 SWAP1 SWAP2 MSTORE KECCAK256 DUP3 SWAP1 SSTORE JUMPDEST PUSH1 0x19 DUP1 SLOAD DUP1 PUSH2 0x2DA9 JUMPI PUSH2 0x2DA9 PUSH2 0x4C0D JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP1 DUP3 KECCAK256 PUSH1 0x2 PUSH1 0x0 NOT SWAP5 SWAP1 SWAP5 ADD SWAP4 DUP5 MUL ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND DUP2 SSTORE PUSH1 0x1 ADD DUP3 SWAP1 SSTORE SWAP2 SWAP1 SWAP3 SSTORE CALLER DUP1 DUP4 MSTORE PUSH1 0x1A DUP3 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP12 DUP6 MSTORE DUP4 MSTORE DUP1 DUP5 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE SWAP2 MLOAD DUP10 DUP2 MSTORE PUSH32 0x73D12DEC3EB3B445B6C9FEB2FD559BA7C852C525BC1E59D8F7FF760C55DF041D SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 DUP4 GT ISZERO PUSH2 0x2E6C 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 0x496E76616C69642072616E6765 PUSH1 0x98 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x12 SLOAD DUP3 LT PUSH2 0x2EB3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x115B9908195C1BD8DA081B9BDD08199BDD5B99 PUSH1 0x6A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2EBF DUP5 DUP5 PUSH2 0x4B20 JUMP JUMPDEST PUSH2 0x2ECA SWAP1 PUSH1 0x1 PUSH2 0x4B0D JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2EE6 JUMPI PUSH2 0x2EE6 PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2F49 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x2F36 PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x2F04 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x2FE0 JUMPI PUSH1 0xE PUSH1 0x0 PUSH2 0x2F65 DUP4 DUP10 PUSH2 0x4B0D JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE POP POP DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x2FC2 JUMPI PUSH2 0x2FC2 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x2FD8 SWAP1 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x2F4F JUMP JUMPDEST POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1B DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x2FF9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 PUSH1 0x6 SWAP1 SWAP2 MUL ADD DUP1 SLOAD PUSH1 0x1 DUP3 ADD SLOAD PUSH1 0x2 DUP4 ADD SLOAD PUSH1 0x3 DUP5 ADD SLOAD PUSH1 0x4 DUP6 ADD SLOAD PUSH1 0x5 SWAP1 SWAP6 ADD SLOAD SWAP4 SWAP6 POP SWAP2 SWAP4 SWAP1 SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND SWAP2 AND DUP7 JUMP JUMPDEST PUSH2 0x3070 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x15 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP4 MSTORE SWAP3 DUP2 MSTORE SWAP1 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0x80 DUP2 ADD DUP5 MSTORE DUP2 SLOAD DUP2 MSTORE PUSH1 0x1 DUP3 ADD SLOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x2 DUP2 ADD SLOAD SWAP1 SWAP4 AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x3 SWAP1 SWAP2 ADD SLOAD PUSH1 0x60 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH2 0x30F0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 LT ISZERO PUSH2 0x1179 JUMPI DUP4 DUP3 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x3126 JUMPI PUSH2 0x3126 PUSH2 0x4B4C JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 ADD SLOAD SUB PUSH2 0x318F JUMPI DUP2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x314F JUMPI PUSH2 0x314F PUSH2 0x4B4C JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP3 POP POP POP PUSH2 0xD77 JUMP JUMPDEST DUP1 PUSH2 0x3199 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x310A JUMP JUMPDEST PUSH2 0x31D3 PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x12 SLOAD DUP3 LT PUSH2 0x3216 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x115C1BD8DA081B9BDD08199BDD5B99 PUSH1 0x8A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xE PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0xA0 DUP2 ADD DUP5 MSTORE DUP2 SLOAD DUP2 MSTORE PUSH1 0x1 DUP3 ADD SLOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x2 DUP2 ADD SLOAD SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x3 DUP3 ADD SLOAD PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x4 SWAP1 SWAP2 ADD SLOAD PUSH1 0x80 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x4 PUSH1 0x20 MSTORE DUP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x3281 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 PUSH1 0x9 SWAP1 SWAP2 MUL ADD DUP1 SLOAD PUSH1 0x1 DUP3 ADD SLOAD PUSH1 0x2 DUP4 ADD SLOAD PUSH1 0x3 DUP5 ADD SLOAD PUSH1 0x4 DUP6 ADD SLOAD PUSH1 0x5 DUP7 ADD SLOAD PUSH1 0x6 DUP8 ADD SLOAD PUSH1 0x7 DUP9 ADD SLOAD PUSH1 0x8 SWAP1 SWAP9 ADD SLOAD SWAP7 SWAP10 POP SWAP5 SWAP8 POP SWAP3 SWAP6 SWAP2 SWAP5 SWAP1 SWAP4 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND SWAP2 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 DUP11 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x60 SWAP3 DUP4 SWAP3 SWAP1 SWAP2 DUP6 SWAP1 DUP2 LT PUSH2 0x3314 JUMPI PUSH2 0x3314 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 PUSH1 0x7 PUSH1 0x9 SWAP1 SWAP4 MUL ADD SWAP2 DUP3 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 DUP5 MSTORE PUSH1 0x5 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP4 KECCAK256 SLOAD SWAP2 SWAP4 POP SWAP2 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x335C JUMPI PUSH2 0x335C PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3385 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x33A2 JUMPI PUSH2 0x33A2 PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x33CB JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x3478 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0x3403 JUMPI PUSH2 0x3403 PUSH2 0x4B4C JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD DUP8 PUSH1 0x6 ADD SLOAD PUSH2 0x3427 SWAP2 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x3439 JUMPI PUSH2 0x3439 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP1 PUSH1 0x1 ADD SLOAD DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x345C JUMPI PUSH2 0x345C PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE POP PUSH2 0x3471 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP1 POP PUSH2 0x33D1 JUMP JUMPDEST POP SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH2 0x3498 DUP6 PUSH2 0xBAF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 SWAP2 POP PUSH2 0x34BF SWAP1 DUP3 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 SWAP5 POP SWAP1 SWAP3 POP SWAP1 POP JUMPDEST SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x3517 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x9 SSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD DUP3 MLOAD DUP2 DUP6 MUL DUP2 ADD DUP6 ADD SWAP1 SWAP4 MSTORE DUP1 DUP4 MSTORE PUSH1 0x60 SWAP5 SWAP3 SWAP4 SWAP2 SWAP3 SWAP1 SWAP2 DUP5 ADD JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x22D4 JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x3554 JUMP JUMPDEST PUSH1 0x11 PUSH1 0x20 MSTORE DUP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x35C0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 PUSH1 0x3 SWAP1 SWAP2 MUL ADD DUP1 SLOAD PUSH1 0x1 DUP3 ADD SLOAD PUSH1 0x2 SWAP1 SWAP3 ADD SLOAD SWAP1 SWAP4 POP SWAP1 SWAP2 POP DUP4 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x3615 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0xA SSTORE JUMP JUMPDEST PUSH1 0x1B SLOAD PUSH1 0x60 SWAP1 DUP4 LT PUSH2 0x366E 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 0x537461727420696E646578206F7574206F6620626F756E647300000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x367A DUP4 DUP6 PUSH2 0x4B0D JUMP JUMPDEST PUSH1 0x1B SLOAD SWAP1 SWAP2 POP DUP2 GT ISZERO PUSH2 0x368C JUMPI POP PUSH1 0x1B SLOAD JUMPDEST PUSH1 0x0 PUSH2 0x3698 DUP6 DUP4 PUSH2 0x4B20 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x36AF JUMPI PUSH2 0x36AF PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x372B JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x3718 PUSH1 0x40 MLOAD DUP1 PUSH1 0xC0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x36CD JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP DUP5 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x2FE0 JUMPI PUSH1 0x1B DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x374B JUMPI PUSH2 0x374B PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD PUSH1 0xC0 DUP2 ADD DUP3 MSTORE PUSH1 0x6 SWAP1 SWAP4 MUL SWAP1 SWAP2 ADD DUP1 SLOAD DUP4 MSTORE PUSH1 0x1 DUP2 ADD SLOAD SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x2 DUP4 ADD SLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x3 DUP3 ADD SLOAD PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x4 DUP3 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x5 SWAP1 SWAP3 ADD SLOAD SWAP1 SWAP2 AND PUSH1 0xA0 DUP3 ADD MSTORE DUP3 PUSH2 0x37B9 DUP9 DUP5 PUSH2 0x4B20 JUMP JUMPDEST DUP2 MLOAD DUP2 LT PUSH2 0x37C9 JUMPI PUSH2 0x37C9 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x37DF SWAP1 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3730 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD PUSH1 0x10 SWAP1 SWAP3 MSTORE DUP3 KECCAK256 SLOAD PUSH1 0x12 SLOAD PUSH1 0x60 SWAP4 DUP5 SWAP4 SWAP1 SWAP3 SWAP1 SWAP2 DUP4 SWAP1 PUSH2 0x3824 SWAP1 DUP4 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 SUB PUSH2 0x3855 JUMPI POP POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 DUP2 MSTORE DUP3 DUP5 ADD SWAP1 SWAP4 MSTORE SWAP1 SWAP6 POP SWAP1 SWAP4 POP SWAP2 POP PUSH2 0x34E1 SWAP1 POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x386D JUMPI PUSH2 0x386D PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3896 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP6 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x38B1 JUMPI PUSH2 0x38B1 PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x38DA JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP5 POP PUSH1 0x0 DUP3 JUMPDEST PUSH1 0x12 SLOAD DUP2 LT ISZERO PUSH2 0x399A JUMPI DUP5 ISZERO PUSH2 0x3988 JUMPI PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x3 ADD SLOAD PUSH2 0x2710 SWAP1 PUSH2 0x3911 SWAP1 DUP9 PUSH2 0x4AD4 JUMP JUMPDEST PUSH2 0x391B SWAP2 SWAP1 PUSH2 0x4AEB JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x3986 JUMPI DUP2 DUP10 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x3936 JUMPI PUSH2 0x3936 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP1 DUP9 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x3955 JUMPI PUSH2 0x3955 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH2 0x396A DUP2 DUP9 PUSH2 0x4B0D JUMP JUMPDEST SWAP7 POP PUSH2 0x3976 DUP2 DUP8 PUSH2 0x4B20 JUMP JUMPDEST SWAP6 POP DUP3 PUSH2 0x3982 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP4 POP POP JUMPDEST POP JUMPDEST DUP1 PUSH2 0x3992 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x38E1 JUMP JUMPDEST POP DUP2 DUP2 LT ISZERO PUSH2 0x3AC2 JUMPI PUSH1 0x0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x39BD JUMPI PUSH2 0x39BD PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x39E6 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3A03 JUMPI PUSH2 0x3A03 PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3A2C JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x3ABB JUMPI DUP10 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x3A4C JUMPI PUSH2 0x3A4C PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3A66 JUMPI PUSH2 0x3A66 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP9 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x3A84 JUMPI PUSH2 0x3A84 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3A9E JUMPI PUSH2 0x3A9E PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x3AB3 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3A32 JUMP JUMPDEST POP SWAP1 SWAP8 POP SWAP6 POP JUMPDEST POP POP POP POP SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH2 0x3AD5 PUSH2 0x41E0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x15 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP5 DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH2 0x3B16 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4BE2 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SUB PUSH2 0x3B67 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH22 0x43616E6E6F7420627579206F776E206C697374696E67 PUSH1 0x50 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 DUP3 ADD SLOAD PUSH1 0x3 DUP4 ADD SLOAD PUSH1 0x0 DUP3 DUP5 GT PUSH2 0x3B83 JUMPI PUSH1 0x0 PUSH2 0x3B8D JUMP JUMPDEST PUSH2 0x3B8D DUP4 DUP6 PUSH2 0x4B20 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x3B9C PUSH1 0x2 DUP4 PUSH2 0x4AEB JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x3BAA DUP3 DUP8 PUSH2 0x4B20 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP3 SWAP4 POP DUP4 SWAP3 SWAP1 SWAP2 SWAP1 PUSH2 0x3BCE SWAP1 DUP5 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x13 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x3BE7 SWAP2 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP8 SWAP3 SWAP1 PUSH2 0x3C14 SWAP1 DUP5 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1B PUSH1 0x40 MLOAD DUP1 PUSH1 0xC0 ADD PUSH1 0x40 MSTORE DUP1 DUP7 DUP2 MSTORE PUSH1 0x20 ADD TIMESTAMP DUP2 MSTORE PUSH1 0x20 ADD DUP9 DUP2 MSTORE PUSH1 0x20 ADD DUP8 DUP2 MSTORE PUSH1 0x20 ADD DUP12 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x6 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SSTORE PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD 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 PUSH1 0xA0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD 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 POP POP PUSH1 0x15 PUSH1 0x0 DUP11 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 PUSH1 0x0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP1 DUP3 ADD PUSH1 0x0 SWAP1 SSTORE PUSH1 0x1 DUP3 ADD PUSH1 0x0 SWAP1 SSTORE PUSH1 0x2 DUP3 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 SSTORE PUSH1 0x3 DUP3 ADD PUSH1 0x0 SWAP1 SSTORE POP POP PUSH1 0x0 PUSH1 0x1A 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 PUSH1 0x0 DUP11 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP PUSH1 0x0 PUSH1 0x1 PUSH1 0x19 DUP1 SLOAD SWAP1 POP PUSH2 0x3DC3 SWAP2 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST SWAP1 POP DUP1 DUP3 EQ PUSH2 0x3E84 JUMPI PUSH1 0x0 PUSH1 0x19 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x3DE1 JUMPI PUSH2 0x3DE1 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x2 SWAP1 SWAP3 MUL ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE PUSH1 0x1 ADD SLOAD SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x19 DUP1 SLOAD SWAP2 SWAP3 POP DUP3 SWAP2 DUP6 SWAP1 DUP2 LT PUSH2 0x3E2D JUMPI PUSH2 0x3E2D PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 DUP5 MLOAD PUSH1 0x2 SWAP4 SWAP1 SWAP4 MUL ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND OR DUP2 SSTORE SWAP4 DUP2 ADD MLOAD PUSH1 0x1 SWAP1 SWAP5 ADD SWAP4 SWAP1 SWAP4 SSTORE DUP4 MLOAD AND DUP2 MSTORE PUSH1 0x1A DUP3 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP4 DUP4 ADD MLOAD DUP3 MSTORE SWAP3 SWAP1 SWAP2 MSTORE KECCAK256 DUP3 SWAP1 SSTORE JUMPDEST PUSH1 0x19 DUP1 SLOAD DUP1 PUSH2 0x3E95 JUMPI PUSH2 0x3E95 PUSH2 0x4C0D JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP1 DUP3 KECCAK256 PUSH1 0x2 PUSH1 0x0 NOT SWAP5 SWAP1 SWAP5 ADD SWAP4 DUP5 MUL ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND DUP2 SSTORE PUSH1 0x1 ADD DUP3 SWAP1 SSTORE SWAP2 SWAP1 SWAP3 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP14 AND DUP1 DUP4 MSTORE PUSH1 0x1A DUP3 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP15 DUP6 MSTORE DUP4 MSTORE DUP1 DUP5 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE DUP3 MLOAD DUP11 DUP2 MSTORE SWAP2 DUP3 ADD DUP14 SWAP1 MSTORE CALLER SWAP3 SWAP1 SWAP2 PUSH32 0x7BB39D095B04A9986ED34ADF14D74C33294D0A9E807F02BF634D532507422EBA SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP POP POP POP PUSH2 0x162E PUSH1 0x1 PUSH1 0x0 SSTORE JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x3F62 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3F88 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4BB9 JUMP JUMPDEST PUSH1 0x0 DUP2 GT PUSH2 0x3FC9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x125B9D985B1A5908185B5BDD5B9D PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x13 SLOAD DUP3 SWAP2 PUSH2 0x3FF0 SWAP2 PUSH2 0x4B20 JUMP JUMPDEST PUSH2 0x3FFA SWAP2 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST PUSH1 0x13 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP4 SWAP1 SSTORE MLOAD PUSH32 0xEC7E3594982826A1F90C8FC76513357B83A691B7F4E38B8BE04F3D40F9B15839 SWAP1 PUSH2 0x404A SWAP1 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x15 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP6 DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH2 0x408E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4BE2 JUMP JUMPDEST PUSH1 0x2 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x40DB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x2737BA103A34329039B2B63632B9 PUSH1 0x91 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x0 DUP3 GT PUSH2 0x4120 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 0x496E76616C69642073616C65207072696365 PUSH1 0x70 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD DUP3 SWAP1 SSTORE PUSH1 0x40 DUP1 MLOAD DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP6 SWAP1 MSTORE CALLER SWAP2 PUSH32 0x8E79B7BA8DAB5EBFA59B9C6AF1743C3EF14863680B3CC5AC837F8D636F76031C SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x4196 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x41BC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4BB9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SLOAD SUB PUSH2 0x4203 JUMPI PUSH1 0x40 MLOAD PUSH4 0x3EE5AEB5 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x0 SSTORE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP1 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 MLOAD DUP1 DUP4 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0x64 SWAP1 SWAP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH4 0xA9059CBB PUSH1 0xE0 SHL OR SWAP1 MSTORE PUSH2 0x425C SWAP1 DUP5 SWAP1 PUSH2 0x42FA JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 ISZERO DUP1 PUSH2 0x426E JUMPI POP DUP5 ISZERO JUMPDEST ISZERO PUSH2 0x427B JUMPI POP PUSH1 0x0 PUSH2 0x42F1 JUMP JUMPDEST PUSH1 0x0 DUP6 PUSH2 0x428A DUP9 PUSH2 0x2710 PUSH2 0x4AD4 JUMP JUMPDEST PUSH2 0x4294 SWAP2 SWAP1 PUSH2 0x4AEB JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP5 PUSH2 0x42A5 DUP8 PUSH2 0x2710 PUSH2 0x4AD4 JUMP JUMPDEST PUSH2 0x42AF SWAP2 SWAP1 PUSH2 0x4AEB JUMP JUMPDEST SWAP1 POP DUP1 DUP3 GT PUSH2 0x42C3 JUMPI PUSH1 0x0 SWAP3 POP POP POP PUSH2 0x42F1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x42CF DUP3 DUP5 PUSH2 0x4B20 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2710 PUSH2 0x42E0 DUP8 DUP5 PUSH2 0x4AD4 JUMP JUMPDEST PUSH2 0x42EA SWAP2 SWAP1 PUSH2 0x4AEB JUMP JUMPDEST SWAP5 POP POP POP POP POP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 PUSH1 0x0 DUP5 MLOAD PUSH1 0x20 DUP7 ADD PUSH1 0x0 DUP9 GAS CALL DUP1 PUSH2 0x431D JUMPI PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST POP POP PUSH1 0x0 MLOAD RETURNDATASIZE SWAP2 POP DUP2 ISZERO PUSH2 0x4335 JUMPI DUP1 PUSH1 0x1 EQ ISZERO PUSH2 0x4342 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0x436B JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xDD1 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP DUP1 SLOAD PUSH1 0x0 DUP3 SSTORE PUSH1 0x4 MUL SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x11BE SWAP2 SWAP1 JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x43C1 JUMPI PUSH1 0x0 DUP1 DUP3 SSTORE PUSH1 0x1 DUP3 ADD DUP2 SWAP1 SSTORE PUSH1 0x2 DUP3 ADD SSTORE PUSH1 0x3 DUP2 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE PUSH1 0x4 ADD PUSH2 0x438E JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x43DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x43F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43FC DUP3 PUSH2 0x43C5 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4416 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x441F DUP4 PUSH2 0x43C5 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x443F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x4458 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x446F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x3482 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x449D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x44B3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x44BF DUP6 DUP3 DUP7 ADD PUSH2 0x4446 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x44FB JUMPI DUP2 MLOAD DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x44DF JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x0 PUSH2 0x4519 PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0x44CB JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x452B DUP2 DUP7 PUSH2 0x44CB JUMP JUMPDEST SWAP2 POP POP DUP3 PUSH1 0x40 DUP4 ADD MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x40 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4552 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH2 0x4569 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4575 DUP9 DUP4 DUP10 ADD PUSH2 0x4446 JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x458E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x459B DUP8 DUP3 DUP9 ADD PUSH2 0x4446 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x45BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP POP DUP1 CALLDATALOAD SWAP3 PUSH1 0x20 SWAP1 SWAP2 ADD CALLDATALOAD SWAP2 POP JUMP JUMPDEST PUSH1 0x60 DUP1 DUP3 MSTORE DUP5 MLOAD SWAP1 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x80 SWAP1 DUP2 DUP5 ADD SWAP1 PUSH1 0x20 DUP1 DUP10 ADD DUP6 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x460C JUMPI DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 MSTORE SWAP4 DUP3 ADD SWAP4 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x45E7 JUMP JUMPDEST POP POP DUP6 DUP4 SUB DUP2 DUP8 ADD MSTORE PUSH2 0x461F DUP4 DUP10 PUSH2 0x44CB JUMP JUMPDEST DUP7 DUP2 SUB PUSH1 0x40 DUP9 ADD MSTORE DUP8 MLOAD DUP1 DUP3 MSTORE DUP3 DUP10 ADD SWAP5 POP SWAP1 DUP3 ADD SWAP3 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x4683 JUMPI PUSH2 0x4673 DUP5 DUP7 MLOAD DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP1 DUP3 ADD MLOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x40 DUP1 DUP3 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 DUP4 ADD MSTORE PUSH1 0x60 SWAP1 DUP2 ADD MLOAD SWAP2 ADD MSTORE JUMP JUMPDEST SWAP4 DUP3 ADD SWAP4 SWAP3 DUP6 ADD SWAP3 PUSH1 0x1 ADD PUSH2 0x4639 JUMP JUMPDEST POP SWAP2 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x46A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x46AE DUP4 PUSH2 0x43C5 JUMP JUMPDEST SWAP2 POP PUSH2 0x46BC PUSH1 0x20 DUP5 ADD PUSH2 0x43C5 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH2 0x100 DUP10 DUP12 SUB SLT ISZERO PUSH2 0x46E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x46EB DUP10 PUSH2 0x43C5 JUMP JUMPDEST SWAP8 POP PUSH1 0x20 DUP10 ADD CALLDATALOAD SWAP7 POP PUSH1 0x40 DUP10 ADD CALLDATALOAD SWAP6 POP PUSH1 0x60 DUP10 ADD CALLDATALOAD SWAP5 POP PUSH2 0x470E PUSH1 0x80 DUP11 ADD PUSH2 0x43C5 JUMP JUMPDEST SWAP8 SWAP11 SWAP7 SWAP10 POP SWAP5 SWAP8 SWAP4 SWAP7 SWAP6 PUSH1 0xA0 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0xC0 DUP6 ADD CALLDATALOAD SWAP5 PUSH1 0xE0 ADD CALLDATALOAD SWAP4 POP SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x40 SWAP1 DUP2 DUP6 ADD SWAP1 DUP7 DUP5 ADD DUP6 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x47D1 JUMPI DUP2 MLOAD DUP1 MLOAD DUP6 MSTORE DUP7 DUP2 ADD MLOAD DUP8 DUP7 ADD MSTORE DUP6 DUP2 ADD MLOAD DUP7 DUP7 ADD MSTORE PUSH1 0x60 DUP1 DUP3 ADD MLOAD SWAP1 DUP7 ADD MSTORE PUSH1 0x80 DUP1 DUP3 ADD MLOAD SWAP1 DUP7 ADD MSTORE PUSH1 0xA0 DUP1 DUP3 ADD MLOAD SWAP1 DUP7 ADD MSTORE PUSH1 0xC0 DUP1 DUP3 ADD MLOAD SWAP1 DUP7 ADD MSTORE PUSH1 0xE0 DUP1 DUP3 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 DUP7 ADD MSTORE PUSH2 0x100 DUP1 DUP3 ADD MLOAD ISZERO ISZERO SWAP1 DUP7 ADD MSTORE PUSH2 0x120 SWAP1 DUP2 ADD MLOAD SWAP1 DUP6 ADD MSTORE PUSH2 0x140 SWAP1 SWAP4 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x474D JUMP JUMPDEST POP SWAP2 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x40 SWAP1 DUP2 DUP6 ADD SWAP1 DUP7 DUP5 ADD DUP6 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x47D1 JUMPI DUP2 MLOAD DUP1 MLOAD DUP6 MSTORE DUP7 DUP2 ADD MLOAD DUP8 DUP7 ADD MSTORE DUP6 DUP2 ADD MLOAD DUP7 DUP7 ADD MSTORE PUSH1 0x60 SWAP1 DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 DUP6 ADD MSTORE PUSH1 0x80 SWAP1 SWAP4 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x47FB JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4853 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP POP DUP2 CALLDATALOAD SWAP4 PUSH1 0x20 DUP4 ADD CALLDATALOAD SWAP4 POP PUSH1 0x40 SWAP1 SWAP3 ADD CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x4883 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x488C DUP8 PUSH2 0x43C5 JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH1 0x60 DUP8 ADD CALLDATALOAD SWAP3 POP PUSH2 0x48AF PUSH1 0x80 DUP9 ADD PUSH2 0x43C5 JUMP JUMPDEST SWAP2 POP PUSH1 0xA0 DUP8 ADD CALLDATALOAD SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x492F JUMPI PUSH2 0x491C DUP4 DUP6 MLOAD DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE POP POP JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 PUSH1 0xA0 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x48DE JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP4 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP4 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP2 ADD PUSH2 0xD77 JUMP JUMPDEST DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP4 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP2 ADD PUSH2 0xD77 JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD PUSH2 0xD77 DUP3 DUP5 DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x49DC PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x44CB JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x42F1 DUP2 DUP6 PUSH2 0x44CB JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x492F JUMPI PUSH2 0x4A31 DUP4 DUP6 MLOAD DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP1 DUP3 ADD MLOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x40 SWAP1 DUP2 ADD MLOAD SWAP2 ADD MSTORE JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 PUSH1 0x60 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x4A0A JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x40 SWAP1 DUP2 DUP6 ADD SWAP1 DUP7 DUP5 ADD DUP6 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x47D1 JUMPI DUP2 MLOAD DUP1 MLOAD DUP6 MSTORE DUP7 DUP2 ADD MLOAD DUP8 DUP7 ADD MSTORE DUP6 DUP2 ADD MLOAD DUP7 DUP7 ADD MSTORE PUSH1 0x60 DUP1 DUP3 ADD MLOAD SWAP1 DUP7 ADD MSTORE PUSH1 0x80 DUP1 DUP3 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 DUP8 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xA0 SWAP2 DUP3 ADD MLOAD AND SWAP1 DUP6 ADD MSTORE PUSH1 0xC0 SWAP1 SWAP4 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x4A61 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0xD77 JUMPI PUSH2 0xD77 PUSH2 0x4ABE JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x4B08 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 DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xD77 JUMPI PUSH2 0xD77 PUSH2 0x4ABE JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0xD77 JUMPI PUSH2 0xD77 PUSH2 0x4ABE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP3 ADD PUSH2 0x4B45 JUMPI PUSH2 0x4B45 PUSH2 0x4ABE JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0xE SWAP1 DUP3 ADD MSTORE PUSH14 0x139BDD08185D5D1A1BDC9A5E9959 PUSH1 0x92 SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4BB2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0xF SWAP1 DUP3 ADD MSTORE PUSH15 0x496E76616C69642061646472657373 PUSH1 0x88 SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x11 SWAP1 DUP3 ADD MSTORE PUSH17 0x131A5CDD1A5B99C81B9BDD08199BDD5B99 PUSH1 0x7A SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x5D 0xEB PUSH21 0xD788A03E6D506F98684EA6DE969AFE71445FA5D3A0 PUSH24 0x7633F07EE655C64736F6C63430008140033000000000000 ","sourceMap":"414:38226:12:-:0;;;5818:148;;;;;;;;;-1:-1:-1;1857:1:10;2061:7;:21;;;5842:50:12;;-1:-1:-1;;;;;;5842:50:12;5850:42;5842:50;;;;;5902;;:6;:50;;;:57;;-1:-1:-1;;5902:57:12;;;;;;414:38226;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_callOptionalReturn_1303":{"entryPoint":17146,"id":1303,"parameterSlots":2,"returnSlots":0},"@_nonReentrantAfter_1432":{"entryPoint":null,"id":1432,"parameterSlots":0,"returnSlots":0},"@_nonReentrantBefore_1424":{"entryPoint":16864,"id":1424,"parameterSlots":0,"returnSlots":0},"@addBot_1872":{"entryPoint":16743,"id":1872,"parameterSlots":1,"returnSlots":0},"@addOwner_1818":{"entryPoint":8041,"id":1818,"parameterSlots":1,"returnSlots":0},"@authorizedBots_1565":{"entryPoint":null,"id":1565,"parameterSlots":0,"returnSlots":0},"@batchCreateUserStakes_2536":{"entryPoint":5794,"id":2536,"parameterSlots":4,"returnSlots":0},"@buySellStake_3389":{"entryPoint":15053,"id":3389,"parameterSlots":2,"returnSlots":0},"@calculateUnclaimedFunds_2176":{"entryPoint":2991,"id":2176,"parameterSlots":1,"returnSlots":1},"@calculateUnlockPercentage_2046":{"entryPoint":16993,"id":2046,"parameterSlots":5,"returnSlots":1},"@cancelSellStake_3157":{"entryPoint":11072,"id":3157,"parameterSlots":1,"returnSlots":0},"@cancellationFee_1644":{"entryPoint":null,"id":1644,"parameterSlots":0,"returnSlots":0},"@claimUnlockedFunds_2292":{"entryPoint":3453,"id":2292,"parameterSlots":0,"returnSlots":0},"@clearVesting_3489":{"entryPoint":5282,"id":3489,"parameterSlots":1,"returnSlots":0},"@createUserStake_2431":{"entryPoint":16179,"id":2431,"parameterSlots":2,"returnSlots":0},"@createVesting_3521":{"entryPoint":11001,"id":3521,"parameterSlots":6,"returnSlots":0},"@createVesting_3573":{"entryPoint":8213,"id":3573,"parameterSlots":8,"returnSlots":0},"@currentEpochId_1629":{"entryPoint":null,"id":1629,"parameterSlots":0,"returnSlots":0},"@dollarsVested_1585":{"entryPoint":null,"id":1585,"parameterSlots":0,"returnSlots":0},"@endEpoch_2116":{"entryPoint":10689,"id":2116,"parameterSlots":3,"returnSlots":0},"@epochs_1613":{"entryPoint":null,"id":1613,"parameterSlots":0,"returnSlots":0},"@getAllSellStakes_4383":{"entryPoint":7353,"id":4383,"parameterSlots":0,"returnSlots":3},"@getAllWithdrawStakes_2551":{"entryPoint":13596,"id":2551,"parameterSlots":1,"returnSlots":1},"@getAllWithdrawVestings_4279":{"entryPoint":10272,"id":4279,"parameterSlots":1,"returnSlots":1},"@getEpoch_2622":{"entryPoint":12705,"id":2622,"parameterSlots":1,"returnSlots":1},"@getEpochs_2693":{"entryPoint":11818,"id":2693,"parameterSlots":2,"returnSlots":1},"@getMarketplaceHistoryCount_4487":{"entryPoint":null,"id":4487,"parameterSlots":0,"returnSlots":1},"@getMarketplaceHistory_4477":{"entryPoint":13850,"id":4477,"parameterSlots":2,"returnSlots":1},"@getNetStake_2201":{"entryPoint":4086,"id":2201,"parameterSlots":1,"returnSlots":1},"@getSellStake_4401":{"entryPoint":12348,"id":4401,"parameterSlots":2,"returnSlots":1},"@getUnclaimedFundsBreakdown_2889":{"entryPoint":14311,"id":2889,"parameterSlots":1,"returnSlots":3},"@getUnlockedVestingBonus_4069":{"entryPoint":3141,"id":4069,"parameterSlots":2,"returnSlots":1},"@getUnlockedVesting_3871":{"entryPoint":10421,"id":3871,"parameterSlots":2,"returnSlots":1},"@getUserMarketplaceSales_4500":{"entryPoint":null,"id":4500,"parameterSlots":1,"returnSlots":1},"@getUserStakeInfo_2231":{"entryPoint":13449,"id":2231,"parameterSlots":1,"returnSlots":3},"@getUserTotalUnclaimedUsdValue_4264":{"entryPoint":9805,"id":4264,"parameterSlots":1,"returnSlots":1},"@getVestedTotals_4186":{"entryPoint":4597,"id":4186,"parameterSlots":2,"returnSlots":3},"@getVestingSchedule_3970":{"entryPoint":13027,"id":3970,"parameterSlots":2,"returnSlots":2},"@getVestings_4084":{"entryPoint":8696,"id":4084,"parameterSlots":1,"returnSlots":1},"@getWithdrawStake_2601":{"entryPoint":12492,"id":2601,"parameterSlots":2,"returnSlots":1},"@getWithdrawVestingCounter_4288":{"entryPoint":null,"id":4288,"parameterSlots":0,"returnSlots":1},"@lockupDuration_1591":{"entryPoint":null,"id":1591,"parameterSlots":0,"returnSlots":0},"@marketplaceHistory_1662":{"entryPoint":12265,"id":1662,"parameterSlots":0,"returnSlots":0},"@marketplaceMin_1642":{"entryPoint":null,"id":1642,"parameterSlots":0,"returnSlots":0},"@marketplace_sales_1648":{"entryPoint":null,"id":1648,"parameterSlots":0,"returnSlots":0},"@migrateVestings_3781":{"entryPoint":8927,"id":3781,"parameterSlots":2,"returnSlots":0},"@owner_1557":{"entryPoint":null,"id":1557,"parameterSlots":0,"returnSlots":0},"@owners_1561":{"entryPoint":null,"id":1561,"parameterSlots":0,"returnSlots":0},"@paybackPercent_1633":{"entryPoint":null,"id":1633,"parameterSlots":0,"returnSlots":0},"@priceOracles_1581":{"entryPoint":null,"id":1581,"parameterSlots":0,"returnSlots":0},"@removeOwner_1847":{"entryPoint":3793,"id":1847,"parameterSlots":1,"returnSlots":0},"@safeTransfer_926":{"entryPoint":16906,"id":926,"parameterSlots":3,"returnSlots":0},"@sellStakeKeys_1652":{"entryPoint":5226,"id":1652,"parameterSlots":0,"returnSlots":0},"@sellStake_3009":{"entryPoint":6540,"id":3009,"parameterSlots":2,"returnSlots":0},"@sellStakes_1640":{"entryPoint":null,"id":1640,"parameterSlots":0,"returnSlots":0},"@setPriceOracle_1938":{"entryPoint":7948,"id":1938,"parameterSlots":2,"returnSlots":0},"@testUpgradeFunction_4509":{"entryPoint":null,"id":4509,"parameterSlots":0,"returnSlots":1},"@totalBigStakes_1631":{"entryPoint":null,"id":1631,"parameterSlots":0,"returnSlots":0},"@unlockDelay_1593":{"entryPoint":null,"id":1593,"parameterSlots":0,"returnSlots":0},"@unlockSchedules_1577":{"entryPoint":5734,"id":1577,"parameterSlots":0,"returnSlots":0},"@updateCancellationFee_1976":{"entryPoint":4034,"id":1976,"parameterSlots":1,"returnSlots":0},"@updateLockupDuration_1884":{"entryPoint":13544,"id":1884,"parameterSlots":1,"returnSlots":0},"@updateMarketplaceMin_1963":{"entryPoint":5682,"id":1963,"parameterSlots":1,"returnSlots":0},"@updatePaybackPercent_1950":{"entryPoint":4545,"id":1950,"parameterSlots":1,"returnSlots":0},"@updateSellStake_3213":{"entryPoint":16470,"id":3213,"parameterSlots":2,"returnSlots":0},"@updateUnlockDelay_1896":{"entryPoint":13798,"id":1896,"parameterSlots":1,"returnSlots":0},"@userBigStake_1617":{"entryPoint":null,"id":1617,"parameterSlots":0,"returnSlots":0},"@userLastClaimedEpoch_1621":{"entryPoint":null,"id":1621,"parameterSlots":0,"returnSlots":0},"@vestedTotal_1589":{"entryPoint":null,"id":1589,"parameterSlots":0,"returnSlots":0},"@vestings_1571":{"entryPoint":12901,"id":1571,"parameterSlots":0,"returnSlots":0},"@withdrawFromVestingPool_1922":{"entryPoint":5091,"id":1922,"parameterSlots":2,"returnSlots":0},"@withdrawStake_2382":{"entryPoint":4141,"id":2382,"parameterSlots":1,"returnSlots":0},"@withdrawStakes_1627":{"entryPoint":13732,"id":1627,"parameterSlots":0,"returnSlots":0},"@withdrawVestingLiabilities_1608":{"entryPoint":null,"id":1608,"parameterSlots":0,"returnSlots":0},"abi_decode_address":{"entryPoint":17349,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_array_address_dyn_calldata":{"entryPoint":17478,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_address":{"entryPoint":17377,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":18066,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":17411,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_addresst_uint256":{"entryPoint":18538,"id":null,"parameterSlots":2,"returnSlots":6},"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_addresst_uint256t_uint256t_uint256":{"entryPoint":18117,"id":null,"parameterSlots":2,"returnSlots":8},"abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptr":{"entryPoint":17546,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptrt_array$_t_uint256_$dyn_calldata_ptr":{"entryPoint":17724,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_uint256":{"entryPoint":17453,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":19360,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_uint256":{"entryPoint":17831,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256t_uint256t_uint256":{"entryPoint":18494,"id":null,"parameterSlots":2,"returnSlots":3},"abi_encode_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_array_uint256_dyn":{"entryPoint":17611,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_bool":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_struct_Epoch":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_struct_SellStake":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_struct_WithdrawStake":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_array$_t_address_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_struct$_SellStake_$1537_memory_ptr_$dyn_memory_ptr__to_t_array$_t_address_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_struct$_SellStake_$1537_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":17865,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_array$_t_struct$_Epoch_$1521_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Epoch_$1521_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":18626,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_array$_t_struct$_MarketplaceHistory_$1555_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_MarketplaceHistory_$1555_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":19012,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_array$_t_struct$_Vesting_$1496_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Vesting_$1496_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":18224,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_array$_t_struct$_WithdrawStake_$1528_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_WithdrawStake_$1528_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":18926,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_array$_t_struct$_WithdrawVesting_$1510_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_WithdrawVesting_$1510_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":18398,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":18889,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_uint256__to_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_uint256__fromStack_reversed":{"entryPoint":17670,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_07ac34a80b409cb13a59b255bc41aced9c990f0df5c1385b4a46b6b34a89399d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1462473b7a4b33d32b109b815fd2324d00c9e5839b707ecf16d0ab5744f99226__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":19385,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_179ae693e0c70d403e6d1a2bebe6454a8d095a8abd12c6f3f032c5018f3e2aea__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1b72ba14eb1a8a9d546abe036e42fec8df7f04acf2220edbbc427b6b1c2eb1d3__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_2c1545a468168af67c0991f4493f605bb35531d3f741d96256911830016317fd__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_2fd1dfd944df9898ee4c79794168926172c3d96d7664ff9919bb7080bb018af1__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_41afe65c2f48450cc65afb8258dbcfd4711efe900a4abbb354fb78b64cb78f3c__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_56a630a6cae883952b5fbd7413dd0e1f1e7b64e1f4026c3de951fb35e0a10d3c__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_804bf3e06a7bf92133efba56bc925714e4bd93bde4bd86e97734c971603054e8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_86f5232cd420b5d8e89c0911fc290331f6cfd7bd7824383c43ece46e2a1c20ec__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_920fc87d8e9a45232b5e4c2c36e3c0fff5f09b5434a80d6ec35d7f09f9d69c29__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_a06538b932a313089ae566efd0e7e26dd4e72c52e77044e966d0526f069591e6__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_a0e5f91d515f2cca6fea514f5d410d9cd3a3de245b2e2deb2a867e55917af289__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_beaa7de9c81be7521b658b5b0a3f8866d9ed560c21a4f26c1d2fa6ffaaeb68c3__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c205ddc0e8dee9f6a699462fe56d0ef15d0fbd12a7f42fd9d0f08d7b477e733b__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c266efca4f4ed37612271196433531dcbb4fca89a694d568d1e290e32feb1682__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c720c01b1ab900eae0624fc88257558becc0dda54896b3f86c3f492482a20d30__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c96e0a341c9518256eddb565314349d39d191e3a702caab37452bb2761e74717__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_ce57addf3f5de810402cc65bacdf9d6eb19fb240991cacfdb84749b70a2ea3ec__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_cf7bf03ffa0f3da677adf7e97e2d75567c809ca39257ccf6603f40c13c2ab5f1__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_e5b6e7e123f74d79e5b22a141b369c822da4aa28e7734495eb76a647065377a9__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_e65aeb0dca34957cd75dcf5edf664369a554ea0a38af77ddcfdf2ec419a8424a__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":19426,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_e68aa2945d9d826fe10860e3b76417578773840626355af3554acc1da6ab249f__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":19298,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_fd2d1480c29e633e4ed2aa8313e3466de57935c6340707dcc6cfdb3e277782af__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_struct$_Epoch_$1521_memory_ptr__to_t_struct$_Epoch_$1521_memory_ptr__fromStack_reversed":{"entryPoint":18832,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_SellStake_$1537_memory_ptr__to_t_struct$_SellStake_$1537_memory_ptr__fromStack_reversed":{"entryPoint":18747,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_WithdrawStake_$1528_memory_ptr__to_t_struct$_WithdrawStake_$1528_memory_ptr__fromStack_reversed":{"entryPoint":18799,"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_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_address_t_uint256__to_t_uint256_t_uint256_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256_t_address_t_address__to_t_uint256_t_uint256_t_uint256_t_uint256_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":7,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256_t_address_t_bool_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256_t_address_t_bool_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":11,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":19213,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":19179,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":19156,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":19232,"id":null,"parameterSlots":2,"returnSlots":1},"increment_t_uint256":{"entryPoint":19251,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":19134,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x31":{"entryPoint":19469,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":19276,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":19338,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:28309:15","statements":[{"nodeType":"YulBlock","src":"6:3:15","statements":[]},{"body":{"nodeType":"YulBlock","src":"63:124:15","statements":[{"nodeType":"YulAssignment","src":"73:29:15","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"95:6:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"82:12:15"},"nodeType":"YulFunctionCall","src":"82:20:15"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"73:5:15"}]},{"body":{"nodeType":"YulBlock","src":"165:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"174:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"177:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"167:6:15"},"nodeType":"YulFunctionCall","src":"167:12:15"},"nodeType":"YulExpressionStatement","src":"167:12:15"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"124:5:15"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"135:5:15"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"150:3:15","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"155:1:15","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"146:3:15"},"nodeType":"YulFunctionCall","src":"146:11:15"},{"kind":"number","nodeType":"YulLiteral","src":"159:1:15","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"142:3:15"},"nodeType":"YulFunctionCall","src":"142:19:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"131:3:15"},"nodeType":"YulFunctionCall","src":"131:31:15"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"121:2:15"},"nodeType":"YulFunctionCall","src":"121:42:15"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"114:6:15"},"nodeType":"YulFunctionCall","src":"114:50:15"},"nodeType":"YulIf","src":"111:70:15"}]},"name":"abi_decode_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"42:6:15","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"53:5:15","type":""}],"src":"14:173:15"},{"body":{"nodeType":"YulBlock","src":"262:116:15","statements":[{"body":{"nodeType":"YulBlock","src":"308:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"317:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"320:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"310:6:15"},"nodeType":"YulFunctionCall","src":"310:12:15"},"nodeType":"YulExpressionStatement","src":"310:12:15"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"283:7:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"292:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"279:3:15"},"nodeType":"YulFunctionCall","src":"279:23:15"},{"kind":"number","nodeType":"YulLiteral","src":"304:2:15","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"275:3:15"},"nodeType":"YulFunctionCall","src":"275:32:15"},"nodeType":"YulIf","src":"272:52:15"},{"nodeType":"YulAssignment","src":"333:39:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"362:9:15"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"343:18:15"},"nodeType":"YulFunctionCall","src":"343:29:15"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"333:6:15"}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"228:9:15","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"239:7:15","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"251:6:15","type":""}],"src":"192:186:15"},{"body":{"nodeType":"YulBlock","src":"484:76:15","statements":[{"nodeType":"YulAssignment","src":"494:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"506:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"517:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"502:3:15"},"nodeType":"YulFunctionCall","src":"502:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"494:4:15"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"536:9:15"},{"name":"value0","nodeType":"YulIdentifier","src":"547:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"529:6:15"},"nodeType":"YulFunctionCall","src":"529:25:15"},"nodeType":"YulExpressionStatement","src":"529:25:15"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"453:9:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"464:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"475:4:15","type":""}],"src":"383:177:15"},{"body":{"nodeType":"YulBlock","src":"609:60:15","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"626:3:15"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"635:5:15"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"650:3:15","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"655:1:15","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"646:3:15"},"nodeType":"YulFunctionCall","src":"646:11:15"},{"kind":"number","nodeType":"YulLiteral","src":"659:1:15","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"642:3:15"},"nodeType":"YulFunctionCall","src":"642:19:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"631:3:15"},"nodeType":"YulFunctionCall","src":"631:31:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"619:6:15"},"nodeType":"YulFunctionCall","src":"619:44:15"},"nodeType":"YulExpressionStatement","src":"619:44:15"}]},"name":"abi_encode_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"593:5:15","type":""},{"name":"pos","nodeType":"YulTypedName","src":"600:3:15","type":""}],"src":"565:104:15"},{"body":{"nodeType":"YulBlock","src":"775:102:15","statements":[{"nodeType":"YulAssignment","src":"785:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"797:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"808:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"793:3:15"},"nodeType":"YulFunctionCall","src":"793:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"785:4:15"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"827:9:15"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"842:6:15"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"858:3:15","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"863:1:15","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"854:3:15"},"nodeType":"YulFunctionCall","src":"854:11:15"},{"kind":"number","nodeType":"YulLiteral","src":"867:1:15","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"850:3:15"},"nodeType":"YulFunctionCall","src":"850:19:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"838:3:15"},"nodeType":"YulFunctionCall","src":"838:32:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"820:6:15"},"nodeType":"YulFunctionCall","src":"820:51:15"},"nodeType":"YulExpressionStatement","src":"820:51:15"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"744:9:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"755:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"766:4:15","type":""}],"src":"674:203:15"},{"body":{"nodeType":"YulBlock","src":"923:50:15","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"940:3:15"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"959:5:15"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"952:6:15"},"nodeType":"YulFunctionCall","src":"952:13:15"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"945:6:15"},"nodeType":"YulFunctionCall","src":"945:21:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"933:6:15"},"nodeType":"YulFunctionCall","src":"933:34:15"},"nodeType":"YulExpressionStatement","src":"933:34:15"}]},"name":"abi_encode_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"907:5:15","type":""},{"name":"pos","nodeType":"YulTypedName","src":"914:3:15","type":""}],"src":"882:91:15"},{"body":{"nodeType":"YulBlock","src":"1073:92:15","statements":[{"nodeType":"YulAssignment","src":"1083:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1095:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"1106:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1091:3:15"},"nodeType":"YulFunctionCall","src":"1091:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1083:4:15"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1125:9:15"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1150:6:15"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1143:6:15"},"nodeType":"YulFunctionCall","src":"1143:14:15"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1136:6:15"},"nodeType":"YulFunctionCall","src":"1136:22:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1118:6:15"},"nodeType":"YulFunctionCall","src":"1118:41:15"},"nodeType":"YulExpressionStatement","src":"1118:41:15"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1042:9:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1053:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1064:4:15","type":""}],"src":"978:187:15"},{"body":{"nodeType":"YulBlock","src":"1257:167:15","statements":[{"body":{"nodeType":"YulBlock","src":"1303:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1312:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1315:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1305:6:15"},"nodeType":"YulFunctionCall","src":"1305:12:15"},"nodeType":"YulExpressionStatement","src":"1305:12:15"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1278:7:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"1287:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1274:3:15"},"nodeType":"YulFunctionCall","src":"1274:23:15"},{"kind":"number","nodeType":"YulLiteral","src":"1299:2:15","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1270:3:15"},"nodeType":"YulFunctionCall","src":"1270:32:15"},"nodeType":"YulIf","src":"1267:52:15"},{"nodeType":"YulAssignment","src":"1328:39:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1357:9:15"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"1338:18:15"},"nodeType":"YulFunctionCall","src":"1338:29:15"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1328:6:15"}]},{"nodeType":"YulAssignment","src":"1376:42:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1403:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"1414:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1399:3:15"},"nodeType":"YulFunctionCall","src":"1399:18:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1386:12:15"},"nodeType":"YulFunctionCall","src":"1386:32:15"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1376:6:15"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1215:9:15","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1226:7:15","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1238:6:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1246:6:15","type":""}],"src":"1170:254:15"},{"body":{"nodeType":"YulBlock","src":"1499:110:15","statements":[{"body":{"nodeType":"YulBlock","src":"1545:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1554:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1557:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1547:6:15"},"nodeType":"YulFunctionCall","src":"1547:12:15"},"nodeType":"YulExpressionStatement","src":"1547:12:15"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1520:7:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"1529:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1516:3:15"},"nodeType":"YulFunctionCall","src":"1516:23:15"},{"kind":"number","nodeType":"YulLiteral","src":"1541:2:15","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1512:3:15"},"nodeType":"YulFunctionCall","src":"1512:32:15"},"nodeType":"YulIf","src":"1509:52:15"},{"nodeType":"YulAssignment","src":"1570:33:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1593:9:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1580:12:15"},"nodeType":"YulFunctionCall","src":"1580:23:15"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1570:6:15"}]}]},"name":"abi_decode_tuple_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1465:9:15","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1476:7:15","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1488:6:15","type":""}],"src":"1429:180:15"},{"body":{"nodeType":"YulBlock","src":"1698:283:15","statements":[{"body":{"nodeType":"YulBlock","src":"1747:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1756:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1759:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1749:6:15"},"nodeType":"YulFunctionCall","src":"1749:12:15"},"nodeType":"YulExpressionStatement","src":"1749:12:15"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1726:6:15"},{"kind":"number","nodeType":"YulLiteral","src":"1734:4:15","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1722:3:15"},"nodeType":"YulFunctionCall","src":"1722:17:15"},{"name":"end","nodeType":"YulIdentifier","src":"1741:3:15"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1718:3:15"},"nodeType":"YulFunctionCall","src":"1718:27:15"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1711:6:15"},"nodeType":"YulFunctionCall","src":"1711:35:15"},"nodeType":"YulIf","src":"1708:55:15"},{"nodeType":"YulAssignment","src":"1772:30:15","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1795:6:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1782:12:15"},"nodeType":"YulFunctionCall","src":"1782:20:15"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"1772:6:15"}]},{"body":{"nodeType":"YulBlock","src":"1845:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1854:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1857:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1847:6:15"},"nodeType":"YulFunctionCall","src":"1847:12:15"},"nodeType":"YulExpressionStatement","src":"1847:12:15"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1817:6:15"},{"kind":"number","nodeType":"YulLiteral","src":"1825:18:15","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1814:2:15"},"nodeType":"YulFunctionCall","src":"1814:30:15"},"nodeType":"YulIf","src":"1811:50:15"},{"nodeType":"YulAssignment","src":"1870:29:15","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1886:6:15"},{"kind":"number","nodeType":"YulLiteral","src":"1894:4:15","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1882:3:15"},"nodeType":"YulFunctionCall","src":"1882:17:15"},"variableNames":[{"name":"arrayPos","nodeType":"YulIdentifier","src":"1870:8:15"}]},{"body":{"nodeType":"YulBlock","src":"1959:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1968:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1971:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1961:6:15"},"nodeType":"YulFunctionCall","src":"1961:12:15"},"nodeType":"YulExpressionStatement","src":"1961:12:15"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1922:6:15"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1934:1:15","type":"","value":"5"},{"name":"length","nodeType":"YulIdentifier","src":"1937:6:15"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1930:3:15"},"nodeType":"YulFunctionCall","src":"1930:14:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1918:3:15"},"nodeType":"YulFunctionCall","src":"1918:27:15"},{"kind":"number","nodeType":"YulLiteral","src":"1947:4:15","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1914:3:15"},"nodeType":"YulFunctionCall","src":"1914:38:15"},{"name":"end","nodeType":"YulIdentifier","src":"1954:3:15"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1911:2:15"},"nodeType":"YulFunctionCall","src":"1911:47:15"},"nodeType":"YulIf","src":"1908:67:15"}]},"name":"abi_decode_array_address_dyn_calldata","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"1661:6:15","type":""},{"name":"end","nodeType":"YulTypedName","src":"1669:3:15","type":""}],"returnVariables":[{"name":"arrayPos","nodeType":"YulTypedName","src":"1677:8:15","type":""},{"name":"length","nodeType":"YulTypedName","src":"1687:6:15","type":""}],"src":"1614:367:15"},{"body":{"nodeType":"YulBlock","src":"2091:332:15","statements":[{"body":{"nodeType":"YulBlock","src":"2137:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2146:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2149:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2139:6:15"},"nodeType":"YulFunctionCall","src":"2139:12:15"},"nodeType":"YulExpressionStatement","src":"2139:12:15"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2112:7:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"2121:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2108:3:15"},"nodeType":"YulFunctionCall","src":"2108:23:15"},{"kind":"number","nodeType":"YulLiteral","src":"2133:2:15","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2104:3:15"},"nodeType":"YulFunctionCall","src":"2104:32:15"},"nodeType":"YulIf","src":"2101:52:15"},{"nodeType":"YulVariableDeclaration","src":"2162:37:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2189:9:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2176:12:15"},"nodeType":"YulFunctionCall","src":"2176:23:15"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2166:6:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"2242:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2251:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2254:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2244:6:15"},"nodeType":"YulFunctionCall","src":"2244:12:15"},"nodeType":"YulExpressionStatement","src":"2244:12:15"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2214:6:15"},{"kind":"number","nodeType":"YulLiteral","src":"2222:18:15","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2211:2:15"},"nodeType":"YulFunctionCall","src":"2211:30:15"},"nodeType":"YulIf","src":"2208:50:15"},{"nodeType":"YulVariableDeclaration","src":"2267:96:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2335:9:15"},{"name":"offset","nodeType":"YulIdentifier","src":"2346:6:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2331:3:15"},"nodeType":"YulFunctionCall","src":"2331:22:15"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2355:7:15"}],"functionName":{"name":"abi_decode_array_address_dyn_calldata","nodeType":"YulIdentifier","src":"2293:37:15"},"nodeType":"YulFunctionCall","src":"2293:70:15"},"variables":[{"name":"value0_1","nodeType":"YulTypedName","src":"2271:8:15","type":""},{"name":"value1_1","nodeType":"YulTypedName","src":"2281:8:15","type":""}]},{"nodeType":"YulAssignment","src":"2372:18:15","value":{"name":"value0_1","nodeType":"YulIdentifier","src":"2382:8:15"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2372:6:15"}]},{"nodeType":"YulAssignment","src":"2399:18:15","value":{"name":"value1_1","nodeType":"YulIdentifier","src":"2409:8:15"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"2399:6:15"}]}]},"name":"abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2049:9:15","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2060:7:15","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2072:6:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2080:6:15","type":""}],"src":"1986:437:15"},{"body":{"nodeType":"YulBlock","src":"2489:374:15","statements":[{"nodeType":"YulVariableDeclaration","src":"2499:26:15","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2519:5:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2513:5:15"},"nodeType":"YulFunctionCall","src":"2513:12:15"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"2503:6:15","type":""}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"2541:3:15"},{"name":"length","nodeType":"YulIdentifier","src":"2546:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2534:6:15"},"nodeType":"YulFunctionCall","src":"2534:19:15"},"nodeType":"YulExpressionStatement","src":"2534:19:15"},{"nodeType":"YulVariableDeclaration","src":"2562:14:15","value":{"kind":"number","nodeType":"YulLiteral","src":"2572:4:15","type":"","value":"0x20"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"2566:2:15","type":""}]},{"nodeType":"YulAssignment","src":"2585:19:15","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"2596:3:15"},{"name":"_1","nodeType":"YulIdentifier","src":"2601:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2592:3:15"},"nodeType":"YulFunctionCall","src":"2592:12:15"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"2585:3:15"}]},{"nodeType":"YulVariableDeclaration","src":"2613:28:15","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2631:5:15"},{"name":"_1","nodeType":"YulIdentifier","src":"2638:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2627:3:15"},"nodeType":"YulFunctionCall","src":"2627:14:15"},"variables":[{"name":"srcPtr","nodeType":"YulTypedName","src":"2617:6:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"2650:10:15","value":{"kind":"number","nodeType":"YulLiteral","src":"2659:1:15","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"2654:1:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"2718:120:15","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"2739:3:15"},{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"2750:6:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2744:5:15"},"nodeType":"YulFunctionCall","src":"2744:13:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2732:6:15"},"nodeType":"YulFunctionCall","src":"2732:26:15"},"nodeType":"YulExpressionStatement","src":"2732:26:15"},{"nodeType":"YulAssignment","src":"2771:19:15","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"2782:3:15"},{"name":"_1","nodeType":"YulIdentifier","src":"2787:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2778:3:15"},"nodeType":"YulFunctionCall","src":"2778:12:15"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"2771:3:15"}]},{"nodeType":"YulAssignment","src":"2803:25:15","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"2817:6:15"},{"name":"_1","nodeType":"YulIdentifier","src":"2825:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2813:3:15"},"nodeType":"YulFunctionCall","src":"2813:15:15"},"variableNames":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"2803:6:15"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"2680:1:15"},{"name":"length","nodeType":"YulIdentifier","src":"2683:6:15"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2677:2:15"},"nodeType":"YulFunctionCall","src":"2677:13:15"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"2691:18:15","statements":[{"nodeType":"YulAssignment","src":"2693:14:15","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"2702:1:15"},{"kind":"number","nodeType":"YulLiteral","src":"2705:1:15","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2698:3:15"},"nodeType":"YulFunctionCall","src":"2698:9:15"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"2693:1:15"}]}]},"pre":{"nodeType":"YulBlock","src":"2673:3:15","statements":[]},"src":"2669:169:15"},{"nodeType":"YulAssignment","src":"2847:10:15","value":{"name":"pos","nodeType":"YulIdentifier","src":"2854:3:15"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"2847:3:15"}]}]},"name":"abi_encode_array_uint256_dyn","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"2466:5:15","type":""},{"name":"pos","nodeType":"YulTypedName","src":"2473:3:15","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"2481:3:15","type":""}],"src":"2428:435:15"},{"body":{"nodeType":"YulBlock","src":"3125:279:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3142:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"3153:2:15","type":"","value":"96"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3135:6:15"},"nodeType":"YulFunctionCall","src":"3135:21:15"},"nodeType":"YulExpressionStatement","src":"3135:21:15"},{"nodeType":"YulVariableDeclaration","src":"3165:70:15","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3208:6:15"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3220:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"3231:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3216:3:15"},"nodeType":"YulFunctionCall","src":"3216:18:15"}],"functionName":{"name":"abi_encode_array_uint256_dyn","nodeType":"YulIdentifier","src":"3179:28:15"},"nodeType":"YulFunctionCall","src":"3179:56:15"},"variables":[{"name":"tail_1","nodeType":"YulTypedName","src":"3169:6:15","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3255:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"3266:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3251:3:15"},"nodeType":"YulFunctionCall","src":"3251:18:15"},{"arguments":[{"name":"tail_1","nodeType":"YulIdentifier","src":"3275:6:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"3283:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3271:3:15"},"nodeType":"YulFunctionCall","src":"3271:22:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3244:6:15"},"nodeType":"YulFunctionCall","src":"3244:50:15"},"nodeType":"YulExpressionStatement","src":"3244:50:15"},{"nodeType":"YulAssignment","src":"3303:52:15","value":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"3340:6:15"},{"name":"tail_1","nodeType":"YulIdentifier","src":"3348:6:15"}],"functionName":{"name":"abi_encode_array_uint256_dyn","nodeType":"YulIdentifier","src":"3311:28:15"},"nodeType":"YulFunctionCall","src":"3311:44:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3303:4:15"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3375:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"3386:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3371:3:15"},"nodeType":"YulFunctionCall","src":"3371:18:15"},{"name":"value2","nodeType":"YulIdentifier","src":"3391:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3364:6:15"},"nodeType":"YulFunctionCall","src":"3364:34:15"},"nodeType":"YulExpressionStatement","src":"3364:34:15"}]},"name":"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_uint256__to_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3078:9:15","type":""},{"name":"value2","nodeType":"YulTypedName","src":"3089:6:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"3097:6:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3105:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3116:4:15","type":""}],"src":"2868:536:15"},{"body":{"nodeType":"YulBlock","src":"3594:232:15","statements":[{"nodeType":"YulAssignment","src":"3604:27:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3616:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"3627:3:15","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3612:3:15"},"nodeType":"YulFunctionCall","src":"3612:19:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3604:4:15"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3647:9:15"},{"name":"value0","nodeType":"YulIdentifier","src":"3658:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3640:6:15"},"nodeType":"YulFunctionCall","src":"3640:25:15"},"nodeType":"YulExpressionStatement","src":"3640:25:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3685:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"3696:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3681:3:15"},"nodeType":"YulFunctionCall","src":"3681:18:15"},{"name":"value1","nodeType":"YulIdentifier","src":"3701:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3674:6:15"},"nodeType":"YulFunctionCall","src":"3674:34:15"},"nodeType":"YulExpressionStatement","src":"3674:34:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3728:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"3739:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3724:3:15"},"nodeType":"YulFunctionCall","src":"3724:18:15"},{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"3748:6:15"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3764:3:15","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"3769:1:15","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3760:3:15"},"nodeType":"YulFunctionCall","src":"3760:11:15"},{"kind":"number","nodeType":"YulLiteral","src":"3773:1:15","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3756:3:15"},"nodeType":"YulFunctionCall","src":"3756:19:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3744:3:15"},"nodeType":"YulFunctionCall","src":"3744:32:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3717:6:15"},"nodeType":"YulFunctionCall","src":"3717:60:15"},"nodeType":"YulExpressionStatement","src":"3717:60:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3797:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"3808:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3793:3:15"},"nodeType":"YulFunctionCall","src":"3793:18:15"},{"name":"value3","nodeType":"YulIdentifier","src":"3813:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3786:6:15"},"nodeType":"YulFunctionCall","src":"3786:34:15"},"nodeType":"YulExpressionStatement","src":"3786:34:15"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_address_t_uint256__to_t_uint256_t_uint256_t_address_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3539:9:15","type":""},{"name":"value3","nodeType":"YulTypedName","src":"3550:6:15","type":""},{"name":"value2","nodeType":"YulTypedName","src":"3558:6:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"3566:6:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3574:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3585:4:15","type":""}],"src":"3409:417:15"},{"body":{"nodeType":"YulBlock","src":"3960:145:15","statements":[{"nodeType":"YulAssignment","src":"3970:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3982:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"3993:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3978:3:15"},"nodeType":"YulFunctionCall","src":"3978:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3970:4:15"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4012:9:15"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4027:6:15"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4043:3:15","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"4048:1:15","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"4039:3:15"},"nodeType":"YulFunctionCall","src":"4039:11:15"},{"kind":"number","nodeType":"YulLiteral","src":"4052:1:15","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4035:3:15"},"nodeType":"YulFunctionCall","src":"4035:19:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4023:3:15"},"nodeType":"YulFunctionCall","src":"4023:32:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4005:6:15"},"nodeType":"YulFunctionCall","src":"4005:51:15"},"nodeType":"YulExpressionStatement","src":"4005:51:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4076:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"4087:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4072:3:15"},"nodeType":"YulFunctionCall","src":"4072:18:15"},{"name":"value1","nodeType":"YulIdentifier","src":"4092:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4065:6:15"},"nodeType":"YulFunctionCall","src":"4065:34:15"},"nodeType":"YulExpressionStatement","src":"4065:34:15"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3921:9:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"3932:6:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3940:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3951:4:15","type":""}],"src":"3831:274:15"},{"body":{"nodeType":"YulBlock","src":"4239:119:15","statements":[{"nodeType":"YulAssignment","src":"4249:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4261:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"4272:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4257:3:15"},"nodeType":"YulFunctionCall","src":"4257:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4249:4:15"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4291:9:15"},{"name":"value0","nodeType":"YulIdentifier","src":"4302:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4284:6:15"},"nodeType":"YulFunctionCall","src":"4284:25:15"},"nodeType":"YulExpressionStatement","src":"4284:25:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4329:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"4340:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4325:3:15"},"nodeType":"YulFunctionCall","src":"4325:18:15"},{"name":"value1","nodeType":"YulIdentifier","src":"4345:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4318:6:15"},"nodeType":"YulFunctionCall","src":"4318:34:15"},"nodeType":"YulExpressionStatement","src":"4318:34:15"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4200:9:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"4211:6:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"4219:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4230:4:15","type":""}],"src":"4110:248:15"},{"body":{"nodeType":"YulBlock","src":"4520:616:15","statements":[{"body":{"nodeType":"YulBlock","src":"4566:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4575:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4578:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4568:6:15"},"nodeType":"YulFunctionCall","src":"4568:12:15"},"nodeType":"YulExpressionStatement","src":"4568:12:15"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"4541:7:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"4550:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4537:3:15"},"nodeType":"YulFunctionCall","src":"4537:23:15"},{"kind":"number","nodeType":"YulLiteral","src":"4562:2:15","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"4533:3:15"},"nodeType":"YulFunctionCall","src":"4533:32:15"},"nodeType":"YulIf","src":"4530:52:15"},{"nodeType":"YulVariableDeclaration","src":"4591:37:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4618:9:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4605:12:15"},"nodeType":"YulFunctionCall","src":"4605:23:15"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"4595:6:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4637:28:15","value":{"kind":"number","nodeType":"YulLiteral","src":"4647:18:15","type":"","value":"0xffffffffffffffff"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"4641:2:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"4692:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4701:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4704:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4694:6:15"},"nodeType":"YulFunctionCall","src":"4694:12:15"},"nodeType":"YulExpressionStatement","src":"4694:12:15"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"4680:6:15"},{"name":"_1","nodeType":"YulIdentifier","src":"4688:2:15"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4677:2:15"},"nodeType":"YulFunctionCall","src":"4677:14:15"},"nodeType":"YulIf","src":"4674:34:15"},{"nodeType":"YulVariableDeclaration","src":"4717:96:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4785:9:15"},{"name":"offset","nodeType":"YulIdentifier","src":"4796:6:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4781:3:15"},"nodeType":"YulFunctionCall","src":"4781:22:15"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4805:7:15"}],"functionName":{"name":"abi_decode_array_address_dyn_calldata","nodeType":"YulIdentifier","src":"4743:37:15"},"nodeType":"YulFunctionCall","src":"4743:70:15"},"variables":[{"name":"value0_1","nodeType":"YulTypedName","src":"4721:8:15","type":""},{"name":"value1_1","nodeType":"YulTypedName","src":"4731:8:15","type":""}]},{"nodeType":"YulAssignment","src":"4822:18:15","value":{"name":"value0_1","nodeType":"YulIdentifier","src":"4832:8:15"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"4822:6:15"}]},{"nodeType":"YulAssignment","src":"4849:18:15","value":{"name":"value1_1","nodeType":"YulIdentifier","src":"4859:8:15"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"4849:6:15"}]},{"nodeType":"YulVariableDeclaration","src":"4876:48:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4909:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"4920:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4905:3:15"},"nodeType":"YulFunctionCall","src":"4905:18:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4892:12:15"},"nodeType":"YulFunctionCall","src":"4892:32:15"},"variables":[{"name":"offset_1","nodeType":"YulTypedName","src":"4880:8:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"4953:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4962:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4965:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4955:6:15"},"nodeType":"YulFunctionCall","src":"4955:12:15"},"nodeType":"YulExpressionStatement","src":"4955:12:15"}]},"condition":{"arguments":[{"name":"offset_1","nodeType":"YulIdentifier","src":"4939:8:15"},{"name":"_1","nodeType":"YulIdentifier","src":"4949:2:15"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4936:2:15"},"nodeType":"YulFunctionCall","src":"4936:16:15"},"nodeType":"YulIf","src":"4933:36:15"},{"nodeType":"YulVariableDeclaration","src":"4978:98:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5046:9:15"},{"name":"offset_1","nodeType":"YulIdentifier","src":"5057:8:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5042:3:15"},"nodeType":"YulFunctionCall","src":"5042:24:15"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5068:7:15"}],"functionName":{"name":"abi_decode_array_address_dyn_calldata","nodeType":"YulIdentifier","src":"5004:37:15"},"nodeType":"YulFunctionCall","src":"5004:72:15"},"variables":[{"name":"value2_1","nodeType":"YulTypedName","src":"4982:8:15","type":""},{"name":"value3_1","nodeType":"YulTypedName","src":"4992:8:15","type":""}]},{"nodeType":"YulAssignment","src":"5085:18:15","value":{"name":"value2_1","nodeType":"YulIdentifier","src":"5095:8:15"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"5085:6:15"}]},{"nodeType":"YulAssignment","src":"5112:18:15","value":{"name":"value3_1","nodeType":"YulIdentifier","src":"5122:8:15"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"5112:6:15"}]}]},"name":"abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptrt_array$_t_uint256_$dyn_calldata_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4462:9:15","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"4473:7:15","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"4485:6:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"4493:6:15","type":""},{"name":"value2","nodeType":"YulTypedName","src":"4501:6:15","type":""},{"name":"value3","nodeType":"YulTypedName","src":"4509:6:15","type":""}],"src":"4363:773:15"},{"body":{"nodeType":"YulBlock","src":"5228:161:15","statements":[{"body":{"nodeType":"YulBlock","src":"5274:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5283:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5286:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5276:6:15"},"nodeType":"YulFunctionCall","src":"5276:12:15"},"nodeType":"YulExpressionStatement","src":"5276:12:15"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"5249:7:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"5258:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5245:3:15"},"nodeType":"YulFunctionCall","src":"5245:23:15"},{"kind":"number","nodeType":"YulLiteral","src":"5270:2:15","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5241:3:15"},"nodeType":"YulFunctionCall","src":"5241:32:15"},"nodeType":"YulIf","src":"5238:52:15"},{"nodeType":"YulAssignment","src":"5299:33:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5322:9:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5309:12:15"},"nodeType":"YulFunctionCall","src":"5309:23:15"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5299:6:15"}]},{"nodeType":"YulAssignment","src":"5341:42:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5368:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"5379:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5364:3:15"},"nodeType":"YulFunctionCall","src":"5364:18:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5351:12:15"},"nodeType":"YulFunctionCall","src":"5351:32:15"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"5341:6:15"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5186:9:15","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"5197:7:15","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"5209:6:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"5217:6:15","type":""}],"src":"5141:248:15"},{"body":{"nodeType":"YulBlock","src":"5447:235:15","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5464:3:15"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5475:5:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5469:5:15"},"nodeType":"YulFunctionCall","src":"5469:12:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5457:6:15"},"nodeType":"YulFunctionCall","src":"5457:25:15"},"nodeType":"YulExpressionStatement","src":"5457:25:15"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5502:3:15"},{"kind":"number","nodeType":"YulLiteral","src":"5507:4:15","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5498:3:15"},"nodeType":"YulFunctionCall","src":"5498:14:15"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5524:5:15"},{"kind":"number","nodeType":"YulLiteral","src":"5531:4:15","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5520:3:15"},"nodeType":"YulFunctionCall","src":"5520:16:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5514:5:15"},"nodeType":"YulFunctionCall","src":"5514:23:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5491:6:15"},"nodeType":"YulFunctionCall","src":"5491:47:15"},"nodeType":"YulExpressionStatement","src":"5491:47:15"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5558:3:15"},{"kind":"number","nodeType":"YulLiteral","src":"5563:4:15","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5554:3:15"},"nodeType":"YulFunctionCall","src":"5554:14:15"},{"arguments":[{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5584:5:15"},{"kind":"number","nodeType":"YulLiteral","src":"5591:4:15","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5580:3:15"},"nodeType":"YulFunctionCall","src":"5580:16:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5574:5:15"},"nodeType":"YulFunctionCall","src":"5574:23:15"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5607:3:15","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"5612:1:15","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"5603:3:15"},"nodeType":"YulFunctionCall","src":"5603:11:15"},{"kind":"number","nodeType":"YulLiteral","src":"5616:1:15","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5599:3:15"},"nodeType":"YulFunctionCall","src":"5599:19:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"5570:3:15"},"nodeType":"YulFunctionCall","src":"5570:49:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5547:6:15"},"nodeType":"YulFunctionCall","src":"5547:73:15"},"nodeType":"YulExpressionStatement","src":"5547:73:15"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5640:3:15"},{"kind":"number","nodeType":"YulLiteral","src":"5645:4:15","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5636:3:15"},"nodeType":"YulFunctionCall","src":"5636:14:15"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5662:5:15"},{"kind":"number","nodeType":"YulLiteral","src":"5669:4:15","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5658:3:15"},"nodeType":"YulFunctionCall","src":"5658:16:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5652:5:15"},"nodeType":"YulFunctionCall","src":"5652:23:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5629:6:15"},"nodeType":"YulFunctionCall","src":"5629:47:15"},"nodeType":"YulExpressionStatement","src":"5629:47:15"}]},"name":"abi_encode_struct_SellStake","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"5431:5:15","type":""},{"name":"pos","nodeType":"YulTypedName","src":"5438:3:15","type":""}],"src":"5394:288:15"},{"body":{"nodeType":"YulBlock","src":"6048:1124:15","statements":[{"nodeType":"YulVariableDeclaration","src":"6058:32:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6076:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"6087:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6072:3:15"},"nodeType":"YulFunctionCall","src":"6072:18:15"},"variables":[{"name":"tail_1","nodeType":"YulTypedName","src":"6062:6:15","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6106:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"6117:2:15","type":"","value":"96"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6099:6:15"},"nodeType":"YulFunctionCall","src":"6099:21:15"},"nodeType":"YulExpressionStatement","src":"6099:21:15"},{"nodeType":"YulVariableDeclaration","src":"6129:17:15","value":{"name":"tail_1","nodeType":"YulIdentifier","src":"6140:6:15"},"variables":[{"name":"pos","nodeType":"YulTypedName","src":"6133:3:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"6155:27:15","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"6175:6:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"6169:5:15"},"nodeType":"YulFunctionCall","src":"6169:13:15"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"6159:6:15","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nodeType":"YulIdentifier","src":"6198:6:15"},{"name":"length","nodeType":"YulIdentifier","src":"6206:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6191:6:15"},"nodeType":"YulFunctionCall","src":"6191:22:15"},"nodeType":"YulExpressionStatement","src":"6191:22:15"},{"nodeType":"YulVariableDeclaration","src":"6222:13:15","value":{"kind":"number","nodeType":"YulLiteral","src":"6232:3:15","type":"","value":"128"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"6226:2:15","type":""}]},{"nodeType":"YulAssignment","src":"6244:25:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6255:9:15"},{"name":"_1","nodeType":"YulIdentifier","src":"6266:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6251:3:15"},"nodeType":"YulFunctionCall","src":"6251:18:15"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"6244:3:15"}]},{"nodeType":"YulVariableDeclaration","src":"6278:14:15","value":{"kind":"number","nodeType":"YulLiteral","src":"6288:4:15","type":"","value":"0x20"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"6282:2:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"6301:29:15","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"6319:6:15"},{"name":"_2","nodeType":"YulIdentifier","src":"6327:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6315:3:15"},"nodeType":"YulFunctionCall","src":"6315:15:15"},"variables":[{"name":"srcPtr","nodeType":"YulTypedName","src":"6305:6:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"6339:10:15","value":{"kind":"number","nodeType":"YulLiteral","src":"6348:1:15","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"6343:1:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"6407:146:15","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6428:3:15"},{"arguments":[{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"6443:6:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"6437:5:15"},"nodeType":"YulFunctionCall","src":"6437:13:15"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6460:3:15","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"6465:1:15","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"6456:3:15"},"nodeType":"YulFunctionCall","src":"6456:11:15"},{"kind":"number","nodeType":"YulLiteral","src":"6469:1:15","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6452:3:15"},"nodeType":"YulFunctionCall","src":"6452:19:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"6433:3:15"},"nodeType":"YulFunctionCall","src":"6433:39:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6421:6:15"},"nodeType":"YulFunctionCall","src":"6421:52:15"},"nodeType":"YulExpressionStatement","src":"6421:52:15"},{"nodeType":"YulAssignment","src":"6486:19:15","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6497:3:15"},{"name":"_2","nodeType":"YulIdentifier","src":"6502:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6493:3:15"},"nodeType":"YulFunctionCall","src":"6493:12:15"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"6486:3:15"}]},{"nodeType":"YulAssignment","src":"6518:25:15","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"6532:6:15"},{"name":"_2","nodeType":"YulIdentifier","src":"6540:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6528:3:15"},"nodeType":"YulFunctionCall","src":"6528:15:15"},"variableNames":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"6518:6:15"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"6369:1:15"},{"name":"length","nodeType":"YulIdentifier","src":"6372:6:15"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"6366:2:15"},"nodeType":"YulFunctionCall","src":"6366:13:15"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"6380:18:15","statements":[{"nodeType":"YulAssignment","src":"6382:14:15","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"6391:1:15"},{"kind":"number","nodeType":"YulLiteral","src":"6394:1:15","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6387:3:15"},"nodeType":"YulFunctionCall","src":"6387:9:15"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"6382:1:15"}]}]},"pre":{"nodeType":"YulBlock","src":"6362:3:15","statements":[]},"src":"6358:195:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6573:9:15"},{"name":"_2","nodeType":"YulIdentifier","src":"6584:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6569:3:15"},"nodeType":"YulFunctionCall","src":"6569:18:15"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6593:3:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"6598:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6589:3:15"},"nodeType":"YulFunctionCall","src":"6589:19:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6562:6:15"},"nodeType":"YulFunctionCall","src":"6562:47:15"},"nodeType":"YulExpressionStatement","src":"6562:47:15"},{"nodeType":"YulVariableDeclaration","src":"6618:55:15","value":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"6661:6:15"},{"name":"pos","nodeType":"YulIdentifier","src":"6669:3:15"}],"functionName":{"name":"abi_encode_array_uint256_dyn","nodeType":"YulIdentifier","src":"6632:28:15"},"nodeType":"YulFunctionCall","src":"6632:41:15"},"variables":[{"name":"tail_2","nodeType":"YulTypedName","src":"6622:6:15","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6693:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"6704:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6689:3:15"},"nodeType":"YulFunctionCall","src":"6689:18:15"},{"arguments":[{"name":"tail_2","nodeType":"YulIdentifier","src":"6713:6:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"6721:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6709:3:15"},"nodeType":"YulFunctionCall","src":"6709:22:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6682:6:15"},"nodeType":"YulFunctionCall","src":"6682:50:15"},"nodeType":"YulExpressionStatement","src":"6682:50:15"},{"nodeType":"YulVariableDeclaration","src":"6741:19:15","value":{"name":"tail_2","nodeType":"YulIdentifier","src":"6754:6:15"},"variables":[{"name":"pos_1","nodeType":"YulTypedName","src":"6745:5:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"6769:29:15","value":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"6791:6:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"6785:5:15"},"nodeType":"YulFunctionCall","src":"6785:13:15"},"variables":[{"name":"length_1","nodeType":"YulTypedName","src":"6773:8:15","type":""}]},{"expression":{"arguments":[{"name":"tail_2","nodeType":"YulIdentifier","src":"6814:6:15"},{"name":"length_1","nodeType":"YulIdentifier","src":"6822:8:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6807:6:15"},"nodeType":"YulFunctionCall","src":"6807:24:15"},"nodeType":"YulExpressionStatement","src":"6807:24:15"},{"nodeType":"YulAssignment","src":"6840:24:15","value":{"arguments":[{"name":"tail_2","nodeType":"YulIdentifier","src":"6853:6:15"},{"name":"_2","nodeType":"YulIdentifier","src":"6861:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6849:3:15"},"nodeType":"YulFunctionCall","src":"6849:15:15"},"variableNames":[{"name":"pos_1","nodeType":"YulIdentifier","src":"6840:5:15"}]},{"nodeType":"YulVariableDeclaration","src":"6873:31:15","value":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"6893:6:15"},{"name":"_2","nodeType":"YulIdentifier","src":"6901:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6889:3:15"},"nodeType":"YulFunctionCall","src":"6889:15:15"},"variables":[{"name":"srcPtr_1","nodeType":"YulTypedName","src":"6877:8:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"6913:12:15","value":{"kind":"number","nodeType":"YulLiteral","src":"6924:1:15","type":"","value":"0"},"variables":[{"name":"i_1","nodeType":"YulTypedName","src":"6917:3:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"6991:153:15","statements":[{"expression":{"arguments":[{"arguments":[{"name":"srcPtr_1","nodeType":"YulIdentifier","src":"7039:8:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"7033:5:15"},"nodeType":"YulFunctionCall","src":"7033:15:15"},{"name":"pos_1","nodeType":"YulIdentifier","src":"7050:5:15"}],"functionName":{"name":"abi_encode_struct_SellStake","nodeType":"YulIdentifier","src":"7005:27:15"},"nodeType":"YulFunctionCall","src":"7005:51:15"},"nodeType":"YulExpressionStatement","src":"7005:51:15"},{"nodeType":"YulAssignment","src":"7069:23:15","value":{"arguments":[{"name":"pos_1","nodeType":"YulIdentifier","src":"7082:5:15"},{"name":"_1","nodeType":"YulIdentifier","src":"7089:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7078:3:15"},"nodeType":"YulFunctionCall","src":"7078:14:15"},"variableNames":[{"name":"pos_1","nodeType":"YulIdentifier","src":"7069:5:15"}]},{"nodeType":"YulAssignment","src":"7105:29:15","value":{"arguments":[{"name":"srcPtr_1","nodeType":"YulIdentifier","src":"7121:8:15"},{"name":"_2","nodeType":"YulIdentifier","src":"7131:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7117:3:15"},"nodeType":"YulFunctionCall","src":"7117:17:15"},"variableNames":[{"name":"srcPtr_1","nodeType":"YulIdentifier","src":"7105:8:15"}]}]},"condition":{"arguments":[{"name":"i_1","nodeType":"YulIdentifier","src":"6945:3:15"},{"name":"length_1","nodeType":"YulIdentifier","src":"6950:8:15"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"6942:2:15"},"nodeType":"YulFunctionCall","src":"6942:17:15"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"6960:22:15","statements":[{"nodeType":"YulAssignment","src":"6962:18:15","value":{"arguments":[{"name":"i_1","nodeType":"YulIdentifier","src":"6973:3:15"},{"kind":"number","nodeType":"YulLiteral","src":"6978:1:15","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6969:3:15"},"nodeType":"YulFunctionCall","src":"6969:11:15"},"variableNames":[{"name":"i_1","nodeType":"YulIdentifier","src":"6962:3:15"}]}]},"pre":{"nodeType":"YulBlock","src":"6938:3:15","statements":[]},"src":"6934:210:15"},{"nodeType":"YulAssignment","src":"7153:13:15","value":{"name":"pos_1","nodeType":"YulIdentifier","src":"7161:5:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7153:4:15"}]}]},"name":"abi_encode_tuple_t_array$_t_address_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_struct$_SellStake_$1537_memory_ptr_$dyn_memory_ptr__to_t_array$_t_address_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_struct$_SellStake_$1537_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6001:9:15","type":""},{"name":"value2","nodeType":"YulTypedName","src":"6012:6:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"6020:6:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"6028:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6039:4:15","type":""}],"src":"5687:1485:15"},{"body":{"nodeType":"YulBlock","src":"7264:173:15","statements":[{"body":{"nodeType":"YulBlock","src":"7310:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7319:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7322:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7312:6:15"},"nodeType":"YulFunctionCall","src":"7312:12:15"},"nodeType":"YulExpressionStatement","src":"7312:12:15"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"7285:7:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"7294:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7281:3:15"},"nodeType":"YulFunctionCall","src":"7281:23:15"},{"kind":"number","nodeType":"YulLiteral","src":"7306:2:15","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"7277:3:15"},"nodeType":"YulFunctionCall","src":"7277:32:15"},"nodeType":"YulIf","src":"7274:52:15"},{"nodeType":"YulAssignment","src":"7335:39:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7364:9:15"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"7345:18:15"},"nodeType":"YulFunctionCall","src":"7345:29:15"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"7335:6:15"}]},{"nodeType":"YulAssignment","src":"7383:48:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7416:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"7427:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7412:3:15"},"nodeType":"YulFunctionCall","src":"7412:18:15"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"7393:18:15"},"nodeType":"YulFunctionCall","src":"7393:38:15"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"7383:6:15"}]}]},"name":"abi_decode_tuple_t_addresst_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7222:9:15","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"7233:7:15","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"7245:6:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"7253:6:15","type":""}],"src":"7177:260:15"},{"body":{"nodeType":"YulBlock","src":"7631:484:15","statements":[{"body":{"nodeType":"YulBlock","src":"7678:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7687:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7690:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7680:6:15"},"nodeType":"YulFunctionCall","src":"7680:12:15"},"nodeType":"YulExpressionStatement","src":"7680:12:15"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"7652:7:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"7661:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7648:3:15"},"nodeType":"YulFunctionCall","src":"7648:23:15"},{"kind":"number","nodeType":"YulLiteral","src":"7673:3:15","type":"","value":"256"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"7644:3:15"},"nodeType":"YulFunctionCall","src":"7644:33:15"},"nodeType":"YulIf","src":"7641:53:15"},{"nodeType":"YulAssignment","src":"7703:39:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7732:9:15"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"7713:18:15"},"nodeType":"YulFunctionCall","src":"7713:29:15"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"7703:6:15"}]},{"nodeType":"YulAssignment","src":"7751:42:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7778:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"7789:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7774:3:15"},"nodeType":"YulFunctionCall","src":"7774:18:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7761:12:15"},"nodeType":"YulFunctionCall","src":"7761:32:15"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"7751:6:15"}]},{"nodeType":"YulAssignment","src":"7802:42:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7829:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"7840:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7825:3:15"},"nodeType":"YulFunctionCall","src":"7825:18:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7812:12:15"},"nodeType":"YulFunctionCall","src":"7812:32:15"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"7802:6:15"}]},{"nodeType":"YulAssignment","src":"7853:42:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7880:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"7891:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7876:3:15"},"nodeType":"YulFunctionCall","src":"7876:18:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7863:12:15"},"nodeType":"YulFunctionCall","src":"7863:32:15"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"7853:6:15"}]},{"nodeType":"YulAssignment","src":"7904:49:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7937:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"7948:3:15","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7933:3:15"},"nodeType":"YulFunctionCall","src":"7933:19:15"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"7914:18:15"},"nodeType":"YulFunctionCall","src":"7914:39:15"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"7904:6:15"}]},{"nodeType":"YulAssignment","src":"7962:43:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7989:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"8000:3:15","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7985:3:15"},"nodeType":"YulFunctionCall","src":"7985:19:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7972:12:15"},"nodeType":"YulFunctionCall","src":"7972:33:15"},"variableNames":[{"name":"value5","nodeType":"YulIdentifier","src":"7962:6:15"}]},{"nodeType":"YulAssignment","src":"8014:43:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8041:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"8052:3:15","type":"","value":"192"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8037:3:15"},"nodeType":"YulFunctionCall","src":"8037:19:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"8024:12:15"},"nodeType":"YulFunctionCall","src":"8024:33:15"},"variableNames":[{"name":"value6","nodeType":"YulIdentifier","src":"8014:6:15"}]},{"nodeType":"YulAssignment","src":"8066:43:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8093:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"8104:3:15","type":"","value":"224"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8089:3:15"},"nodeType":"YulFunctionCall","src":"8089:19:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"8076:12:15"},"nodeType":"YulFunctionCall","src":"8076:33:15"},"variableNames":[{"name":"value7","nodeType":"YulIdentifier","src":"8066:6:15"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_addresst_uint256t_uint256t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7541:9:15","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"7552:7:15","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"7564:6:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"7572:6:15","type":""},{"name":"value2","nodeType":"YulTypedName","src":"7580:6:15","type":""},{"name":"value3","nodeType":"YulTypedName","src":"7588:6:15","type":""},{"name":"value4","nodeType":"YulTypedName","src":"7596:6:15","type":""},{"name":"value5","nodeType":"YulTypedName","src":"7604:6:15","type":""},{"name":"value6","nodeType":"YulTypedName","src":"7612:6:15","type":""},{"name":"value7","nodeType":"YulTypedName","src":"7620:6:15","type":""}],"src":"7442:673:15"},{"body":{"nodeType":"YulBlock","src":"8321:1326:15","statements":[{"nodeType":"YulVariableDeclaration","src":"8331:12:15","value":{"kind":"number","nodeType":"YulLiteral","src":"8341:2:15","type":"","value":"32"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"8335:2:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"8352:32:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8370:9:15"},{"name":"_1","nodeType":"YulIdentifier","src":"8381:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8366:3:15"},"nodeType":"YulFunctionCall","src":"8366:18:15"},"variables":[{"name":"tail_1","nodeType":"YulTypedName","src":"8356:6:15","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8400:9:15"},{"name":"_1","nodeType":"YulIdentifier","src":"8411:2:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8393:6:15"},"nodeType":"YulFunctionCall","src":"8393:21:15"},"nodeType":"YulExpressionStatement","src":"8393:21:15"},{"nodeType":"YulVariableDeclaration","src":"8423:17:15","value":{"name":"tail_1","nodeType":"YulIdentifier","src":"8434:6:15"},"variables":[{"name":"pos","nodeType":"YulTypedName","src":"8427:3:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"8449:27:15","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"8469:6:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8463:5:15"},"nodeType":"YulFunctionCall","src":"8463:13:15"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"8453:6:15","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nodeType":"YulIdentifier","src":"8492:6:15"},{"name":"length","nodeType":"YulIdentifier","src":"8500:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8485:6:15"},"nodeType":"YulFunctionCall","src":"8485:22:15"},"nodeType":"YulExpressionStatement","src":"8485:22:15"},{"nodeType":"YulVariableDeclaration","src":"8516:12:15","value":{"kind":"number","nodeType":"YulLiteral","src":"8526:2:15","type":"","value":"64"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"8520:2:15","type":""}]},{"nodeType":"YulAssignment","src":"8537:25:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8548:9:15"},{"name":"_2","nodeType":"YulIdentifier","src":"8559:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8544:3:15"},"nodeType":"YulFunctionCall","src":"8544:18:15"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"8537:3:15"}]},{"nodeType":"YulVariableDeclaration","src":"8571:29:15","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"8589:6:15"},{"name":"_1","nodeType":"YulIdentifier","src":"8597:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8585:3:15"},"nodeType":"YulFunctionCall","src":"8585:15:15"},"variables":[{"name":"srcPtr","nodeType":"YulTypedName","src":"8575:6:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"8609:10:15","value":{"kind":"number","nodeType":"YulLiteral","src":"8618:1:15","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"8613:1:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"8677:944:15","statements":[{"nodeType":"YulVariableDeclaration","src":"8691:23:15","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"8707:6:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8701:5:15"},"nodeType":"YulFunctionCall","src":"8701:13:15"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"8695:2:15","type":""}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8734:3:15"},{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"8745:2:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8739:5:15"},"nodeType":"YulFunctionCall","src":"8739:9:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8727:6:15"},"nodeType":"YulFunctionCall","src":"8727:22:15"},"nodeType":"YulExpressionStatement","src":"8727:22:15"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8773:3:15"},{"name":"_1","nodeType":"YulIdentifier","src":"8778:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8769:3:15"},"nodeType":"YulFunctionCall","src":"8769:12:15"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"8793:2:15"},{"name":"_1","nodeType":"YulIdentifier","src":"8797:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8789:3:15"},"nodeType":"YulFunctionCall","src":"8789:11:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8783:5:15"},"nodeType":"YulFunctionCall","src":"8783:18:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8762:6:15"},"nodeType":"YulFunctionCall","src":"8762:40:15"},"nodeType":"YulExpressionStatement","src":"8762:40:15"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8826:3:15"},{"name":"_2","nodeType":"YulIdentifier","src":"8831:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8822:3:15"},"nodeType":"YulFunctionCall","src":"8822:12:15"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"8846:2:15"},{"name":"_2","nodeType":"YulIdentifier","src":"8850:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8842:3:15"},"nodeType":"YulFunctionCall","src":"8842:11:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8836:5:15"},"nodeType":"YulFunctionCall","src":"8836:18:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8815:6:15"},"nodeType":"YulFunctionCall","src":"8815:40:15"},"nodeType":"YulExpressionStatement","src":"8815:40:15"},{"nodeType":"YulVariableDeclaration","src":"8868:14:15","value":{"kind":"number","nodeType":"YulLiteral","src":"8878:4:15","type":"","value":"0x60"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"8872:2:15","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8906:3:15"},{"name":"_4","nodeType":"YulIdentifier","src":"8911:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8902:3:15"},"nodeType":"YulFunctionCall","src":"8902:12:15"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"8926:2:15"},{"name":"_4","nodeType":"YulIdentifier","src":"8930:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8922:3:15"},"nodeType":"YulFunctionCall","src":"8922:11:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8916:5:15"},"nodeType":"YulFunctionCall","src":"8916:18:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8895:6:15"},"nodeType":"YulFunctionCall","src":"8895:40:15"},"nodeType":"YulExpressionStatement","src":"8895:40:15"},{"nodeType":"YulVariableDeclaration","src":"8948:14:15","value":{"kind":"number","nodeType":"YulLiteral","src":"8958:4:15","type":"","value":"0x80"},"variables":[{"name":"_5","nodeType":"YulTypedName","src":"8952:2:15","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8986:3:15"},{"name":"_5","nodeType":"YulIdentifier","src":"8991:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8982:3:15"},"nodeType":"YulFunctionCall","src":"8982:12:15"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"9006:2:15"},{"name":"_5","nodeType":"YulIdentifier","src":"9010:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9002:3:15"},"nodeType":"YulFunctionCall","src":"9002:11:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8996:5:15"},"nodeType":"YulFunctionCall","src":"8996:18:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8975:6:15"},"nodeType":"YulFunctionCall","src":"8975:40:15"},"nodeType":"YulExpressionStatement","src":"8975:40:15"},{"nodeType":"YulVariableDeclaration","src":"9028:14:15","value":{"kind":"number","nodeType":"YulLiteral","src":"9038:4:15","type":"","value":"0xa0"},"variables":[{"name":"_6","nodeType":"YulTypedName","src":"9032:2:15","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9066:3:15"},{"name":"_6","nodeType":"YulIdentifier","src":"9071:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9062:3:15"},"nodeType":"YulFunctionCall","src":"9062:12:15"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"9086:2:15"},{"name":"_6","nodeType":"YulIdentifier","src":"9090:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9082:3:15"},"nodeType":"YulFunctionCall","src":"9082:11:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9076:5:15"},"nodeType":"YulFunctionCall","src":"9076:18:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9055:6:15"},"nodeType":"YulFunctionCall","src":"9055:40:15"},"nodeType":"YulExpressionStatement","src":"9055:40:15"},{"nodeType":"YulVariableDeclaration","src":"9108:14:15","value":{"kind":"number","nodeType":"YulLiteral","src":"9118:4:15","type":"","value":"0xc0"},"variables":[{"name":"_7","nodeType":"YulTypedName","src":"9112:2:15","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9146:3:15"},{"name":"_7","nodeType":"YulIdentifier","src":"9151:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9142:3:15"},"nodeType":"YulFunctionCall","src":"9142:12:15"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"9166:2:15"},{"name":"_7","nodeType":"YulIdentifier","src":"9170:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9162:3:15"},"nodeType":"YulFunctionCall","src":"9162:11:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9156:5:15"},"nodeType":"YulFunctionCall","src":"9156:18:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9135:6:15"},"nodeType":"YulFunctionCall","src":"9135:40:15"},"nodeType":"YulExpressionStatement","src":"9135:40:15"},{"nodeType":"YulVariableDeclaration","src":"9188:14:15","value":{"kind":"number","nodeType":"YulLiteral","src":"9198:4:15","type":"","value":"0xe0"},"variables":[{"name":"_8","nodeType":"YulTypedName","src":"9192:2:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"9215:38:15","value":{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"9245:2:15"},{"name":"_8","nodeType":"YulIdentifier","src":"9249:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9241:3:15"},"nodeType":"YulFunctionCall","src":"9241:11:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9235:5:15"},"nodeType":"YulFunctionCall","src":"9235:18:15"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"9219:12:15","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"9285:12:15"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9303:3:15"},{"name":"_8","nodeType":"YulIdentifier","src":"9308:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9299:3:15"},"nodeType":"YulFunctionCall","src":"9299:12:15"}],"functionName":{"name":"abi_encode_address","nodeType":"YulIdentifier","src":"9266:18:15"},"nodeType":"YulFunctionCall","src":"9266:46:15"},"nodeType":"YulExpressionStatement","src":"9266:46:15"},{"nodeType":"YulVariableDeclaration","src":"9325:16:15","value":{"kind":"number","nodeType":"YulLiteral","src":"9335:6:15","type":"","value":"0x0100"},"variables":[{"name":"_9","nodeType":"YulTypedName","src":"9329:2:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"9354:40:15","value":{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"9386:2:15"},{"name":"_9","nodeType":"YulIdentifier","src":"9390:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9382:3:15"},"nodeType":"YulFunctionCall","src":"9382:11:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9376:5:15"},"nodeType":"YulFunctionCall","src":"9376:18:15"},"variables":[{"name":"memberValue0_1","nodeType":"YulTypedName","src":"9358:14:15","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_1","nodeType":"YulIdentifier","src":"9423:14:15"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9443:3:15"},{"name":"_9","nodeType":"YulIdentifier","src":"9448:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9439:3:15"},"nodeType":"YulFunctionCall","src":"9439:12:15"}],"functionName":{"name":"abi_encode_bool","nodeType":"YulIdentifier","src":"9407:15:15"},"nodeType":"YulFunctionCall","src":"9407:45:15"},"nodeType":"YulExpressionStatement","src":"9407:45:15"},{"nodeType":"YulVariableDeclaration","src":"9465:17:15","value":{"kind":"number","nodeType":"YulLiteral","src":"9476:6:15","type":"","value":"0x0120"},"variables":[{"name":"_10","nodeType":"YulTypedName","src":"9469:3:15","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9506:3:15"},{"name":"_10","nodeType":"YulIdentifier","src":"9511:3:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9502:3:15"},"nodeType":"YulFunctionCall","src":"9502:13:15"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"9527:2:15"},{"name":"_10","nodeType":"YulIdentifier","src":"9531:3:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9523:3:15"},"nodeType":"YulFunctionCall","src":"9523:12:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9517:5:15"},"nodeType":"YulFunctionCall","src":"9517:19:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9495:6:15"},"nodeType":"YulFunctionCall","src":"9495:42:15"},"nodeType":"YulExpressionStatement","src":"9495:42:15"},{"nodeType":"YulAssignment","src":"9550:23:15","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9561:3:15"},{"kind":"number","nodeType":"YulLiteral","src":"9566:6:15","type":"","value":"0x0140"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9557:3:15"},"nodeType":"YulFunctionCall","src":"9557:16:15"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"9550:3:15"}]},{"nodeType":"YulAssignment","src":"9586:25:15","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"9600:6:15"},{"name":"_1","nodeType":"YulIdentifier","src":"9608:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9596:3:15"},"nodeType":"YulFunctionCall","src":"9596:15:15"},"variableNames":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"9586:6:15"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"8639:1:15"},{"name":"length","nodeType":"YulIdentifier","src":"8642:6:15"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"8636:2:15"},"nodeType":"YulFunctionCall","src":"8636:13:15"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"8650:18:15","statements":[{"nodeType":"YulAssignment","src":"8652:14:15","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"8661:1:15"},{"kind":"number","nodeType":"YulLiteral","src":"8664:1:15","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8657:3:15"},"nodeType":"YulFunctionCall","src":"8657:9:15"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"8652:1:15"}]}]},"pre":{"nodeType":"YulBlock","src":"8632:3:15","statements":[]},"src":"8628:993:15"},{"nodeType":"YulAssignment","src":"9630:11:15","value":{"name":"pos","nodeType":"YulIdentifier","src":"9638:3:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9630:4:15"}]}]},"name":"abi_encode_tuple_t_array$_t_struct$_Vesting_$1496_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Vesting_$1496_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8290:9:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"8301:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"8312:4:15","type":""}],"src":"8120:1527:15"},{"body":{"nodeType":"YulBlock","src":"9869:748:15","statements":[{"nodeType":"YulVariableDeclaration","src":"9879:12:15","value":{"kind":"number","nodeType":"YulLiteral","src":"9889:2:15","type":"","value":"32"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"9883:2:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"9900:32:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9918:9:15"},{"name":"_1","nodeType":"YulIdentifier","src":"9929:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9914:3:15"},"nodeType":"YulFunctionCall","src":"9914:18:15"},"variables":[{"name":"tail_1","nodeType":"YulTypedName","src":"9904:6:15","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9948:9:15"},{"name":"_1","nodeType":"YulIdentifier","src":"9959:2:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9941:6:15"},"nodeType":"YulFunctionCall","src":"9941:21:15"},"nodeType":"YulExpressionStatement","src":"9941:21:15"},{"nodeType":"YulVariableDeclaration","src":"9971:17:15","value":{"name":"tail_1","nodeType":"YulIdentifier","src":"9982:6:15"},"variables":[{"name":"pos","nodeType":"YulTypedName","src":"9975:3:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"9997:27:15","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"10017:6:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10011:5:15"},"nodeType":"YulFunctionCall","src":"10011:13:15"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"10001:6:15","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nodeType":"YulIdentifier","src":"10040:6:15"},{"name":"length","nodeType":"YulIdentifier","src":"10048:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10033:6:15"},"nodeType":"YulFunctionCall","src":"10033:22:15"},"nodeType":"YulExpressionStatement","src":"10033:22:15"},{"nodeType":"YulVariableDeclaration","src":"10064:12:15","value":{"kind":"number","nodeType":"YulLiteral","src":"10074:2:15","type":"","value":"64"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"10068:2:15","type":""}]},{"nodeType":"YulAssignment","src":"10085:25:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10096:9:15"},{"name":"_2","nodeType":"YulIdentifier","src":"10107:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10092:3:15"},"nodeType":"YulFunctionCall","src":"10092:18:15"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"10085:3:15"}]},{"nodeType":"YulVariableDeclaration","src":"10119:29:15","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"10137:6:15"},{"name":"_1","nodeType":"YulIdentifier","src":"10145:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10133:3:15"},"nodeType":"YulFunctionCall","src":"10133:15:15"},"variables":[{"name":"srcPtr","nodeType":"YulTypedName","src":"10123:6:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"10157:10:15","value":{"kind":"number","nodeType":"YulLiteral","src":"10166:1:15","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"10161:1:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"10225:366:15","statements":[{"nodeType":"YulVariableDeclaration","src":"10239:23:15","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"10255:6:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10249:5:15"},"nodeType":"YulFunctionCall","src":"10249:13:15"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"10243:2:15","type":""}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10282:3:15"},{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"10293:2:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10287:5:15"},"nodeType":"YulFunctionCall","src":"10287:9:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10275:6:15"},"nodeType":"YulFunctionCall","src":"10275:22:15"},"nodeType":"YulExpressionStatement","src":"10275:22:15"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10321:3:15"},{"name":"_1","nodeType":"YulIdentifier","src":"10326:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10317:3:15"},"nodeType":"YulFunctionCall","src":"10317:12:15"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"10341:2:15"},{"name":"_1","nodeType":"YulIdentifier","src":"10345:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10337:3:15"},"nodeType":"YulFunctionCall","src":"10337:11:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10331:5:15"},"nodeType":"YulFunctionCall","src":"10331:18:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10310:6:15"},"nodeType":"YulFunctionCall","src":"10310:40:15"},"nodeType":"YulExpressionStatement","src":"10310:40:15"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10374:3:15"},{"name":"_2","nodeType":"YulIdentifier","src":"10379:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10370:3:15"},"nodeType":"YulFunctionCall","src":"10370:12:15"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"10394:2:15"},{"name":"_2","nodeType":"YulIdentifier","src":"10398:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10390:3:15"},"nodeType":"YulFunctionCall","src":"10390:11:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10384:5:15"},"nodeType":"YulFunctionCall","src":"10384:18:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10363:6:15"},"nodeType":"YulFunctionCall","src":"10363:40:15"},"nodeType":"YulExpressionStatement","src":"10363:40:15"},{"nodeType":"YulVariableDeclaration","src":"10416:14:15","value":{"kind":"number","nodeType":"YulLiteral","src":"10426:4:15","type":"","value":"0x60"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"10420:2:15","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10454:3:15"},{"name":"_4","nodeType":"YulIdentifier","src":"10459:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10450:3:15"},"nodeType":"YulFunctionCall","src":"10450:12:15"},{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"10478:2:15"},{"name":"_4","nodeType":"YulIdentifier","src":"10482:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10474:3:15"},"nodeType":"YulFunctionCall","src":"10474:11:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10468:5:15"},"nodeType":"YulFunctionCall","src":"10468:18:15"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10496:3:15","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"10501:1:15","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"10492:3:15"},"nodeType":"YulFunctionCall","src":"10492:11:15"},{"kind":"number","nodeType":"YulLiteral","src":"10505:1:15","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"10488:3:15"},"nodeType":"YulFunctionCall","src":"10488:19:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"10464:3:15"},"nodeType":"YulFunctionCall","src":"10464:44:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10443:6:15"},"nodeType":"YulFunctionCall","src":"10443:66:15"},"nodeType":"YulExpressionStatement","src":"10443:66:15"},{"nodeType":"YulAssignment","src":"10522:21:15","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10533:3:15"},{"kind":"number","nodeType":"YulLiteral","src":"10538:4:15","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10529:3:15"},"nodeType":"YulFunctionCall","src":"10529:14:15"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"10522:3:15"}]},{"nodeType":"YulAssignment","src":"10556:25:15","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"10570:6:15"},{"name":"_1","nodeType":"YulIdentifier","src":"10578:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10566:3:15"},"nodeType":"YulFunctionCall","src":"10566:15:15"},"variableNames":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"10556:6:15"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"10187:1:15"},{"name":"length","nodeType":"YulIdentifier","src":"10190:6:15"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"10184:2:15"},"nodeType":"YulFunctionCall","src":"10184:13:15"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"10198:18:15","statements":[{"nodeType":"YulAssignment","src":"10200:14:15","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"10209:1:15"},{"kind":"number","nodeType":"YulLiteral","src":"10212:1:15","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10205:3:15"},"nodeType":"YulFunctionCall","src":"10205:9:15"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"10200:1:15"}]}]},"pre":{"nodeType":"YulBlock","src":"10180:3:15","statements":[]},"src":"10176:415:15"},{"nodeType":"YulAssignment","src":"10600:11:15","value":{"name":"pos","nodeType":"YulIdentifier","src":"10608:3:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10600:4:15"}]}]},"name":"abi_encode_tuple_t_array$_t_struct$_WithdrawVesting_$1510_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_WithdrawVesting_$1510_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9838:9:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"9849:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9860:4:15","type":""}],"src":"9652:965:15"},{"body":{"nodeType":"YulBlock","src":"10726:212:15","statements":[{"body":{"nodeType":"YulBlock","src":"10772:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10781:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"10784:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"10774:6:15"},"nodeType":"YulFunctionCall","src":"10774:12:15"},"nodeType":"YulExpressionStatement","src":"10774:12:15"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"10747:7:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"10756:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"10743:3:15"},"nodeType":"YulFunctionCall","src":"10743:23:15"},{"kind":"number","nodeType":"YulLiteral","src":"10768:2:15","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"10739:3:15"},"nodeType":"YulFunctionCall","src":"10739:32:15"},"nodeType":"YulIf","src":"10736:52:15"},{"nodeType":"YulAssignment","src":"10797:33:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10820:9:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"10807:12:15"},"nodeType":"YulFunctionCall","src":"10807:23:15"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"10797:6:15"}]},{"nodeType":"YulAssignment","src":"10839:42:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10866:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"10877:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10862:3:15"},"nodeType":"YulFunctionCall","src":"10862:18:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"10849:12:15"},"nodeType":"YulFunctionCall","src":"10849:32:15"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"10839:6:15"}]},{"nodeType":"YulAssignment","src":"10890:42:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10917:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"10928:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10913:3:15"},"nodeType":"YulFunctionCall","src":"10913:18:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"10900:12:15"},"nodeType":"YulFunctionCall","src":"10900:32:15"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"10890:6:15"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10676:9:15","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"10687:7:15","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"10699:6:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"10707:6:15","type":""},{"name":"value2","nodeType":"YulTypedName","src":"10715:6:15","type":""}],"src":"10622:316:15"},{"body":{"nodeType":"YulBlock","src":"11098:380:15","statements":[{"body":{"nodeType":"YulBlock","src":"11145:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"11154:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"11157:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"11147:6:15"},"nodeType":"YulFunctionCall","src":"11147:12:15"},"nodeType":"YulExpressionStatement","src":"11147:12:15"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"11119:7:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"11128:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"11115:3:15"},"nodeType":"YulFunctionCall","src":"11115:23:15"},{"kind":"number","nodeType":"YulLiteral","src":"11140:3:15","type":"","value":"192"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"11111:3:15"},"nodeType":"YulFunctionCall","src":"11111:33:15"},"nodeType":"YulIf","src":"11108:53:15"},{"nodeType":"YulAssignment","src":"11170:39:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11199:9:15"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"11180:18:15"},"nodeType":"YulFunctionCall","src":"11180:29:15"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"11170:6:15"}]},{"nodeType":"YulAssignment","src":"11218:42:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11245:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"11256:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11241:3:15"},"nodeType":"YulFunctionCall","src":"11241:18:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"11228:12:15"},"nodeType":"YulFunctionCall","src":"11228:32:15"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"11218:6:15"}]},{"nodeType":"YulAssignment","src":"11269:42:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11296:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"11307:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11292:3:15"},"nodeType":"YulFunctionCall","src":"11292:18:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"11279:12:15"},"nodeType":"YulFunctionCall","src":"11279:32:15"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"11269:6:15"}]},{"nodeType":"YulAssignment","src":"11320:42:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11347:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"11358:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11343:3:15"},"nodeType":"YulFunctionCall","src":"11343:18:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"11330:12:15"},"nodeType":"YulFunctionCall","src":"11330:32:15"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"11320:6:15"}]},{"nodeType":"YulAssignment","src":"11371:49:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11404:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"11415:3:15","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11400:3:15"},"nodeType":"YulFunctionCall","src":"11400:19:15"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"11381:18:15"},"nodeType":"YulFunctionCall","src":"11381:39:15"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"11371:6:15"}]},{"nodeType":"YulAssignment","src":"11429:43:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11456:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"11467:3:15","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11452:3:15"},"nodeType":"YulFunctionCall","src":"11452:19:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"11439:12:15"},"nodeType":"YulFunctionCall","src":"11439:33:15"},"variableNames":[{"name":"value5","nodeType":"YulIdentifier","src":"11429:6:15"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11024:9:15","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"11035:7:15","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"11047:6:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"11055:6:15","type":""},{"name":"value2","nodeType":"YulTypedName","src":"11063:6:15","type":""},{"name":"value3","nodeType":"YulTypedName","src":"11071:6:15","type":""},{"name":"value4","nodeType":"YulTypedName","src":"11079:6:15","type":""},{"name":"value5","nodeType":"YulTypedName","src":"11087:6:15","type":""}],"src":"10943:535:15"},{"body":{"nodeType":"YulBlock","src":"11532:265:15","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11549:3:15"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"11560:5:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"11554:5:15"},"nodeType":"YulFunctionCall","src":"11554:12:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11542:6:15"},"nodeType":"YulFunctionCall","src":"11542:25:15"},"nodeType":"YulExpressionStatement","src":"11542:25:15"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11587:3:15"},{"kind":"number","nodeType":"YulLiteral","src":"11592:4:15","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11583:3:15"},"nodeType":"YulFunctionCall","src":"11583:14:15"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"11609:5:15"},{"kind":"number","nodeType":"YulLiteral","src":"11616:4:15","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11605:3:15"},"nodeType":"YulFunctionCall","src":"11605:16:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"11599:5:15"},"nodeType":"YulFunctionCall","src":"11599:23:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11576:6:15"},"nodeType":"YulFunctionCall","src":"11576:47:15"},"nodeType":"YulExpressionStatement","src":"11576:47:15"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11643:3:15"},{"kind":"number","nodeType":"YulLiteral","src":"11648:4:15","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11639:3:15"},"nodeType":"YulFunctionCall","src":"11639:14:15"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"11665:5:15"},{"kind":"number","nodeType":"YulLiteral","src":"11672:4:15","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11661:3:15"},"nodeType":"YulFunctionCall","src":"11661:16:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"11655:5:15"},"nodeType":"YulFunctionCall","src":"11655:23:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11632:6:15"},"nodeType":"YulFunctionCall","src":"11632:47:15"},"nodeType":"YulExpressionStatement","src":"11632:47:15"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11699:3:15"},{"kind":"number","nodeType":"YulLiteral","src":"11704:4:15","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11695:3:15"},"nodeType":"YulFunctionCall","src":"11695:14:15"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"11721:5:15"},{"kind":"number","nodeType":"YulLiteral","src":"11728:4:15","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11717:3:15"},"nodeType":"YulFunctionCall","src":"11717:16:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"11711:5:15"},"nodeType":"YulFunctionCall","src":"11711:23:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11688:6:15"},"nodeType":"YulFunctionCall","src":"11688:47:15"},"nodeType":"YulExpressionStatement","src":"11688:47:15"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11755:3:15"},{"kind":"number","nodeType":"YulLiteral","src":"11760:4:15","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11751:3:15"},"nodeType":"YulFunctionCall","src":"11751:14:15"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"11777:5:15"},{"kind":"number","nodeType":"YulLiteral","src":"11784:4:15","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11773:3:15"},"nodeType":"YulFunctionCall","src":"11773:16:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"11767:5:15"},"nodeType":"YulFunctionCall","src":"11767:23:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11744:6:15"},"nodeType":"YulFunctionCall","src":"11744:47:15"},"nodeType":"YulExpressionStatement","src":"11744:47:15"}]},"name":"abi_encode_struct_Epoch","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"11516:5:15","type":""},{"name":"pos","nodeType":"YulTypedName","src":"11523:3:15","type":""}],"src":"11483:314:15"},{"body":{"nodeType":"YulBlock","src":"11999:500:15","statements":[{"nodeType":"YulVariableDeclaration","src":"12009:12:15","value":{"kind":"number","nodeType":"YulLiteral","src":"12019:2:15","type":"","value":"32"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"12013:2:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"12030:32:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12048:9:15"},{"name":"_1","nodeType":"YulIdentifier","src":"12059:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12044:3:15"},"nodeType":"YulFunctionCall","src":"12044:18:15"},"variables":[{"name":"tail_1","nodeType":"YulTypedName","src":"12034:6:15","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12078:9:15"},{"name":"_1","nodeType":"YulIdentifier","src":"12089:2:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12071:6:15"},"nodeType":"YulFunctionCall","src":"12071:21:15"},"nodeType":"YulExpressionStatement","src":"12071:21:15"},{"nodeType":"YulVariableDeclaration","src":"12101:17:15","value":{"name":"tail_1","nodeType":"YulIdentifier","src":"12112:6:15"},"variables":[{"name":"pos","nodeType":"YulTypedName","src":"12105:3:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"12127:27:15","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"12147:6:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"12141:5:15"},"nodeType":"YulFunctionCall","src":"12141:13:15"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"12131:6:15","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nodeType":"YulIdentifier","src":"12170:6:15"},{"name":"length","nodeType":"YulIdentifier","src":"12178:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12163:6:15"},"nodeType":"YulFunctionCall","src":"12163:22:15"},"nodeType":"YulExpressionStatement","src":"12163:22:15"},{"nodeType":"YulAssignment","src":"12194:25:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12205:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"12216:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12201:3:15"},"nodeType":"YulFunctionCall","src":"12201:18:15"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"12194:3:15"}]},{"nodeType":"YulVariableDeclaration","src":"12228:29:15","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"12246:6:15"},{"name":"_1","nodeType":"YulIdentifier","src":"12254:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12242:3:15"},"nodeType":"YulFunctionCall","src":"12242:15:15"},"variables":[{"name":"srcPtr","nodeType":"YulTypedName","src":"12232:6:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"12266:10:15","value":{"kind":"number","nodeType":"YulLiteral","src":"12275:1:15","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"12270:1:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"12334:139:15","statements":[{"expression":{"arguments":[{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"12378:6:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"12372:5:15"},"nodeType":"YulFunctionCall","src":"12372:13:15"},{"name":"pos","nodeType":"YulIdentifier","src":"12387:3:15"}],"functionName":{"name":"abi_encode_struct_Epoch","nodeType":"YulIdentifier","src":"12348:23:15"},"nodeType":"YulFunctionCall","src":"12348:43:15"},"nodeType":"YulExpressionStatement","src":"12348:43:15"},{"nodeType":"YulAssignment","src":"12404:21:15","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12415:3:15"},{"kind":"number","nodeType":"YulLiteral","src":"12420:4:15","type":"","value":"0xa0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12411:3:15"},"nodeType":"YulFunctionCall","src":"12411:14:15"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"12404:3:15"}]},{"nodeType":"YulAssignment","src":"12438:25:15","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"12452:6:15"},{"name":"_1","nodeType":"YulIdentifier","src":"12460:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12448:3:15"},"nodeType":"YulFunctionCall","src":"12448:15:15"},"variableNames":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"12438:6:15"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"12296:1:15"},{"name":"length","nodeType":"YulIdentifier","src":"12299:6:15"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"12293:2:15"},"nodeType":"YulFunctionCall","src":"12293:13:15"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"12307:18:15","statements":[{"nodeType":"YulAssignment","src":"12309:14:15","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"12318:1:15"},{"kind":"number","nodeType":"YulLiteral","src":"12321:1:15","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12314:3:15"},"nodeType":"YulFunctionCall","src":"12314:9:15"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"12309:1:15"}]}]},"pre":{"nodeType":"YulBlock","src":"12289:3:15","statements":[]},"src":"12285:188:15"},{"nodeType":"YulAssignment","src":"12482:11:15","value":{"name":"pos","nodeType":"YulIdentifier","src":"12490:3:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12482:4:15"}]}]},"name":"abi_encode_tuple_t_array$_t_struct$_Epoch_$1521_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Epoch_$1521_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11968:9:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"11979:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11990:4:15","type":""}],"src":"11802:697:15"},{"body":{"nodeType":"YulBlock","src":"12745:350:15","statements":[{"nodeType":"YulAssignment","src":"12755:27:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12767:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"12778:3:15","type":"","value":"192"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12763:3:15"},"nodeType":"YulFunctionCall","src":"12763:19:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12755:4:15"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12798:9:15"},{"name":"value0","nodeType":"YulIdentifier","src":"12809:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12791:6:15"},"nodeType":"YulFunctionCall","src":"12791:25:15"},"nodeType":"YulExpressionStatement","src":"12791:25:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12836:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"12847:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12832:3:15"},"nodeType":"YulFunctionCall","src":"12832:18:15"},{"name":"value1","nodeType":"YulIdentifier","src":"12852:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12825:6:15"},"nodeType":"YulFunctionCall","src":"12825:34:15"},"nodeType":"YulExpressionStatement","src":"12825:34:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12879:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"12890:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12875:3:15"},"nodeType":"YulFunctionCall","src":"12875:18:15"},{"name":"value2","nodeType":"YulIdentifier","src":"12895:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12868:6:15"},"nodeType":"YulFunctionCall","src":"12868:34:15"},"nodeType":"YulExpressionStatement","src":"12868:34:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12922:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"12933:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12918:3:15"},"nodeType":"YulFunctionCall","src":"12918:18:15"},{"name":"value3","nodeType":"YulIdentifier","src":"12938:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12911:6:15"},"nodeType":"YulFunctionCall","src":"12911:34:15"},"nodeType":"YulExpressionStatement","src":"12911:34:15"},{"nodeType":"YulVariableDeclaration","src":"12954:29:15","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"12972:3:15","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"12977:1:15","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"12968:3:15"},"nodeType":"YulFunctionCall","src":"12968:11:15"},{"kind":"number","nodeType":"YulLiteral","src":"12981:1:15","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"12964:3:15"},"nodeType":"YulFunctionCall","src":"12964:19:15"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"12958:2:15","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13003:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"13014:3:15","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12999:3:15"},"nodeType":"YulFunctionCall","src":"12999:19:15"},{"arguments":[{"name":"value4","nodeType":"YulIdentifier","src":"13024:6:15"},{"name":"_1","nodeType":"YulIdentifier","src":"13032:2:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"13020:3:15"},"nodeType":"YulFunctionCall","src":"13020:15:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12992:6:15"},"nodeType":"YulFunctionCall","src":"12992:44:15"},"nodeType":"YulExpressionStatement","src":"12992:44:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13056:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"13067:3:15","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13052:3:15"},"nodeType":"YulFunctionCall","src":"13052:19:15"},{"arguments":[{"name":"value5","nodeType":"YulIdentifier","src":"13077:6:15"},{"name":"_1","nodeType":"YulIdentifier","src":"13085:2:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"13073:3:15"},"nodeType":"YulFunctionCall","src":"13073:15:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13045:6:15"},"nodeType":"YulFunctionCall","src":"13045:44:15"},"nodeType":"YulExpressionStatement","src":"13045:44:15"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256_t_address_t_address__to_t_uint256_t_uint256_t_uint256_t_uint256_t_address_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"12674:9:15","type":""},{"name":"value5","nodeType":"YulTypedName","src":"12685:6:15","type":""},{"name":"value4","nodeType":"YulTypedName","src":"12693:6:15","type":""},{"name":"value3","nodeType":"YulTypedName","src":"12701:6:15","type":""},{"name":"value2","nodeType":"YulTypedName","src":"12709:6:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"12717:6:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"12725:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12736:4:15","type":""}],"src":"12504:591:15"},{"body":{"nodeType":"YulBlock","src":"13255:98:15","statements":[{"nodeType":"YulAssignment","src":"13265:27:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13277:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"13288:3:15","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13273:3:15"},"nodeType":"YulFunctionCall","src":"13273:19:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13265:4:15"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"13329:6:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"13337:9:15"}],"functionName":{"name":"abi_encode_struct_SellStake","nodeType":"YulIdentifier","src":"13301:27:15"},"nodeType":"YulFunctionCall","src":"13301:46:15"},"nodeType":"YulExpressionStatement","src":"13301:46:15"}]},"name":"abi_encode_tuple_t_struct$_SellStake_$1537_memory_ptr__to_t_struct$_SellStake_$1537_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13224:9:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"13235:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"13246:4:15","type":""}],"src":"13100:253:15"},{"body":{"nodeType":"YulBlock","src":"13415:153:15","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13432:3:15"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"13443:5:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"13437:5:15"},"nodeType":"YulFunctionCall","src":"13437:12:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13425:6:15"},"nodeType":"YulFunctionCall","src":"13425:25:15"},"nodeType":"YulExpressionStatement","src":"13425:25:15"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13470:3:15"},{"kind":"number","nodeType":"YulLiteral","src":"13475:4:15","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13466:3:15"},"nodeType":"YulFunctionCall","src":"13466:14:15"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"13492:5:15"},{"kind":"number","nodeType":"YulLiteral","src":"13499:4:15","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13488:3:15"},"nodeType":"YulFunctionCall","src":"13488:16:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"13482:5:15"},"nodeType":"YulFunctionCall","src":"13482:23:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13459:6:15"},"nodeType":"YulFunctionCall","src":"13459:47:15"},"nodeType":"YulExpressionStatement","src":"13459:47:15"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13526:3:15"},{"kind":"number","nodeType":"YulLiteral","src":"13531:4:15","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13522:3:15"},"nodeType":"YulFunctionCall","src":"13522:14:15"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"13548:5:15"},{"kind":"number","nodeType":"YulLiteral","src":"13555:4:15","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13544:3:15"},"nodeType":"YulFunctionCall","src":"13544:16:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"13538:5:15"},"nodeType":"YulFunctionCall","src":"13538:23:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13515:6:15"},"nodeType":"YulFunctionCall","src":"13515:47:15"},"nodeType":"YulExpressionStatement","src":"13515:47:15"}]},"name":"abi_encode_struct_WithdrawStake","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"13399:5:15","type":""},{"name":"pos","nodeType":"YulTypedName","src":"13406:3:15","type":""}],"src":"13358:210:15"},{"body":{"nodeType":"YulBlock","src":"13736:101:15","statements":[{"nodeType":"YulAssignment","src":"13746:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13758:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"13769:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13754:3:15"},"nodeType":"YulFunctionCall","src":"13754:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13746:4:15"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"13813:6:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"13821:9:15"}],"functionName":{"name":"abi_encode_struct_WithdrawStake","nodeType":"YulIdentifier","src":"13781:31:15"},"nodeType":"YulFunctionCall","src":"13781:50:15"},"nodeType":"YulExpressionStatement","src":"13781:50:15"}]},"name":"abi_encode_tuple_t_struct$_WithdrawStake_$1528_memory_ptr__to_t_struct$_WithdrawStake_$1528_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13705:9:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"13716:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"13727:4:15","type":""}],"src":"13573:264:15"},{"body":{"nodeType":"YulBlock","src":"13989:94:15","statements":[{"nodeType":"YulAssignment","src":"13999:27:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14011:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"14022:3:15","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14007:3:15"},"nodeType":"YulFunctionCall","src":"14007:19:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13999:4:15"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"14059:6:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"14067:9:15"}],"functionName":{"name":"abi_encode_struct_Epoch","nodeType":"YulIdentifier","src":"14035:23:15"},"nodeType":"YulFunctionCall","src":"14035:42:15"},"nodeType":"YulExpressionStatement","src":"14035:42:15"}]},"name":"abi_encode_tuple_t_struct$_Epoch_$1521_memory_ptr__to_t_struct$_Epoch_$1521_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13958:9:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"13969:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"13980:4:15","type":""}],"src":"13842:241:15"},{"body":{"nodeType":"YulBlock","src":"14435:512:15","statements":[{"nodeType":"YulAssignment","src":"14445:27:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14457:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"14468:3:15","type":"","value":"320"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14453:3:15"},"nodeType":"YulFunctionCall","src":"14453:19:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14445:4:15"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14488:9:15"},{"name":"value0","nodeType":"YulIdentifier","src":"14499:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14481:6:15"},"nodeType":"YulFunctionCall","src":"14481:25:15"},"nodeType":"YulExpressionStatement","src":"14481:25:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14526:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"14537:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14522:3:15"},"nodeType":"YulFunctionCall","src":"14522:18:15"},{"name":"value1","nodeType":"YulIdentifier","src":"14542:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14515:6:15"},"nodeType":"YulFunctionCall","src":"14515:34:15"},"nodeType":"YulExpressionStatement","src":"14515:34:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14569:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"14580:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14565:3:15"},"nodeType":"YulFunctionCall","src":"14565:18:15"},{"name":"value2","nodeType":"YulIdentifier","src":"14585:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14558:6:15"},"nodeType":"YulFunctionCall","src":"14558:34:15"},"nodeType":"YulExpressionStatement","src":"14558:34:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14612:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"14623:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14608:3:15"},"nodeType":"YulFunctionCall","src":"14608:18:15"},{"name":"value3","nodeType":"YulIdentifier","src":"14628:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14601:6:15"},"nodeType":"YulFunctionCall","src":"14601:34:15"},"nodeType":"YulExpressionStatement","src":"14601:34:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14655:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"14666:3:15","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14651:3:15"},"nodeType":"YulFunctionCall","src":"14651:19:15"},{"name":"value4","nodeType":"YulIdentifier","src":"14672:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14644:6:15"},"nodeType":"YulFunctionCall","src":"14644:35:15"},"nodeType":"YulExpressionStatement","src":"14644:35:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14699:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"14710:3:15","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14695:3:15"},"nodeType":"YulFunctionCall","src":"14695:19:15"},{"name":"value5","nodeType":"YulIdentifier","src":"14716:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14688:6:15"},"nodeType":"YulFunctionCall","src":"14688:35:15"},"nodeType":"YulExpressionStatement","src":"14688:35:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14743:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"14754:3:15","type":"","value":"192"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14739:3:15"},"nodeType":"YulFunctionCall","src":"14739:19:15"},{"name":"value6","nodeType":"YulIdentifier","src":"14760:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14732:6:15"},"nodeType":"YulFunctionCall","src":"14732:35:15"},"nodeType":"YulExpressionStatement","src":"14732:35:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14787:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"14798:3:15","type":"","value":"224"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14783:3:15"},"nodeType":"YulFunctionCall","src":"14783:19:15"},{"arguments":[{"name":"value7","nodeType":"YulIdentifier","src":"14808:6:15"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"14824:3:15","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"14829:1:15","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"14820:3:15"},"nodeType":"YulFunctionCall","src":"14820:11:15"},{"kind":"number","nodeType":"YulLiteral","src":"14833:1:15","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"14816:3:15"},"nodeType":"YulFunctionCall","src":"14816:19:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"14804:3:15"},"nodeType":"YulFunctionCall","src":"14804:32:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14776:6:15"},"nodeType":"YulFunctionCall","src":"14776:61:15"},"nodeType":"YulExpressionStatement","src":"14776:61:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14857:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"14868:3:15","type":"","value":"256"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14853:3:15"},"nodeType":"YulFunctionCall","src":"14853:19:15"},{"arguments":[{"arguments":[{"name":"value8","nodeType":"YulIdentifier","src":"14888:6:15"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"14881:6:15"},"nodeType":"YulFunctionCall","src":"14881:14:15"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"14874:6:15"},"nodeType":"YulFunctionCall","src":"14874:22:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14846:6:15"},"nodeType":"YulFunctionCall","src":"14846:51:15"},"nodeType":"YulExpressionStatement","src":"14846:51:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14917:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"14928:3:15","type":"","value":"288"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14913:3:15"},"nodeType":"YulFunctionCall","src":"14913:19:15"},{"name":"value9","nodeType":"YulIdentifier","src":"14934:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14906:6:15"},"nodeType":"YulFunctionCall","src":"14906:35:15"},"nodeType":"YulExpressionStatement","src":"14906:35:15"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256_t_address_t_bool_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256_t_address_t_bool_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14332:9:15","type":""},{"name":"value9","nodeType":"YulTypedName","src":"14343:6:15","type":""},{"name":"value8","nodeType":"YulTypedName","src":"14351:6:15","type":""},{"name":"value7","nodeType":"YulTypedName","src":"14359:6:15","type":""},{"name":"value6","nodeType":"YulTypedName","src":"14367:6:15","type":""},{"name":"value5","nodeType":"YulTypedName","src":"14375:6:15","type":""},{"name":"value4","nodeType":"YulTypedName","src":"14383:6:15","type":""},{"name":"value3","nodeType":"YulTypedName","src":"14391:6:15","type":""},{"name":"value2","nodeType":"YulTypedName","src":"14399:6:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"14407:6:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"14415:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"14426:4:15","type":""}],"src":"14088:859:15"},{"body":{"nodeType":"YulBlock","src":"15181:236:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15198:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"15209:2:15","type":"","value":"64"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15191:6:15"},"nodeType":"YulFunctionCall","src":"15191:21:15"},"nodeType":"YulExpressionStatement","src":"15191:21:15"},{"nodeType":"YulVariableDeclaration","src":"15221:70:15","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"15264:6:15"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15276:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"15287:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15272:3:15"},"nodeType":"YulFunctionCall","src":"15272:18:15"}],"functionName":{"name":"abi_encode_array_uint256_dyn","nodeType":"YulIdentifier","src":"15235:28:15"},"nodeType":"YulFunctionCall","src":"15235:56:15"},"variables":[{"name":"tail_1","nodeType":"YulTypedName","src":"15225:6:15","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15311:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"15322:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15307:3:15"},"nodeType":"YulFunctionCall","src":"15307:18:15"},{"arguments":[{"name":"tail_1","nodeType":"YulIdentifier","src":"15331:6:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"15339:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"15327:3:15"},"nodeType":"YulFunctionCall","src":"15327:22:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15300:6:15"},"nodeType":"YulFunctionCall","src":"15300:50:15"},"nodeType":"YulExpressionStatement","src":"15300:50:15"},{"nodeType":"YulAssignment","src":"15359:52:15","value":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"15396:6:15"},{"name":"tail_1","nodeType":"YulIdentifier","src":"15404:6:15"}],"functionName":{"name":"abi_encode_array_uint256_dyn","nodeType":"YulIdentifier","src":"15367:28:15"},"nodeType":"YulFunctionCall","src":"15367:44:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15359:4:15"}]}]},"name":"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15142:9:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"15153:6:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"15161:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15172:4:15","type":""}],"src":"14952:465:15"},{"body":{"nodeType":"YulBlock","src":"15579:162:15","statements":[{"nodeType":"YulAssignment","src":"15589:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15601:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"15612:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15597:3:15"},"nodeType":"YulFunctionCall","src":"15597:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15589:4:15"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15631:9:15"},{"name":"value0","nodeType":"YulIdentifier","src":"15642:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15624:6:15"},"nodeType":"YulFunctionCall","src":"15624:25:15"},"nodeType":"YulExpressionStatement","src":"15624:25:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15669:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"15680:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15665:3:15"},"nodeType":"YulFunctionCall","src":"15665:18:15"},{"name":"value1","nodeType":"YulIdentifier","src":"15685:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15658:6:15"},"nodeType":"YulFunctionCall","src":"15658:34:15"},"nodeType":"YulExpressionStatement","src":"15658:34:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15712:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"15723:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15708:3:15"},"nodeType":"YulFunctionCall","src":"15708:18:15"},{"name":"value2","nodeType":"YulIdentifier","src":"15728:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15701:6:15"},"nodeType":"YulFunctionCall","src":"15701:34:15"},"nodeType":"YulExpressionStatement","src":"15701:34:15"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15532:9:15","type":""},{"name":"value2","nodeType":"YulTypedName","src":"15543:6:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"15551:6:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"15559:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15570:4:15","type":""}],"src":"15422:319:15"},{"body":{"nodeType":"YulBlock","src":"15959:250:15","statements":[{"nodeType":"YulAssignment","src":"15969:27:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15981:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"15992:3:15","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15977:3:15"},"nodeType":"YulFunctionCall","src":"15977:19:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15969:4:15"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16012:9:15"},{"name":"value0","nodeType":"YulIdentifier","src":"16023:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16005:6:15"},"nodeType":"YulFunctionCall","src":"16005:25:15"},"nodeType":"YulExpressionStatement","src":"16005:25:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16050:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"16061:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16046:3:15"},"nodeType":"YulFunctionCall","src":"16046:18:15"},{"name":"value1","nodeType":"YulIdentifier","src":"16066:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16039:6:15"},"nodeType":"YulFunctionCall","src":"16039:34:15"},"nodeType":"YulExpressionStatement","src":"16039:34:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16093:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"16104:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16089:3:15"},"nodeType":"YulFunctionCall","src":"16089:18:15"},{"name":"value2","nodeType":"YulIdentifier","src":"16109:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16082:6:15"},"nodeType":"YulFunctionCall","src":"16082:34:15"},"nodeType":"YulExpressionStatement","src":"16082:34:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16136:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"16147:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16132:3:15"},"nodeType":"YulFunctionCall","src":"16132:18:15"},{"name":"value3","nodeType":"YulIdentifier","src":"16152:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16125:6:15"},"nodeType":"YulFunctionCall","src":"16125:34:15"},"nodeType":"YulExpressionStatement","src":"16125:34:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16179:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"16190:3:15","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16175:3:15"},"nodeType":"YulFunctionCall","src":"16175:19:15"},{"name":"value4","nodeType":"YulIdentifier","src":"16196:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16168:6:15"},"nodeType":"YulFunctionCall","src":"16168:35:15"},"nodeType":"YulExpressionStatement","src":"16168:35:15"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"15896:9:15","type":""},{"name":"value4","nodeType":"YulTypedName","src":"15907:6:15","type":""},{"name":"value3","nodeType":"YulTypedName","src":"15915:6:15","type":""},{"name":"value2","nodeType":"YulTypedName","src":"15923:6:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"15931:6:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"15939:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15950:4:15","type":""}],"src":"15746:463:15"},{"body":{"nodeType":"YulBlock","src":"16427:508:15","statements":[{"nodeType":"YulVariableDeclaration","src":"16437:12:15","value":{"kind":"number","nodeType":"YulLiteral","src":"16447:2:15","type":"","value":"32"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"16441:2:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"16458:32:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16476:9:15"},{"name":"_1","nodeType":"YulIdentifier","src":"16487:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16472:3:15"},"nodeType":"YulFunctionCall","src":"16472:18:15"},"variables":[{"name":"tail_1","nodeType":"YulTypedName","src":"16462:6:15","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16506:9:15"},{"name":"_1","nodeType":"YulIdentifier","src":"16517:2:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16499:6:15"},"nodeType":"YulFunctionCall","src":"16499:21:15"},"nodeType":"YulExpressionStatement","src":"16499:21:15"},{"nodeType":"YulVariableDeclaration","src":"16529:17:15","value":{"name":"tail_1","nodeType":"YulIdentifier","src":"16540:6:15"},"variables":[{"name":"pos","nodeType":"YulTypedName","src":"16533:3:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"16555:27:15","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"16575:6:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"16569:5:15"},"nodeType":"YulFunctionCall","src":"16569:13:15"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"16559:6:15","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nodeType":"YulIdentifier","src":"16598:6:15"},{"name":"length","nodeType":"YulIdentifier","src":"16606:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16591:6:15"},"nodeType":"YulFunctionCall","src":"16591:22:15"},"nodeType":"YulExpressionStatement","src":"16591:22:15"},{"nodeType":"YulAssignment","src":"16622:25:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16633:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"16644:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16629:3:15"},"nodeType":"YulFunctionCall","src":"16629:18:15"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"16622:3:15"}]},{"nodeType":"YulVariableDeclaration","src":"16656:29:15","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"16674:6:15"},{"name":"_1","nodeType":"YulIdentifier","src":"16682:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16670:3:15"},"nodeType":"YulFunctionCall","src":"16670:15:15"},"variables":[{"name":"srcPtr","nodeType":"YulTypedName","src":"16660:6:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"16694:10:15","value":{"kind":"number","nodeType":"YulLiteral","src":"16703:1:15","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"16698:1:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"16762:147:15","statements":[{"expression":{"arguments":[{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"16814:6:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"16808:5:15"},"nodeType":"YulFunctionCall","src":"16808:13:15"},{"name":"pos","nodeType":"YulIdentifier","src":"16823:3:15"}],"functionName":{"name":"abi_encode_struct_WithdrawStake","nodeType":"YulIdentifier","src":"16776:31:15"},"nodeType":"YulFunctionCall","src":"16776:51:15"},"nodeType":"YulExpressionStatement","src":"16776:51:15"},{"nodeType":"YulAssignment","src":"16840:21:15","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"16851:3:15"},{"kind":"number","nodeType":"YulLiteral","src":"16856:4:15","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16847:3:15"},"nodeType":"YulFunctionCall","src":"16847:14:15"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"16840:3:15"}]},{"nodeType":"YulAssignment","src":"16874:25:15","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"16888:6:15"},{"name":"_1","nodeType":"YulIdentifier","src":"16896:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16884:3:15"},"nodeType":"YulFunctionCall","src":"16884:15:15"},"variableNames":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"16874:6:15"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"16724:1:15"},{"name":"length","nodeType":"YulIdentifier","src":"16727:6:15"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"16721:2:15"},"nodeType":"YulFunctionCall","src":"16721:13:15"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"16735:18:15","statements":[{"nodeType":"YulAssignment","src":"16737:14:15","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"16746:1:15"},{"kind":"number","nodeType":"YulLiteral","src":"16749:1:15","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16742:3:15"},"nodeType":"YulFunctionCall","src":"16742:9:15"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"16737:1:15"}]}]},"pre":{"nodeType":"YulBlock","src":"16717:3:15","statements":[]},"src":"16713:196:15"},{"nodeType":"YulAssignment","src":"16918:11:15","value":{"name":"pos","nodeType":"YulIdentifier","src":"16926:3:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16918:4:15"}]}]},"name":"abi_encode_tuple_t_array$_t_struct$_WithdrawStake_$1528_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_WithdrawStake_$1528_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"16396:9:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"16407:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"16418:4:15","type":""}],"src":"16214:721:15"},{"body":{"nodeType":"YulBlock","src":"17163:987:15","statements":[{"nodeType":"YulVariableDeclaration","src":"17173:12:15","value":{"kind":"number","nodeType":"YulLiteral","src":"17183:2:15","type":"","value":"32"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"17177:2:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"17194:32:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17212:9:15"},{"name":"_1","nodeType":"YulIdentifier","src":"17223:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17208:3:15"},"nodeType":"YulFunctionCall","src":"17208:18:15"},"variables":[{"name":"tail_1","nodeType":"YulTypedName","src":"17198:6:15","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17242:9:15"},{"name":"_1","nodeType":"YulIdentifier","src":"17253:2:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17235:6:15"},"nodeType":"YulFunctionCall","src":"17235:21:15"},"nodeType":"YulExpressionStatement","src":"17235:21:15"},{"nodeType":"YulVariableDeclaration","src":"17265:17:15","value":{"name":"tail_1","nodeType":"YulIdentifier","src":"17276:6:15"},"variables":[{"name":"pos","nodeType":"YulTypedName","src":"17269:3:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"17291:27:15","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"17311:6:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"17305:5:15"},"nodeType":"YulFunctionCall","src":"17305:13:15"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"17295:6:15","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nodeType":"YulIdentifier","src":"17334:6:15"},{"name":"length","nodeType":"YulIdentifier","src":"17342:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17327:6:15"},"nodeType":"YulFunctionCall","src":"17327:22:15"},"nodeType":"YulExpressionStatement","src":"17327:22:15"},{"nodeType":"YulVariableDeclaration","src":"17358:12:15","value":{"kind":"number","nodeType":"YulLiteral","src":"17368:2:15","type":"","value":"64"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"17362:2:15","type":""}]},{"nodeType":"YulAssignment","src":"17379:25:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17390:9:15"},{"name":"_2","nodeType":"YulIdentifier","src":"17401:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17386:3:15"},"nodeType":"YulFunctionCall","src":"17386:18:15"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"17379:3:15"}]},{"nodeType":"YulVariableDeclaration","src":"17413:29:15","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"17431:6:15"},{"name":"_1","nodeType":"YulIdentifier","src":"17439:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17427:3:15"},"nodeType":"YulFunctionCall","src":"17427:15:15"},"variables":[{"name":"srcPtr","nodeType":"YulTypedName","src":"17417:6:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"17451:10:15","value":{"kind":"number","nodeType":"YulLiteral","src":"17460:1:15","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"17455:1:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"17519:605:15","statements":[{"nodeType":"YulVariableDeclaration","src":"17533:23:15","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"17549:6:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"17543:5:15"},"nodeType":"YulFunctionCall","src":"17543:13:15"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"17537:2:15","type":""}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17576:3:15"},{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"17587:2:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"17581:5:15"},"nodeType":"YulFunctionCall","src":"17581:9:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17569:6:15"},"nodeType":"YulFunctionCall","src":"17569:22:15"},"nodeType":"YulExpressionStatement","src":"17569:22:15"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17615:3:15"},{"name":"_1","nodeType":"YulIdentifier","src":"17620:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17611:3:15"},"nodeType":"YulFunctionCall","src":"17611:12:15"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"17635:2:15"},{"name":"_1","nodeType":"YulIdentifier","src":"17639:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17631:3:15"},"nodeType":"YulFunctionCall","src":"17631:11:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"17625:5:15"},"nodeType":"YulFunctionCall","src":"17625:18:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17604:6:15"},"nodeType":"YulFunctionCall","src":"17604:40:15"},"nodeType":"YulExpressionStatement","src":"17604:40:15"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17668:3:15"},{"name":"_2","nodeType":"YulIdentifier","src":"17673:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17664:3:15"},"nodeType":"YulFunctionCall","src":"17664:12:15"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"17688:2:15"},{"name":"_2","nodeType":"YulIdentifier","src":"17692:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17684:3:15"},"nodeType":"YulFunctionCall","src":"17684:11:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"17678:5:15"},"nodeType":"YulFunctionCall","src":"17678:18:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17657:6:15"},"nodeType":"YulFunctionCall","src":"17657:40:15"},"nodeType":"YulExpressionStatement","src":"17657:40:15"},{"nodeType":"YulVariableDeclaration","src":"17710:14:15","value":{"kind":"number","nodeType":"YulLiteral","src":"17720:4:15","type":"","value":"0x60"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"17714:2:15","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17748:3:15"},{"name":"_4","nodeType":"YulIdentifier","src":"17753:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17744:3:15"},"nodeType":"YulFunctionCall","src":"17744:12:15"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"17768:2:15"},{"name":"_4","nodeType":"YulIdentifier","src":"17772:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17764:3:15"},"nodeType":"YulFunctionCall","src":"17764:11:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"17758:5:15"},"nodeType":"YulFunctionCall","src":"17758:18:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17737:6:15"},"nodeType":"YulFunctionCall","src":"17737:40:15"},"nodeType":"YulExpressionStatement","src":"17737:40:15"},{"nodeType":"YulVariableDeclaration","src":"17790:14:15","value":{"kind":"number","nodeType":"YulLiteral","src":"17800:4:15","type":"","value":"0x80"},"variables":[{"name":"_5","nodeType":"YulTypedName","src":"17794:2:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"17817:38:15","value":{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"17847:2:15"},{"name":"_5","nodeType":"YulIdentifier","src":"17851:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17843:3:15"},"nodeType":"YulFunctionCall","src":"17843:11:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"17837:5:15"},"nodeType":"YulFunctionCall","src":"17837:18:15"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"17821:12:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"17868:29:15","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"17886:3:15","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"17891:1:15","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"17882:3:15"},"nodeType":"YulFunctionCall","src":"17882:11:15"},{"kind":"number","nodeType":"YulLiteral","src":"17895:1:15","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"17878:3:15"},"nodeType":"YulFunctionCall","src":"17878:19:15"},"variables":[{"name":"_6","nodeType":"YulTypedName","src":"17872:2:15","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17921:3:15"},{"name":"_5","nodeType":"YulIdentifier","src":"17926:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17917:3:15"},"nodeType":"YulFunctionCall","src":"17917:12:15"},{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"17935:12:15"},{"name":"_6","nodeType":"YulIdentifier","src":"17949:2:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"17931:3:15"},"nodeType":"YulFunctionCall","src":"17931:21:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17910:6:15"},"nodeType":"YulFunctionCall","src":"17910:43:15"},"nodeType":"YulExpressionStatement","src":"17910:43:15"},{"nodeType":"YulVariableDeclaration","src":"17966:14:15","value":{"kind":"number","nodeType":"YulLiteral","src":"17976:4:15","type":"","value":"0xa0"},"variables":[{"name":"_7","nodeType":"YulTypedName","src":"17970:2:15","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"18004:3:15"},{"name":"_7","nodeType":"YulIdentifier","src":"18009:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18000:3:15"},"nodeType":"YulFunctionCall","src":"18000:12:15"},{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"18028:2:15"},{"name":"_7","nodeType":"YulIdentifier","src":"18032:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18024:3:15"},"nodeType":"YulFunctionCall","src":"18024:11:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"18018:5:15"},"nodeType":"YulFunctionCall","src":"18018:18:15"},{"name":"_6","nodeType":"YulIdentifier","src":"18038:2:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"18014:3:15"},"nodeType":"YulFunctionCall","src":"18014:27:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17993:6:15"},"nodeType":"YulFunctionCall","src":"17993:49:15"},"nodeType":"YulExpressionStatement","src":"17993:49:15"},{"nodeType":"YulAssignment","src":"18055:21:15","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"18066:3:15"},{"kind":"number","nodeType":"YulLiteral","src":"18071:4:15","type":"","value":"0xc0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18062:3:15"},"nodeType":"YulFunctionCall","src":"18062:14:15"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"18055:3:15"}]},{"nodeType":"YulAssignment","src":"18089:25:15","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"18103:6:15"},{"name":"_1","nodeType":"YulIdentifier","src":"18111:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18099:3:15"},"nodeType":"YulFunctionCall","src":"18099:15:15"},"variableNames":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"18089:6:15"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"17481:1:15"},{"name":"length","nodeType":"YulIdentifier","src":"17484:6:15"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"17478:2:15"},"nodeType":"YulFunctionCall","src":"17478:13:15"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"17492:18:15","statements":[{"nodeType":"YulAssignment","src":"17494:14:15","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"17503:1:15"},{"kind":"number","nodeType":"YulLiteral","src":"17506:1:15","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17499:3:15"},"nodeType":"YulFunctionCall","src":"17499:9:15"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"17494:1:15"}]}]},"pre":{"nodeType":"YulBlock","src":"17474:3:15","statements":[]},"src":"17470:654:15"},{"nodeType":"YulAssignment","src":"18133:11:15","value":{"name":"pos","nodeType":"YulIdentifier","src":"18141:3:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"18133:4:15"}]}]},"name":"abi_encode_tuple_t_array$_t_struct$_MarketplaceHistory_$1555_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_MarketplaceHistory_$1555_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"17132:9:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"17143:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"17154:4:15","type":""}],"src":"16940:1210:15"},{"body":{"nodeType":"YulBlock","src":"18187:95:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"18204:1:15","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"18211:3:15","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"18216:10:15","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"18207:3:15"},"nodeType":"YulFunctionCall","src":"18207:20:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18197:6:15"},"nodeType":"YulFunctionCall","src":"18197:31:15"},"nodeType":"YulExpressionStatement","src":"18197:31:15"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"18244:1:15","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"18247:4:15","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18237:6:15"},"nodeType":"YulFunctionCall","src":"18237:15:15"},"nodeType":"YulExpressionStatement","src":"18237:15:15"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"18268:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"18271:4:15","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"18261:6:15"},"nodeType":"YulFunctionCall","src":"18261:15:15"},"nodeType":"YulExpressionStatement","src":"18261:15:15"}]},"name":"panic_error_0x11","nodeType":"YulFunctionDefinition","src":"18155:127:15"},{"body":{"nodeType":"YulBlock","src":"18339:116:15","statements":[{"nodeType":"YulAssignment","src":"18349:20:15","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"18364:1:15"},{"name":"y","nodeType":"YulIdentifier","src":"18367:1:15"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"18360:3:15"},"nodeType":"YulFunctionCall","src":"18360:9:15"},"variableNames":[{"name":"product","nodeType":"YulIdentifier","src":"18349:7:15"}]},{"body":{"nodeType":"YulBlock","src":"18427:22:15","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"18429:16:15"},"nodeType":"YulFunctionCall","src":"18429:18:15"},"nodeType":"YulExpressionStatement","src":"18429:18:15"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"18398:1:15"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"18391:6:15"},"nodeType":"YulFunctionCall","src":"18391:9:15"},{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"18405:1:15"},{"arguments":[{"name":"product","nodeType":"YulIdentifier","src":"18412:7:15"},{"name":"x","nodeType":"YulIdentifier","src":"18421:1:15"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"18408:3:15"},"nodeType":"YulFunctionCall","src":"18408:15:15"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"18402:2:15"},"nodeType":"YulFunctionCall","src":"18402:22:15"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"18388:2:15"},"nodeType":"YulFunctionCall","src":"18388:37:15"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"18381:6:15"},"nodeType":"YulFunctionCall","src":"18381:45:15"},"nodeType":"YulIf","src":"18378:71:15"}]},"name":"checked_mul_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"18318:1:15","type":""},{"name":"y","nodeType":"YulTypedName","src":"18321:1:15","type":""}],"returnVariables":[{"name":"product","nodeType":"YulTypedName","src":"18327:7:15","type":""}],"src":"18287:168:15"},{"body":{"nodeType":"YulBlock","src":"18506:171:15","statements":[{"body":{"nodeType":"YulBlock","src":"18537:111:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"18558:1:15","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"18565:3:15","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"18570:10:15","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"18561:3:15"},"nodeType":"YulFunctionCall","src":"18561:20:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18551:6:15"},"nodeType":"YulFunctionCall","src":"18551:31:15"},"nodeType":"YulExpressionStatement","src":"18551:31:15"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"18602:1:15","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"18605:4:15","type":"","value":"0x12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18595:6:15"},"nodeType":"YulFunctionCall","src":"18595:15:15"},"nodeType":"YulExpressionStatement","src":"18595:15:15"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"18630:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"18633:4:15","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"18623:6:15"},"nodeType":"YulFunctionCall","src":"18623:15:15"},"nodeType":"YulExpressionStatement","src":"18623:15:15"}]},"condition":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"18526:1:15"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"18519:6:15"},"nodeType":"YulFunctionCall","src":"18519:9:15"},"nodeType":"YulIf","src":"18516:132:15"},{"nodeType":"YulAssignment","src":"18657:14:15","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"18666:1:15"},{"name":"y","nodeType":"YulIdentifier","src":"18669:1:15"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"18662:3:15"},"nodeType":"YulFunctionCall","src":"18662:9:15"},"variableNames":[{"name":"r","nodeType":"YulIdentifier","src":"18657:1:15"}]}]},"name":"checked_div_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"18491:1:15","type":""},{"name":"y","nodeType":"YulTypedName","src":"18494:1:15","type":""}],"returnVariables":[{"name":"r","nodeType":"YulTypedName","src":"18500:1:15","type":""}],"src":"18460:217:15"},{"body":{"nodeType":"YulBlock","src":"18730:77:15","statements":[{"nodeType":"YulAssignment","src":"18740:16:15","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"18751:1:15"},{"name":"y","nodeType":"YulIdentifier","src":"18754:1:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18747:3:15"},"nodeType":"YulFunctionCall","src":"18747:9:15"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"18740:3:15"}]},{"body":{"nodeType":"YulBlock","src":"18779:22:15","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"18781:16:15"},"nodeType":"YulFunctionCall","src":"18781:18:15"},"nodeType":"YulExpressionStatement","src":"18781:18:15"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"18771:1:15"},{"name":"sum","nodeType":"YulIdentifier","src":"18774:3:15"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"18768:2:15"},"nodeType":"YulFunctionCall","src":"18768:10:15"},"nodeType":"YulIf","src":"18765:36:15"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"18713:1:15","type":""},{"name":"y","nodeType":"YulTypedName","src":"18716:1:15","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"18722:3:15","type":""}],"src":"18682:125:15"},{"body":{"nodeType":"YulBlock","src":"18861:79:15","statements":[{"nodeType":"YulAssignment","src":"18871:17:15","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"18883:1:15"},{"name":"y","nodeType":"YulIdentifier","src":"18886:1:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"18879:3:15"},"nodeType":"YulFunctionCall","src":"18879:9:15"},"variableNames":[{"name":"diff","nodeType":"YulIdentifier","src":"18871:4:15"}]},{"body":{"nodeType":"YulBlock","src":"18912:22:15","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"18914:16:15"},"nodeType":"YulFunctionCall","src":"18914:18:15"},"nodeType":"YulExpressionStatement","src":"18914:18:15"}]},"condition":{"arguments":[{"name":"diff","nodeType":"YulIdentifier","src":"18903:4:15"},{"name":"x","nodeType":"YulIdentifier","src":"18909:1:15"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"18900:2:15"},"nodeType":"YulFunctionCall","src":"18900:11:15"},"nodeType":"YulIf","src":"18897:37:15"}]},"name":"checked_sub_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"18843:1:15","type":""},{"name":"y","nodeType":"YulTypedName","src":"18846:1:15","type":""}],"returnVariables":[{"name":"diff","nodeType":"YulTypedName","src":"18852:4:15","type":""}],"src":"18812:128:15"},{"body":{"nodeType":"YulBlock","src":"18992:88:15","statements":[{"body":{"nodeType":"YulBlock","src":"19023:22:15","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"19025:16:15"},"nodeType":"YulFunctionCall","src":"19025:18:15"},"nodeType":"YulExpressionStatement","src":"19025:18:15"}]},"condition":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"19008:5:15"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"19019:1:15","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"19015:3:15"},"nodeType":"YulFunctionCall","src":"19015:6:15"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"19005:2:15"},"nodeType":"YulFunctionCall","src":"19005:17:15"},"nodeType":"YulIf","src":"19002:43:15"},{"nodeType":"YulAssignment","src":"19054:20:15","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"19065:5:15"},{"kind":"number","nodeType":"YulLiteral","src":"19072:1:15","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19061:3:15"},"nodeType":"YulFunctionCall","src":"19061:13:15"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"19054:3:15"}]}]},"name":"increment_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"18974:5:15","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"18984:3:15","type":""}],"src":"18945:135:15"},{"body":{"nodeType":"YulBlock","src":"19117:95:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"19134:1:15","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"19141:3:15","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"19146:10:15","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"19137:3:15"},"nodeType":"YulFunctionCall","src":"19137:20:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19127:6:15"},"nodeType":"YulFunctionCall","src":"19127:31:15"},"nodeType":"YulExpressionStatement","src":"19127:31:15"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"19174:1:15","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"19177:4:15","type":"","value":"0x32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19167:6:15"},"nodeType":"YulFunctionCall","src":"19167:15:15"},"nodeType":"YulExpressionStatement","src":"19167:15:15"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"19198:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"19201:4:15","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"19191:6:15"},"nodeType":"YulFunctionCall","src":"19191:15:15"},"nodeType":"YulExpressionStatement","src":"19191:15:15"}]},"name":"panic_error_0x32","nodeType":"YulFunctionDefinition","src":"19085:127:15"},{"body":{"nodeType":"YulBlock","src":"19391:166:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19408:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"19419:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19401:6:15"},"nodeType":"YulFunctionCall","src":"19401:21:15"},"nodeType":"YulExpressionStatement","src":"19401:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19442:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"19453:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19438:3:15"},"nodeType":"YulFunctionCall","src":"19438:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"19458:2:15","type":"","value":"16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19431:6:15"},"nodeType":"YulFunctionCall","src":"19431:30:15"},"nodeType":"YulExpressionStatement","src":"19431:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19481:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"19492:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19477:3:15"},"nodeType":"YulFunctionCall","src":"19477:18:15"},{"hexValue":"4e6f7468696e6720746f20636c61696d","kind":"string","nodeType":"YulLiteral","src":"19497:18:15","type":"","value":"Nothing to claim"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19470:6:15"},"nodeType":"YulFunctionCall","src":"19470:46:15"},"nodeType":"YulExpressionStatement","src":"19470:46:15"},{"nodeType":"YulAssignment","src":"19525:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19537:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"19548:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19533:3:15"},"nodeType":"YulFunctionCall","src":"19533:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"19525:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_1b72ba14eb1a8a9d546abe036e42fec8df7f04acf2220edbbc427b6b1c2eb1d3__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"19368:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"19382:4:15","type":""}],"src":"19217:340:15"},{"body":{"nodeType":"YulBlock","src":"19736:164:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19753:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"19764:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19746:6:15"},"nodeType":"YulFunctionCall","src":"19746:21:15"},"nodeType":"YulExpressionStatement","src":"19746:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19787:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"19798:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19783:3:15"},"nodeType":"YulFunctionCall","src":"19783:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"19803:2:15","type":"","value":"14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19776:6:15"},"nodeType":"YulFunctionCall","src":"19776:30:15"},"nodeType":"YulExpressionStatement","src":"19776:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19826:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"19837:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19822:3:15"},"nodeType":"YulFunctionCall","src":"19822:18:15"},{"hexValue":"4e6f7420617574686f72697a6564","kind":"string","nodeType":"YulLiteral","src":"19842:16:15","type":"","value":"Not authorized"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19815:6:15"},"nodeType":"YulFunctionCall","src":"19815:44:15"},"nodeType":"YulExpressionStatement","src":"19815:44:15"},{"nodeType":"YulAssignment","src":"19868:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19880:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"19891:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19876:3:15"},"nodeType":"YulFunctionCall","src":"19876:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"19868:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"19713:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"19727:4:15","type":""}],"src":"19562:338:15"},{"body":{"nodeType":"YulBlock","src":"20079:158:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20096:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"20107:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20089:6:15"},"nodeType":"YulFunctionCall","src":"20089:21:15"},"nodeType":"YulExpressionStatement","src":"20089:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20130:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"20141:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20126:3:15"},"nodeType":"YulFunctionCall","src":"20126:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"20146:1:15","type":"","value":"9"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20119:6:15"},"nodeType":"YulFunctionCall","src":"20119:29:15"},"nodeType":"YulExpressionStatement","src":"20119:29:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20168:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"20179:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20164:3:15"},"nodeType":"YulFunctionCall","src":"20164:18:15"},{"hexValue":"4e6f74206f776e6572","kind":"string","nodeType":"YulLiteral","src":"20184:11:15","type":"","value":"Not owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20157:6:15"},"nodeType":"YulFunctionCall","src":"20157:39:15"},"nodeType":"YulExpressionStatement","src":"20157:39:15"},{"nodeType":"YulAssignment","src":"20205:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20217:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"20228:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20213:3:15"},"nodeType":"YulFunctionCall","src":"20213:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"20205:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_c266efca4f4ed37612271196433531dcbb4fca89a694d568d1e290e32feb1682__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"20056:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"20070:4:15","type":""}],"src":"19905:332:15"},{"body":{"nodeType":"YulBlock","src":"20416:168:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20433:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"20444:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20426:6:15"},"nodeType":"YulFunctionCall","src":"20426:21:15"},"nodeType":"YulExpressionStatement","src":"20426:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20467:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"20478:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20463:3:15"},"nodeType":"YulFunctionCall","src":"20463:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"20483:2:15","type":"","value":"18"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20456:6:15"},"nodeType":"YulFunctionCall","src":"20456:30:15"},"nodeType":"YulExpressionStatement","src":"20456:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20506:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"20517:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20502:3:15"},"nodeType":"YulFunctionCall","src":"20502:18:15"},{"hexValue":"43616e6e6f742072656d6f76652073656c66","kind":"string","nodeType":"YulLiteral","src":"20522:20:15","type":"","value":"Cannot remove self"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20495:6:15"},"nodeType":"YulFunctionCall","src":"20495:48:15"},"nodeType":"YulExpressionStatement","src":"20495:48:15"},{"nodeType":"YulAssignment","src":"20552:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20564:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"20575:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20560:3:15"},"nodeType":"YulFunctionCall","src":"20560:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"20552:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_56a630a6cae883952b5fbd7413dd0e1f1e7b64e1f4026c3de951fb35e0a10d3c__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"20393:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"20407:4:15","type":""}],"src":"20242:342:15"},{"body":{"nodeType":"YulBlock","src":"20763:169:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20780:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"20791:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20773:6:15"},"nodeType":"YulFunctionCall","src":"20773:21:15"},"nodeType":"YulExpressionStatement","src":"20773:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20814:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"20825:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20810:3:15"},"nodeType":"YulFunctionCall","src":"20810:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"20830:2:15","type":"","value":"19"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20803:6:15"},"nodeType":"YulFunctionCall","src":"20803:30:15"},"nodeType":"YulExpressionStatement","src":"20803:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20853:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"20864:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20849:3:15"},"nodeType":"YulFunctionCall","src":"20849:18:15"},{"hexValue":"4e6f207374616b657320617661696c61626c65","kind":"string","nodeType":"YulLiteral","src":"20869:21:15","type":"","value":"No stakes available"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20842:6:15"},"nodeType":"YulFunctionCall","src":"20842:49:15"},"nodeType":"YulExpressionStatement","src":"20842:49:15"},{"nodeType":"YulAssignment","src":"20900:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20912:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"20923:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20908:3:15"},"nodeType":"YulFunctionCall","src":"20908:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"20900:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_2c1545a468168af67c0991f4493f605bb35531d3f741d96256911830016317fd__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"20740:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"20754:4:15","type":""}],"src":"20589:343:15"},{"body":{"nodeType":"YulBlock","src":"21111:162:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21128:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"21139:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21121:6:15"},"nodeType":"YulFunctionCall","src":"21121:21:15"},"nodeType":"YulExpressionStatement","src":"21121:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21162:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"21173:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21158:3:15"},"nodeType":"YulFunctionCall","src":"21158:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"21178:2:15","type":"","value":"12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21151:6:15"},"nodeType":"YulFunctionCall","src":"21151:30:15"},"nodeType":"YulExpressionStatement","src":"21151:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21201:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"21212:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21197:3:15"},"nodeType":"YulFunctionCall","src":"21197:18:15"},{"hexValue":"5374616b65206c6f636b6564","kind":"string","nodeType":"YulLiteral","src":"21217:14:15","type":"","value":"Stake locked"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21190:6:15"},"nodeType":"YulFunctionCall","src":"21190:42:15"},"nodeType":"YulExpressionStatement","src":"21190:42:15"},{"nodeType":"YulAssignment","src":"21241:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21253:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"21264:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21249:3:15"},"nodeType":"YulFunctionCall","src":"21249:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"21241:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_c96e0a341c9518256eddb565314349d39d191e3a702caab37452bb2761e74717__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"21088:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"21102:4:15","type":""}],"src":"20937:336:15"},{"body":{"nodeType":"YulBlock","src":"21452:165:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21469:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"21480:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21462:6:15"},"nodeType":"YulFunctionCall","src":"21462:21:15"},"nodeType":"YulExpressionStatement","src":"21462:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21503:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"21514:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21499:3:15"},"nodeType":"YulFunctionCall","src":"21499:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"21519:2:15","type":"","value":"15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21492:6:15"},"nodeType":"YulFunctionCall","src":"21492:30:15"},"nodeType":"YulExpressionStatement","src":"21492:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21542:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"21553:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21538:3:15"},"nodeType":"YulFunctionCall","src":"21538:18:15"},{"hexValue":"5374616b65206e6f7420666f756e64","kind":"string","nodeType":"YulLiteral","src":"21558:17:15","type":"","value":"Stake not found"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21531:6:15"},"nodeType":"YulFunctionCall","src":"21531:45:15"},"nodeType":"YulExpressionStatement","src":"21531:45:15"},{"nodeType":"YulAssignment","src":"21585:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21597:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"21608:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21593:3:15"},"nodeType":"YulFunctionCall","src":"21593:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"21585:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_c720c01b1ab900eae0624fc88257558becc0dda54896b3f86c3f492482a20d30__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"21429:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"21443:4:15","type":""}],"src":"21278:339:15"},{"body":{"nodeType":"YulBlock","src":"21654:95:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21671:1:15","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21678:3:15","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"21683:10:15","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"21674:3:15"},"nodeType":"YulFunctionCall","src":"21674:20:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21664:6:15"},"nodeType":"YulFunctionCall","src":"21664:31:15"},"nodeType":"YulExpressionStatement","src":"21664:31:15"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21711:1:15","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"21714:4:15","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21704:6:15"},"nodeType":"YulFunctionCall","src":"21704:15:15"},"nodeType":"YulExpressionStatement","src":"21704:15:15"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21735:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"21738:4:15","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"21728:6:15"},"nodeType":"YulFunctionCall","src":"21728:15:15"},"nodeType":"YulExpressionStatement","src":"21728:15:15"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"21622:127:15"},{"body":{"nodeType":"YulBlock","src":"21835:103:15","statements":[{"body":{"nodeType":"YulBlock","src":"21881:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21890:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"21893:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"21883:6:15"},"nodeType":"YulFunctionCall","src":"21883:12:15"},"nodeType":"YulExpressionStatement","src":"21883:12:15"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"21856:7:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"21865:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"21852:3:15"},"nodeType":"YulFunctionCall","src":"21852:23:15"},{"kind":"number","nodeType":"YulLiteral","src":"21877:2:15","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"21848:3:15"},"nodeType":"YulFunctionCall","src":"21848:32:15"},"nodeType":"YulIf","src":"21845:52:15"},{"nodeType":"YulAssignment","src":"21906:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21922:9:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"21916:5:15"},"nodeType":"YulFunctionCall","src":"21916:16:15"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"21906:6:15"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"21801:9:15","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"21812:7:15","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"21824:6:15","type":""}],"src":"21754:184:15"},{"body":{"nodeType":"YulBlock","src":"22117:171:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22134:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"22145:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22127:6:15"},"nodeType":"YulFunctionCall","src":"22127:21:15"},"nodeType":"YulExpressionStatement","src":"22127:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22168:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"22179:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22164:3:15"},"nodeType":"YulFunctionCall","src":"22164:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"22184:2:15","type":"","value":"21"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22157:6:15"},"nodeType":"YulFunctionCall","src":"22157:30:15"},"nodeType":"YulExpressionStatement","src":"22157:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22207:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"22218:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22203:3:15"},"nodeType":"YulFunctionCall","src":"22203:18:15"},{"hexValue":"4172726179206c656e677468206d69736d61746368","kind":"string","nodeType":"YulLiteral","src":"22223:23:15","type":"","value":"Array length mismatch"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22196:6:15"},"nodeType":"YulFunctionCall","src":"22196:51:15"},"nodeType":"YulExpressionStatement","src":"22196:51:15"},{"nodeType":"YulAssignment","src":"22256:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22268:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"22279:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22264:3:15"},"nodeType":"YulFunctionCall","src":"22264:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"22256:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_179ae693e0c70d403e6d1a2bebe6454a8d095a8abd12c6f3f032c5018f3e2aea__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"22094:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"22108:4:15","type":""}],"src":"21943:345:15"},{"body":{"nodeType":"YulBlock","src":"22467:162:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22484:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"22495:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22477:6:15"},"nodeType":"YulFunctionCall","src":"22477:21:15"},"nodeType":"YulExpressionStatement","src":"22477:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22518:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"22529:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22514:3:15"},"nodeType":"YulFunctionCall","src":"22514:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"22534:2:15","type":"","value":"12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22507:6:15"},"nodeType":"YulFunctionCall","src":"22507:30:15"},"nodeType":"YulExpressionStatement","src":"22507:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22557:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"22568:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22553:3:15"},"nodeType":"YulFunctionCall","src":"22553:18:15"},{"hexValue":"456d70747920617272617973","kind":"string","nodeType":"YulLiteral","src":"22573:14:15","type":"","value":"Empty arrays"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22546:6:15"},"nodeType":"YulFunctionCall","src":"22546:42:15"},"nodeType":"YulExpressionStatement","src":"22546:42:15"},{"nodeType":"YulAssignment","src":"22597:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22609:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"22620:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22605:3:15"},"nodeType":"YulFunctionCall","src":"22605:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"22597:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_920fc87d8e9a45232b5e4c2c36e3c0fff5f09b5434a80d6ec35d7f09f9d69c29__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"22444:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"22458:4:15","type":""}],"src":"22293:336:15"},{"body":{"nodeType":"YulBlock","src":"22808:165:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22825:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"22836:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22818:6:15"},"nodeType":"YulFunctionCall","src":"22818:21:15"},"nodeType":"YulExpressionStatement","src":"22818:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22859:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"22870:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22855:3:15"},"nodeType":"YulFunctionCall","src":"22855:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"22875:2:15","type":"","value":"15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22848:6:15"},"nodeType":"YulFunctionCall","src":"22848:30:15"},"nodeType":"YulExpressionStatement","src":"22848:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22898:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"22909:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22894:3:15"},"nodeType":"YulFunctionCall","src":"22894:18:15"},{"hexValue":"496e76616c69642061646472657373","kind":"string","nodeType":"YulLiteral","src":"22914:17:15","type":"","value":"Invalid address"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22887:6:15"},"nodeType":"YulFunctionCall","src":"22887:45:15"},"nodeType":"YulExpressionStatement","src":"22887:45:15"},{"nodeType":"YulAssignment","src":"22941:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22953:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"22964:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22949:3:15"},"nodeType":"YulFunctionCall","src":"22949:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"22941:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_1462473b7a4b33d32b109b815fd2324d00c9e5839b707ecf16d0ab5744f99226__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"22785:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"22799:4:15","type":""}],"src":"22634:339:15"},{"body":{"nodeType":"YulBlock","src":"23152:164:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23169:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"23180:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23162:6:15"},"nodeType":"YulFunctionCall","src":"23162:21:15"},"nodeType":"YulExpressionStatement","src":"23162:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23203:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"23214:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23199:3:15"},"nodeType":"YulFunctionCall","src":"23199:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"23219:2:15","type":"","value":"14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23192:6:15"},"nodeType":"YulFunctionCall","src":"23192:30:15"},"nodeType":"YulExpressionStatement","src":"23192:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23242:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"23253:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23238:3:15"},"nodeType":"YulFunctionCall","src":"23238:18:15"},{"hexValue":"496e76616c696420616d6f756e74","kind":"string","nodeType":"YulLiteral","src":"23258:16:15","type":"","value":"Invalid amount"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23231:6:15"},"nodeType":"YulFunctionCall","src":"23231:44:15"},"nodeType":"YulExpressionStatement","src":"23231:44:15"},{"nodeType":"YulAssignment","src":"23284:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23296:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"23307:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23292:3:15"},"nodeType":"YulFunctionCall","src":"23292:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"23284:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_2fd1dfd944df9898ee4c79794168926172c3d96d7664ff9919bb7080bb018af1__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"23129:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"23143:4:15","type":""}],"src":"22978:338:15"},{"body":{"nodeType":"YulBlock","src":"23495:163:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23512:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"23523:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23505:6:15"},"nodeType":"YulFunctionCall","src":"23505:21:15"},"nodeType":"YulExpressionStatement","src":"23505:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23546:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"23557:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23542:3:15"},"nodeType":"YulFunctionCall","src":"23542:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"23562:2:15","type":"","value":"13"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23535:6:15"},"nodeType":"YulFunctionCall","src":"23535:30:15"},"nodeType":"YulExpressionStatement","src":"23535:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23585:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"23596:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23581:3:15"},"nodeType":"YulFunctionCall","src":"23581:18:15"},{"hexValue":"496e76616c69642076616c7565","kind":"string","nodeType":"YulLiteral","src":"23601:15:15","type":"","value":"Invalid value"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23574:6:15"},"nodeType":"YulFunctionCall","src":"23574:43:15"},"nodeType":"YulExpressionStatement","src":"23574:43:15"},{"nodeType":"YulAssignment","src":"23626:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23638:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"23649:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23634:3:15"},"nodeType":"YulFunctionCall","src":"23634:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"23626:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_a06538b932a313089ae566efd0e7e26dd4e72c52e77044e966d0526f069591e6__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"23472:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"23486:4:15","type":""}],"src":"23321:337:15"},{"body":{"nodeType":"YulBlock","src":"23837:168:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23854:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"23865:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23847:6:15"},"nodeType":"YulFunctionCall","src":"23847:21:15"},"nodeType":"YulExpressionStatement","src":"23847:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23888:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"23899:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23884:3:15"},"nodeType":"YulFunctionCall","src":"23884:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"23904:2:15","type":"","value":"18"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23877:6:15"},"nodeType":"YulFunctionCall","src":"23877:30:15"},"nodeType":"YulExpressionStatement","src":"23877:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23927:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"23938:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23923:3:15"},"nodeType":"YulFunctionCall","src":"23923:18:15"},{"hexValue":"496e76616c69642073616c65207072696365","kind":"string","nodeType":"YulLiteral","src":"23943:20:15","type":"","value":"Invalid sale price"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23916:6:15"},"nodeType":"YulFunctionCall","src":"23916:48:15"},"nodeType":"YulExpressionStatement","src":"23916:48:15"},{"nodeType":"YulAssignment","src":"23973:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23985:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"23996:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23981:3:15"},"nodeType":"YulFunctionCall","src":"23981:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"23973:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_41afe65c2f48450cc65afb8258dbcfd4711efe900a4abbb354fb78b64cb78f3c__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"23814:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"23828:4:15","type":""}],"src":"23663:342:15"},{"body":{"nodeType":"YulBlock","src":"24184:169:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24201:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"24212:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24194:6:15"},"nodeType":"YulFunctionCall","src":"24194:21:15"},"nodeType":"YulExpressionStatement","src":"24194:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24235:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"24246:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24231:3:15"},"nodeType":"YulFunctionCall","src":"24231:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"24251:2:15","type":"","value":"19"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24224:6:15"},"nodeType":"YulFunctionCall","src":"24224:30:15"},"nodeType":"YulExpressionStatement","src":"24224:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24274:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"24285:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24270:3:15"},"nodeType":"YulFunctionCall","src":"24270:18:15"},{"hexValue":"56616c75652062656c6f77206d696e696d756d","kind":"string","nodeType":"YulLiteral","src":"24290:21:15","type":"","value":"Value below minimum"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24263:6:15"},"nodeType":"YulFunctionCall","src":"24263:49:15"},"nodeType":"YulExpressionStatement","src":"24263:49:15"},{"nodeType":"YulAssignment","src":"24321:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24333:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"24344:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24329:3:15"},"nodeType":"YulFunctionCall","src":"24329:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"24321:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_07ac34a80b409cb13a59b255bc41aced9c990f0df5c1385b4a46b6b34a89399d__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"24161:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"24175:4:15","type":""}],"src":"24010:343:15"},{"body":{"nodeType":"YulBlock","src":"24532:172:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24549:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"24560:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24542:6:15"},"nodeType":"YulFunctionCall","src":"24542:21:15"},"nodeType":"YulExpressionStatement","src":"24542:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24583:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"24594:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24579:3:15"},"nodeType":"YulFunctionCall","src":"24579:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"24599:2:15","type":"","value":"22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24572:6:15"},"nodeType":"YulFunctionCall","src":"24572:30:15"},"nodeType":"YulExpressionStatement","src":"24572:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24622:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"24633:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24618:3:15"},"nodeType":"YulFunctionCall","src":"24618:18:15"},{"hexValue":"496e73756666696369656e74206e6574207374616b65","kind":"string","nodeType":"YulLiteral","src":"24638:24:15","type":"","value":"Insufficient net stake"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24611:6:15"},"nodeType":"YulFunctionCall","src":"24611:52:15"},"nodeType":"YulExpressionStatement","src":"24611:52:15"},{"nodeType":"YulAssignment","src":"24672:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24684:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"24695:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24680:3:15"},"nodeType":"YulFunctionCall","src":"24680:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"24672:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_e5b6e7e123f74d79e5b22a141b369c822da4aa28e7734495eb76a647065377a9__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"24509:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"24523:4:15","type":""}],"src":"24358:346:15"},{"body":{"nodeType":"YulBlock","src":"24883:172:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24900:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"24911:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24893:6:15"},"nodeType":"YulFunctionCall","src":"24893:21:15"},"nodeType":"YulExpressionStatement","src":"24893:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24934:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"24945:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24930:3:15"},"nodeType":"YulFunctionCall","src":"24930:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"24950:2:15","type":"","value":"22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24923:6:15"},"nodeType":"YulFunctionCall","src":"24923:30:15"},"nodeType":"YulExpressionStatement","src":"24923:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24973:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"24984:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24969:3:15"},"nodeType":"YulFunctionCall","src":"24969:18:15"},{"hexValue":"5374616b65496420616c726561647920657869737473","kind":"string","nodeType":"YulLiteral","src":"24989:24:15","type":"","value":"StakeId already exists"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24962:6:15"},"nodeType":"YulFunctionCall","src":"24962:52:15"},"nodeType":"YulExpressionStatement","src":"24962:52:15"},{"nodeType":"YulAssignment","src":"25023:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25035:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"25046:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25031:3:15"},"nodeType":"YulFunctionCall","src":"25031:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"25023:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_fd2d1480c29e633e4ed2aa8313e3466de57935c6340707dcc6cfdb3e277782af__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"24860:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"24874:4:15","type":""}],"src":"24709:346:15"},{"body":{"nodeType":"YulBlock","src":"25234:163:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25251:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"25262:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25244:6:15"},"nodeType":"YulFunctionCall","src":"25244:21:15"},"nodeType":"YulExpressionStatement","src":"25244:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25285:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"25296:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25281:3:15"},"nodeType":"YulFunctionCall","src":"25281:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"25301:2:15","type":"","value":"13"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25274:6:15"},"nodeType":"YulFunctionCall","src":"25274:30:15"},"nodeType":"YulExpressionStatement","src":"25274:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25324:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"25335:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25320:3:15"},"nodeType":"YulFunctionCall","src":"25320:18:15"},{"hexValue":"416c7265616479206f776e6572","kind":"string","nodeType":"YulLiteral","src":"25340:15:15","type":"","value":"Already owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25313:6:15"},"nodeType":"YulFunctionCall","src":"25313:43:15"},"nodeType":"YulExpressionStatement","src":"25313:43:15"},{"nodeType":"YulAssignment","src":"25365:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25377:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"25388:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25373:3:15"},"nodeType":"YulFunctionCall","src":"25373:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"25365:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_a0e5f91d515f2cca6fea514f5d410d9cd3a3de245b2e2deb2a867e55917af289__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"25211:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"25225:4:15","type":""}],"src":"25060:337:15"},{"body":{"nodeType":"YulBlock","src":"25576:171:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25593:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"25604:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25586:6:15"},"nodeType":"YulFunctionCall","src":"25586:21:15"},"nodeType":"YulExpressionStatement","src":"25586:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25627:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"25638:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25623:3:15"},"nodeType":"YulFunctionCall","src":"25623:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"25643:2:15","type":"","value":"21"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25616:6:15"},"nodeType":"YulFunctionCall","src":"25616:30:15"},"nodeType":"YulExpressionStatement","src":"25616:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25666:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"25677:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25662:3:15"},"nodeType":"YulFunctionCall","src":"25662:18:15"},{"hexValue":"4e6f2076657374696e677320617661696c61626c65","kind":"string","nodeType":"YulLiteral","src":"25682:23:15","type":"","value":"No vestings available"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25655:6:15"},"nodeType":"YulFunctionCall","src":"25655:51:15"},"nodeType":"YulExpressionStatement","src":"25655:51:15"},{"nodeType":"YulAssignment","src":"25715:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25727:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"25738:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25723:3:15"},"nodeType":"YulFunctionCall","src":"25723:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"25715:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_cf7bf03ffa0f3da677adf7e97e2d75567c809ca39257ccf6603f40c13c2ab5f1__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"25553:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"25567:4:15","type":""}],"src":"25402:345:15"},{"body":{"nodeType":"YulBlock","src":"25926:167:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25943:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"25954:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25936:6:15"},"nodeType":"YulFunctionCall","src":"25936:21:15"},"nodeType":"YulExpressionStatement","src":"25936:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25977:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"25988:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25973:3:15"},"nodeType":"YulFunctionCall","src":"25973:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"25993:2:15","type":"","value":"17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25966:6:15"},"nodeType":"YulFunctionCall","src":"25966:30:15"},"nodeType":"YulExpressionStatement","src":"25966:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26016:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"26027:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26012:3:15"},"nodeType":"YulFunctionCall","src":"26012:18:15"},{"hexValue":"4c697374696e67206e6f7420666f756e64","kind":"string","nodeType":"YulLiteral","src":"26032:19:15","type":"","value":"Listing not found"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26005:6:15"},"nodeType":"YulFunctionCall","src":"26005:47:15"},"nodeType":"YulExpressionStatement","src":"26005:47:15"},{"nodeType":"YulAssignment","src":"26061:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26073:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"26084:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26069:3:15"},"nodeType":"YulFunctionCall","src":"26069:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"26061:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_e65aeb0dca34957cd75dcf5edf664369a554ea0a38af77ddcfdf2ec419a8424a__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"25903:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"25917:4:15","type":""}],"src":"25752:341:15"},{"body":{"nodeType":"YulBlock","src":"26272:164:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26289:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"26300:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26282:6:15"},"nodeType":"YulFunctionCall","src":"26282:21:15"},"nodeType":"YulExpressionStatement","src":"26282:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26323:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"26334:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26319:3:15"},"nodeType":"YulFunctionCall","src":"26319:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"26339:2:15","type":"","value":"14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26312:6:15"},"nodeType":"YulFunctionCall","src":"26312:30:15"},"nodeType":"YulExpressionStatement","src":"26312:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26362:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"26373:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26358:3:15"},"nodeType":"YulFunctionCall","src":"26358:18:15"},{"hexValue":"4e6f74207468652073656c6c6572","kind":"string","nodeType":"YulLiteral","src":"26378:16:15","type":"","value":"Not the seller"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26351:6:15"},"nodeType":"YulFunctionCall","src":"26351:44:15"},"nodeType":"YulExpressionStatement","src":"26351:44:15"},{"nodeType":"YulAssignment","src":"26404:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26416:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"26427:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26412:3:15"},"nodeType":"YulFunctionCall","src":"26412:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"26404:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_ce57addf3f5de810402cc65bacdf9d6eb19fb240991cacfdb84749b70a2ea3ec__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"26249:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"26263:4:15","type":""}],"src":"26098:338:15"},{"body":{"nodeType":"YulBlock","src":"26473:95:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"26490:1:15","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"26497:3:15","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"26502:10:15","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"26493:3:15"},"nodeType":"YulFunctionCall","src":"26493:20:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26483:6:15"},"nodeType":"YulFunctionCall","src":"26483:31:15"},"nodeType":"YulExpressionStatement","src":"26483:31:15"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"26530:1:15","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"26533:4:15","type":"","value":"0x31"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26523:6:15"},"nodeType":"YulFunctionCall","src":"26523:15:15"},"nodeType":"YulExpressionStatement","src":"26523:15:15"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"26554:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"26557:4:15","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"26547:6:15"},"nodeType":"YulFunctionCall","src":"26547:15:15"},"nodeType":"YulExpressionStatement","src":"26547:15:15"}]},"name":"panic_error_0x31","nodeType":"YulFunctionDefinition","src":"26441:127:15"},{"body":{"nodeType":"YulBlock","src":"26747:163:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26764:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"26775:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26757:6:15"},"nodeType":"YulFunctionCall","src":"26757:21:15"},"nodeType":"YulExpressionStatement","src":"26757:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26798:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"26809:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26794:3:15"},"nodeType":"YulFunctionCall","src":"26794:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"26814:2:15","type":"","value":"13"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26787:6:15"},"nodeType":"YulFunctionCall","src":"26787:30:15"},"nodeType":"YulExpressionStatement","src":"26787:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26837:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"26848:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26833:3:15"},"nodeType":"YulFunctionCall","src":"26833:18:15"},{"hexValue":"496e76616c69642072616e6765","kind":"string","nodeType":"YulLiteral","src":"26853:15:15","type":"","value":"Invalid range"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26826:6:15"},"nodeType":"YulFunctionCall","src":"26826:43:15"},"nodeType":"YulExpressionStatement","src":"26826:43:15"},{"nodeType":"YulAssignment","src":"26878:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26890:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"26901:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26886:3:15"},"nodeType":"YulFunctionCall","src":"26886:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"26878:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_86f5232cd420b5d8e89c0911fc290331f6cfd7bd7824383c43ece46e2a1c20ec__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"26724:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"26738:4:15","type":""}],"src":"26573:337:15"},{"body":{"nodeType":"YulBlock","src":"27089:169:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27106:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"27117:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27099:6:15"},"nodeType":"YulFunctionCall","src":"27099:21:15"},"nodeType":"YulExpressionStatement","src":"27099:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27140:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"27151:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27136:3:15"},"nodeType":"YulFunctionCall","src":"27136:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"27156:2:15","type":"","value":"19"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27129:6:15"},"nodeType":"YulFunctionCall","src":"27129:30:15"},"nodeType":"YulExpressionStatement","src":"27129:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27179:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"27190:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27175:3:15"},"nodeType":"YulFunctionCall","src":"27175:18:15"},{"hexValue":"456e642065706f6368206e6f7420666f756e64","kind":"string","nodeType":"YulLiteral","src":"27195:21:15","type":"","value":"End epoch not found"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27168:6:15"},"nodeType":"YulFunctionCall","src":"27168:49:15"},"nodeType":"YulExpressionStatement","src":"27168:49:15"},{"nodeType":"YulAssignment","src":"27226:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27238:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"27249:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27234:3:15"},"nodeType":"YulFunctionCall","src":"27234:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"27226:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_c205ddc0e8dee9f6a699462fe56d0ef15d0fbd12a7f42fd9d0f08d7b477e733b__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"27066:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"27080:4:15","type":""}],"src":"26915:343:15"},{"body":{"nodeType":"YulBlock","src":"27437:165:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27454:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"27465:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27447:6:15"},"nodeType":"YulFunctionCall","src":"27447:21:15"},"nodeType":"YulExpressionStatement","src":"27447:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27488:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"27499:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27484:3:15"},"nodeType":"YulFunctionCall","src":"27484:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"27504:2:15","type":"","value":"15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27477:6:15"},"nodeType":"YulFunctionCall","src":"27477:30:15"},"nodeType":"YulExpressionStatement","src":"27477:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27527:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"27538:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27523:3:15"},"nodeType":"YulFunctionCall","src":"27523:18:15"},{"hexValue":"45706f6368206e6f7420666f756e64","kind":"string","nodeType":"YulLiteral","src":"27543:17:15","type":"","value":"Epoch not found"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27516:6:15"},"nodeType":"YulFunctionCall","src":"27516:45:15"},"nodeType":"YulExpressionStatement","src":"27516:45:15"},{"nodeType":"YulAssignment","src":"27570:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27582:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"27593:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27578:3:15"},"nodeType":"YulFunctionCall","src":"27578:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"27570:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_804bf3e06a7bf92133efba56bc925714e4bd93bde4bd86e97734c971603054e8__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"27414:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"27428:4:15","type":""}],"src":"27263:339:15"},{"body":{"nodeType":"YulBlock","src":"27781:175:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27798:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"27809:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27791:6:15"},"nodeType":"YulFunctionCall","src":"27791:21:15"},"nodeType":"YulExpressionStatement","src":"27791:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27832:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"27843:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27828:3:15"},"nodeType":"YulFunctionCall","src":"27828:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"27848:2:15","type":"","value":"25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27821:6:15"},"nodeType":"YulFunctionCall","src":"27821:30:15"},"nodeType":"YulExpressionStatement","src":"27821:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27871:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"27882:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27867:3:15"},"nodeType":"YulFunctionCall","src":"27867:18:15"},{"hexValue":"537461727420696e646578206f7574206f6620626f756e6473","kind":"string","nodeType":"YulLiteral","src":"27887:27:15","type":"","value":"Start index out of bounds"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27860:6:15"},"nodeType":"YulFunctionCall","src":"27860:55:15"},"nodeType":"YulExpressionStatement","src":"27860:55:15"},{"nodeType":"YulAssignment","src":"27924:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27936:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"27947:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27932:3:15"},"nodeType":"YulFunctionCall","src":"27932:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"27924:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_e68aa2945d9d826fe10860e3b76417578773840626355af3554acc1da6ab249f__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"27758:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"27772:4:15","type":""}],"src":"27607:349:15"},{"body":{"nodeType":"YulBlock","src":"28135:172:15","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28152:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"28163:2:15","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28145:6:15"},"nodeType":"YulFunctionCall","src":"28145:21:15"},"nodeType":"YulExpressionStatement","src":"28145:21:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28186:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"28197:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28182:3:15"},"nodeType":"YulFunctionCall","src":"28182:18:15"},{"kind":"number","nodeType":"YulLiteral","src":"28202:2:15","type":"","value":"22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28175:6:15"},"nodeType":"YulFunctionCall","src":"28175:30:15"},"nodeType":"YulExpressionStatement","src":"28175:30:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28225:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"28236:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28221:3:15"},"nodeType":"YulFunctionCall","src":"28221:18:15"},{"hexValue":"43616e6e6f7420627579206f776e206c697374696e67","kind":"string","nodeType":"YulLiteral","src":"28241:24:15","type":"","value":"Cannot buy own listing"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28214:6:15"},"nodeType":"YulFunctionCall","src":"28214:52:15"},"nodeType":"YulExpressionStatement","src":"28214:52:15"},{"nodeType":"YulAssignment","src":"28275:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28287:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"28298:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28283:3:15"},"nodeType":"YulFunctionCall","src":"28283:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"28275:4:15"}]}]},"name":"abi_encode_tuple_t_stringliteral_beaa7de9c81be7521b658b5b0a3f8866d9ed560c21a4f26c1d2fa6ffaaeb68c3__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"28112:9:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"28126:4:15","type":""}],"src":"27961:346:15"}]},"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_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_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, value0)\n }\n function abi_encode_address(value, pos)\n {\n mstore(pos, and(value, sub(shl(160, 1), 1)))\n }\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n }\n function abi_encode_bool(value, pos)\n {\n mstore(pos, iszero(iszero(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_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := calldataload(add(headStart, 32))\n }\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := calldataload(headStart)\n }\n function abi_decode_array_address_dyn_calldata(offset, end) -> arrayPos, length\n {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n length := calldataload(offset)\n if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n arrayPos := add(offset, 0x20)\n if gt(add(add(offset, shl(5, length)), 0x20), end) { revert(0, 0) }\n }\n function abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n let offset := calldataload(headStart)\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n let value0_1, value1_1 := abi_decode_array_address_dyn_calldata(add(headStart, offset), dataEnd)\n value0 := value0_1\n value1 := value1_1\n }\n function abi_encode_array_uint256_dyn(value, pos) -> end\n {\n let length := mload(value)\n mstore(pos, length)\n let _1 := 0x20\n pos := add(pos, _1)\n let srcPtr := add(value, _1)\n let i := 0\n for { } lt(i, length) { i := add(i, 1) }\n {\n mstore(pos, mload(srcPtr))\n pos := add(pos, _1)\n srcPtr := add(srcPtr, _1)\n }\n end := pos\n }\n function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_uint256__to_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n {\n mstore(headStart, 96)\n let tail_1 := abi_encode_array_uint256_dyn(value0, add(headStart, 96))\n mstore(add(headStart, 32), sub(tail_1, headStart))\n tail := abi_encode_array_uint256_dyn(value1, tail_1)\n mstore(add(headStart, 64), value2)\n }\n function abi_encode_tuple_t_uint256_t_uint256_t_address_t_uint256__to_t_uint256_t_uint256_t_address_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), value1)\n mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n mstore(add(headStart, 96), value3)\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_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_decode_tuple_t_array$_t_address_$dyn_calldata_ptrt_array$_t_uint256_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n let offset := calldataload(headStart)\n let _1 := 0xffffffffffffffff\n if gt(offset, _1) { revert(0, 0) }\n let value0_1, value1_1 := abi_decode_array_address_dyn_calldata(add(headStart, offset), dataEnd)\n value0 := value0_1\n value1 := value1_1\n let offset_1 := calldataload(add(headStart, 32))\n if gt(offset_1, _1) { revert(0, 0) }\n let value2_1, value3_1 := abi_decode_array_address_dyn_calldata(add(headStart, offset_1), dataEnd)\n value2 := value2_1\n value3 := value3_1\n }\n function abi_decode_tuple_t_uint256t_uint256(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := calldataload(headStart)\n value1 := calldataload(add(headStart, 32))\n }\n function abi_encode_struct_SellStake(value, pos)\n {\n mstore(pos, mload(value))\n mstore(add(pos, 0x20), mload(add(value, 0x20)))\n mstore(add(pos, 0x40), and(mload(add(value, 0x40)), sub(shl(160, 1), 1)))\n mstore(add(pos, 0x60), mload(add(value, 0x60)))\n }\n function abi_encode_tuple_t_array$_t_address_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_struct$_SellStake_$1537_memory_ptr_$dyn_memory_ptr__to_t_array$_t_address_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_struct$_SellStake_$1537_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value2, value1, value0) -> tail\n {\n let tail_1 := add(headStart, 96)\n mstore(headStart, 96)\n let pos := tail_1\n let length := mload(value0)\n mstore(tail_1, length)\n let _1 := 128\n pos := add(headStart, _1)\n let _2 := 0x20\n let srcPtr := add(value0, _2)\n let i := 0\n for { } lt(i, length) { i := add(i, 1) }\n {\n mstore(pos, and(mload(srcPtr), sub(shl(160, 1), 1)))\n pos := add(pos, _2)\n srcPtr := add(srcPtr, _2)\n }\n mstore(add(headStart, _2), sub(pos, headStart))\n let tail_2 := abi_encode_array_uint256_dyn(value1, pos)\n mstore(add(headStart, 64), sub(tail_2, headStart))\n let pos_1 := tail_2\n let length_1 := mload(value2)\n mstore(tail_2, length_1)\n pos_1 := add(tail_2, _2)\n let srcPtr_1 := add(value2, _2)\n let i_1 := 0\n for { } lt(i_1, length_1) { i_1 := add(i_1, 1) }\n {\n abi_encode_struct_SellStake(mload(srcPtr_1), pos_1)\n pos_1 := add(pos_1, _1)\n srcPtr_1 := add(srcPtr_1, _2)\n }\n tail := pos_1\n }\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n }\n function abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_addresst_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6, value7\n {\n if slt(sub(dataEnd, headStart), 256) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := calldataload(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n value3 := calldataload(add(headStart, 96))\n value4 := abi_decode_address(add(headStart, 128))\n value5 := calldataload(add(headStart, 160))\n value6 := calldataload(add(headStart, 192))\n value7 := calldataload(add(headStart, 224))\n }\n function abi_encode_tuple_t_array$_t_struct$_Vesting_$1496_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Vesting_$1496_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n let _1 := 32\n let tail_1 := add(headStart, _1)\n mstore(headStart, _1)\n let pos := tail_1\n let length := mload(value0)\n mstore(tail_1, length)\n let _2 := 64\n pos := add(headStart, _2)\n let srcPtr := add(value0, _1)\n let i := 0\n for { } lt(i, length) { i := add(i, 1) }\n {\n let _3 := mload(srcPtr)\n mstore(pos, mload(_3))\n mstore(add(pos, _1), mload(add(_3, _1)))\n mstore(add(pos, _2), mload(add(_3, _2)))\n let _4 := 0x60\n mstore(add(pos, _4), mload(add(_3, _4)))\n let _5 := 0x80\n mstore(add(pos, _5), mload(add(_3, _5)))\n let _6 := 0xa0\n mstore(add(pos, _6), mload(add(_3, _6)))\n let _7 := 0xc0\n mstore(add(pos, _7), mload(add(_3, _7)))\n let _8 := 0xe0\n let memberValue0 := mload(add(_3, _8))\n abi_encode_address(memberValue0, add(pos, _8))\n let _9 := 0x0100\n let memberValue0_1 := mload(add(_3, _9))\n abi_encode_bool(memberValue0_1, add(pos, _9))\n let _10 := 0x0120\n mstore(add(pos, _10), mload(add(_3, _10)))\n pos := add(pos, 0x0140)\n srcPtr := add(srcPtr, _1)\n }\n tail := pos\n }\n function abi_encode_tuple_t_array$_t_struct$_WithdrawVesting_$1510_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_WithdrawVesting_$1510_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n let _1 := 32\n let tail_1 := add(headStart, _1)\n mstore(headStart, _1)\n let pos := tail_1\n let length := mload(value0)\n mstore(tail_1, length)\n let _2 := 64\n pos := add(headStart, _2)\n let srcPtr := add(value0, _1)\n let i := 0\n for { } lt(i, length) { i := add(i, 1) }\n {\n let _3 := mload(srcPtr)\n mstore(pos, mload(_3))\n mstore(add(pos, _1), mload(add(_3, _1)))\n mstore(add(pos, _2), mload(add(_3, _2)))\n let _4 := 0x60\n mstore(add(pos, _4), and(mload(add(_3, _4)), sub(shl(160, 1), 1)))\n pos := add(pos, 0x80)\n srcPtr := add(srcPtr, _1)\n }\n tail := pos\n }\n function abi_decode_tuple_t_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2\n {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n value0 := calldataload(headStart)\n value1 := calldataload(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n }\n function abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_addresst_uint256(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n {\n if slt(sub(dataEnd, headStart), 192) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := calldataload(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n value3 := calldataload(add(headStart, 96))\n value4 := abi_decode_address(add(headStart, 128))\n value5 := calldataload(add(headStart, 160))\n }\n function abi_encode_struct_Epoch(value, pos)\n {\n mstore(pos, mload(value))\n mstore(add(pos, 0x20), mload(add(value, 0x20)))\n mstore(add(pos, 0x40), mload(add(value, 0x40)))\n mstore(add(pos, 0x60), mload(add(value, 0x60)))\n mstore(add(pos, 0x80), mload(add(value, 0x80)))\n }\n function abi_encode_tuple_t_array$_t_struct$_Epoch_$1521_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Epoch_$1521_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n let _1 := 32\n let tail_1 := add(headStart, _1)\n mstore(headStart, _1)\n let pos := tail_1\n let length := mload(value0)\n mstore(tail_1, length)\n pos := add(headStart, 64)\n let srcPtr := add(value0, _1)\n let i := 0\n for { } lt(i, length) { i := add(i, 1) }\n {\n abi_encode_struct_Epoch(mload(srcPtr), pos)\n pos := add(pos, 0xa0)\n srcPtr := add(srcPtr, _1)\n }\n tail := pos\n }\n function abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256_t_address_t_address__to_t_uint256_t_uint256_t_uint256_t_uint256_t_address_t_address__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), value1)\n mstore(add(headStart, 64), value2)\n mstore(add(headStart, 96), value3)\n let _1 := sub(shl(160, 1), 1)\n mstore(add(headStart, 128), and(value4, _1))\n mstore(add(headStart, 160), and(value5, _1))\n }\n function abi_encode_tuple_t_struct$_SellStake_$1537_memory_ptr__to_t_struct$_SellStake_$1537_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 128)\n abi_encode_struct_SellStake(value0, headStart)\n }\n function abi_encode_struct_WithdrawStake(value, pos)\n {\n mstore(pos, mload(value))\n mstore(add(pos, 0x20), mload(add(value, 0x20)))\n mstore(add(pos, 0x40), mload(add(value, 0x40)))\n }\n function abi_encode_tuple_t_struct$_WithdrawStake_$1528_memory_ptr__to_t_struct$_WithdrawStake_$1528_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 96)\n abi_encode_struct_WithdrawStake(value0, headStart)\n }\n function abi_encode_tuple_t_struct$_Epoch_$1521_memory_ptr__to_t_struct$_Epoch_$1521_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 160)\n abi_encode_struct_Epoch(value0, headStart)\n }\n function abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256_t_address_t_bool_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256_t_address_t_bool_t_uint256__fromStack_reversed(headStart, value9, value8, value7, value6, value5, value4, value3, value2, value1, value0) -> tail\n {\n tail := add(headStart, 320)\n mstore(headStart, value0)\n mstore(add(headStart, 32), value1)\n mstore(add(headStart, 64), value2)\n mstore(add(headStart, 96), value3)\n mstore(add(headStart, 128), value4)\n mstore(add(headStart, 160), value5)\n mstore(add(headStart, 192), value6)\n mstore(add(headStart, 224), and(value7, sub(shl(160, 1), 1)))\n mstore(add(headStart, 256), iszero(iszero(value8)))\n mstore(add(headStart, 288), value9)\n }\n function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n {\n mstore(headStart, 64)\n let tail_1 := abi_encode_array_uint256_dyn(value0, add(headStart, 64))\n mstore(add(headStart, 32), sub(tail_1, headStart))\n tail := abi_encode_array_uint256_dyn(value1, tail_1)\n }\n function abi_encode_tuple_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n {\n tail := add(headStart, 96)\n mstore(headStart, value0)\n mstore(add(headStart, 32), value1)\n mstore(add(headStart, 64), value2)\n }\n function abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_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), value1)\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_array$_t_struct$_WithdrawStake_$1528_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_WithdrawStake_$1528_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n let _1 := 32\n let tail_1 := add(headStart, _1)\n mstore(headStart, _1)\n let pos := tail_1\n let length := mload(value0)\n mstore(tail_1, length)\n pos := add(headStart, 64)\n let srcPtr := add(value0, _1)\n let i := 0\n for { } lt(i, length) { i := add(i, 1) }\n {\n abi_encode_struct_WithdrawStake(mload(srcPtr), pos)\n pos := add(pos, 0x60)\n srcPtr := add(srcPtr, _1)\n }\n tail := pos\n }\n function abi_encode_tuple_t_array$_t_struct$_MarketplaceHistory_$1555_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_MarketplaceHistory_$1555_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n let _1 := 32\n let tail_1 := add(headStart, _1)\n mstore(headStart, _1)\n let pos := tail_1\n let length := mload(value0)\n mstore(tail_1, length)\n let _2 := 64\n pos := add(headStart, _2)\n let srcPtr := add(value0, _1)\n let i := 0\n for { } lt(i, length) { i := add(i, 1) }\n {\n let _3 := mload(srcPtr)\n mstore(pos, mload(_3))\n mstore(add(pos, _1), mload(add(_3, _1)))\n mstore(add(pos, _2), mload(add(_3, _2)))\n let _4 := 0x60\n mstore(add(pos, _4), mload(add(_3, _4)))\n let _5 := 0x80\n let memberValue0 := mload(add(_3, _5))\n let _6 := sub(shl(160, 1), 1)\n mstore(add(pos, _5), and(memberValue0, _6))\n let _7 := 0xa0\n mstore(add(pos, _7), and(mload(add(_3, _7)), _6))\n pos := add(pos, 0xc0)\n srcPtr := add(srcPtr, _1)\n }\n tail := pos\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_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 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 checked_add_t_uint256(x, y) -> sum\n {\n sum := add(x, y)\n if gt(x, sum) { panic_error_0x11() }\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 increment_t_uint256(value) -> ret\n {\n if eq(value, not(0)) { panic_error_0x11() }\n ret := add(value, 1)\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_1b72ba14eb1a8a9d546abe036e42fec8df7f04acf2220edbbc427b6b1c2eb1d3__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), \"Nothing to claim\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 14)\n mstore(add(headStart, 64), \"Not authorized\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_c266efca4f4ed37612271196433531dcbb4fca89a694d568d1e290e32feb1682__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 9)\n mstore(add(headStart, 64), \"Not owner\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_56a630a6cae883952b5fbd7413dd0e1f1e7b64e1f4026c3de951fb35e0a10d3c__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), \"Cannot remove self\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_2c1545a468168af67c0991f4493f605bb35531d3f741d96256911830016317fd__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), \"No stakes available\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_c96e0a341c9518256eddb565314349d39d191e3a702caab37452bb2761e74717__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 12)\n mstore(add(headStart, 64), \"Stake locked\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_c720c01b1ab900eae0624fc88257558becc0dda54896b3f86c3f492482a20d30__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 15)\n mstore(add(headStart, 64), \"Stake not found\")\n tail := add(headStart, 96)\n }\n function panic_error_0x41()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := mload(headStart)\n }\n function abi_encode_tuple_t_stringliteral_179ae693e0c70d403e6d1a2bebe6454a8d095a8abd12c6f3f032c5018f3e2aea__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), \"Array length mismatch\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_920fc87d8e9a45232b5e4c2c36e3c0fff5f09b5434a80d6ec35d7f09f9d69c29__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 12)\n mstore(add(headStart, 64), \"Empty arrays\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_1462473b7a4b33d32b109b815fd2324d00c9e5839b707ecf16d0ab5744f99226__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 15)\n mstore(add(headStart, 64), \"Invalid address\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_2fd1dfd944df9898ee4c79794168926172c3d96d7664ff9919bb7080bb018af1__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 14)\n mstore(add(headStart, 64), \"Invalid amount\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_a06538b932a313089ae566efd0e7e26dd4e72c52e77044e966d0526f069591e6__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 value\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_41afe65c2f48450cc65afb8258dbcfd4711efe900a4abbb354fb78b64cb78f3c__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 sale price\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_07ac34a80b409cb13a59b255bc41aced9c990f0df5c1385b4a46b6b34a89399d__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), \"Value below minimum\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_e5b6e7e123f74d79e5b22a141b369c822da4aa28e7734495eb76a647065377a9__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 22)\n mstore(add(headStart, 64), \"Insufficient net stake\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_fd2d1480c29e633e4ed2aa8313e3466de57935c6340707dcc6cfdb3e277782af__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 22)\n mstore(add(headStart, 64), \"StakeId already exists\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_a0e5f91d515f2cca6fea514f5d410d9cd3a3de245b2e2deb2a867e55917af289__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), \"Already owner\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_cf7bf03ffa0f3da677adf7e97e2d75567c809ca39257ccf6603f40c13c2ab5f1__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), \"No vestings available\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_e65aeb0dca34957cd75dcf5edf664369a554ea0a38af77ddcfdf2ec419a8424a__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), \"Listing not found\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_ce57addf3f5de810402cc65bacdf9d6eb19fb240991cacfdb84749b70a2ea3ec__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 14)\n mstore(add(headStart, 64), \"Not the seller\")\n tail := add(headStart, 96)\n }\n function panic_error_0x31()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x31)\n revert(0, 0x24)\n }\n function abi_encode_tuple_t_stringliteral_86f5232cd420b5d8e89c0911fc290331f6cfd7bd7824383c43ece46e2a1c20ec__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 range\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_c205ddc0e8dee9f6a699462fe56d0ef15d0fbd12a7f42fd9d0f08d7b477e733b__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), \"End epoch not found\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_804bf3e06a7bf92133efba56bc925714e4bd93bde4bd86e97734c971603054e8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 15)\n mstore(add(headStart, 64), \"Epoch not found\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_e68aa2945d9d826fe10860e3b76417578773840626355af3554acc1da6ab249f__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), \"Start index out of bounds\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_beaa7de9c81be7521b658b5b0a3f8866d9ed560c21a4f26c1d2fa6ffaaeb68c3__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 22)\n mstore(add(headStart, 64), \"Cannot buy own listing\")\n tail := add(headStart, 96)\n }\n}","id":15,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561001057600080fd5b50600436106104065760003560e01c80637bc221ac11610220578063bed9757e11610130578063da1b4364116100b8578063eb44e0a311610087578063eb44e0a314610b5a578063f109208f14610b6d578063f2bb563014610b80578063fe2f50d014610b93578063ffecf51614610b9c57600080fd5b8063da1b436414610b16578063e079fd9114610b36578063e88f8e6614610b3e578063eacdc5ff14610b5157600080fd5b8063c6b61e4c116100ff578063c6b61e4c14610a4b578063c7b530b014610ab0578063cc573a9114610ad0578063ce13d09014610ae3578063cfcf331914610af657600080fd5b8063bed9757e146109e1578063c267660314610a02578063c32d3ae214610a0a578063c36d03fd14610a3857600080fd5b80639437e32e116101b3578063a0d4675811610182578063a0d4675814610910578063a36be55c14610930578063b6c3dc4c14610939578063bc0bc6ba14610959578063bd84477d1461097957600080fd5b80639437e32e1461087e578063953d16bf1461089157806396fd111a146108a45780639f3a676c146108c457600080fd5b806387b4b105116101ef57806387b4b105146108185780638851ec0f146108385780638da5cb5b1461084b5780638f82818f1461085e57600080fd5b80637bc221ac146107a95780637d08af97146107bc5780637e6d9926146107dc57806380ca0ecf1461080557600080fd5b80633f35e7221161031b578063592d1dd1116102ae5780636ef569a51161027d5780636ef569a5146107475780637065cb481461075057806374d1c8e3146107635780637a0c6dc0146107765780637b3cbecb1461079657600080fd5b8063592d1dd1146106f557806361d1080b1461071557806362cd6a091461071d57806367a74ddc1461073457600080fd5b806351e62472116102ea57806351e624721461069457806351f6cf2f146106a7578063549e61d3146106cf57806358116227146106e257600080fd5b80633f35e722146105c157806343a32f89146105d4578063441a41751461064f57806348ea286d1461068157600080fd5b8063173825d91161039e57806325d5971f1161036d57806325d5971f1461054d5780632ded58aa146105605780633253ea5c146105695780633ba8396e1461057c5780633c92f98d1461059f57600080fd5b8063173825d91461050b5780631ada70a81461051e5780631aefa2d1146105275780631eb9e53e1461053a57600080fd5b8063092c7610116103da578063092c7610146104ae5780630a84096a146104ce5780630c7d6386146104e157806313baee5b146104eb57600080fd5b8062159da61461040b5780630137451814610431578063022914a7146104725780630519da32146104a5575b600080fd5b61041e6104193660046143e1565b610baf565b6040519081526020015b60405180910390f35b61045a61043f3660046143e1565b6006602052600090815260409020546001600160a01b031681565b6040516001600160a01b039091168152602001610428565b6104956104803660046143e1565b60026020526000908152604090205460ff1681565b6040519015158152602001610428565b61041e600a5481565b61041e6104bc3660046143e1565b60086020526000908152604090205481565b61041e6104dc366004614403565b610c45565b6104e9610d7d565b005b61041e6104f93660046143e1565b600f6020526000908152604090205481565b6104e96105193660046143e1565b610ed1565b61041e60095481565b6104e961053536600461442d565b610fc2565b61041e6105483660046143e1565b610ff6565b6104e961055b36600461442d565b61102d565b61041e60135481565b6104e961057736600461442d565b6111c1565b61049561058a3660046143e1565b60036020526000908152604090205460ff1681565b6105b26105ad36600461448a565b6111f5565b60405161042893929190614506565b6104e96105cf366004614403565b6113e3565b6106206105e2366004614403565b60156020908152600092835260408084209091529082529020805460018201546002830154600390930154919290916001600160a01b039091169084565b604051610428949392919093845260208401929092526001600160a01b03166040830152606082015260800190565b61066261065d36600461442d565b61146a565b604080516001600160a01b039093168352602083019190915201610428565b6104e961068f3660046143e1565b6114a2565b6104e96106a236600461442d565b611632565b6106ba6106b5366004614403565b611666565b60408051928352602083019190915201610428565b6104e96106dd36600461453c565b6116a2565b6104e96106f03660046145a7565b61198c565b61041e6107033660046143e1565b60076020526000908152604090205481565b601b5461041e565b610725611cb9565b604051610428939291906145c9565b6104e9610742366004614692565b611f0c565b61041e60175481565b6104e961075e3660046143e1565b611f69565b6104e96107713660046146c5565b612015565b6107896107843660046143e1565b6121f8565b6040516104289190614730565b6104e96107a4366004614692565b6122df565b61041e6107b73660046143e1565b61264d565b6107cf6107ca3660046143e1565b612820565b60405161042891906147de565b61041e6107ea3660046143e1565b6001600160a01b031660009081526018602052604090205490565b61041e610813366004614403565b6128b5565b61041e6108263660046143e1565b600d6020526000908152604090205481565b6104e961084636600461483e565b6129c1565b60015461045a906001600160a01b031681565b61041e61086c3660046143e1565b60186020526000908152604090205481565b6104e961088c36600461486a565b612af9565b6104e961089f36600461442d565b612b40565b6108b76108b23660046145a7565b612e2a565b60405161042891906148c2565b6108d76108d236600461442d565b612fe9565b6040805196875260208701959095529385019290925260608401526001600160a01b0390811660808401521660a082015260c001610428565b61092361091e366004614403565b61303c565b604051610428919061493b565b61041e60145481565b61094c610947366004614403565b6130cc565b604051610428919061496f565b61096c61096736600461442d565b6131a1565b6040516104289190614990565b61098c610987366004614403565b613265565b604080519a8b5260208b0199909952978901969096526060880194909452608087019290925260a086015260c08501526001600160a01b031660e0840152151561010083015261012082015261014001610428565b6109f46109ef366004614403565b6132e3565b6040516104289291906149c9565b6103e761041e565b610a1d610a183660046143e1565b613489565b60408051938452602084019290925290820152606001610428565b6104e9610a4636600461442d565b6134e8565b610a88610a5936600461442d565b600e60205260009081526040902080546001820154600283015460038401546004909401549293919290919085565b604080519586526020860194909452928401919091526060830152608082015260a001610428565b610ac3610abe3660046143e1565b61351c565b60405161042891906149ee565b610a1d610ade366004614403565b6135a4565b6104e9610af136600461442d565b6135e6565b610b09610b043660046145a7565b61361a565b6040516104289190614a44565b61041e610b243660046143e1565b60106020526000908152604090205481565b600c5461041e565b6105b2610b4c3660046143e1565b6137e7565b61041e60125481565b6104e9610b68366004614403565b613acd565b6104e9610b7b366004614403565b613f33565b6104e9610b8e3660046145a7565b614056565b61041e60165481565b6104e9610baa3660046143e1565b614167565b6001600160a01b0381166000908152600f60209081526040808320546010909252822054805b601254811015610c3d578215610c2b576000818152600e602052604081206003015461271090610c059086614ad4565b610c0f9190614aeb565b9050610c1b8186614b0d565b9450610c278185614b20565b9350505b80610c3581614b33565b915050610bd5565b505050919050565b6001600160a01b0382166000908152600460205260408120805482919084908110610c7257610c72614b4c565b906000526020600020906009020190506000816006015442610c949190614b20565b60078301549091506001600160a01b03166000805b6001600160a01b038316600090815260056020526040902054811015610d70576001600160a01b0383166000908152600560205260408120805483908110610cf357610cf3614b4c565b6000918252602082206002909102018054600182015460088a015492945090929091606490610d2490600a90614ad4565b610d2e9190614aeb565b9050828810610d5b57612710610d448383614ad4565b610d4e9190614aeb565b610d589087614b0d565b95505b5050505080610d6990614b33565b9050610ca9565b5093505050505b92915050565b610d856141e0565b6000610d9033610baf565b905060008111610dda5760405162461bcd60e51b815260206004820152601060248201526f4e6f7468696e6720746f20636c61696d60801b60448201526064015b60405180910390fd5b336000908152600f602052604081208054839290610df9908490614b20565b925050819055508060136000828254610e129190614b20565b9091555050601254336000908152601060209081526040808320939093556011815290829020825160608101845242808252928101859052600a549193909290830191610e5e91614b0d565b90528154600180820184556000938452602093849020835160039093020191825582840151908201556040918201516002909101555182815233917fa65a8b4f7f65a1063243d7f7e9e4da00ff767599acf21549ef2548a45d1695ae910160405180910390a250610ecf6001600055565b565b3360009081526002602052604090205460ff16610f005760405162461bcd60e51b8152600401610dd190614b62565b6001600160a01b03811660009081526002602052604090205460ff16610f545760405162461bcd60e51b81526020600482015260096024820152682737ba1037bbb732b960b91b6044820152606401610dd1565b336001600160a01b03821603610fa15760405162461bcd60e51b815260206004820152601260248201527121b0b73737ba103932b6b7bb329039b2b63360711b6044820152606401610dd1565b6001600160a01b03166000908152600260205260409020805460ff19169055565b3360009081526002602052604090205460ff16610ff15760405162461bcd60e51b8152600401610dd190614b62565b601755565b6001600160a01b0381166000908152600f60205260408120548161101984610baf565b90506110258183614b20565b949350505050565b6110356141e0565b33600090815260116020526040902080546110885760405162461bcd60e51b81526020600482015260136024820152724e6f207374616b657320617661696c61626c6560681b6044820152606401610dd1565b60005b81548110156111795760008282815481106110a8576110a8614b4c565b906000526020600020906003020190508381600001541480156110cf575060008160010154115b156111665780600201544210156111175760405162461bcd60e51b815260206004820152600c60248201526b14dd185ad9481b1bd8dad95960a21b6044820152606401610dd1565b6001810180546000909155604080518281526020810187905233917f933735aa8de6d7547d0126171b2f31b9c34dd00f3ecd4be85a0ba047db4fafef910160405180910390a2505050506111b4565b508061117181614b33565b91505061108b565b5060405162461bcd60e51b815260206004820152600f60248201526e14dd185ad9481b9bdd08199bdd5b99608a1b6044820152606401610dd1565b6111be6001600055565b50565b3360009081526002602052604090205460ff166111f05760405162461bcd60e51b8152600401610dd190614b62565b601455565b606080600083806001600160401b0381111561121357611213614b8a565b60405190808252806020026020018201604052801561123c578160200160208202803683370190505b509350806001600160401b0381111561125757611257614b8a565b604051908082528060200260200182016040528015611280578160200160208202803683370190505b50925060005b818110156113da5760008787838181106112a2576112a2614b4c565b90506020020160208101906112b791906143e1565b6001600160a01b03811660009081526008602052604090205487519192509081908890859081106112ea576112ea614b4c565b6020908102919091018101919091526001600160a01b038381166000818152600690935260408084205490516302c68be360e31b81526004810192909252909116906316345f1890602401602060405180830381865afa158015611352573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113769190614ba0565b90506000670de0b6b3a764000061138d8484614ad4565b6113979190614aeb565b9050808886815181106113ac576113ac614b4c565b60209081029190910101526113c18188614b0d565b96505050505080806113d290614b33565b915050611286565b50509250925092565b3360009081526002602052604090205460ff166114125760405162461bcd60e51b8152600401610dd190614b62565b6114266001600160a01b038316338361420a565b6040518181526001600160a01b0383169033907fa92ff919b850e4909ab2261d907ef955f11bc1716733a6cbece38d163a69af8a9060200160405180910390a35050565b6019818154811061147a57600080fd5b6000918252602090912060029091020180546001909101546001600160a01b03909116915082565b3360009081526003602052604090205460ff166114d15760405162461bcd60e51b8152600401610dd190614b62565b60005b6001600160a01b03821660009081526004602052604090205481101561162e576001600160a01b038216600090815260046020526040812080548390811061151e5761151e614b4c565b906000526020600020906009020190508060070160149054906101000a900460ff166115f25760088101546001600160a01b0384166000908152600760205260409020541061159a5760088101546001600160a01b03841660009081526007602052604081208054909190611594908490614b20565b90915550505b805460078201546001600160a01b0316600090815260086020526040902054106115f257805460078201546001600160a01b0316600090815260086020526040812080549091906115ec908490614b20565b90915550505b600080825560018201819055600382018190556004820155600701805460ff60a01b1916600160a01b17905561162781614b33565b90506114d4565b5050565b3360009081526002602052604090205460ff166116615760405162461bcd60e51b8152600401610dd190614b62565b601655565b6005602052816000526040600020818154811061168257600080fd5b600091825260209091206002909102018054600190910154909250905082565b3360009081526003602052604090205460ff166116d15760405162461bcd60e51b8152600401610dd190614b62565b8281146117185760405162461bcd60e51b8152602060048201526015602482015274082e4e4c2f240d8cadccee8d040dad2e6dac2e8c6d605b1b6044820152606401610dd1565b826117545760405162461bcd60e51b815260206004820152600c60248201526b456d7074792061727261797360a01b6044820152606401610dd1565b6000805b8481101561196d57600086868381811061177457611774614b4c565b905060200201602081019061178991906143e1565b6001600160a01b0316036117af5760405162461bcd60e51b8152600401610dd190614bb9565b60008484838181106117c3576117c3614b4c565b90506020020135116118085760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610dd1565b83838281811061181a5761181a614b4c565b90506020020135600f600088888581811061183757611837614b4c565b905060200201602081019061184c91906143e1565b6001600160a01b031681526020810191909152604001600020546118709084614b20565b61187a9190614b0d565b915083838281811061188e5761188e614b4c565b90506020020135600f60008888858181106118ab576118ab614b4c565b90506020020160208101906118c091906143e1565b6001600160a01b031681526020810191909152604001600020558585828181106118ec576118ec614b4c565b905060200201602081019061190191906143e1565b6001600160a01b03167fec7e3594982826a1f90c8fc76513357b83a691b7f4e38b8be04f3d40f9b1583985858481811061193d5761193d614b4c565b9050602002013560405161195391815260200190565b60405180910390a28061196581614b33565b915050611758565b5080601360008282546119809190614b0d565b90915550505050505050565b6119946141e0565b600082116119d45760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642076616c756560981b6044820152606401610dd1565b60008111611a195760405162461bcd60e51b8152602060048201526012602482015271496e76616c69642073616c6520707269636560701b6044820152606401610dd1565b601654821015611a615760405162461bcd60e51b815260206004820152601360248201527256616c75652062656c6f77206d696e696d756d60681b6044820152606401610dd1565b6000611a6c33610ff6565b905080831115611ab75760405162461bcd60e51b8152602060048201526016602482015275496e73756666696369656e74206e6574207374616b6560501b6044820152606401610dd1565b3360009081526015602090815260408083204280855292529091205415611b195760405162461bcd60e51b81526020600482015260166024820152755374616b65496420616c72656164792065786973747360501b6044820152606401610dd1565b336000908152600f602052604081208054869290611b38908490614b20565b925050819055508360136000828254611b519190614b20565b909155505060408051608081018252858152602080820186815233838501818152426060860190815260008381526015865287812089825286528781209651875593516001808801919091559151600280880180546001600160a01b039384166001600160a01b03199182161790915592516003909801979097558751808901909852928752938601878152601980548084018255948190529651939095027f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c969581018054949093169390941692909217905591517f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c9696909101559054611c569190614b20565b336000818152601a6020908152604080832086845282529182902093909355805186815292830184905290917f8e79b7ba8dab5ebfa59b9c6af1743c3ef14863680b3cc5ac837f8d636f76031c910160405180910390a2505061162e6001600055565b60195460609081908190806001600160401b03811115611cdb57611cdb614b8a565b604051908082528060200260200182016040528015611d04578160200160208202803683370190505b509350806001600160401b03811115611d1f57611d1f614b8a565b604051908082528060200260200182016040528015611d48578160200160208202803683370190505b509250806001600160401b03811115611d6357611d63614b8a565b604051908082528060200260200182016040528015611dc857816020015b611db56040518060800160405280600081526020016000815260200160006001600160a01b03168152602001600081525090565b815260200190600190039081611d815790505b50915060005b81811015611f0557600060198281548110611deb57611deb614b4c565b60009182526020918290206040805180820190915260029092020180546001600160a01b0316808352600190910154928201929092528751909250879084908110611e3857611e38614b4c565b60200260200101906001600160a01b031690816001600160a01b0316815250508060200151858381518110611e6f57611e6f614b4c565b60209081029190910181019190915281516001600160a01b0390811660009081526015835260408082208585015183528452908190208151608081018352815481526001820154948101949094526002810154909216908301526003015460608201528451859084908110611ee657611ee6614b4c565b6020026020010181905250508080611efd90614b33565b915050611dce565b5050909192565b3360009081526002602052604090205460ff16611f3b5760405162461bcd60e51b8152600401610dd190614b62565b6001600160a01b03918216600090815260066020526040902080546001600160a01b03191691909216179055565b3360009081526002602052604090205460ff16611f985760405162461bcd60e51b8152600401610dd190614b62565b6001600160a01b03811660009081526002602052604090205460ff1615611ff15760405162461bcd60e51b815260206004820152600d60248201526c20b63932b0b23c9037bbb732b960991b6044820152606401610dd1565b6001600160a01b03166000908152600260205260409020805460ff19166001179055565b3360009081526003602052604090205460ff166120445760405162461bcd60e51b8152600401610dd190614b62565b60046000896001600160a01b03166001600160a01b031681526020019081526020016000206040518061014001604052808981526020018881526020018781526020016000815260200160008152602001848152602001838152602001866001600160a01b03168152602001600015158152602001858152509080600181540180825580915050600190039060005260206000209060090201600090919091909150600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e08201518160070160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506101008201518160070160146101000a81548160ff0219169083151502179055506101208201518160080155505082600760008a6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546121bc9190614b0d565b90915550506001600160a01b038416600090815260086020526040812080548992906121e9908490614b0d565b90915550505050505050505050565b6001600160a01b0381166000908152600460209081526040808320805482518185028101850190935280835260609492939192909184015b828210156122d457600084815260209081902060408051610140810182526009860290920180548352600180820154848601526002820154928401929092526003810154606084015260048101546080840152600581015460a0840152600681015460c084015260078101546001600160a01b03811660e0850152600160a01b900460ff161515610100840152600801546101208301529083529092019101612230565b505050509050919050565b3360009081526003602052604090205460ff1661230e5760405162461bcd60e51b8152600401610dd190614b62565b6001600160a01b0382161580159061232e57506001600160a01b03811615155b801561234c5750806001600160a01b0316826001600160a01b031614155b6123685760405162461bcd60e51b8152600401610dd190614bb9565b6001600160a01b03821660009081526004602052604090208054806123c75760405162461bcd60e51b81526020600482015260156024820152744e6f2076657374696e677320617661696c61626c6560581b6044820152606401610dd1565b6001600160a01b0383166000908152600460205260408120905b8281101561250c5760008482815481106123fd576123fd614b4c565b6000918252602080832086546001808201895588865292852060099485029092018054949091029091019283558082018054928401929092556002808201805491850191909155600380830180549186019190915560048084018054918701919091556005808501805491880191909155600680860180549189019190915560078087018054918a0180546001600160a01b039093166001600160a01b031984168117825582546001600160a81b031990941617600160a01b9384900460ff16151584021790556008808901805491909b0155968a905596899055938890559187905586905585905584905592909155815460ff60a01b1916179055508061250481614b33565b9150506123e1565b506001600160a01b038086166000908152600760205260408082205492871682528120805490919061253f908490614b0d565b90915550506001600160a01b0385166000908152600760209081526040808320839055600b909152902080548015612644576001600160a01b0386166000908152600b60205260408120905b8281101561262057818482815481106125a6576125a6614b4c565b60009182526020808320845460018181018755958552919093206004928302909301805491909202909201918255828101549282019290925560028083015490820155600391820154910180546001600160a01b0319166001600160a01b039092169190911790558061261881614b33565b91505061258b565b506001600160a01b0388166000908152600b6020526040812061264291614371565b505b50505050505050565b6001600160a01b038116600090815260046020526040812054815b81811015612819576001600160a01b038416600090815260046020526040812080548390811061269a5761269a614b4c565b600091825260209182902060408051610140810182526009909302909101805483526001810154938301939093526002830154908201526003820154606082015260048201546080820152600582015460a0820152600682015460c082015260078201546001600160a01b03811660e083015260ff600160a01b909104161515610100820181905260089092015461012082015291506128065760e0810180516001600160a01b0390811660009081526006602052604080822054935190516302c68be360e31b815290831660048201529092909116906316345f1890602401602060405180830381865afa158015612797573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127bb9190614ba0565b90506000826060015183600001516127d39190614b20565b90506000670de0b6b3a76400006127ea8385614ad4565b6127f49190614aeb565b90506128008188614b0d565b96505050505b508061281181614b33565b915050612668565b5050919050565b6001600160a01b0381166000908152600b60209081526040808320805482518185028101850190935280835260609492939192909184015b828210156122d457600084815260209081902060408051608081018252600486029092018054835260018082015484860152600282015492840192909252600301546001600160a01b031660608301529083529092019101612858565b6001600160a01b03821660009081526004602052604081208054829190849081106128e2576128e2614b4c565b9060005260206000209060090201905060008160060154426129049190614b20565b60078301549091506001600160a01b03166000805b6001600160a01b038316600090815260056020526040902054811015610d70576001600160a01b038316600090815260056020526040812080548390811061296357612963614b4c565b6000918252602090912060029091020180546001820154919250908187106129ad57875461271090612996908390614ad4565b6129a09190614aeb565b6129aa9086614b0d565b94505b505050806129ba90614b33565b9050612919565b3360009081526002602052604090205460ff166129f05760405162461bcd60e51b8152600401610dd190614b62565b601481905560125460009015612a40576000600e60006001601254612a159190614b20565b81526020019081526020016000209050612a3c846013548360010154846002015487614261565b9150505b6040805160a081018252858152602080820186815260135483850190815260608085018781524260808701908152601280546000908152600e885289902097518855945160018801559251600287015551600386015590516004909401939093555483518781529182018590529281018590527feadbedb993dfca23e4c79bf4fa5fe531c2e0e926258fabb8445e8bc5c472780f910160405180910390a260128054906000612aee83614b33565b919050555050505050565b3360009081526003602052604090205460ff16612b285760405162461bcd60e51b8152600401610dd190614b62565b612b388686868686864242612015565b505050505050565b33600090815260156020908152604080832084845290915290208054612b785760405162461bcd60e51b8152600401610dd190614be2565b60028101546001600160a01b03163314612bc55760405162461bcd60e51b815260206004820152600e60248201526d2737ba103a34329039b2b63632b960911b6044820152606401610dd1565b805460175460009061271090612bdb9084614ad4565b612be59190614aeb565b90506000612bf38284614b20565b336000908152600f6020526040812080549293508392909190612c17908490614b0d565b925050819055508060136000828254612c309190614b0d565b90915550508115612c7757604080518381526020810187905233917f4725a4d4de9bff212d0885095e27515072f73f427df55e52f37f241321ef88f9910160405180910390a25b336000818152601560209081526040808320898452825280832083815560018082018590556002820180546001600160a01b03191690556003909101849055938352601a82528083208984529091528120546019549092612cd791614b20565b9050808214612d9857600060198281548110612cf557612cf5614b4c565b60009182526020918290206040805180820190915260029092020180546001600160a01b03168252600101549181019190915260198054919250829185908110612d4157612d41614b4c565b6000918252602080832084516002939093020180546001600160a01b0319166001600160a01b03938416178155938101516001909401939093558351168152601a8252604080822093830151825292909152208290555b6019805480612da957612da9614c0d565b600082815260208082206002600019949094019384020180546001600160a01b03191681556001018290559190925533808352601a825260408084208b855283528084209390935591518981527f73d12dec3eb3b445b6c9feb2fd559ba7c852c525bc1e59d8f7ff760c55df041d910160405180910390a250505050505050565b606081831115612e6c5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642072616e676560981b6044820152606401610dd1565b6012548210612eb35760405162461bcd60e51b8152602060048201526013602482015272115b9908195c1bd8da081b9bdd08199bdd5b99606a1b6044820152606401610dd1565b6000612ebf8484614b20565b612eca906001614b0d565b90506000816001600160401b03811115612ee657612ee6614b8a565b604051908082528060200260200182016040528015612f4957816020015b612f366040518060a0016040528060008152602001600081526020016000815260200160008152602001600081525090565b815260200190600190039081612f045790505b50905060005b82811015612fe057600e6000612f658389614b0d565b81526020019081526020016000206040518060a001604052908160008201548152602001600182015481526020016002820154815260200160038201548152602001600482015481525050828281518110612fc257612fc2614b4c565b60200260200101819052508080612fd890614b33565b915050612f4f565b50949350505050565b601b8181548110612ff957600080fd5b6000918252602090912060069091020180546001820154600283015460038401546004850154600590950154939550919390926001600160a01b03918216911686565b6130706040518060800160405280600081526020016000815260200160006001600160a01b03168152602001600081525090565b506001600160a01b03918216600090815260156020908152604080832093835292815290829020825160808101845281548152600182015492810192909252600281015490931691810191909152600390910154606082015290565b6130f060405180606001604052806000815260200160008152602001600081525090565b6001600160a01b0383166000908152601160205260408120905b8154811015611179578382828154811061312657613126614b4c565b9060005260206000209060030201600001540361318f5781818154811061314f5761314f614b4c565b9060005260206000209060030201604051806060016040529081600082015481526020016001820154815260200160028201548152505092505050610d77565b8061319981614b33565b91505061310a565b6131d36040518060a0016040528060008152602001600081526020016000815260200160008152602001600081525090565b60125482106132165760405162461bcd60e51b815260206004820152600f60248201526e115c1bd8da081b9bdd08199bdd5b99608a1b6044820152606401610dd1565b506000908152600e6020908152604091829020825160a0810184528154815260018201549281019290925260028101549282019290925260038201546060820152600490910154608082015290565b6004602052816000526040600020818154811061328157600080fd5b6000918252602090912060099091020180546001820154600283015460038401546004850154600586015460068701546007880154600890980154969950949750929591949093916001600160a01b03811691600160a01b90910460ff16908a565b6001600160a01b03821660009081526004602052604081208054606092839290918590811061331457613314614b4c565b600091825260208083206007600990930201918201546001600160a01b03168084526005909152604083205491935091816001600160401b0381111561335c5761335c614b8a565b604051908082528060200260200182016040528015613385578160200160208202803683370190505b5090506000826001600160401b038111156133a2576133a2614b8a565b6040519080825280602002602001820160405280156133cb578160200160208202803683370190505b50905060005b83811015613478576001600160a01b038516600090815260056020526040812080548390811061340357613403614b4c565b90600052602060002090600202019050806000015487600601546134279190614b0d565b84838151811061343957613439614b4c565b602002602001018181525050806001015483838151811061345c5761345c614b4c565b60209081029190910101525061347181614b33565b90506133d1565b5090955093505050505b9250929050565b60008060008061349885610baf565b6001600160a01b0386166000908152600f60205260409020549091506134bf908290614b20565b6001600160a01b0386166000908152600f602052604090205490945090925090505b9193909250565b3360009081526002602052604090205460ff166135175760405162461bcd60e51b8152600401610dd190614b62565b600955565b6001600160a01b0381166000908152601160209081526040808320805482518185028101850190935280835260609492939192909184015b828210156122d45783829060005260206000209060030201604051806060016040529081600082015481526020016001820154815260200160028201548152505081526020019060010190613554565b601160205281600052604060002081815481106135c057600080fd5b600091825260209091206003909102018054600182015460029092015490935090915083565b3360009081526002602052604090205460ff166136155760405162461bcd60e51b8152600401610dd190614b62565b600a55565b601b54606090831061366e5760405162461bcd60e51b815260206004820152601960248201527f537461727420696e646578206f7574206f6620626f756e6473000000000000006044820152606401610dd1565b600061367a8385614b0d565b601b5490915081111561368c5750601b545b60006136988583614b20565b6001600160401b038111156136af576136af614b8a565b60405190808252806020026020018201604052801561372b57816020015b6137186040518060c001604052806000815260200160008152602001600081526020016000815260200160006001600160a01b0316815260200160006001600160a01b031681525090565b8152602001906001900390816136cd5790505b509050845b82811015612fe057601b818154811061374b5761374b614b4c565b60009182526020918290206040805160c0810182526006909302909101805483526001810154938301939093526002830154908201526003820154606082015260048201546001600160a01b03908116608083015260059092015490911660a0820152826137b98884614b20565b815181106137c9576137c9614b4c565b602002602001018190525080806137df90614b33565b915050613730565b6001600160a01b0381166000908152600f602090815260408083205460109092528220546012546060938493909290918390613824908390614b20565b9050806000036138555750506040805160008082526020820181815282840190935290955090935091506134e19050565b806001600160401b0381111561386d5761386d614b8a565b604051908082528060200260200182016040528015613896578160200160208202803683370190505b509550806001600160401b038111156138b1576138b1614b8a565b6040519080825280602002602001820160405280156138da578160200160208202803683370190505b5094506000825b60125481101561399a578415613988576000818152600e6020526040812060030154612710906139119088614ad4565b61391b9190614aeb565b90508015613986578189848151811061393657613936614b4c565b6020026020010181815250508088848151811061395557613955614b4c565b602090810291909101015261396a8188614b0d565b96506139768187614b20565b95508261398281614b33565b9350505b505b8061399281614b33565b9150506138e1565b5081811015613ac2576000816001600160401b038111156139bd576139bd614b8a565b6040519080825280602002602001820160405280156139e6578160200160208202803683370190505b5090506000826001600160401b03811115613a0357613a03614b8a565b604051908082528060200260200182016040528015613a2c578160200160208202803683370190505b50905060005b83811015613abb57898181518110613a4c57613a4c614b4c565b6020026020010151838281518110613a6657613a66614b4c565b602002602001018181525050888181518110613a8457613a84614b4c565b6020026020010151828281518110613a9e57613a9e614b4c565b602090810291909101015280613ab381614b33565b915050613a32565b5090975095505b505050509193909250565b613ad56141e0565b6001600160a01b038216600090815260156020908152604080832084845290915290208054613b165760405162461bcd60e51b8152600401610dd190614be2565b336001600160a01b03841603613b675760405162461bcd60e51b815260206004820152601660248201527543616e6e6f7420627579206f776e206c697374696e6760501b6044820152606401610dd1565b8054600182015460038301546000828411613b83576000613b8d565b613b8d8385614b20565b90506000613b9c600283614aeb565b90506000613baa8287614b20565b336000908152600f6020526040812080549293508392909190613bce908490614b0d565b925050819055508060136000828254613be79190614b0d565b90915550506001600160a01b03891660009081526018602052604081208054879290613c14908490614b0d565b92505081905550601b6040518060c001604052808681526020014281526020018881526020018781526020018b6001600160a01b03168152602001336001600160a01b031681525090806001815401808255809150506001900390600052602060002090600602016000909190919091506000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060a08201518160050160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505050601560008a6001600160a01b03166001600160a01b03168152602001908152602001600020600089815260200190815260200160002060008082016000905560018201600090556002820160006101000a8154906001600160a01b030219169055600382016000905550506000601a60008b6001600160a01b03166001600160a01b0316815260200190815260200160002060008a815260200190815260200160002054905060006001601980549050613dc39190614b20565b9050808214613e8457600060198281548110613de157613de1614b4c565b60009182526020918290206040805180820190915260029092020180546001600160a01b03168252600101549181019190915260198054919250829185908110613e2d57613e2d614b4c565b6000918252602080832084516002939093020180546001600160a01b0319166001600160a01b03938416178155938101516001909401939093558351168152601a8252604080822093830151825292909152208290555b6019805480613e9557613e95614c0d565b600082815260208082206002600019949094019384020180546001600160a01b0319168155600101829055919092556001600160a01b038d16808352601a825260408084208e855283528084209390935582518a81529182018d9052339290917f7bb39d095b04a9986ed34adf14d74c33294d0a9e807f02bf634d532507422eba910160405180910390a350505050505050505061162e6001600055565b3360009081526003602052604090205460ff16613f625760405162461bcd60e51b8152600401610dd190614b62565b6001600160a01b038216613f885760405162461bcd60e51b8152600401610dd190614bb9565b60008111613fc95760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610dd1565b6001600160a01b0382166000908152600f60205260409020546013548291613ff091614b20565b613ffa9190614b0d565b6013556001600160a01b0382166000818152600f602052604090819020839055517fec7e3594982826a1f90c8fc76513357b83a691b7f4e38b8be04f3d40f9b158399061404a9084815260200190565b60405180910390a25050565b3360009081526015602090815260408083208584529091529020805461408e5760405162461bcd60e51b8152600401610dd190614be2565b60028101546001600160a01b031633146140db5760405162461bcd60e51b815260206004820152600e60248201526d2737ba103a34329039b2b63632b960911b6044820152606401610dd1565b600082116141205760405162461bcd60e51b8152602060048201526012602482015271496e76616c69642073616c6520707269636560701b6044820152606401610dd1565b60018101829055604080518381526020810185905233917f8e79b7ba8dab5ebfa59b9c6af1743c3ef14863680b3cc5ac837f8d636f76031c910160405180910390a2505050565b3360009081526003602052604090205460ff166141965760405162461bcd60e51b8152600401610dd190614b62565b6001600160a01b0381166141bc5760405162461bcd60e51b8152600401610dd190614bb9565b6001600160a01b03166000908152600360205260409020805460ff19166001179055565b60026000540361420357604051633ee5aeb560e01b815260040160405180910390fd5b6002600055565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261425c9084906142fa565b505050565b600082158061426e575084155b1561427b575060006142f1565b60008561428a88612710614ad4565b6142949190614aeb565b90506000846142a587612710614ad4565b6142af9190614aeb565b90508082116142c3576000925050506142f1565b60006142cf8284614b20565b905060006127106142e08784614ad4565b6142ea9190614aeb565b9450505050505b95945050505050565b600080602060008451602086016000885af18061431d576040513d6000823e3d81fd5b50506000513d91508115614335578060011415614342565b6001600160a01b0384163b155b1561436b57604051635274afe760e01b81526001600160a01b0385166004820152602401610dd1565b50505050565b50805460008255600402906000526020600020908101906111be91905b808211156143c15760008082556001820181905560028201556003810180546001600160a01b031916905560040161438e565b5090565b80356001600160a01b03811681146143dc57600080fd5b919050565b6000602082840312156143f357600080fd5b6143fc826143c5565b9392505050565b6000806040838503121561441657600080fd5b61441f836143c5565b946020939093013593505050565b60006020828403121561443f57600080fd5b5035919050565b60008083601f84011261445857600080fd5b5081356001600160401b0381111561446f57600080fd5b6020830191508360208260051b850101111561348257600080fd5b6000806020838503121561449d57600080fd5b82356001600160401b038111156144b357600080fd5b6144bf85828601614446565b90969095509350505050565b600081518084526020808501945080840160005b838110156144fb578151875295820195908201906001016144df565b509495945050505050565b60608152600061451960608301866144cb565b828103602084015261452b81866144cb565b915050826040830152949350505050565b6000806000806040858703121561455257600080fd5b84356001600160401b038082111561456957600080fd5b61457588838901614446565b9096509450602087013591508082111561458e57600080fd5b5061459b87828801614446565b95989497509550505050565b600080604083850312156145ba57600080fd5b50508035926020909101359150565b60608082528451908201819052600090608090818401906020808901855b8381101561460c5781516001600160a01b0316855293820193908201906001016145e7565b50508583038187015261461f83896144cb565b868103604088015287518082528289019450908201925060005b818110156146835761467384865180518252602080820151908301526040808201516001600160a01b031690830152606090810151910152565b9382019392850192600101614639565b50919998505050505050505050565b600080604083850312156146a557600080fd5b6146ae836143c5565b91506146bc602084016143c5565b90509250929050565b600080600080600080600080610100898b0312156146e257600080fd5b6146eb896143c5565b975060208901359650604089013595506060890135945061470e60808a016143c5565b979a969950949793969560a0850135955060c08501359460e001359350915050565b602080825282518282018190526000919060409081850190868401855b828110156147d15781518051855286810151878601528581015186860152606080820151908601526080808201519086015260a0808201519086015260c0808201519086015260e0808201516001600160a01b031690860152610100808201511515908601526101209081015190850152610140909301929085019060010161474d565b5091979650505050505050565b602080825282518282018190526000919060409081850190868401855b828110156147d157815180518552868101518786015285810151868601526060908101516001600160a01b031690850152608090930192908501906001016147fb565b60008060006060848603121561485357600080fd5b505081359360208301359350604090920135919050565b60008060008060008060c0878903121561488357600080fd5b61488c876143c5565b95506020870135945060408701359350606087013592506148af608088016143c5565b915060a087013590509295509295509295565b6020808252825182820181905260009190848201906040850190845b8181101561492f5761491c83855180518252602081015160208301526040810151604083015260608101516060830152608081015160808301525050565b9284019260a092909201916001016148de565b50909695505050505050565b81518152602080830151908201526040808301516001600160a01b0316908201526060808301519082015260808101610d77565b81518152602080830151908201526040808301519082015260608101610d77565b60a08101610d77828480518252602081015160208301526040810151604083015260608101516060830152608081015160808301525050565b6040815260006149dc60408301856144cb565b82810360208401526142f181856144cb565b6020808252825182820181905260009190848201906040850190845b8181101561492f57614a318385518051825260208082015190830152604090810151910152565b9284019260609290920191600101614a0a565b602080825282518282018190526000919060409081850190868401855b828110156147d15781518051855286810151878601528581015186860152606080820151908601526080808201516001600160a01b039081169187019190915260a091820151169085015260c09093019290850190600101614a61565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610d7757610d77614abe565b600082614b0857634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610d7757610d77614abe565b81810381811115610d7757610d77614abe565b600060018201614b4557614b45614abe565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6020808252600e908201526d139bdd08185d5d1a1bdc9a5e995960921b604082015260600190565b634e487b7160e01b600052604160045260246000fd5b600060208284031215614bb257600080fd5b5051919050565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b602080825260119082015270131a5cdd1a5b99c81b9bdd08199bdd5b99607a1b604082015260600190565b634e487b7160e01b600052603160045260246000fdfea26469706673582212205deb74d788a03e6d506f98684ea6de969afe71445fa5d3a07707633f07ee655c64736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x406 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7BC221AC GT PUSH2 0x220 JUMPI DUP1 PUSH4 0xBED9757E GT PUSH2 0x130 JUMPI DUP1 PUSH4 0xDA1B4364 GT PUSH2 0xB8 JUMPI DUP1 PUSH4 0xEB44E0A3 GT PUSH2 0x87 JUMPI DUP1 PUSH4 0xEB44E0A3 EQ PUSH2 0xB5A JUMPI DUP1 PUSH4 0xF109208F EQ PUSH2 0xB6D JUMPI DUP1 PUSH4 0xF2BB5630 EQ PUSH2 0xB80 JUMPI DUP1 PUSH4 0xFE2F50D0 EQ PUSH2 0xB93 JUMPI DUP1 PUSH4 0xFFECF516 EQ PUSH2 0xB9C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xDA1B4364 EQ PUSH2 0xB16 JUMPI DUP1 PUSH4 0xE079FD91 EQ PUSH2 0xB36 JUMPI DUP1 PUSH4 0xE88F8E66 EQ PUSH2 0xB3E JUMPI DUP1 PUSH4 0xEACDC5FF EQ PUSH2 0xB51 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xC6B61E4C GT PUSH2 0xFF JUMPI DUP1 PUSH4 0xC6B61E4C EQ PUSH2 0xA4B JUMPI DUP1 PUSH4 0xC7B530B0 EQ PUSH2 0xAB0 JUMPI DUP1 PUSH4 0xCC573A91 EQ PUSH2 0xAD0 JUMPI DUP1 PUSH4 0xCE13D090 EQ PUSH2 0xAE3 JUMPI DUP1 PUSH4 0xCFCF3319 EQ PUSH2 0xAF6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xBED9757E EQ PUSH2 0x9E1 JUMPI DUP1 PUSH4 0xC2676603 EQ PUSH2 0xA02 JUMPI DUP1 PUSH4 0xC32D3AE2 EQ PUSH2 0xA0A JUMPI DUP1 PUSH4 0xC36D03FD EQ PUSH2 0xA38 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9437E32E GT PUSH2 0x1B3 JUMPI DUP1 PUSH4 0xA0D46758 GT PUSH2 0x182 JUMPI DUP1 PUSH4 0xA0D46758 EQ PUSH2 0x910 JUMPI DUP1 PUSH4 0xA36BE55C EQ PUSH2 0x930 JUMPI DUP1 PUSH4 0xB6C3DC4C EQ PUSH2 0x939 JUMPI DUP1 PUSH4 0xBC0BC6BA EQ PUSH2 0x959 JUMPI DUP1 PUSH4 0xBD84477D EQ PUSH2 0x979 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9437E32E EQ PUSH2 0x87E JUMPI DUP1 PUSH4 0x953D16BF EQ PUSH2 0x891 JUMPI DUP1 PUSH4 0x96FD111A EQ PUSH2 0x8A4 JUMPI DUP1 PUSH4 0x9F3A676C EQ PUSH2 0x8C4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x87B4B105 GT PUSH2 0x1EF JUMPI DUP1 PUSH4 0x87B4B105 EQ PUSH2 0x818 JUMPI DUP1 PUSH4 0x8851EC0F EQ PUSH2 0x838 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x84B JUMPI DUP1 PUSH4 0x8F82818F EQ PUSH2 0x85E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x7BC221AC EQ PUSH2 0x7A9 JUMPI DUP1 PUSH4 0x7D08AF97 EQ PUSH2 0x7BC JUMPI DUP1 PUSH4 0x7E6D9926 EQ PUSH2 0x7DC JUMPI DUP1 PUSH4 0x80CA0ECF EQ PUSH2 0x805 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3F35E722 GT PUSH2 0x31B JUMPI DUP1 PUSH4 0x592D1DD1 GT PUSH2 0x2AE JUMPI DUP1 PUSH4 0x6EF569A5 GT PUSH2 0x27D JUMPI DUP1 PUSH4 0x6EF569A5 EQ PUSH2 0x747 JUMPI DUP1 PUSH4 0x7065CB48 EQ PUSH2 0x750 JUMPI DUP1 PUSH4 0x74D1C8E3 EQ PUSH2 0x763 JUMPI DUP1 PUSH4 0x7A0C6DC0 EQ PUSH2 0x776 JUMPI DUP1 PUSH4 0x7B3CBECB EQ PUSH2 0x796 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x592D1DD1 EQ PUSH2 0x6F5 JUMPI DUP1 PUSH4 0x61D1080B EQ PUSH2 0x715 JUMPI DUP1 PUSH4 0x62CD6A09 EQ PUSH2 0x71D JUMPI DUP1 PUSH4 0x67A74DDC EQ PUSH2 0x734 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x51E62472 GT PUSH2 0x2EA JUMPI DUP1 PUSH4 0x51E62472 EQ PUSH2 0x694 JUMPI DUP1 PUSH4 0x51F6CF2F EQ PUSH2 0x6A7 JUMPI DUP1 PUSH4 0x549E61D3 EQ PUSH2 0x6CF JUMPI DUP1 PUSH4 0x58116227 EQ PUSH2 0x6E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3F35E722 EQ PUSH2 0x5C1 JUMPI DUP1 PUSH4 0x43A32F89 EQ PUSH2 0x5D4 JUMPI DUP1 PUSH4 0x441A4175 EQ PUSH2 0x64F JUMPI DUP1 PUSH4 0x48EA286D EQ PUSH2 0x681 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x173825D9 GT PUSH2 0x39E JUMPI DUP1 PUSH4 0x25D5971F GT PUSH2 0x36D JUMPI DUP1 PUSH4 0x25D5971F EQ PUSH2 0x54D JUMPI DUP1 PUSH4 0x2DED58AA EQ PUSH2 0x560 JUMPI DUP1 PUSH4 0x3253EA5C EQ PUSH2 0x569 JUMPI DUP1 PUSH4 0x3BA8396E EQ PUSH2 0x57C JUMPI DUP1 PUSH4 0x3C92F98D EQ PUSH2 0x59F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x173825D9 EQ PUSH2 0x50B JUMPI DUP1 PUSH4 0x1ADA70A8 EQ PUSH2 0x51E JUMPI DUP1 PUSH4 0x1AEFA2D1 EQ PUSH2 0x527 JUMPI DUP1 PUSH4 0x1EB9E53E EQ PUSH2 0x53A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x92C7610 GT PUSH2 0x3DA JUMPI DUP1 PUSH4 0x92C7610 EQ PUSH2 0x4AE JUMPI DUP1 PUSH4 0xA84096A EQ PUSH2 0x4CE JUMPI DUP1 PUSH4 0xC7D6386 EQ PUSH2 0x4E1 JUMPI DUP1 PUSH4 0x13BAEE5B EQ PUSH2 0x4EB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH3 0x159DA6 EQ PUSH2 0x40B JUMPI DUP1 PUSH4 0x1374518 EQ PUSH2 0x431 JUMPI DUP1 PUSH4 0x22914A7 EQ PUSH2 0x472 JUMPI DUP1 PUSH4 0x519DA32 EQ PUSH2 0x4A5 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x41E PUSH2 0x419 CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0xBAF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x45A PUSH2 0x43F CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x428 JUMP JUMPDEST PUSH2 0x495 PUSH2 0x480 CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x428 JUMP JUMPDEST PUSH2 0x41E PUSH1 0xA SLOAD DUP2 JUMP JUMPDEST PUSH2 0x41E PUSH2 0x4BC CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x41E PUSH2 0x4DC CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH2 0xC45 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0xD7D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x41E PUSH2 0x4F9 CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x519 CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0xED1 JUMP JUMPDEST PUSH2 0x41E PUSH1 0x9 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x535 CALLDATASIZE PUSH1 0x4 PUSH2 0x442D JUMP JUMPDEST PUSH2 0xFC2 JUMP JUMPDEST PUSH2 0x41E PUSH2 0x548 CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0xFF6 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x55B CALLDATASIZE PUSH1 0x4 PUSH2 0x442D JUMP JUMPDEST PUSH2 0x102D JUMP JUMPDEST PUSH2 0x41E PUSH1 0x13 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x577 CALLDATASIZE PUSH1 0x4 PUSH2 0x442D JUMP JUMPDEST PUSH2 0x11C1 JUMP JUMPDEST PUSH2 0x495 PUSH2 0x58A CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x5B2 PUSH2 0x5AD CALLDATASIZE PUSH1 0x4 PUSH2 0x448A JUMP JUMPDEST PUSH2 0x11F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4506 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x5CF CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH2 0x13E3 JUMP JUMPDEST PUSH2 0x620 PUSH2 0x5E2 CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH1 0x15 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x0 SWAP3 DUP4 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 SWAP1 SWAP2 MSTORE SWAP1 DUP3 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP3 ADD SLOAD PUSH1 0x2 DUP4 ADD SLOAD PUSH1 0x3 SWAP1 SWAP4 ADD SLOAD SWAP2 SWAP3 SWAP1 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 DUP5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 SWAP4 DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH2 0x662 PUSH2 0x65D CALLDATASIZE PUSH1 0x4 PUSH2 0x442D JUMP JUMPDEST PUSH2 0x146A JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x428 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x68F CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0x14A2 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x6A2 CALLDATASIZE PUSH1 0x4 PUSH2 0x442D JUMP JUMPDEST PUSH2 0x1632 JUMP JUMPDEST PUSH2 0x6BA PUSH2 0x6B5 CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH2 0x1666 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x428 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x6DD CALLDATASIZE PUSH1 0x4 PUSH2 0x453C JUMP JUMPDEST PUSH2 0x16A2 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x6F0 CALLDATASIZE PUSH1 0x4 PUSH2 0x45A7 JUMP JUMPDEST PUSH2 0x198C JUMP JUMPDEST PUSH2 0x41E PUSH2 0x703 CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1B SLOAD PUSH2 0x41E JUMP JUMPDEST PUSH2 0x725 PUSH2 0x1CB9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x45C9 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x742 CALLDATASIZE PUSH1 0x4 PUSH2 0x4692 JUMP JUMPDEST PUSH2 0x1F0C JUMP JUMPDEST PUSH2 0x41E PUSH1 0x17 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x75E CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0x1F69 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x771 CALLDATASIZE PUSH1 0x4 PUSH2 0x46C5 JUMP JUMPDEST PUSH2 0x2015 JUMP JUMPDEST PUSH2 0x789 PUSH2 0x784 CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP2 SWAP1 PUSH2 0x4730 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x7A4 CALLDATASIZE PUSH1 0x4 PUSH2 0x4692 JUMP JUMPDEST PUSH2 0x22DF JUMP JUMPDEST PUSH2 0x41E PUSH2 0x7B7 CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0x264D JUMP JUMPDEST PUSH2 0x7CF PUSH2 0x7CA CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0x2820 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP2 SWAP1 PUSH2 0x47DE JUMP JUMPDEST PUSH2 0x41E PUSH2 0x7EA CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x41E PUSH2 0x813 CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH2 0x28B5 JUMP JUMPDEST PUSH2 0x41E PUSH2 0x826 CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0xD PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x846 CALLDATASIZE PUSH1 0x4 PUSH2 0x483E JUMP JUMPDEST PUSH2 0x29C1 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x45A SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH2 0x41E PUSH2 0x86C CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x88C CALLDATASIZE PUSH1 0x4 PUSH2 0x486A JUMP JUMPDEST PUSH2 0x2AF9 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0x89F CALLDATASIZE PUSH1 0x4 PUSH2 0x442D JUMP JUMPDEST PUSH2 0x2B40 JUMP JUMPDEST PUSH2 0x8B7 PUSH2 0x8B2 CALLDATASIZE PUSH1 0x4 PUSH2 0x45A7 JUMP JUMPDEST PUSH2 0x2E2A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP2 SWAP1 PUSH2 0x48C2 JUMP JUMPDEST PUSH2 0x8D7 PUSH2 0x8D2 CALLDATASIZE PUSH1 0x4 PUSH2 0x442D JUMP JUMPDEST PUSH2 0x2FE9 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP7 DUP8 MSTORE PUSH1 0x20 DUP8 ADD SWAP6 SWAP1 SWAP6 MSTORE SWAP4 DUP6 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x80 DUP5 ADD MSTORE AND PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 ADD PUSH2 0x428 JUMP JUMPDEST PUSH2 0x923 PUSH2 0x91E CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH2 0x303C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP2 SWAP1 PUSH2 0x493B JUMP JUMPDEST PUSH2 0x41E PUSH1 0x14 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x94C PUSH2 0x947 CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH2 0x30CC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP2 SWAP1 PUSH2 0x496F JUMP JUMPDEST PUSH2 0x96C PUSH2 0x967 CALLDATASIZE PUSH1 0x4 PUSH2 0x442D JUMP JUMPDEST PUSH2 0x31A1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP2 SWAP1 PUSH2 0x4990 JUMP JUMPDEST PUSH2 0x98C PUSH2 0x987 CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH2 0x3265 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP11 DUP12 MSTORE PUSH1 0x20 DUP12 ADD SWAP10 SWAP1 SWAP10 MSTORE SWAP8 DUP10 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x60 DUP9 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x80 DUP8 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0xC0 DUP6 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0xE0 DUP5 ADD MSTORE ISZERO ISZERO PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP3 ADD MSTORE PUSH2 0x140 ADD PUSH2 0x428 JUMP JUMPDEST PUSH2 0x9F4 PUSH2 0x9EF CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH2 0x32E3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP3 SWAP2 SWAP1 PUSH2 0x49C9 JUMP JUMPDEST PUSH2 0x3E7 PUSH2 0x41E JUMP JUMPDEST PUSH2 0xA1D PUSH2 0xA18 CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0x3489 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP4 DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0x428 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0xA46 CALLDATASIZE PUSH1 0x4 PUSH2 0x442D JUMP JUMPDEST PUSH2 0x34E8 JUMP JUMPDEST PUSH2 0xA88 PUSH2 0xA59 CALLDATASIZE PUSH1 0x4 PUSH2 0x442D JUMP JUMPDEST PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP3 ADD SLOAD PUSH1 0x2 DUP4 ADD SLOAD PUSH1 0x3 DUP5 ADD SLOAD PUSH1 0x4 SWAP1 SWAP5 ADD SLOAD SWAP3 SWAP4 SWAP2 SWAP3 SWAP1 SWAP2 SWAP1 DUP6 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP6 DUP7 MSTORE PUSH1 0x20 DUP7 ADD SWAP5 SWAP1 SWAP5 MSTORE SWAP3 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD PUSH2 0x428 JUMP JUMPDEST PUSH2 0xAC3 PUSH2 0xABE CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0x351C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP2 SWAP1 PUSH2 0x49EE JUMP JUMPDEST PUSH2 0xA1D PUSH2 0xADE CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH2 0x35A4 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0xAF1 CALLDATASIZE PUSH1 0x4 PUSH2 0x442D JUMP JUMPDEST PUSH2 0x35E6 JUMP JUMPDEST PUSH2 0xB09 PUSH2 0xB04 CALLDATASIZE PUSH1 0x4 PUSH2 0x45A7 JUMP JUMPDEST PUSH2 0x361A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP2 SWAP1 PUSH2 0x4A44 JUMP JUMPDEST PUSH2 0x41E PUSH2 0xB24 CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x10 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH1 0xC SLOAD PUSH2 0x41E JUMP JUMPDEST PUSH2 0x5B2 PUSH2 0xB4C CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0x37E7 JUMP JUMPDEST PUSH2 0x41E PUSH1 0x12 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0xB68 CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH2 0x3ACD JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0xB7B CALLDATASIZE PUSH1 0x4 PUSH2 0x4403 JUMP JUMPDEST PUSH2 0x3F33 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0xB8E CALLDATASIZE PUSH1 0x4 PUSH2 0x45A7 JUMP JUMPDEST PUSH2 0x4056 JUMP JUMPDEST PUSH2 0x41E PUSH1 0x16 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4E9 PUSH2 0xBAA CALLDATASIZE PUSH1 0x4 PUSH2 0x43E1 JUMP JUMPDEST PUSH2 0x4167 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD PUSH1 0x10 SWAP1 SWAP3 MSTORE DUP3 KECCAK256 SLOAD DUP1 JUMPDEST PUSH1 0x12 SLOAD DUP2 LT ISZERO PUSH2 0xC3D JUMPI DUP3 ISZERO PUSH2 0xC2B JUMPI PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x3 ADD SLOAD PUSH2 0x2710 SWAP1 PUSH2 0xC05 SWAP1 DUP7 PUSH2 0x4AD4 JUMP JUMPDEST PUSH2 0xC0F SWAP2 SWAP1 PUSH2 0x4AEB JUMP JUMPDEST SWAP1 POP PUSH2 0xC1B DUP2 DUP7 PUSH2 0x4B0D JUMP JUMPDEST SWAP5 POP PUSH2 0xC27 DUP2 DUP6 PUSH2 0x4B20 JUMP JUMPDEST SWAP4 POP POP JUMPDEST DUP1 PUSH2 0xC35 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xBD5 JUMP JUMPDEST POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP3 SWAP2 SWAP1 DUP5 SWAP1 DUP2 LT PUSH2 0xC72 JUMPI PUSH2 0xC72 PUSH2 0x4B4C JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x9 MUL ADD SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x6 ADD SLOAD TIMESTAMP PUSH2 0xC94 SWAP2 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST PUSH1 0x7 DUP4 ADD SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP1 JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 LT ISZERO PUSH2 0xD70 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0xCF3 JUMPI PUSH2 0xCF3 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 KECCAK256 PUSH1 0x2 SWAP1 SWAP2 MUL ADD DUP1 SLOAD PUSH1 0x1 DUP3 ADD SLOAD PUSH1 0x8 DUP11 ADD SLOAD SWAP3 SWAP5 POP SWAP1 SWAP3 SWAP1 SWAP2 PUSH1 0x64 SWAP1 PUSH2 0xD24 SWAP1 PUSH1 0xA SWAP1 PUSH2 0x4AD4 JUMP JUMPDEST PUSH2 0xD2E SWAP2 SWAP1 PUSH2 0x4AEB JUMP JUMPDEST SWAP1 POP DUP3 DUP9 LT PUSH2 0xD5B JUMPI PUSH2 0x2710 PUSH2 0xD44 DUP4 DUP4 PUSH2 0x4AD4 JUMP JUMPDEST PUSH2 0xD4E SWAP2 SWAP1 PUSH2 0x4AEB JUMP JUMPDEST PUSH2 0xD58 SWAP1 DUP8 PUSH2 0x4B0D JUMP JUMPDEST SWAP6 POP JUMPDEST POP POP POP POP DUP1 PUSH2 0xD69 SWAP1 PUSH2 0x4B33 JUMP JUMPDEST SWAP1 POP PUSH2 0xCA9 JUMP JUMPDEST POP SWAP4 POP POP POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xD85 PUSH2 0x41E0 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD90 CALLER PUSH2 0xBAF JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 GT PUSH2 0xDDA 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 0x4E6F7468696E6720746F20636C61696D PUSH1 0x80 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0xDF9 SWAP1 DUP5 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x13 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xE12 SWAP2 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x12 SLOAD CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x10 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE PUSH1 0x11 DUP2 MSTORE SWAP1 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0x60 DUP2 ADD DUP5 MSTORE TIMESTAMP DUP1 DUP3 MSTORE SWAP3 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0xA SLOAD SWAP2 SWAP4 SWAP1 SWAP3 SWAP1 DUP4 ADD SWAP2 PUSH2 0xE5E SWAP2 PUSH2 0x4B0D JUMP JUMPDEST SWAP1 MSTORE DUP2 SLOAD PUSH1 0x1 DUP1 DUP3 ADD DUP5 SSTORE PUSH1 0x0 SWAP4 DUP5 MSTORE PUSH1 0x20 SWAP4 DUP5 SWAP1 KECCAK256 DUP4 MLOAD PUSH1 0x3 SWAP1 SWAP4 MUL ADD SWAP2 DUP3 SSTORE DUP3 DUP5 ADD MLOAD SWAP1 DUP3 ADD SSTORE PUSH1 0x40 SWAP2 DUP3 ADD MLOAD PUSH1 0x2 SWAP1 SWAP2 ADD SSTORE MLOAD DUP3 DUP2 MSTORE CALLER SWAP2 PUSH32 0xA65A8B4F7F65A1063243D7F7E9E4DA00FF767599ACF21549EF2548A45D1695AE SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH2 0xECF PUSH1 0x1 PUSH1 0x0 SSTORE JUMP JUMPDEST JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0xF00 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0xF54 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x9 PUSH1 0x24 DUP3 ADD MSTORE PUSH9 0x2737BA1037BBB732B9 PUSH1 0xB9 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SUB PUSH2 0xFA1 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 0x21B0B73737BA103932B6B7BB329039B2B633 PUSH1 0x71 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0xFF1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x17 SSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD DUP2 PUSH2 0x1019 DUP5 PUSH2 0xBAF JUMP JUMPDEST SWAP1 POP PUSH2 0x1025 DUP2 DUP4 PUSH2 0x4B20 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x1035 PUSH2 0x41E0 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH2 0x1088 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x4E6F207374616B657320617661696C61626C65 PUSH1 0x68 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 SLOAD DUP2 LT ISZERO PUSH2 0x1179 JUMPI PUSH1 0x0 DUP3 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x10A8 JUMPI PUSH2 0x10A8 PUSH2 0x4B4C JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD SWAP1 POP DUP4 DUP2 PUSH1 0x0 ADD SLOAD EQ DUP1 ISZERO PUSH2 0x10CF JUMPI POP PUSH1 0x0 DUP2 PUSH1 0x1 ADD SLOAD GT JUMPDEST ISZERO PUSH2 0x1166 JUMPI DUP1 PUSH1 0x2 ADD SLOAD TIMESTAMP LT ISZERO PUSH2 0x1117 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x14DD185AD9481B1BD8DAD959 PUSH1 0xA2 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD DUP1 SLOAD PUSH1 0x0 SWAP1 SWAP2 SSTORE PUSH1 0x40 DUP1 MLOAD DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP8 SWAP1 MSTORE CALLER SWAP2 PUSH32 0x933735AA8DE6D7547D0126171B2F31B9C34DD00F3ECD4BE85A0BA047DB4FAFEF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP PUSH2 0x11B4 JUMP JUMPDEST POP DUP1 PUSH2 0x1171 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x108B JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x14DD185AD9481B9BDD08199BDD5B99 PUSH1 0x8A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH2 0x11BE PUSH1 0x1 PUSH1 0x0 SSTORE JUMP JUMPDEST POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x11F0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x14 SSTORE JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 DUP4 DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1213 JUMPI PUSH2 0x1213 PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x123C JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP4 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1257 JUMPI PUSH2 0x1257 PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1280 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP3 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x13DA JUMPI PUSH1 0x0 DUP8 DUP8 DUP4 DUP2 DUP2 LT PUSH2 0x12A2 JUMPI PUSH2 0x12A2 PUSH2 0x4B4C JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x12B7 SWAP2 SWAP1 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP8 MLOAD SWAP2 SWAP3 POP SWAP1 DUP2 SWAP1 DUP9 SWAP1 DUP6 SWAP1 DUP2 LT PUSH2 0x12EA JUMPI PUSH2 0x12EA PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x6 SWAP1 SWAP4 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 SLOAD SWAP1 MLOAD PUSH4 0x2C68BE3 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 SWAP2 AND SWAP1 PUSH4 0x16345F18 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1352 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 0x1376 SWAP2 SWAP1 PUSH2 0x4BA0 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 PUSH2 0x138D DUP5 DUP5 PUSH2 0x4AD4 JUMP JUMPDEST PUSH2 0x1397 SWAP2 SWAP1 PUSH2 0x4AEB JUMP JUMPDEST SWAP1 POP DUP1 DUP9 DUP7 DUP2 MLOAD DUP2 LT PUSH2 0x13AC JUMPI PUSH2 0x13AC PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH2 0x13C1 DUP2 DUP9 PUSH2 0x4B0D JUMP JUMPDEST SWAP7 POP POP POP POP POP DUP1 DUP1 PUSH2 0x13D2 SWAP1 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1286 JUMP JUMPDEST POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x1412 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH2 0x1426 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND CALLER DUP4 PUSH2 0x420A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 CALLER SWAP1 PUSH32 0xA92FF919B850E4909AB2261D907EF955F11BC1716733A6CBECE38D163A69AF8A SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x19 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x147A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 PUSH1 0x2 SWAP1 SWAP2 MUL ADD DUP1 SLOAD PUSH1 0x1 SWAP1 SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP2 POP DUP3 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x14D1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 LT ISZERO PUSH2 0x162E JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0x151E JUMPI PUSH2 0x151E PUSH2 0x4B4C JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x9 MUL ADD SWAP1 POP DUP1 PUSH1 0x7 ADD PUSH1 0x14 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x15F2 JUMPI PUSH1 0x8 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD LT PUSH2 0x159A JUMPI PUSH1 0x8 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP1 SWAP2 SWAP1 PUSH2 0x1594 SWAP1 DUP5 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP JUMPDEST DUP1 SLOAD PUSH1 0x7 DUP3 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD LT PUSH2 0x15F2 JUMPI DUP1 SLOAD PUSH1 0x7 DUP3 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP1 SWAP2 SWAP1 PUSH2 0x15EC SWAP1 DUP5 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP JUMPDEST PUSH1 0x0 DUP1 DUP3 SSTORE PUSH1 0x1 DUP3 ADD DUP2 SWAP1 SSTORE PUSH1 0x3 DUP3 ADD DUP2 SWAP1 SSTORE PUSH1 0x4 DUP3 ADD SSTORE PUSH1 0x7 ADD DUP1 SLOAD PUSH1 0xFF PUSH1 0xA0 SHL NOT AND PUSH1 0x1 PUSH1 0xA0 SHL OR SWAP1 SSTORE PUSH2 0x1627 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP1 POP PUSH2 0x14D4 JUMP JUMPDEST POP POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x1661 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x16 SSTORE JUMP JUMPDEST PUSH1 0x5 PUSH1 0x20 MSTORE DUP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1682 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 PUSH1 0x2 SWAP1 SWAP2 MUL ADD DUP1 SLOAD PUSH1 0x1 SWAP1 SWAP2 ADD SLOAD SWAP1 SWAP3 POP SWAP1 POP DUP3 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x16D1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST DUP3 DUP2 EQ PUSH2 0x1718 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 0x82E4E4C2F240D8CADCCEE8D040DAD2E6DAC2E8C6D PUSH1 0x5B SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST DUP3 PUSH2 0x1754 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xC PUSH1 0x24 DUP3 ADD MSTORE PUSH12 0x456D70747920617272617973 PUSH1 0xA0 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x0 DUP1 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x196D JUMPI PUSH1 0x0 DUP7 DUP7 DUP4 DUP2 DUP2 LT PUSH2 0x1774 JUMPI PUSH2 0x1774 PUSH2 0x4B4C JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1789 SWAP2 SWAP1 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x17AF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4BB9 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 DUP4 DUP2 DUP2 LT PUSH2 0x17C3 JUMPI PUSH2 0x17C3 PUSH2 0x4B4C JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD GT PUSH2 0x1808 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x125B9D985B1A5908185B5BDD5B9D PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST DUP4 DUP4 DUP3 DUP2 DUP2 LT PUSH2 0x181A JUMPI PUSH2 0x181A PUSH2 0x4B4C JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD PUSH1 0xF PUSH1 0x0 DUP9 DUP9 DUP6 DUP2 DUP2 LT PUSH2 0x1837 JUMPI PUSH2 0x1837 PUSH2 0x4B4C JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x184C SWAP2 SWAP1 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x1870 SWAP1 DUP5 PUSH2 0x4B20 JUMP JUMPDEST PUSH2 0x187A SWAP2 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST SWAP2 POP DUP4 DUP4 DUP3 DUP2 DUP2 LT PUSH2 0x188E JUMPI PUSH2 0x188E PUSH2 0x4B4C JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD PUSH1 0xF PUSH1 0x0 DUP9 DUP9 DUP6 DUP2 DUP2 LT PUSH2 0x18AB JUMPI PUSH2 0x18AB PUSH2 0x4B4C JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x18C0 SWAP2 SWAP1 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 SSTORE DUP6 DUP6 DUP3 DUP2 DUP2 LT PUSH2 0x18EC JUMPI PUSH2 0x18EC PUSH2 0x4B4C JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1901 SWAP2 SWAP1 PUSH2 0x43E1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xEC7E3594982826A1F90C8FC76513357B83A691B7F4E38B8BE04F3D40F9B15839 DUP6 DUP6 DUP5 DUP2 DUP2 LT PUSH2 0x193D JUMPI PUSH2 0x193D PUSH2 0x4B4C JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD PUSH1 0x40 MLOAD PUSH2 0x1953 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP1 PUSH2 0x1965 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1758 JUMP JUMPDEST POP DUP1 PUSH1 0x13 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1980 SWAP2 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1994 PUSH2 0x41E0 JUMP JUMPDEST PUSH1 0x0 DUP3 GT PUSH2 0x19D4 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 0x496E76616C69642076616C7565 PUSH1 0x98 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x0 DUP2 GT PUSH2 0x1A19 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 0x496E76616C69642073616C65207072696365 PUSH1 0x70 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x16 SLOAD DUP3 LT ISZERO PUSH2 0x1A61 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x56616C75652062656C6F77206D696E696D756D PUSH1 0x68 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A6C CALLER PUSH2 0xFF6 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 GT ISZERO PUSH2 0x1AB7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH22 0x496E73756666696369656E74206E6574207374616B65 PUSH1 0x50 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x15 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 TIMESTAMP DUP1 DUP6 MSTORE SWAP3 MSTORE SWAP1 SWAP2 KECCAK256 SLOAD ISZERO PUSH2 0x1B19 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH22 0x5374616B65496420616C726561647920657869737473 PUSH1 0x50 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP7 SWAP3 SWAP1 PUSH2 0x1B38 SWAP1 DUP5 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP4 PUSH1 0x13 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1B51 SWAP2 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD DUP3 MSTORE DUP6 DUP2 MSTORE PUSH1 0x20 DUP1 DUP3 ADD DUP7 DUP2 MSTORE CALLER DUP4 DUP6 ADD DUP2 DUP2 MSTORE TIMESTAMP PUSH1 0x60 DUP7 ADD SWAP1 DUP2 MSTORE PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x15 DUP7 MSTORE DUP8 DUP2 KECCAK256 DUP10 DUP3 MSTORE DUP7 MSTORE DUP8 DUP2 KECCAK256 SWAP7 MLOAD DUP8 SSTORE SWAP4 MLOAD PUSH1 0x1 DUP1 DUP9 ADD SWAP2 SWAP1 SWAP2 SSTORE SWAP2 MLOAD PUSH1 0x2 DUP1 DUP9 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP2 DUP3 AND OR SWAP1 SWAP2 SSTORE SWAP3 MLOAD PUSH1 0x3 SWAP1 SWAP9 ADD SWAP8 SWAP1 SWAP8 SSTORE DUP8 MLOAD DUP1 DUP10 ADD SWAP1 SWAP9 MSTORE SWAP3 DUP8 MSTORE SWAP4 DUP7 ADD DUP8 DUP2 MSTORE PUSH1 0x19 DUP1 SLOAD DUP1 DUP5 ADD DUP3 SSTORE SWAP5 DUP2 SWAP1 MSTORE SWAP7 MLOAD SWAP4 SWAP1 SWAP6 MUL PUSH32 0x944998273E477B495144FB8794C914197F3CCB46BE2900F4698FD0EF743C9695 DUP2 ADD DUP1 SLOAD SWAP5 SWAP1 SWAP4 AND SWAP4 SWAP1 SWAP5 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SSTORE SWAP2 MLOAD PUSH32 0x944998273E477B495144FB8794C914197F3CCB46BE2900F4698FD0EF743C9696 SWAP1 SWAP2 ADD SSTORE SWAP1 SLOAD PUSH2 0x1C56 SWAP2 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1A PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP7 DUP5 MSTORE DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE DUP1 MLOAD DUP7 DUP2 MSTORE SWAP3 DUP4 ADD DUP5 SWAP1 MSTORE SWAP1 SWAP2 PUSH32 0x8E79B7BA8DAB5EBFA59B9C6AF1743C3EF14863680B3CC5AC837F8D636F76031C SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP PUSH2 0x162E PUSH1 0x1 PUSH1 0x0 SSTORE JUMP JUMPDEST PUSH1 0x19 SLOAD PUSH1 0x60 SWAP1 DUP2 SWAP1 DUP2 SWAP1 DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1CDB JUMPI PUSH2 0x1CDB PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1D04 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP4 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1D1F JUMPI PUSH2 0x1D1F PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1D48 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP3 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1D63 JUMPI PUSH2 0x1D63 PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1DC8 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x1DB5 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND 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 0x1D81 JUMPI SWAP1 POP JUMPDEST POP SWAP2 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1F05 JUMPI PUSH1 0x0 PUSH1 0x19 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x1DEB JUMPI PUSH2 0x1DEB PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x2 SWAP1 SWAP3 MUL ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 DUP4 MSTORE PUSH1 0x1 SWAP1 SWAP2 ADD SLOAD SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE DUP8 MLOAD SWAP1 SWAP3 POP DUP8 SWAP1 DUP5 SWAP1 DUP2 LT PUSH2 0x1E38 JUMPI PUSH2 0x1E38 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP POP DUP1 PUSH1 0x20 ADD MLOAD DUP6 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1E6F JUMPI PUSH2 0x1E6F PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x15 DUP4 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP6 DUP6 ADD MLOAD DUP4 MSTORE DUP5 MSTORE SWAP1 DUP2 SWAP1 KECCAK256 DUP2 MLOAD PUSH1 0x80 DUP2 ADD DUP4 MSTORE DUP2 SLOAD DUP2 MSTORE PUSH1 0x1 DUP3 ADD SLOAD SWAP5 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x2 DUP2 ADD SLOAD SWAP1 SWAP3 AND SWAP1 DUP4 ADD MSTORE PUSH1 0x3 ADD SLOAD PUSH1 0x60 DUP3 ADD MSTORE DUP5 MLOAD DUP6 SWAP1 DUP5 SWAP1 DUP2 LT PUSH2 0x1EE6 JUMPI PUSH2 0x1EE6 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP POP DUP1 DUP1 PUSH2 0x1EFD SWAP1 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1DCE JUMP JUMPDEST POP POP SWAP1 SWAP2 SWAP3 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x1F3B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP2 SWAP1 SWAP3 AND OR SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x1F98 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND ISZERO PUSH2 0x1FF1 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 0x20B63932B0B23C9037BBB732B9 PUSH1 0x99 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x2044 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP10 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 PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 DUP10 DUP2 MSTORE PUSH1 0x20 ADD DUP9 DUP2 MSTORE PUSH1 0x20 ADD DUP8 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD DUP6 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x9 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SSTORE PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE PUSH1 0xA0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD SSTORE PUSH1 0xC0 DUP3 ADD MLOAD DUP2 PUSH1 0x6 ADD SSTORE PUSH1 0xE0 DUP3 ADD MLOAD DUP2 PUSH1 0x7 ADD 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 PUSH2 0x100 DUP3 ADD MLOAD DUP2 PUSH1 0x7 ADD PUSH1 0x14 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0x120 DUP3 ADD MLOAD DUP2 PUSH1 0x8 ADD SSTORE POP POP DUP3 PUSH1 0x7 PUSH1 0x0 DUP11 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 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x21BC SWAP2 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x8 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP10 SWAP3 SWAP1 PUSH2 0x21E9 SWAP1 DUP5 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD DUP3 MLOAD DUP2 DUP6 MUL DUP2 ADD DUP6 ADD SWAP1 SWAP4 MSTORE DUP1 DUP4 MSTORE PUSH1 0x60 SWAP5 SWAP3 SWAP4 SWAP2 SWAP3 SWAP1 SWAP2 DUP5 ADD JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x22D4 JUMPI PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 SWAP1 DUP2 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD PUSH2 0x140 DUP2 ADD DUP3 MSTORE PUSH1 0x9 DUP7 MUL SWAP1 SWAP3 ADD DUP1 SLOAD DUP4 MSTORE PUSH1 0x1 DUP1 DUP3 ADD SLOAD DUP5 DUP7 ADD MSTORE PUSH1 0x2 DUP3 ADD SLOAD SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x3 DUP2 ADD SLOAD PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x4 DUP2 ADD SLOAD PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0x5 DUP2 ADD SLOAD PUSH1 0xA0 DUP5 ADD MSTORE PUSH1 0x6 DUP2 ADD SLOAD PUSH1 0xC0 DUP5 ADD MSTORE PUSH1 0x7 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0xE0 DUP6 ADD MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO PUSH2 0x100 DUP5 ADD MSTORE PUSH1 0x8 ADD SLOAD PUSH2 0x120 DUP4 ADD MSTORE SWAP1 DUP4 MSTORE SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x2230 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x230E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0x232E JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x234C JUMPI POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST PUSH2 0x2368 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4BB9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP1 PUSH2 0x23C7 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 0x4E6F2076657374696E677320617661696C61626C65 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x250C JUMPI PUSH1 0x0 DUP5 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x23FD JUMPI PUSH2 0x23FD PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 DUP7 SLOAD PUSH1 0x1 DUP1 DUP3 ADD DUP10 SSTORE DUP9 DUP7 MSTORE SWAP3 DUP6 KECCAK256 PUSH1 0x9 SWAP5 DUP6 MUL SWAP1 SWAP3 ADD DUP1 SLOAD SWAP5 SWAP1 SWAP2 MUL SWAP1 SWAP2 ADD SWAP3 DUP4 SSTORE DUP1 DUP3 ADD DUP1 SLOAD SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 SSTORE PUSH1 0x2 DUP1 DUP3 ADD DUP1 SLOAD SWAP2 DUP6 ADD SWAP2 SWAP1 SWAP2 SSTORE PUSH1 0x3 DUP1 DUP4 ADD DUP1 SLOAD SWAP2 DUP7 ADD SWAP2 SWAP1 SWAP2 SSTORE PUSH1 0x4 DUP1 DUP5 ADD DUP1 SLOAD SWAP2 DUP8 ADD SWAP2 SWAP1 SWAP2 SSTORE PUSH1 0x5 DUP1 DUP6 ADD DUP1 SLOAD SWAP2 DUP9 ADD SWAP2 SWAP1 SWAP2 SSTORE PUSH1 0x6 DUP1 DUP7 ADD DUP1 SLOAD SWAP2 DUP10 ADD SWAP2 SWAP1 SWAP2 SSTORE PUSH1 0x7 DUP1 DUP8 ADD DUP1 SLOAD SWAP2 DUP11 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP5 AND DUP2 OR DUP3 SSTORE DUP3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA8 SHL SUB NOT SWAP1 SWAP5 AND OR PUSH1 0x1 PUSH1 0xA0 SHL SWAP4 DUP5 SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO DUP5 MUL OR SWAP1 SSTORE PUSH1 0x8 DUP1 DUP10 ADD DUP1 SLOAD SWAP2 SWAP1 SWAP12 ADD SSTORE SWAP7 DUP11 SWAP1 SSTORE SWAP7 DUP10 SWAP1 SSTORE SWAP4 DUP9 SWAP1 SSTORE SWAP2 DUP8 SWAP1 SSTORE DUP7 SWAP1 SSTORE DUP6 SWAP1 SSTORE DUP5 SWAP1 SSTORE SWAP3 SWAP1 SWAP2 SSTORE DUP2 SLOAD PUSH1 0xFF PUSH1 0xA0 SHL NOT AND OR SWAP1 SSTORE POP DUP1 PUSH2 0x2504 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x23E1 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SLOAD SWAP3 DUP8 AND DUP3 MSTORE DUP2 KECCAK256 DUP1 SLOAD SWAP1 SWAP2 SWAP1 PUSH2 0x253F SWAP1 DUP5 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP4 SWAP1 SSTORE PUSH1 0xB SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD DUP1 ISZERO PUSH2 0x2644 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xB PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x2620 JUMPI DUP2 DUP5 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x25A6 JUMPI PUSH2 0x25A6 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 DUP5 SLOAD PUSH1 0x1 DUP2 DUP2 ADD DUP8 SSTORE SWAP6 DUP6 MSTORE SWAP2 SWAP1 SWAP4 KECCAK256 PUSH1 0x4 SWAP3 DUP4 MUL SWAP1 SWAP4 ADD DUP1 SLOAD SWAP2 SWAP1 SWAP3 MUL SWAP1 SWAP3 ADD SWAP2 DUP3 SSTORE DUP3 DUP2 ADD SLOAD SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 SSTORE PUSH1 0x2 DUP1 DUP4 ADD SLOAD SWAP1 DUP3 ADD SSTORE PUSH1 0x3 SWAP2 DUP3 ADD SLOAD SWAP2 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE DUP1 PUSH2 0x2618 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x258B JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xB PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH2 0x2642 SWAP2 PUSH2 0x4371 JUMP JUMPDEST POP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2819 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0x269A JUMPI PUSH2 0x269A PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD PUSH2 0x140 DUP2 ADD DUP3 MSTORE PUSH1 0x9 SWAP1 SWAP4 MUL SWAP1 SWAP2 ADD DUP1 SLOAD DUP4 MSTORE PUSH1 0x1 DUP2 ADD SLOAD SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x2 DUP4 ADD SLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x3 DUP3 ADD SLOAD PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x4 DUP3 ADD SLOAD PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0x5 DUP3 ADD SLOAD PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0x6 DUP3 ADD SLOAD PUSH1 0xC0 DUP3 ADD MSTORE PUSH1 0x7 DUP3 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0xE0 DUP4 ADD MSTORE PUSH1 0xFF PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV AND ISZERO ISZERO PUSH2 0x100 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x8 SWAP1 SWAP3 ADD SLOAD PUSH2 0x120 DUP3 ADD MSTORE SWAP2 POP PUSH2 0x2806 JUMPI PUSH1 0xE0 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SLOAD SWAP4 MLOAD SWAP1 MLOAD PUSH4 0x2C68BE3 PUSH1 0xE3 SHL DUP2 MSTORE SWAP1 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP1 SWAP3 SWAP1 SWAP2 AND SWAP1 PUSH4 0x16345F18 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2797 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 0x27BB SWAP2 SWAP1 PUSH2 0x4BA0 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP3 PUSH1 0x60 ADD MLOAD DUP4 PUSH1 0x0 ADD MLOAD PUSH2 0x27D3 SWAP2 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 PUSH2 0x27EA DUP4 DUP6 PUSH2 0x4AD4 JUMP JUMPDEST PUSH2 0x27F4 SWAP2 SWAP1 PUSH2 0x4AEB JUMP JUMPDEST SWAP1 POP PUSH2 0x2800 DUP2 DUP9 PUSH2 0x4B0D JUMP JUMPDEST SWAP7 POP POP POP POP JUMPDEST POP DUP1 PUSH2 0x2811 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x2668 JUMP JUMPDEST POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xB PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD DUP3 MLOAD DUP2 DUP6 MUL DUP2 ADD DUP6 ADD SWAP1 SWAP4 MSTORE DUP1 DUP4 MSTORE PUSH1 0x60 SWAP5 SWAP3 SWAP4 SWAP2 SWAP3 SWAP1 SWAP2 DUP5 ADD JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x22D4 JUMPI PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 SWAP1 DUP2 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD DUP3 MSTORE PUSH1 0x4 DUP7 MUL SWAP1 SWAP3 ADD DUP1 SLOAD DUP4 MSTORE PUSH1 0x1 DUP1 DUP3 ADD SLOAD DUP5 DUP7 ADD MSTORE PUSH1 0x2 DUP3 ADD SLOAD SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x3 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x60 DUP4 ADD MSTORE SWAP1 DUP4 MSTORE SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x2858 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP3 SWAP2 SWAP1 DUP5 SWAP1 DUP2 LT PUSH2 0x28E2 JUMPI PUSH2 0x28E2 PUSH2 0x4B4C JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x9 MUL ADD SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x6 ADD SLOAD TIMESTAMP PUSH2 0x2904 SWAP2 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST PUSH1 0x7 DUP4 ADD SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 DUP1 JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 LT ISZERO PUSH2 0xD70 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0x2963 JUMPI PUSH2 0x2963 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 PUSH1 0x2 SWAP1 SWAP2 MUL ADD DUP1 SLOAD PUSH1 0x1 DUP3 ADD SLOAD SWAP2 SWAP3 POP SWAP1 DUP2 DUP8 LT PUSH2 0x29AD JUMPI DUP8 SLOAD PUSH2 0x2710 SWAP1 PUSH2 0x2996 SWAP1 DUP4 SWAP1 PUSH2 0x4AD4 JUMP JUMPDEST PUSH2 0x29A0 SWAP2 SWAP1 PUSH2 0x4AEB JUMP JUMPDEST PUSH2 0x29AA SWAP1 DUP7 PUSH2 0x4B0D JUMP JUMPDEST SWAP5 POP JUMPDEST POP POP POP DUP1 PUSH2 0x29BA SWAP1 PUSH2 0x4B33 JUMP JUMPDEST SWAP1 POP PUSH2 0x2919 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x29F0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x14 DUP2 SWAP1 SSTORE PUSH1 0x12 SLOAD PUSH1 0x0 SWAP1 ISZERO PUSH2 0x2A40 JUMPI PUSH1 0x0 PUSH1 0xE PUSH1 0x0 PUSH1 0x1 PUSH1 0x12 SLOAD PUSH2 0x2A15 SWAP2 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH2 0x2A3C DUP5 PUSH1 0x13 SLOAD DUP4 PUSH1 0x1 ADD SLOAD DUP5 PUSH1 0x2 ADD SLOAD DUP8 PUSH2 0x4261 JUMP JUMPDEST SWAP2 POP POP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE DUP6 DUP2 MSTORE PUSH1 0x20 DUP1 DUP3 ADD DUP7 DUP2 MSTORE PUSH1 0x13 SLOAD DUP4 DUP6 ADD SWAP1 DUP2 MSTORE PUSH1 0x60 DUP1 DUP6 ADD DUP8 DUP2 MSTORE TIMESTAMP PUSH1 0x80 DUP8 ADD SWAP1 DUP2 MSTORE PUSH1 0x12 DUP1 SLOAD PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xE DUP9 MSTORE DUP10 SWAP1 KECCAK256 SWAP8 MLOAD DUP9 SSTORE SWAP5 MLOAD PUSH1 0x1 DUP9 ADD SSTORE SWAP3 MLOAD PUSH1 0x2 DUP8 ADD SSTORE MLOAD PUSH1 0x3 DUP7 ADD SSTORE SWAP1 MLOAD PUSH1 0x4 SWAP1 SWAP5 ADD SWAP4 SWAP1 SWAP4 SSTORE SLOAD DUP4 MLOAD DUP8 DUP2 MSTORE SWAP2 DUP3 ADD DUP6 SWAP1 MSTORE SWAP3 DUP2 ADD DUP6 SWAP1 MSTORE PUSH32 0xEADBEDB993DFCA23E4C79BF4FA5FE531C2E0E926258FABB8445E8BC5C472780F SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x12 DUP1 SLOAD SWAP1 PUSH1 0x0 PUSH2 0x2AEE DUP4 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x2B28 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH2 0x2B38 DUP7 DUP7 DUP7 DUP7 DUP7 DUP7 TIMESTAMP TIMESTAMP PUSH2 0x2015 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x15 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP5 DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH2 0x2B78 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4BE2 JUMP JUMPDEST PUSH1 0x2 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x2BC5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x2737BA103A34329039B2B63632B9 PUSH1 0x91 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x17 SLOAD PUSH1 0x0 SWAP1 PUSH2 0x2710 SWAP1 PUSH2 0x2BDB SWAP1 DUP5 PUSH2 0x4AD4 JUMP JUMPDEST PUSH2 0x2BE5 SWAP2 SWAP1 PUSH2 0x4AEB JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2BF3 DUP3 DUP5 PUSH2 0x4B20 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP3 SWAP4 POP DUP4 SWAP3 SWAP1 SWAP2 SWAP1 PUSH2 0x2C17 SWAP1 DUP5 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x13 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2C30 SWAP2 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP DUP2 ISZERO PUSH2 0x2C77 JUMPI PUSH1 0x40 DUP1 MLOAD DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP8 SWAP1 MSTORE CALLER SWAP2 PUSH32 0x4725A4D4DE9BFF212D0885095E27515072F73F427DF55E52F37F241321EF88F9 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x15 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP10 DUP5 MSTORE DUP3 MSTORE DUP1 DUP4 KECCAK256 DUP4 DUP2 SSTORE PUSH1 0x1 DUP1 DUP3 ADD DUP6 SWAP1 SSTORE PUSH1 0x2 DUP3 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE PUSH1 0x3 SWAP1 SWAP2 ADD DUP5 SWAP1 SSTORE SWAP4 DUP4 MSTORE PUSH1 0x1A DUP3 MSTORE DUP1 DUP4 KECCAK256 DUP10 DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD PUSH1 0x19 SLOAD SWAP1 SWAP3 PUSH2 0x2CD7 SWAP2 PUSH2 0x4B20 JUMP JUMPDEST SWAP1 POP DUP1 DUP3 EQ PUSH2 0x2D98 JUMPI PUSH1 0x0 PUSH1 0x19 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x2CF5 JUMPI PUSH2 0x2CF5 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x2 SWAP1 SWAP3 MUL ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE PUSH1 0x1 ADD SLOAD SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x19 DUP1 SLOAD SWAP2 SWAP3 POP DUP3 SWAP2 DUP6 SWAP1 DUP2 LT PUSH2 0x2D41 JUMPI PUSH2 0x2D41 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 DUP5 MLOAD PUSH1 0x2 SWAP4 SWAP1 SWAP4 MUL ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND OR DUP2 SSTORE SWAP4 DUP2 ADD MLOAD PUSH1 0x1 SWAP1 SWAP5 ADD SWAP4 SWAP1 SWAP4 SSTORE DUP4 MLOAD AND DUP2 MSTORE PUSH1 0x1A DUP3 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP4 DUP4 ADD MLOAD DUP3 MSTORE SWAP3 SWAP1 SWAP2 MSTORE KECCAK256 DUP3 SWAP1 SSTORE JUMPDEST PUSH1 0x19 DUP1 SLOAD DUP1 PUSH2 0x2DA9 JUMPI PUSH2 0x2DA9 PUSH2 0x4C0D JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP1 DUP3 KECCAK256 PUSH1 0x2 PUSH1 0x0 NOT SWAP5 SWAP1 SWAP5 ADD SWAP4 DUP5 MUL ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND DUP2 SSTORE PUSH1 0x1 ADD DUP3 SWAP1 SSTORE SWAP2 SWAP1 SWAP3 SSTORE CALLER DUP1 DUP4 MSTORE PUSH1 0x1A DUP3 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP12 DUP6 MSTORE DUP4 MSTORE DUP1 DUP5 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE SWAP2 MLOAD DUP10 DUP2 MSTORE PUSH32 0x73D12DEC3EB3B445B6C9FEB2FD559BA7C852C525BC1E59D8F7FF760C55DF041D SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 DUP4 GT ISZERO PUSH2 0x2E6C 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 0x496E76616C69642072616E6765 PUSH1 0x98 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x12 SLOAD DUP3 LT PUSH2 0x2EB3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x13 PUSH1 0x24 DUP3 ADD MSTORE PUSH19 0x115B9908195C1BD8DA081B9BDD08199BDD5B99 PUSH1 0x6A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2EBF DUP5 DUP5 PUSH2 0x4B20 JUMP JUMPDEST PUSH2 0x2ECA SWAP1 PUSH1 0x1 PUSH2 0x4B0D JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2EE6 JUMPI PUSH2 0x2EE6 PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2F49 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x2F36 PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x2F04 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x2FE0 JUMPI PUSH1 0xE PUSH1 0x0 PUSH2 0x2F65 DUP4 DUP10 PUSH2 0x4B0D JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE POP POP DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x2FC2 JUMPI PUSH2 0x2FC2 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x2FD8 SWAP1 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x2F4F JUMP JUMPDEST POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1B DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x2FF9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 PUSH1 0x6 SWAP1 SWAP2 MUL ADD DUP1 SLOAD PUSH1 0x1 DUP3 ADD SLOAD PUSH1 0x2 DUP4 ADD SLOAD PUSH1 0x3 DUP5 ADD SLOAD PUSH1 0x4 DUP6 ADD SLOAD PUSH1 0x5 SWAP1 SWAP6 ADD SLOAD SWAP4 SWAP6 POP SWAP2 SWAP4 SWAP1 SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND SWAP2 AND DUP7 JUMP JUMPDEST PUSH2 0x3070 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x15 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP4 MSTORE SWAP3 DUP2 MSTORE SWAP1 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0x80 DUP2 ADD DUP5 MSTORE DUP2 SLOAD DUP2 MSTORE PUSH1 0x1 DUP3 ADD SLOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x2 DUP2 ADD SLOAD SWAP1 SWAP4 AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x3 SWAP1 SWAP2 ADD SLOAD PUSH1 0x60 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH2 0x30F0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 LT ISZERO PUSH2 0x1179 JUMPI DUP4 DUP3 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x3126 JUMPI PUSH2 0x3126 PUSH2 0x4B4C JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 ADD SLOAD SUB PUSH2 0x318F JUMPI DUP2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x314F JUMPI PUSH2 0x314F PUSH2 0x4B4C JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP3 POP POP POP PUSH2 0xD77 JUMP JUMPDEST DUP1 PUSH2 0x3199 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x310A JUMP JUMPDEST PUSH2 0x31D3 PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x12 SLOAD DUP3 LT PUSH2 0x3216 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xF PUSH1 0x24 DUP3 ADD MSTORE PUSH15 0x115C1BD8DA081B9BDD08199BDD5B99 PUSH1 0x8A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xE PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0xA0 DUP2 ADD DUP5 MSTORE DUP2 SLOAD DUP2 MSTORE PUSH1 0x1 DUP3 ADD SLOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x2 DUP2 ADD SLOAD SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x3 DUP3 ADD SLOAD PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x4 SWAP1 SWAP2 ADD SLOAD PUSH1 0x80 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x4 PUSH1 0x20 MSTORE DUP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x3281 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 PUSH1 0x9 SWAP1 SWAP2 MUL ADD DUP1 SLOAD PUSH1 0x1 DUP3 ADD SLOAD PUSH1 0x2 DUP4 ADD SLOAD PUSH1 0x3 DUP5 ADD SLOAD PUSH1 0x4 DUP6 ADD SLOAD PUSH1 0x5 DUP7 ADD SLOAD PUSH1 0x6 DUP8 ADD SLOAD PUSH1 0x7 DUP9 ADD SLOAD PUSH1 0x8 SWAP1 SWAP9 ADD SLOAD SWAP7 SWAP10 POP SWAP5 SWAP8 POP SWAP3 SWAP6 SWAP2 SWAP5 SWAP1 SWAP4 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND SWAP2 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 DUP11 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x60 SWAP3 DUP4 SWAP3 SWAP1 SWAP2 DUP6 SWAP1 DUP2 LT PUSH2 0x3314 JUMPI PUSH2 0x3314 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 PUSH1 0x7 PUSH1 0x9 SWAP1 SWAP4 MUL ADD SWAP2 DUP3 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 DUP5 MSTORE PUSH1 0x5 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP4 KECCAK256 SLOAD SWAP2 SWAP4 POP SWAP2 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x335C JUMPI PUSH2 0x335C PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3385 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x33A2 JUMPI PUSH2 0x33A2 PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x33CB JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x3478 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0x3403 JUMPI PUSH2 0x3403 PUSH2 0x4B4C JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD DUP8 PUSH1 0x6 ADD SLOAD PUSH2 0x3427 SWAP2 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x3439 JUMPI PUSH2 0x3439 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP1 PUSH1 0x1 ADD SLOAD DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x345C JUMPI PUSH2 0x345C PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE POP PUSH2 0x3471 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP1 POP PUSH2 0x33D1 JUMP JUMPDEST POP SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH2 0x3498 DUP6 PUSH2 0xBAF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 SWAP2 POP PUSH2 0x34BF SWAP1 DUP3 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 SWAP5 POP SWAP1 SWAP3 POP SWAP1 POP JUMPDEST SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x3517 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x9 SSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD DUP3 MLOAD DUP2 DUP6 MUL DUP2 ADD DUP6 ADD SWAP1 SWAP4 MSTORE DUP1 DUP4 MSTORE PUSH1 0x60 SWAP5 SWAP3 SWAP4 SWAP2 SWAP3 SWAP1 SWAP2 DUP5 ADD JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x22D4 JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD SLOAD DUP2 MSTORE POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x3554 JUMP JUMPDEST PUSH1 0x11 PUSH1 0x20 MSTORE DUP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x35C0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 PUSH1 0x3 SWAP1 SWAP2 MUL ADD DUP1 SLOAD PUSH1 0x1 DUP3 ADD SLOAD PUSH1 0x2 SWAP1 SWAP3 ADD SLOAD SWAP1 SWAP4 POP SWAP1 SWAP2 POP DUP4 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x3615 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0xA SSTORE JUMP JUMPDEST PUSH1 0x1B SLOAD PUSH1 0x60 SWAP1 DUP4 LT PUSH2 0x366E 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 0x537461727420696E646578206F7574206F6620626F756E647300000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x367A DUP4 DUP6 PUSH2 0x4B0D JUMP JUMPDEST PUSH1 0x1B SLOAD SWAP1 SWAP2 POP DUP2 GT ISZERO PUSH2 0x368C JUMPI POP PUSH1 0x1B SLOAD JUMPDEST PUSH1 0x0 PUSH2 0x3698 DUP6 DUP4 PUSH2 0x4B20 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x36AF JUMPI PUSH2 0x36AF PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x372B JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x3718 PUSH1 0x40 MLOAD DUP1 PUSH1 0xC0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x36CD JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP DUP5 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x2FE0 JUMPI PUSH1 0x1B DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x374B JUMPI PUSH2 0x374B PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD PUSH1 0xC0 DUP2 ADD DUP3 MSTORE PUSH1 0x6 SWAP1 SWAP4 MUL SWAP1 SWAP2 ADD DUP1 SLOAD DUP4 MSTORE PUSH1 0x1 DUP2 ADD SLOAD SWAP4 DUP4 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x2 DUP4 ADD SLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x3 DUP3 ADD SLOAD PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x4 DUP3 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x5 SWAP1 SWAP3 ADD SLOAD SWAP1 SWAP2 AND PUSH1 0xA0 DUP3 ADD MSTORE DUP3 PUSH2 0x37B9 DUP9 DUP5 PUSH2 0x4B20 JUMP JUMPDEST DUP2 MLOAD DUP2 LT PUSH2 0x37C9 JUMPI PUSH2 0x37C9 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x37DF SWAP1 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3730 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD PUSH1 0x10 SWAP1 SWAP3 MSTORE DUP3 KECCAK256 SLOAD PUSH1 0x12 SLOAD PUSH1 0x60 SWAP4 DUP5 SWAP4 SWAP1 SWAP3 SWAP1 SWAP2 DUP4 SWAP1 PUSH2 0x3824 SWAP1 DUP4 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 SUB PUSH2 0x3855 JUMPI POP POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 DUP2 MSTORE DUP3 DUP5 ADD SWAP1 SWAP4 MSTORE SWAP1 SWAP6 POP SWAP1 SWAP4 POP SWAP2 POP PUSH2 0x34E1 SWAP1 POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x386D JUMPI PUSH2 0x386D PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3896 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP6 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x38B1 JUMPI PUSH2 0x38B1 PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x38DA JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP5 POP PUSH1 0x0 DUP3 JUMPDEST PUSH1 0x12 SLOAD DUP2 LT ISZERO PUSH2 0x399A JUMPI DUP5 ISZERO PUSH2 0x3988 JUMPI PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x3 ADD SLOAD PUSH2 0x2710 SWAP1 PUSH2 0x3911 SWAP1 DUP9 PUSH2 0x4AD4 JUMP JUMPDEST PUSH2 0x391B SWAP2 SWAP1 PUSH2 0x4AEB JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x3986 JUMPI DUP2 DUP10 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x3936 JUMPI PUSH2 0x3936 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP1 DUP9 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x3955 JUMPI PUSH2 0x3955 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH2 0x396A DUP2 DUP9 PUSH2 0x4B0D JUMP JUMPDEST SWAP7 POP PUSH2 0x3976 DUP2 DUP8 PUSH2 0x4B20 JUMP JUMPDEST SWAP6 POP DUP3 PUSH2 0x3982 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP4 POP POP JUMPDEST POP JUMPDEST DUP1 PUSH2 0x3992 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x38E1 JUMP JUMPDEST POP DUP2 DUP2 LT ISZERO PUSH2 0x3AC2 JUMPI PUSH1 0x0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x39BD JUMPI PUSH2 0x39BD PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x39E6 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3A03 JUMPI PUSH2 0x3A03 PUSH2 0x4B8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3A2C JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x3ABB JUMPI DUP10 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x3A4C JUMPI PUSH2 0x3A4C PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3A66 JUMPI PUSH2 0x3A66 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP9 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x3A84 JUMPI PUSH2 0x3A84 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3A9E JUMPI PUSH2 0x3A9E PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0x3AB3 DUP2 PUSH2 0x4B33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3A32 JUMP JUMPDEST POP SWAP1 SWAP8 POP SWAP6 POP JUMPDEST POP POP POP POP SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH2 0x3AD5 PUSH2 0x41E0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x15 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP5 DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH2 0x3B16 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4BE2 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SUB PUSH2 0x3B67 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x16 PUSH1 0x24 DUP3 ADD MSTORE PUSH22 0x43616E6E6F7420627579206F776E206C697374696E67 PUSH1 0x50 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 DUP3 ADD SLOAD PUSH1 0x3 DUP4 ADD SLOAD PUSH1 0x0 DUP3 DUP5 GT PUSH2 0x3B83 JUMPI PUSH1 0x0 PUSH2 0x3B8D JUMP JUMPDEST PUSH2 0x3B8D DUP4 DUP6 PUSH2 0x4B20 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x3B9C PUSH1 0x2 DUP4 PUSH2 0x4AEB JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x3BAA DUP3 DUP8 PUSH2 0x4B20 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP3 SWAP4 POP DUP4 SWAP3 SWAP1 SWAP2 SWAP1 PUSH2 0x3BCE SWAP1 DUP5 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x13 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x3BE7 SWAP2 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP8 SWAP3 SWAP1 PUSH2 0x3C14 SWAP1 DUP5 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1B PUSH1 0x40 MLOAD DUP1 PUSH1 0xC0 ADD PUSH1 0x40 MSTORE DUP1 DUP7 DUP2 MSTORE PUSH1 0x20 ADD TIMESTAMP DUP2 MSTORE PUSH1 0x20 ADD DUP9 DUP2 MSTORE PUSH1 0x20 ADD DUP8 DUP2 MSTORE PUSH1 0x20 ADD DUP12 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x6 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SSTORE PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD 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 PUSH1 0xA0 DUP3 ADD MLOAD DUP2 PUSH1 0x5 ADD 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 POP POP PUSH1 0x15 PUSH1 0x0 DUP11 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 PUSH1 0x0 DUP10 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP1 DUP3 ADD PUSH1 0x0 SWAP1 SSTORE PUSH1 0x1 DUP3 ADD PUSH1 0x0 SWAP1 SSTORE PUSH1 0x2 DUP3 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 SSTORE PUSH1 0x3 DUP3 ADD PUSH1 0x0 SWAP1 SSTORE POP POP PUSH1 0x0 PUSH1 0x1A 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 PUSH1 0x0 DUP11 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP PUSH1 0x0 PUSH1 0x1 PUSH1 0x19 DUP1 SLOAD SWAP1 POP PUSH2 0x3DC3 SWAP2 SWAP1 PUSH2 0x4B20 JUMP JUMPDEST SWAP1 POP DUP1 DUP3 EQ PUSH2 0x3E84 JUMPI PUSH1 0x0 PUSH1 0x19 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x3DE1 JUMPI PUSH2 0x3DE1 PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP2 DUP3 SWAP1 KECCAK256 PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x2 SWAP1 SWAP3 MUL ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE PUSH1 0x1 ADD SLOAD SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x19 DUP1 SLOAD SWAP2 SWAP3 POP DUP3 SWAP2 DUP6 SWAP1 DUP2 LT PUSH2 0x3E2D JUMPI PUSH2 0x3E2D PUSH2 0x4B4C JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 DUP5 MLOAD PUSH1 0x2 SWAP4 SWAP1 SWAP4 MUL ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND OR DUP2 SSTORE SWAP4 DUP2 ADD MLOAD PUSH1 0x1 SWAP1 SWAP5 ADD SWAP4 SWAP1 SWAP4 SSTORE DUP4 MLOAD AND DUP2 MSTORE PUSH1 0x1A DUP3 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP4 DUP4 ADD MLOAD DUP3 MSTORE SWAP3 SWAP1 SWAP2 MSTORE KECCAK256 DUP3 SWAP1 SSTORE JUMPDEST PUSH1 0x19 DUP1 SLOAD DUP1 PUSH2 0x3E95 JUMPI PUSH2 0x3E95 PUSH2 0x4C0D JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP1 DUP3 KECCAK256 PUSH1 0x2 PUSH1 0x0 NOT SWAP5 SWAP1 SWAP5 ADD SWAP4 DUP5 MUL ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND DUP2 SSTORE PUSH1 0x1 ADD DUP3 SWAP1 SSTORE SWAP2 SWAP1 SWAP3 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP14 AND DUP1 DUP4 MSTORE PUSH1 0x1A DUP3 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP15 DUP6 MSTORE DUP4 MSTORE DUP1 DUP5 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE DUP3 MLOAD DUP11 DUP2 MSTORE SWAP2 DUP3 ADD DUP14 SWAP1 MSTORE CALLER SWAP3 SWAP1 SWAP2 PUSH32 0x7BB39D095B04A9986ED34ADF14D74C33294D0A9E807F02BF634D532507422EBA SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP POP POP POP PUSH2 0x162E PUSH1 0x1 PUSH1 0x0 SSTORE JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x3F62 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3F88 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4BB9 JUMP JUMPDEST PUSH1 0x0 DUP2 GT PUSH2 0x3FC9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x125B9D985B1A5908185B5BDD5B9D PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x13 SLOAD DUP3 SWAP2 PUSH2 0x3FF0 SWAP2 PUSH2 0x4B20 JUMP JUMPDEST PUSH2 0x3FFA SWAP2 SWAP1 PUSH2 0x4B0D JUMP JUMPDEST PUSH1 0x13 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP4 SWAP1 SSTORE MLOAD PUSH32 0xEC7E3594982826A1F90C8FC76513357B83A691B7F4E38B8BE04F3D40F9B15839 SWAP1 PUSH2 0x404A SWAP1 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x15 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP6 DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP1 SLOAD PUSH2 0x408E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4BE2 JUMP JUMPDEST PUSH1 0x2 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x40DB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x2737BA103A34329039B2B63632B9 PUSH1 0x91 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x0 DUP3 GT PUSH2 0x4120 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 0x496E76616C69642073616C65207072696365 PUSH1 0x70 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD DUP3 SWAP1 SSTORE PUSH1 0x40 DUP1 MLOAD DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP6 SWAP1 MSTORE CALLER SWAP2 PUSH32 0x8E79B7BA8DAB5EBFA59B9C6AF1743C3EF14863680B3CC5AC837F8D636F76031C SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x4196 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4B62 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x41BC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDD1 SWAP1 PUSH2 0x4BB9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SLOAD SUB PUSH2 0x4203 JUMPI PUSH1 0x40 MLOAD PUSH4 0x3EE5AEB5 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x0 SSTORE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP1 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 MLOAD DUP1 DUP4 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0x64 SWAP1 SWAP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH4 0xA9059CBB PUSH1 0xE0 SHL OR SWAP1 MSTORE PUSH2 0x425C SWAP1 DUP5 SWAP1 PUSH2 0x42FA JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 ISZERO DUP1 PUSH2 0x426E JUMPI POP DUP5 ISZERO JUMPDEST ISZERO PUSH2 0x427B JUMPI POP PUSH1 0x0 PUSH2 0x42F1 JUMP JUMPDEST PUSH1 0x0 DUP6 PUSH2 0x428A DUP9 PUSH2 0x2710 PUSH2 0x4AD4 JUMP JUMPDEST PUSH2 0x4294 SWAP2 SWAP1 PUSH2 0x4AEB JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP5 PUSH2 0x42A5 DUP8 PUSH2 0x2710 PUSH2 0x4AD4 JUMP JUMPDEST PUSH2 0x42AF SWAP2 SWAP1 PUSH2 0x4AEB JUMP JUMPDEST SWAP1 POP DUP1 DUP3 GT PUSH2 0x42C3 JUMPI PUSH1 0x0 SWAP3 POP POP POP PUSH2 0x42F1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x42CF DUP3 DUP5 PUSH2 0x4B20 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2710 PUSH2 0x42E0 DUP8 DUP5 PUSH2 0x4AD4 JUMP JUMPDEST PUSH2 0x42EA SWAP2 SWAP1 PUSH2 0x4AEB JUMP JUMPDEST SWAP5 POP POP POP POP POP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 PUSH1 0x0 DUP5 MLOAD PUSH1 0x20 DUP7 ADD PUSH1 0x0 DUP9 GAS CALL DUP1 PUSH2 0x431D JUMPI PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST POP POP PUSH1 0x0 MLOAD RETURNDATASIZE SWAP2 POP DUP2 ISZERO PUSH2 0x4335 JUMPI DUP1 PUSH1 0x1 EQ ISZERO PUSH2 0x4342 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0x436B JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xDD1 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP DUP1 SLOAD PUSH1 0x0 DUP3 SSTORE PUSH1 0x4 MUL SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x11BE SWAP2 SWAP1 JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x43C1 JUMPI PUSH1 0x0 DUP1 DUP3 SSTORE PUSH1 0x1 DUP3 ADD DUP2 SWAP1 SSTORE PUSH1 0x2 DUP3 ADD SSTORE PUSH1 0x3 DUP2 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE PUSH1 0x4 ADD PUSH2 0x438E JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x43DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x43F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43FC DUP3 PUSH2 0x43C5 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4416 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x441F DUP4 PUSH2 0x43C5 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x443F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x4458 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x446F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x3482 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x449D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x44B3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x44BF DUP6 DUP3 DUP7 ADD PUSH2 0x4446 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP1 DUP6 ADD SWAP5 POP DUP1 DUP5 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x44FB JUMPI DUP2 MLOAD DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x44DF JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x0 PUSH2 0x4519 PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0x44CB JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x452B DUP2 DUP7 PUSH2 0x44CB JUMP JUMPDEST SWAP2 POP POP DUP3 PUSH1 0x40 DUP4 ADD MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x40 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4552 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH2 0x4569 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4575 DUP9 DUP4 DUP10 ADD PUSH2 0x4446 JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x458E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x459B DUP8 DUP3 DUP9 ADD PUSH2 0x4446 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x45BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP POP DUP1 CALLDATALOAD SWAP3 PUSH1 0x20 SWAP1 SWAP2 ADD CALLDATALOAD SWAP2 POP JUMP JUMPDEST PUSH1 0x60 DUP1 DUP3 MSTORE DUP5 MLOAD SWAP1 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x80 SWAP1 DUP2 DUP5 ADD SWAP1 PUSH1 0x20 DUP1 DUP10 ADD DUP6 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x460C JUMPI DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 MSTORE SWAP4 DUP3 ADD SWAP4 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x45E7 JUMP JUMPDEST POP POP DUP6 DUP4 SUB DUP2 DUP8 ADD MSTORE PUSH2 0x461F DUP4 DUP10 PUSH2 0x44CB JUMP JUMPDEST DUP7 DUP2 SUB PUSH1 0x40 DUP9 ADD MSTORE DUP8 MLOAD DUP1 DUP3 MSTORE DUP3 DUP10 ADD SWAP5 POP SWAP1 DUP3 ADD SWAP3 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x4683 JUMPI PUSH2 0x4673 DUP5 DUP7 MLOAD DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP1 DUP3 ADD MLOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x40 DUP1 DUP3 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 DUP4 ADD MSTORE PUSH1 0x60 SWAP1 DUP2 ADD MLOAD SWAP2 ADD MSTORE JUMP JUMPDEST SWAP4 DUP3 ADD SWAP4 SWAP3 DUP6 ADD SWAP3 PUSH1 0x1 ADD PUSH2 0x4639 JUMP JUMPDEST POP SWAP2 SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x46A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x46AE DUP4 PUSH2 0x43C5 JUMP JUMPDEST SWAP2 POP PUSH2 0x46BC PUSH1 0x20 DUP5 ADD PUSH2 0x43C5 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH2 0x100 DUP10 DUP12 SUB SLT ISZERO PUSH2 0x46E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x46EB DUP10 PUSH2 0x43C5 JUMP JUMPDEST SWAP8 POP PUSH1 0x20 DUP10 ADD CALLDATALOAD SWAP7 POP PUSH1 0x40 DUP10 ADD CALLDATALOAD SWAP6 POP PUSH1 0x60 DUP10 ADD CALLDATALOAD SWAP5 POP PUSH2 0x470E PUSH1 0x80 DUP11 ADD PUSH2 0x43C5 JUMP JUMPDEST SWAP8 SWAP11 SWAP7 SWAP10 POP SWAP5 SWAP8 SWAP4 SWAP7 SWAP6 PUSH1 0xA0 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0xC0 DUP6 ADD CALLDATALOAD SWAP5 PUSH1 0xE0 ADD CALLDATALOAD SWAP4 POP SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x40 SWAP1 DUP2 DUP6 ADD SWAP1 DUP7 DUP5 ADD DUP6 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x47D1 JUMPI DUP2 MLOAD DUP1 MLOAD DUP6 MSTORE DUP7 DUP2 ADD MLOAD DUP8 DUP7 ADD MSTORE DUP6 DUP2 ADD MLOAD DUP7 DUP7 ADD MSTORE PUSH1 0x60 DUP1 DUP3 ADD MLOAD SWAP1 DUP7 ADD MSTORE PUSH1 0x80 DUP1 DUP3 ADD MLOAD SWAP1 DUP7 ADD MSTORE PUSH1 0xA0 DUP1 DUP3 ADD MLOAD SWAP1 DUP7 ADD MSTORE PUSH1 0xC0 DUP1 DUP3 ADD MLOAD SWAP1 DUP7 ADD MSTORE PUSH1 0xE0 DUP1 DUP3 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 DUP7 ADD MSTORE PUSH2 0x100 DUP1 DUP3 ADD MLOAD ISZERO ISZERO SWAP1 DUP7 ADD MSTORE PUSH2 0x120 SWAP1 DUP2 ADD MLOAD SWAP1 DUP6 ADD MSTORE PUSH2 0x140 SWAP1 SWAP4 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x474D JUMP JUMPDEST POP SWAP2 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x40 SWAP1 DUP2 DUP6 ADD SWAP1 DUP7 DUP5 ADD DUP6 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x47D1 JUMPI DUP2 MLOAD DUP1 MLOAD DUP6 MSTORE DUP7 DUP2 ADD MLOAD DUP8 DUP7 ADD MSTORE DUP6 DUP2 ADD MLOAD DUP7 DUP7 ADD MSTORE PUSH1 0x60 SWAP1 DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 DUP6 ADD MSTORE PUSH1 0x80 SWAP1 SWAP4 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x47FB JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4853 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP POP DUP2 CALLDATALOAD SWAP4 PUSH1 0x20 DUP4 ADD CALLDATALOAD SWAP4 POP PUSH1 0x40 SWAP1 SWAP3 ADD CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x4883 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x488C DUP8 PUSH2 0x43C5 JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH1 0x60 DUP8 ADD CALLDATALOAD SWAP3 POP PUSH2 0x48AF PUSH1 0x80 DUP9 ADD PUSH2 0x43C5 JUMP JUMPDEST SWAP2 POP PUSH1 0xA0 DUP8 ADD CALLDATALOAD SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x492F JUMPI PUSH2 0x491C DUP4 DUP6 MLOAD DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE POP POP JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 PUSH1 0xA0 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x48DE JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP4 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP4 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP2 ADD PUSH2 0xD77 JUMP JUMPDEST DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP4 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP2 ADD PUSH2 0xD77 JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD PUSH2 0xD77 DUP3 DUP5 DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x49DC PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x44CB JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x42F1 DUP2 DUP6 PUSH2 0x44CB JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x492F JUMPI PUSH2 0x4A31 DUP4 DUP6 MLOAD DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP1 DUP3 ADD MLOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x40 SWAP1 DUP2 ADD MLOAD SWAP2 ADD MSTORE JUMP JUMPDEST SWAP3 DUP5 ADD SWAP3 PUSH1 0x60 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x4A0A JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x40 SWAP1 DUP2 DUP6 ADD SWAP1 DUP7 DUP5 ADD DUP6 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x47D1 JUMPI DUP2 MLOAD DUP1 MLOAD DUP6 MSTORE DUP7 DUP2 ADD MLOAD DUP8 DUP7 ADD MSTORE DUP6 DUP2 ADD MLOAD DUP7 DUP7 ADD MSTORE PUSH1 0x60 DUP1 DUP3 ADD MLOAD SWAP1 DUP7 ADD MSTORE PUSH1 0x80 DUP1 DUP3 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 DUP8 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xA0 SWAP2 DUP3 ADD MLOAD AND SWAP1 DUP6 ADD MSTORE PUSH1 0xC0 SWAP1 SWAP4 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x4A61 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0xD77 JUMPI PUSH2 0xD77 PUSH2 0x4ABE JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x4B08 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 DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xD77 JUMPI PUSH2 0xD77 PUSH2 0x4ABE JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0xD77 JUMPI PUSH2 0xD77 PUSH2 0x4ABE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP3 ADD PUSH2 0x4B45 JUMPI PUSH2 0x4B45 PUSH2 0x4ABE JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0xE SWAP1 DUP3 ADD MSTORE PUSH14 0x139BDD08185D5D1A1BDC9A5E9959 PUSH1 0x92 SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4BB2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0xF SWAP1 DUP3 ADD MSTORE PUSH15 0x496E76616C69642061646472657373 PUSH1 0x88 SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x11 SWAP1 DUP3 ADD MSTORE PUSH17 0x131A5CDD1A5B99C81B9BDD08199BDD5B99 PUSH1 0x7A SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x5D 0xEB PUSH21 0xD788A03E6D506F98684EA6DE969AFE71445FA5D3A0 PUSH24 0x7633F07EE655C64736F6C63430008140033000000000000 ","sourceMap":"414:38226:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10604:553;;;;;;:::i;:::-;;:::i;:::-;;;529:25:15;;;517:2;502:18;10604:553:12;;;;;;;;2600:47;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;2600:47:12;;;;;;-1:-1:-1;;;;;838:32:15;;;820:51;;808:2;793:18;2600:47:12;674:203:15;2392:38:12;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1143:14:15;;1136:22;1118:41;;1106:2;1091:18;2392:38:12;978:187:15;2835:26:12;;;;;;2727:46;;;;;;:::i;:::-;;;;;;;;;;;;;;31618:825;;;;;;:::i;:::-;;:::i;12124:826::-;;;:::i;:::-;;3267:47;;;;;;:::i;:::-;;;;;;;;;;;;;;6157:202;;;;;;:::i;:::-;;:::i;2800:29::-;;;;;;7748:109;;;;;;:::i;:::-;;:::i;11234:215::-;;;;;;:::i;:::-;;:::i;13015:1019::-;;;;;;:::i;:::-;;:::i;3581:29::-;;;;;;7191:115;;;;;;:::i;:::-;;:::i;2436:46::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;33030:1137;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;6848:208::-;;;;;;:::i;:::-;;:::i;3793:67::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3793:67:12;;;;;;;;;;;;;;;3640:25:15;;;3696:2;3681:18;;3674:34;;;;-1:-1:-1;;;;;3744:32:15;3739:2;3724:18;;3717:60;3808:2;3793:18;;3786:34;3627:3;3612:19;;3409:417;4190:35:12;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4023:32:15;;;4005:51;;4087:2;4072:18;;4065:34;;;;3978:18;4190:35:12;3831:274:15;25731:801:12;;;;;;:::i;:::-;;:::i;7506:107::-;;;;;;:::i;:::-;;:::i;2539:55::-;;;;;;:::i;:::-;;:::i;:::-;;;;4284:25:15;;;4340:2;4325:18;;4318:34;;;;4257:18;2539:55:12;4110:248:15;15052:829:12;;;;;;:::i;:::-;;:::i;19260:1378::-;;;;;;:::i;:::-;;:::i;2653:48::-;;;;;;:::i;:::-;;;;;;;;;;;;;;37971:119;38058:18;:25;37971:119;;35978:689;;;:::i;:::-;;;;;;;;;:::i;7062:123::-;;;;;;:::i;:::-;;:::i;4003:30::-;;;;;;6000:151;;;;;;:::i;:::-;;:::i;27255:636::-;;;;;;:::i;:::-;;:::i;32522:114::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;28170:1785::-;;;;;;:::i;:::-;;:::i;34399:720::-;;;;;;:::i;:::-;;:::i;35317:146::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;38236:126::-;;;;;;:::i;:::-;-1:-1:-1;;;;;38332:23:12;38306:7;38332:23;;;:17;:23;;;;;;;38236:126;29991:737;;;;;;:::i;:::-;;:::i;3117:61::-;;;;;;:::i;:::-;;;;;;;;;;;;;;9338:1166;;;;;;:::i;:::-;;:::i;2366:20::-;;;;;-1:-1:-1;;;;;2366:20:12;;;4102:52;;;;;;:::i;:::-;;;;;;;;;;;;;;26993:256;;;;;;:::i;:::-;;:::i;20787:1493::-;;;;;;:::i;:::-;;:::i;16829:464::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4389:46::-;;;;;;:::i;:::-;;:::i;:::-;;;;12791:25:15;;;12847:2;12832:18;;12825:34;;;;12875:18;;;12868:34;;;;12933:2;12918:18;;12911:34;-1:-1:-1;;;;;13020:15:15;;;13014:3;12999:19;;12992:44;13073:15;12972:3;13052:19;;13045:44;12778:3;12763:19;4389:46:12;12504:591:15;36842:147:12;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3665:29::-;;;;;;16168:383;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;16601:173::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2488:45::-;;;;;;:::i;:::-;;:::i;:::-;;;;14481:25:15;;;14537:2;14522:18;;14515:34;;;;14565:18;;;14558:34;;;;14623:2;14608:18;;14601:34;;;;14666:3;14651:19;;14644:35;;;;14710:3;14695:19;;14688:35;14754:3;14739:19;;14732:35;-1:-1:-1;;;;;14804:32:15;14798:3;14783:19;;14776:61;14881:14;14874:22;14868:3;14853:19;;14846:51;14928:3;14913:19;;14906:35;14468:3;14453:19;2488:45:12;14088:859:15;30734:878:12;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;38489:148::-;38569:3;38489:148;;11512:538;;;;;;:::i;:::-;;:::i;:::-;;;;15624:25:15;;;15680:2;15665:18;;15658:34;;;;15708:18;;;15701:34;15612:2;15597:18;11512:538:12;15422:319:15;6626:111:12;;;;;;:::i;:::-;;:::i;3222:39::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16005:25:15;;;16061:2;16046:18;;16039:34;;;;16089:18;;;16082:34;;;;16147:2;16132:18;;16125:34;16190:3;16175:19;;16168:35;15992:3;15977:19;3222:39:12;15746:463:15;15972:135:12;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3453:57::-;;;;;;:::i;:::-;;:::i;6743:99::-;;;;;;:::i;:::-;;:::i;37199:653::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3358:55::-;;;;;;:::i;:::-;;;;;;;;;;;;;;35609:121;35695:28;;35609:121;;17363:1664;;;;;;:::i;:::-;;:::i;3546:29::-;;;;;;23069:2424;;;;;;:::i;:::-;;:::i;14361:432::-;;;;;;:::i;:::-;;:::i;22434:480::-;;;;;;:::i;:::-;;:::i;3901:29::-;;;;;;6453:144;;;;;;:::i;:::-;;:::i;10604:553::-;-1:-1:-1;;;;;10731:18:12;;10672:22;10731:18;;;:12;:18;;;;;;;;;10780:20;:26;;;;;;;10825:295;10858:14;;10854:1;:18;10825:295;;;10897:18;;10893:217;;10935:16;10972:9;;;:6;:9;;;;;:26;;;11002:5;;10955:43;;:14;:43;:::i;:::-;10954:53;;;;:::i;:::-;10935:72;-1:-1:-1;11025:26:12;10935:72;11025:26;;:::i;:::-;;-1:-1:-1;11069:26:12;11087:8;11069:26;;:::i;:::-;;;10917:193;10893:217;10874:3;;;;:::i;:::-;;;;10825:295;;;;11129:21;;10604:553;;;:::o;31618:825::-;-1:-1:-1;;;;;31755:15:12;;31710:7;31755:15;;;:8;:15;;;;;:30;;31710:7;;31755:15;31771:13;;31755:30;;;;;;:::i;:::-;;;;;;;;;;;31729:56;;31795:19;31835:7;:17;;;31817:15;:35;;;;:::i;:::-;31878:13;;;;31795:57;;-1:-1:-1;;;;;;31878:13:12;31862;;31939:466;-1:-1:-1;;;;;31963:22:12;;;;;;:15;:22;;;;;:29;31959:33;;31939:466;;;-1:-1:-1;;;;;32039:22:12;;32013:23;32039:22;;;:15;:22;;;;;:25;;32062:1;;32039:25;;;;;;:::i;:::-;;;;;;;;;;;;;32097:15;;32147;;;;32202:17;;;;32039:25;;-1:-1:-1;32097:15:12;;32147;;32242:3;;32202:36;;2911:2;;32202:36;:::i;:::-;32201:44;;;;:::i;:::-;32176:69;;32279:8;32264:11;:23;32260:135;;32374:5;32343:27;32360:10;32343:14;:27;:::i;:::-;32342:37;;;;:::i;:::-;32324:56;;:14;:56;:::i;:::-;32307:73;;32260:135;31999:406;;;;31994:3;;;;:::i;:::-;;;31939:466;;;-1:-1:-1;32422:14:12;-1:-1:-1;;;;31618:825:12;;;;;:::o;12124:826::-;2500:21:10;:19;:21::i;:::-;12186:23:12::1;12212:35;12236:10;12212:23;:35::i;:::-;12186:61;;12283:1;12265:15;:19;12257:48;;;::::0;-1:-1:-1;;;12257:48:12;;19419:2:15;12257:48:12::1;::::0;::::1;19401:21:15::0;19458:2;19438:18;;;19431:30;-1:-1:-1;;;19477:18:15;;;19470:46;19533:18;;12257:48:12::1;;;;;;;;;12390:10;12377:24;::::0;;;:12:::1;:24;::::0;;;;:43;;12405:15;;12377:24;:43:::1;::::0;12405:15;;12377:43:::1;:::i;:::-;;;;;;;;12448:15;12430:14;;:33;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;12570:14:12::1;::::0;12556:10:::1;12535:32;::::0;;;:20:::1;:32;::::0;;;;;;;:49;;;;12658:14:::1;:26:::0;;;;;;12690:187;;::::1;::::0;::::1;::::0;;12727:15:::1;12690:187:::0;;;;;::::1;::::0;;;12855:11:::1;::::0;12658:26;;12690:187;;;;;;12837:29:::1;::::0;::::1;:::i;:::-;12690:187:::0;;12658:220;;::::1;::::0;;::::1;::::0;;-1:-1:-1;12658:220:12;;;::::1;::::0;;;;;;::::1;::::0;;::::1;;::::0;;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;12902:41;529:25:15;;;12915:10:12::1;::::0;12902:41:::1;::::0;502:18:15;12902:41:12::1;;;;;;;12176:774;2542:20:10::0;1857:1;3068:7;:21;2888:208;2542:20;12124:826:12:o;6157:202::-;5654:10;5647:18;;;;:6;:18;;;;;;;;5639:45;;;;-1:-1:-1;;;5639:45:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;6231:14:12;::::1;;::::0;;;:6:::1;:14;::::0;;;;;::::1;;6223:36;;;::::0;-1:-1:-1;;;6223:36:12;;20107:2:15;6223:36:12::1;::::0;::::1;20089:21:15::0;20146:1;20126:18;;;20119:29;-1:-1:-1;;;20164:18:15;;;20157:39;20213:18;;6223:36:12::1;19905:332:15::0;6223:36:12::1;6287:10;-1:-1:-1::0;;;;;6277:20:12;::::1;::::0;6269:51:::1;;;::::0;-1:-1:-1;;;6269:51:12;;20444:2:15;6269:51:12::1;::::0;::::1;20426:21:15::0;20483:2;20463:18;;;20456:30;-1:-1:-1;;;20502:18:15;;;20495:48;20560:18;;6269:51:12::1;20242:342:15::0;6269:51:12::1;-1:-1:-1::0;;;;;6330:14:12::1;6347:5;6330:14:::0;;;:6:::1;:14;::::0;;;;:22;;-1:-1:-1;;6330:22:12::1;::::0;;6157:202::o;7748:109::-;5654:10;5647:18;;;;:6;:18;;;;;;;;5639:45;;;;-1:-1:-1;;;5639:45:12;;;;;;;:::i;:::-;7825:15:::1;:25:::0;7748:109::o;11234:215::-;-1:-1:-1;;;;;11328:18:12;;11290:7;11328:18;;;:12;:18;;;;;;11290:7;11376:29;11341:4;11376:23;:29::i;:::-;11356:49;-1:-1:-1;11422:20:12;11356:49;11422:8;:20;:::i;:::-;11415:27;11234:215;-1:-1:-1;;;;11234:215:12:o;13015:1019::-;2500:21:10;:19;:21::i;:::-;13139:10:12::1;13087:34;13124:26:::0;;;:14:::1;:26;::::0;;;;13168:17;;13160:53:::1;;;::::0;-1:-1:-1;;;13160:53:12;;20791:2:15;13160:53:12::1;::::0;::::1;20773:21:15::0;20830:2;20810:18;;;20803:30;-1:-1:-1;;;20849:18:15;;;20842:49;20908:18;;13160:53:12::1;20589:343:15::0;13160:53:12::1;13237:9;13232:752;13256:17:::0;;13252:21;::::1;13232:752;;;13294:27;13324:10;13335:1;13324:13;;;;;;;;:::i;:::-;;;;;;;;;;;13294:43;;13372:7;13355:5;:13;;;:24;:44;;;;;13398:1;13383:5;:12;;;:16;13355:44;13351:623;;;13446:5;:16;;;13427:15;:35;;13419:60;;;::::0;-1:-1:-1;;;13419:60:12;;21139:2:15;13419:60:12::1;::::0;::::1;21121:21:15::0;21178:2;21158:18;;;21151:30;-1:-1:-1;;;21197:18:15;;;21190:42;21249:18;;13419:60:12::1;20937:336:15::0;13419:60:12::1;13531:12;::::0;::::1;::::0;;13514:14:::1;13561:16:::0;;;13892:43:::1;::::0;;4284:25:15;;;4340:2;4325:18;;4318:34;;;13907:10:12::1;::::0;13892:43:::1;::::0;4257:18:15;13892:43:12::1;;;;;;;13953:7;;;;;;13351:623;-1:-1:-1::0;13275:3:12;::::1;::::0;::::1;:::i;:::-;;;;13232:752;;;-1:-1:-1::0;14002:25:12::1;::::0;-1:-1:-1;;;14002:25:12;;21480:2:15;14002:25:12::1;::::0;::::1;21462:21:15::0;21519:2;21499:18;;;21492:30;-1:-1:-1;;;21538:18:15;;;21531:45;21593:18;;14002:25:12::1;21278:339:15::0;2531:1:10::1;2542:20:::0;1857:1;3068:7;:21;2888:208;2542:20;13015:1019:12;:::o;7191:115::-;5654:10;5647:18;;;;:6;:18;;;;;;;;5639:45;;;;-1:-1:-1;;;5639:45:12;;;;;;;:::i;:::-;7271:14:::1;:28:::0;7191:115::o;33030:1137::-;33143:24;;33221:16;33279:7;;-1:-1:-1;;;;;33313:21:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33313:21:12;;33303:31;;33370:6;-1:-1:-1;;;;;33356:21:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33356:21:12;;33344:33;;33393:9;33388:725;33412:6;33408:1;:10;33388:725;;;33439:13;33455:7;;33463:1;33455:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33564:18:12;;33542:19;33564:18;;;:11;:18;;;;;;33596:10;;33439:26;;-1:-1:-1;33564:18:12;;;33596:7;;33604:1;;33596:10;;;;;;:::i;:::-;;;;;;;;;;;:24;;;;-1:-1:-1;;;;;33796:19:12;;;33767:13;33796:19;;;:12;:19;;;;;;;;33783:55;;-1:-1:-1;;;33783:55:12;;;;;820:51:15;;;;33796:19:12;;;;33783:48;;793:18:15;;33783:55:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33767:71;-1:-1:-1;33927:18:12;33972:4;33949:19;33957:11;33767:71;33949:19;:::i;:::-;33948:28;;;;:::i;:::-;33927:49;;34005:10;33990:9;34000:1;33990:12;;;;;;;;:::i;:::-;;;;;;;;;;:25;34080:22;34092:10;34080:22;;:::i;:::-;;;33425:688;;;;33420:3;;;;;:::i;:::-;;;;33388:725;;;;34123:37;33030:1137;;;;;:::o;6848:208::-;5654:10;5647:18;;;;:6;:18;;;;;;;;5639:45;;;;-1:-1:-1;;;5639:45:12;;;;;;;:::i;:::-;6943:48:::1;-1:-1:-1::0;;;;;6943:27:12;::::1;6971:10;6983:7:::0;6943:27:::1;:48::i;:::-;7006:43;::::0;529:25:15;;;-1:-1:-1;;;;;7006:43:12;::::1;::::0;7021:10:::1;::::0;7006:43:::1;::::0;517:2:15;502:18;7006:43:12::1;;;;;;;6848:208:::0;;:::o;4190:35::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4190:35:12;;;;-1:-1:-1;4190:35:12;:::o;25731:801::-;5764:10;5749:26;;;;:14;:26;;;;;;;;5741:53;;;;-1:-1:-1;;;5741:53:12;;;;;;;:::i;:::-;25799:9:::1;25794:732;-1:-1:-1::0;;;;;25818:14:12;::::1;;::::0;;;:8:::1;:14;::::0;;;;:21;25814:25;::::1;25794:732;;;-1:-1:-1::0;;;;;25886:14:12;::::1;25860:23;25886:14:::0;;;:8:::1;:14;::::0;;;;:17;;25901:1;;25886:17;::::1;;;;;:::i;:::-;;;;;;;;;;;25860:43;;25997:7;:16;;;;;;;;;;;;25992:334;;26060:17;::::0;::::1;::::0;-1:-1:-1;;;;;26037:19:12;::::1;;::::0;;;:13:::1;:19;::::0;;;;;:40:::1;26033:127;;26124:17;::::0;::::1;::::0;-1:-1:-1;;;;;26101:19:12;::::1;;::::0;;;:13:::1;:19;::::0;;;;:40;;:19;;;:40:::1;::::0;26124:17;;26101:40:::1;:::i;:::-;::::0;;;-1:-1:-1;;26033:127:12::1;26211:14:::0;;26193:13:::1;::::0;::::1;::::0;-1:-1:-1;;;;;26193:13:12::1;26211:14;26181:26:::0;;;:11:::1;:26;::::0;;;;;:44:::1;26177:135;;26279:14:::0;;26261:13:::1;::::0;::::1;::::0;-1:-1:-1;;;;;26261:13:12::1;26279:14;26249:26:::0;;;:11:::1;:26;::::0;;;;:44;;:26;;26279:14;26249:44:::1;::::0;26279:14;;26249:44:::1;:::i;:::-;::::0;;;-1:-1:-1;;26177:135:12::1;26369:1;26352:18:::0;;;26384:13:::1;::::0;::::1;:17:::0;;;26415:21:::1;::::0;::::1;:25:::0;;;26454:20:::1;::::0;::::1;:24:::0;26492:16:::1;;:23:::0;;-1:-1:-1;;;;26492:23:12::1;-1:-1:-1::0;;;26492:23:12::1;::::0;;25841:3:::1;::::0;::::1;:::i;:::-;;;25794:732;;;;25731:801:::0;:::o;7506:107::-;5654:10;5647:18;;;;:6;:18;;;;;;;;5639:45;;;;-1:-1:-1;;;5639:45:12;;;;;;;:::i;:::-;7582:14:::1;:24:::0;7506:107::o;2539:55::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2539:55:12;-1:-1:-1;2539:55:12;:::o;15052:829::-;5764:10;5749:26;;;;:14;:26;;;;;;;;5741:53;;;;-1:-1:-1;;;5741:53:12;;;;;;;:::i;:::-;15172:30;;::::1;15164:64;;;::::0;-1:-1:-1;;;15164:64:12;;22145:2:15;15164:64:12::1;::::0;::::1;22127:21:15::0;22184:2;22164:18;;;22157:30;-1:-1:-1;;;22203:18:15;;;22196:51;22264:18;;15164:64:12::1;21943:345:15::0;15164:64:12::1;15246:16:::0;15238:41:::1;;;::::0;-1:-1:-1;;;15238:41:12;;22495:2:15;15238:41:12::1;::::0;::::1;22477:21:15::0;22534:2;22514:18;;;22507:30;-1:-1:-1;;;22553:18:15;;;22546:42;22605:18;;15238:41:12::1;22293:336:15::0;15238:41:12::1;15298:18;15344:9:::0;15339:458:::1;15359:16:::0;;::::1;15339:458;;;15424:1;15404:5:::0;;15410:1;15404:8;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;15404:22:12::1;::::0;15396:50:::1;;;;-1:-1:-1::0;;;15396:50:12::1;;;;;;;:::i;:::-;15481:1;15468:7;;15476:1;15468:10;;;;;;;:::i;:::-;;;;;;;:14;15460:41;;;::::0;-1:-1:-1;;;15460:41:12;;23180:2:15;15460:41:12::1;::::0;::::1;23162:21:15::0;23219:2;23199:18;;;23192:30;-1:-1:-1;;;23238:18:15;;;23231:44;23292:18;;15460:41:12::1;22978:338:15::0;15460:41:12::1;15612:7;;15620:1;15612:10;;;;;;;:::i;:::-;;;;;;;15587:12;:22;15600:5;;15606:1;15600:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;15587:22:12::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;15587:22:12;;15574:35:::1;::::0;:10;:35:::1;:::i;:::-;:48;;;;:::i;:::-;15561:61;;15710:7;;15718:1;15710:10;;;;;;;:::i;:::-;;;;;;;15685:12;:22;15698:5;;15704:1;15698:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;15685:22:12::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;15685:22:12;:35;15765:5;;15771:1;15765:8;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;15752:34:12::1;;15775:7;;15783:1;15775:10;;;;;;;:::i;:::-;;;;;;;15752:34;;;;529:25:15::0;;517:2;502:18;;383:177;15752:34:12::1;;;;;;;;15377:3:::0;::::1;::::0;::::1;:::i;:::-;;;;15339:458;;;;15864:10;15846:14;;:28;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;15052:829:12:o;19260:1378::-;2500:21:10;:19;:21::i;:::-;19361:1:12::1;19353:5;:9;19345:35;;;::::0;-1:-1:-1;;;19345:35:12;;23523:2:15;19345:35:12::1;::::0;::::1;23505:21:15::0;23562:2;23542:18;;;23535:30;-1:-1:-1;;;23581:18:15;;;23574:43;23634:18;;19345:35:12::1;23321:337:15::0;19345:35:12::1;19410:1;19398:9;:13;19390:44;;;::::0;-1:-1:-1;;;19390:44:12;;23865:2:15;19390:44:12::1;::::0;::::1;23847:21:15::0;23904:2;23884:18;;;23877:30;-1:-1:-1;;;23923:18:15;;;23916:48;23981:18;;19390:44:12::1;23663:342:15::0;19390:44:12::1;19461:14;;19452:5;:23;;19444:55;;;::::0;-1:-1:-1;;;19444:55:12;;24212:2:15;19444:55:12::1;::::0;::::1;24194:21:15::0;24251:2;24231:18;;;24224:30;-1:-1:-1;;;24270:18:15;;;24263:49;24329:18;;19444:55:12::1;24010:343:15::0;19444:55:12::1;19585:16;19604:23;19616:10;19604:11;:23::i;:::-;19585:42;;19654:8;19645:5;:17;;19637:52;;;::::0;-1:-1:-1;;;19637:52:12;;24560:2:15;19637:52:12::1;::::0;::::1;24542:21:15::0;24599:2;24579:18;;;24572:30;-1:-1:-1;;;24618:18:15;;;24611:52;24680:18;;19637:52:12::1;24358:346:15::0;19637:52:12::1;19883:10;19759:15;19872:22:::0;;;:10:::1;:22;::::0;;;;;;;19777:15:::1;19872:31:::0;;;;;;;;:37;:42;19864:77:::1;;;::::0;-1:-1:-1;;;19864:77:12;;24911:2:15;19864:77:12::1;::::0;::::1;24893:21:15::0;24950:2;24930:18;;;24923:30;-1:-1:-1;;;24969:18:15;;;24962:52;25031:18;;19864:77:12::1;24709:346:15::0;19864:77:12::1;20031:10;20018:24;::::0;;;:12:::1;:24;::::0;;;;:33;;20046:5;;20018:24;:33:::1;::::0;20046:5;;20018:33:::1;:::i;:::-;;;;;;;;20079:5;20061:14;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;20175:152:12::1;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;::::0;;;20267:10:::1;20175:152:::0;;;;;;20301:15:::1;20175:152:::0;;;;;;-1:-1:-1;20141:22:12;;;:10:::1;:22:::0;;;;;:31;;;;;;;;:186;;;;;;::::1;::::0;;::::1;::::0;;;;;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;20141:186:12;;::::1;-1:-1:-1::0;;;;;;20141:186:12;;::::1;;::::0;;;;;::::1;::::0;;::::1;::::0;;;;20399:86;;;;::::1;::::0;;;;;;;;::::1;::::0;;;20380:13:::1;:106:::0;;;;::::1;::::0;;;;;;;;;;;::::1;::::0;;::::1;::::0;;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;;;;;;;20537:20;;:24:::1;::::0;20141:186;20537:24:::1;:::i;:::-;20514:10;20496:29;::::0;;;:17:::1;:29;::::0;;;;;;;:38;;;;;;;;;:65;;;;20585:46;;4284:25:15;;;4325:18;;;4318:34;;;20514:10:12;;20585:46:::1;::::0;4257:18:15;20585:46:12::1;;;;;;;19335:1303;;2542:20:10::0;1857:1;3068:7;:21;2888:208;35978:689:12;36173:13;:20;36038:24;;;;;;36173:20;-1:-1:-1;;;;;36222:21:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36222:21:12;;36212:31;;36278:6;-1:-1:-1;;;;;36264:21:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36264:21:12;;36253:32;;36327:6;-1:-1:-1;;;;;36311:23:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36311:23:12;;;;;;;;;;;;;;;;;36295:39;;36358:9;36353:248;36377:6;36373:1;:10;36353:248;;;36404:23;36430:13;36444:1;36430:16;;;;;;;;:::i;:::-;;;;;;;;;;36404:42;;;;;;;;;36430:16;;;;;36404:42;;-1:-1:-1;;;;;36404:42:12;;;;;;;;;;;;;;;;36460:10;;36404:42;;-1:-1:-1;36460:7:12;;36468:1;;36460:10;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36460:23:12;;;-1:-1:-1;;;;;36460:23:12;;;;;36511:3;:11;;;36497:8;36506:1;36497:11;;;;;;;;:::i;:::-;;;;;;;;;;;:25;;;;36566:10;;-1:-1:-1;;;;;36555:22:12;;;;;;;:10;:22;;;;;;36578:11;;;;36555:35;;;;;;;;36536:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:16;;:13;;36550:1;;36536:16;;;;;;:::i;:::-;;;;;;:54;;;;36390:211;36385:3;;;;;:::i;:::-;;;;36353:248;;;;36619:41;35978:689;;;:::o;7062:123::-;5654:10;5647:18;;;;:6;:18;;;;;;;;5639:45;;;;-1:-1:-1;;;5639:45:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;7148:20:12;;::::1;;::::0;;;:12:::1;:20;::::0;;;;:30;;-1:-1:-1;;;;;;7148:30:12::1;::::0;;;::::1;;::::0;;7062:123::o;6000:151::-;5654:10;5647:18;;;;:6;:18;;;;;;;;5639:45;;;;-1:-1:-1;;;5639:45:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;6075:17:12;::::1;;::::0;;;:6:::1;:17;::::0;;;;;::::1;;6074:18;6066:44;;;::::0;-1:-1:-1;;;6066:44:12;;25262:2:15;6066:44:12::1;::::0;::::1;25244:21:15::0;25301:2;25281:18;;;25274:30;-1:-1:-1;;;25320:18:15;;;25313:43;25373:18;;6066:44:12::1;25060:337:15::0;6066:44:12::1;-1:-1:-1::0;;;;;6120:17:12::1;;::::0;;;:6:::1;:17;::::0;;;;:24;;-1:-1:-1;;6120:24:12::1;6140:4;6120:24;::::0;;6000:151::o;27255:636::-;5764:10;5749:26;;;;:14;:26;;;;;;;;5741:53;;;;-1:-1:-1;;;5741:53:12;;;;;;;:::i;:::-;27443:8:::1;:14;27452:4;-1:-1:-1::0;;;;;27443:14:12::1;-1:-1:-1::0;;;;;27443:14:12::1;;;;;;;;;;;;27463:331;;;;;;;;27493:6;27463:331;;;;27520:5;27463:331;;;;27552:11;27463:331;;;;27592:1;27463:331;;;;27621:1;27463:331;;;;27649:11;27463:331;;;;27685:9;27463:331;;;;27715:5;-1:-1:-1::0;;;;;27463:331:12::1;;;;;27744:5;27463:331;;;;;;27774:9;27463:331;;::::0;27443:352:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;27443:352:12::1;;;;;-1:-1:-1::0;;;;;27443:352:12::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27837:9;27814:13;:19;27828:4;-1:-1:-1::0;;;;;27814:19:12::1;-1:-1:-1::0;;;;;27814:19:12::1;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;27856:18:12;::::1;;::::0;;;:11:::1;:18;::::0;;;;:28;;27878:6;;27856:18;:28:::1;::::0;27878:6;;27856:28:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;;;;27255:636:12:o;32522:114::-;-1:-1:-1;;;;;32615:14:12;;;;;;:8;:14;;;;;;;;32608:21;;;;;;;;;;;;;;;;;32580:16;;32608:21;;32615:14;;32608:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32608:21:12;;;;;;-1:-1:-1;;;32608:21:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32522:114;;;:::o;28170:1785::-;5764:10;5749:26;;;;:14;:26;;;;;;;;5741:53;;;;-1:-1:-1;;;5741:53:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;28270:24:12;::::1;::::0;;::::1;::::0;:52:::1;;-1:-1:-1::0;;;;;;28298:24:12;::::1;::::0;::::1;28270:52;:80;;;;;28340:10;-1:-1:-1::0;;;;;28326:24:12::1;:10;-1:-1:-1::0;;;;;28326:24:12::1;;;28270:80;28262:108;;;;-1:-1:-1::0;;;28262:108:12::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;28421:20:12;::::1;28389:29;28421:20:::0;;;:8:::1;:20;::::0;;;;28474:18;;28510:16;28502:50:::1;;;::::0;-1:-1:-1;;;28502:50:12;;25604:2:15;28502:50:12::1;::::0;::::1;25586:21:15::0;25643:2;25623:18;;;25616:30;-1:-1:-1;;;25662:18:15;;;25655:51;25723:18;;28502:50:12::1;25402:345:15::0;28502:50:12::1;-1:-1:-1::0;;;;;28603:20:12;::::1;28571:29;28603:20:::0;;;:8:::1;:20;::::0;;;;;28642:603:::1;28666:12;28662:1;:16;28642:603;;;28699:26;28728:11;28740:1;28728:14;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;28812:28;;::::1;::::0;;::::1;::::0;;;;;;;;28728:14:::1;::::0;;::::1;::::0;;::::1;28812:28:::0;;;;;::::1;::::0;;::::1;::::0;;;;;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;-1:-1:-1;;;;;28812:28:12;;::::1;-1:-1:-1::0;;;;;;28812:28:12;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;28812:28:12;;;;-1:-1:-1;;;28812:28:12;;;::::1;;;;;::::0;::::1;;::::0;;::::1;::::0;;::::1;::::0;;;;;::::1;::::0;28900:21;;;;28935:20;;;;28969:26;;;;29009:28;;;;29051:27;;;29092:26;;;29132:24;;;29170;;;;29208:26;;-1:-1:-1;;;;29208:26:12::1;;::::0;;-1:-1:-1;28680:3:12;::::1;::::0;::::1;:::i;:::-;;;;28642:603;;;-1:-1:-1::0;;;;;;29326:25:12;;::::1;;::::0;;;:13:::1;:25;::::0;;;;;;29297;;::::1;::::0;;;;:54;;:25;;29326;29297:54:::1;::::0;29326:25;;29297:54:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;29361:25:12;::::1;29389:1;29361:25:::0;;;:13:::1;:25;::::0;;;;;;;:29;;;29504:21:::1;:33:::0;;;;;29578:26;;29618:24;;29614:335:::1;;-1:-1:-1::0;;;;;29706:33:12;::::1;29658:45;29706:33:::0;;;:21:::1;:33;::::0;;;;;29753:132:::1;29777:20;29773:1;:24;29753:132;;;29822:19;29847;29867:1;29847:22;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;29822:48;;::::1;::::0;;::::1;::::0;;;;;;;;;29847:22:::1;::::0;;::::1;::::0;;::::1;29822:48:::0;;;;;::::1;::::0;;::::1;::::0;;;;;::::1;::::0;;;::::1;::::0;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;;29822:48:12::1;-1:-1:-1::0;;;;;29822:48:12;;::::1;::::0;;;::::1;::::0;;29799:3;::::1;::::0;::::1;:::i;:::-;;;;29753:132;;;-1:-1:-1::0;;;;;;29905:33:12;::::1;;::::0;;;:21:::1;:33;::::0;;;;29898:40:::1;::::0;::::1;:::i;:::-;29644:305;29614:335;28252:1703;;;;;28170:1785:::0;;:::o;34399:720::-;-1:-1:-1;;;;;34520:14:12;;34475:16;34520:14;;;:8;:14;;;;;:21;34475:16;34551:537;34575:6;34571:1;:10;34551:537;;;-1:-1:-1;;;;;34621:14:12;;34602:16;34621:14;;;:8;:14;;;;;:17;;34636:1;;34621:17;;;;;;:::i;:::-;;;;;;;;;;34602:36;;;;;;;;34621:17;;;;;;;34602:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34602:36:12;;;;;;;-1:-1:-1;;;34602:36:12;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34652:426:12;;34734:7;;;;;-1:-1:-1;;;;;34721:21:12;;;34687:18;34721:21;;;:12;:21;;;;;;;34759:7;;34708:59;;-1:-1:-1;;;34708:59:12;;838:32:15;;;34708:59:12;;;820:51:15;34687:18:12;;34721:21;;;;34708:50;;793:18:15;;34708:59:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34687:80;;34840:23;34877:1;:15;;;34866:1;:8;;;:26;;;;:::i;:::-;34840:52;-1:-1:-1;34968:16:12;35020:4;34988:28;34840:52;34988:10;:28;:::i;:::-;34987:37;;;;:::i;:::-;34968:56;-1:-1:-1;35043:20:12;34968:56;35043:20;;:::i;:::-;;;34669:409;;;34652:426;-1:-1:-1;34583:3:12;;;;:::i;:::-;;;;34551:537;;;;35097:15;34399:720;;;:::o;35317:146::-;-1:-1:-1;;;;;35429:27:12;;;;;;:21;:27;;;;;;;;35422:34;;;;;;;;;;;;;;;;;35386:24;;35422:34;;35429:27;;35422:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35422:34:12;;;;;;;;;;;;;;;29991:737;-1:-1:-1;;;;;30123:15:12;;30078:7;30123:15;;;:8;:15;;;;;:30;;30078:7;;30123:15;30139:13;;30123:30;;;;;;:::i;:::-;;;;;;;;;;;30097:56;;30163:19;30203:7;:17;;;30185:15;:35;;;;:::i;:::-;30246:13;;;;30163:57;;-1:-1:-1;;;;;;30246:13:12;30230;;30307:383;-1:-1:-1;;;;;30331:22:12;;;;;;:15;:22;;;;;:29;30327:33;;30307:383;;;-1:-1:-1;;;;;30407:22:12;;30381:23;30407:22;;;:15;:22;;;;;:25;;30430:1;;30407:25;;;;;;:::i;:::-;;;;;;;;;;;;;;30465:15;;30515;;;;30407:25;;-1:-1:-1;30465:15:12;30549:23;;;30545:135;;30628:14;;30659:5;;30628:27;;30645:10;;30628:27;:::i;:::-;30627:37;;;;:::i;:::-;30609:56;;:14;:56;:::i;:::-;30592:73;;30545:135;30367:323;;;30362:3;;;;:::i;:::-;;;30307:383;;9338:1166;5654:10;5647:18;;;;:6;:18;;;;;;;;5639:45;;;;-1:-1:-1;;;5639:45:12;;;;;;;:::i;:::-;9528:14:::1;:32:::0;;;9630:14:::1;::::0;9579:24:::1;::::0;9630:18;9626:414:::1;;9703:23;9729:6;:26;9753:1;9736:14;;:18;;;;:::i;:::-;9729:26;;;;;;;;;;;9703:52;;9801:228;9844:18;9880:14;;9912:9;:28;;;9958:9;:24;;;10000:15;9801:25;:228::i;:::-;9782:247;;9650:390;9626:414;10117:249;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;::::0;;;10253:14:::1;::::0;10117:249;;;;;;;;;;;;;10340:15:::1;10117:249:::0;;;;;;10099:14:::1;::::0;;-1:-1:-1;10092:22:12;;;:6:::1;:22:::0;;;;;:274;;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;;10401:14;10390:81;;15624:25:15;;;15665:18;;;15658:34;;;15708:18;;;15701:34;;;10390:81:12::1;::::0;15597:18:15;10390:81:12::1;;;;;;;10481:14;:16:::0;;;:14:::1;:16;::::0;::::1;:::i;:::-;;;;;;9454:1050;9338:1166:::0;;;:::o;26993:256::-;5764:10;5749:26;;;;:14;:26;;;;;;;;5741:53;;;;-1:-1:-1;;;5741:53:12;;;;;;;:::i;:::-;27143:99:::1;27157:4;27163:6;27171:5;27178:11;27191:5;27198:9;27209:15;27226;27143:13;:99::i;:::-;26993:256:::0;;;;;;:::o;20787:1493::-;20894:10;20848:32;20883:22;;;:10;:22;;;;;;;;:31;;;;;;;;20932:20;;20924:54;;;;-1:-1:-1;;;20924:54:12;;;;;;;:::i;:::-;20996:21;;;;-1:-1:-1;;;;;20996:21:12;21021:10;20996:35;20988:62;;;;-1:-1:-1;;;20988:62:12;;26300:2:15;20988:62:12;;;26282:21:15;26339:2;26319:18;;;26312:30;-1:-1:-1;;;26358:18:15;;;26351:44;26412:18;;20988:62:12;26098:338:15;20988:62:12;21085:20;;21185:15;;21069:13;;21204:5;;21177:23;;21085:20;21177:23;:::i;:::-;21176:33;;;;:::i;:::-;21162:47;-1:-1:-1;21219:21:12;21243:11;21162:47;21243:5;:11;:::i;:::-;21341:10;21328:24;;;;:12;:24;;;;;:41;;21219:35;;-1:-1:-1;21219:35:12;;21328:24;;;:41;;21219:35;;21328:41;:::i;:::-;;;;;;;;21397:13;21379:14;;:31;;;;;;;:::i;:::-;;;;-1:-1:-1;;21539:7:12;;21535:88;;21567:45;;;4284:25:15;;;4340:2;4325:18;;4318:34;;;21587:10:12;;21567:45;;4257:18:15;21567:45:12;;;;;;;21535:88;21693:10;21682:22;;;;:10;:22;;;;;;;;:31;;;;;;;;21675:38;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21675:38:12;;;;;;;;;;21806:29;;;:17;:29;;;;;:38;;;;;;;;;21874:13;:20;21806:38;;21874:24;;;:::i;:::-;21854:44;;21921:9;21912:5;:18;21908:219;;21946:27;21976:13;21990:9;21976:24;;;;;;;;:::i;:::-;;;;;;;;;;21946:54;;;;;;;;;21976:24;;;;;21946:54;;-1:-1:-1;;;;;21946:54:12;;;;;;;;;;;;;22014:13;:20;;21946:54;;-1:-1:-1;21946:54:12;;22028:5;;22014:20;;;;;;:::i;:::-;;;;;;;;;:30;;:20;;;;;;:30;;-1:-1:-1;;;;;;22014:30:12;-1:-1:-1;;;;;22014:30:12;;;;;;;;;;-1:-1:-1;22014:30:12;;;;;;;22076:14;;22058:33;;;:17;:33;;;;;;22092:15;;;;22058:50;;;;;;;:58;;;21908:219;22136:13;:19;;;;;;;:::i;:::-;;;;;;;;;;-1:-1:-1;;22136:19:12;;;;;;;;;;-1:-1:-1;;;;;;22136:19:12;;;-1:-1:-1;22136:19:12;;;;;;;;22190:10;22172:29;;;:17;:29;;;;;;:38;;;;;;;;22165:45;;;;22234:39;;529:25:15;;;22234:39:12;;502:18:15;22234:39:12;;;;;;;20838:1442;;;;;;20787:1493;:::o;16829:464::-;16903:14;16948:5;16937:7;:16;;16929:42;;;;-1:-1:-1;;;16929:42:12;;26775:2:15;16929:42:12;;;26757:21:15;26814:2;26794:18;;;26787:30;-1:-1:-1;;;26833:18:15;;;26826:43;26886:18;;16929:42:12;26573:337:15;16929:42:12;16997:14;;16989:5;:22;16981:54;;;;-1:-1:-1;;;16981:54:12;;27117:2:15;16981:54:12;;;27099:21:15;27156:2;27136:18;;;27129:30;-1:-1:-1;;;27175:18:15;;;27168:49;27234:18;;16981:54:12;26915:343:15;16981:54:12;17054:14;17071:15;17079:7;17071:5;:15;:::i;:::-;:19;;17089:1;17071:19;:::i;:::-;17054:36;;17100:21;17136:6;-1:-1:-1;;;;;17124:19:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17124:19:12;;;;;;;;;;;;;;;;;17100:43;;17167:9;17162:93;17186:6;17182:1;:10;17162:93;;;17225:6;:19;17232:11;17242:1;17232:7;:11;:::i;:::-;17225:19;;;;;;;;;;;17213:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:6;17220:1;17213:9;;;;;;;;:::i;:::-;;;;;;:31;;;;17194:3;;;;;:::i;:::-;;;;17162:93;;;-1:-1:-1;17280:6:12;16829:464;-1:-1:-1;;;;16829:464:12:o;4389:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4389:46:12;;;;-1:-1:-1;;;;;4389:46:12;;;;;;:::o;36842:147::-;36920:16;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36920:16:12;-1:-1:-1;;;;;;36955:18:12;;;;;;;:10;:18;;;;;;;;:27;;;;;;;;;;36948:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36842:147::o;16168:383::-;16248:20;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;16248:20:12;-1:-1:-1;;;;;16317:20:12;;16280:34;16317:20;;;:14;:20;;;;;;16347:163;16371:17;;16367:21;;16347:163;;;16438:7;16413:10;16424:1;16413:13;;;;;;;;:::i;:::-;;;;;;;;;;;:21;;;:32;16409:91;;16472:10;16483:1;16472:13;;;;;;;;:::i;:::-;;;;;;;;;;;16465:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16409:91;16390:3;;;;:::i;:::-;;;;16347:163;;16601:173;16659:12;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16659:12:12;16701:14;;16691:7;:24;16683:52;;;;-1:-1:-1;;;16683:52:12;;27465:2:15;16683:52:12;;;27447:21:15;27504:2;27484:18;;;27477:30;-1:-1:-1;;;27523:18:15;;;27516:45;27578:18;;16683:52:12;27263:339:15;16683:52:12;-1:-1:-1;16752:15:12;;;;:6;:15;;;;;;;;;16745:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16601:173::o;2488:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2488:45:12;;-1:-1:-1;2488:45:12;;;;;;;-1:-1:-1;;;;;2488:45:12;;;-1:-1:-1;;;2488:45:12;;;;;;;:::o;30734:878::-;-1:-1:-1;;;;;30893:15:12;;30867:23;30893:15;;;:8;:15;;;;;:30;;30821:16;;;;30867:23;;30909:13;;30893:30;;;;;;:::i;:::-;;;;;;;;;30949:13;30893:30;;;;;30949:13;;;;-1:-1:-1;;;;;30949:13:12;30998:22;;;:15;:22;;;;;;:29;30893:30;;-1:-1:-1;30949:13:12;30998:29;-1:-1:-1;;;;;31073:29:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31073:29:12;;31037:65;;31112:34;31163:14;-1:-1:-1;;;;;31149:29:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31149:29:12;;31112:66;;31194:9;31189:362;31213:14;31209:1;:18;31189:362;;;-1:-1:-1;;;;;31274:22:12;;31248:23;31274:22;;;:15;:22;;;;;:25;;31297:1;;31274:25;;;;;;:::i;:::-;;;;;;;;;;;31248:51;;31411:4;:15;;;31391:7;:17;;;:35;;;;:::i;:::-;31369:16;31386:1;31369:19;;;;;;;;:::i;:::-;;;;;;:57;;;;;31463:4;:15;;;31440:17;31458:1;31440:20;;;;;;;;:::i;:::-;;;;;;;;;;:38;-1:-1:-1;31229:3:12;;;:::i;:::-;;;31189:362;;;-1:-1:-1;31569:16:12;;-1:-1:-1;31587:17:12;-1:-1:-1;;;;30734:878:12;;;;;;:::o;11512:538::-;11584:16;11653:22;11711:26;11794:17;11814:29;11838:4;11814:23;:29::i;:::-;-1:-1:-1;;;;;11874:18:12;;;;;;:12;:18;;;;;;11794:49;;-1:-1:-1;11874:30:12;;11794:49;;11874:30;:::i;:::-;-1:-1:-1;;;;;11990:18:12;;;;;;:12;:18;;;;;;11853:190;;-1:-1:-1;11932:9:12;;-1:-1:-1;11990:18:12;-1:-1:-1;11512:538:12;;;;;;:::o;6626:111::-;5654:10;5647:18;;;;:6;:18;;;;;;;;5639:45;;;;-1:-1:-1;;;5639:45:12;;;;;;;:::i;:::-;6704:14:::1;:26:::0;6626:111::o;15972:135::-;-1:-1:-1;;;;;16080:20:12;;;;;;:14;:20;;;;;;;;16073:27;;;;;;;;;;;;;;;;;16039:22;;16073:27;;16080:20;;16073:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3453:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3453:57:12;;-1:-1:-1;3453:57:12;:::o;6743:99::-;5654:10;5647:18;;;;:6;:18;;;;;;;;5639:45;;;;-1:-1:-1;;;5639:45:12;;;;;;;:::i;:::-;6815:11:::1;:20:::0;6743:99::o;37199:653::-;37358:18;:25;37298:27;;37345:38;;37337:76;;;;-1:-1:-1;;;37337:76:12;;27809:2:15;37337:76:12;;;27791:21:15;27848:2;27828:18;;;27821:30;27887:27;27867:18;;;27860:55;27932:18;;37337:76:12;27607:349:15;37337:76:12;37432:16;37451:19;37464:6;37451:10;:19;:::i;:::-;37495:18;:25;37432:38;;-1:-1:-1;37484:36:12;;37480:103;;;-1:-1:-1;37547:18:12;:25;37480:103;37601:34;37663:21;37674:10;37663:8;:21;:::i;:::-;-1:-1:-1;;;;;37638:47:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37638:47:12;;;;;;;;;;;;;;;;-1:-1:-1;37601:84:12;-1:-1:-1;37712:10:12;37695:119;37728:8;37724:1;:12;37695:119;;;37782:18;37801:1;37782:21;;;;;;;;:::i;:::-;;;;;;;;;;37757:46;;;;;;;;37782:21;;;;;;;37757:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37757:46:12;;;;;;;;;;;;;;;;;;;:6;37764:14;37768:10;37764:1;:14;:::i;:::-;37757:22;;;;;;;;:::i;:::-;;;;;;:46;;;;37738:3;;;;;:::i;:::-;;;;37695:119;;17363:1664;-1:-1:-1;;;;;17578:18:12;;17514:22;17578:18;;;:12;:18;;;;;;;;;17627:20;:26;;;;;;17684:14;;17445:25;;;;17514:22;;17578:18;;17514:22;;17684:27;;17627:26;;17684:27;:::i;:::-;17663:48;;17734:10;17748:1;17734:15;17730:92;;-1:-1:-1;;17773:16:12;;;17787:1;17773:16;;;;;;17791;;;;;;;;;17773;;-1:-1:-1;17773:16:12;;-1:-1:-1;17787:1:12;-1:-1:-1;17765:46:12;;-1:-1:-1;17765:46:12;17730:92;17865:10;-1:-1:-1;;;;;17851:25:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17851:25:12;;17840:36;;17910:10;-1:-1:-1;;;;;17896:25:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17896:25:12;-1:-1:-1;17886:35:12;-1:-1:-1;17940:19:12;17990:10;17973:492;18006:14;;18002:1;:18;17973:492;;;18045:18;;18041:414;;18083:16;18120:9;;;:6;:9;;;;;:26;;;18150:5;;18103:43;;:14;:43;:::i;:::-;18102:53;;;;:::i;:::-;18083:72;-1:-1:-1;18177:12:12;;18173:268;;18237:1;18213:8;18222:11;18213:21;;;;;;;;:::i;:::-;;;;;;:25;;;;;18283:8;18260:7;18268:11;18260:20;;;;;;;;:::i;:::-;;;;;;;;;;:31;18313:26;18331:8;18313:26;;:::i;:::-;;-1:-1:-1;18361:26:12;18379:8;18361:26;;:::i;:::-;;-1:-1:-1;18409:13:12;;;;:::i;:::-;;;;18173:268;18065:390;18041:414;18022:3;;;;:::i;:::-;;;;17973:492;;;;18542:10;18528:11;:24;18524:436;;;18568:32;18617:11;-1:-1:-1;;;;;18603:26:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18603:26:12;;18568:61;;18643:31;18691:11;-1:-1:-1;;;;;18677:26:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18677:26:12;;18643:60;;18722:9;18717:155;18741:11;18737:1;:15;18717:155;;;18798:8;18807:1;18798:11;;;;;;;;:::i;:::-;;;;;;;18777:15;18793:1;18777:18;;;;;;;;:::i;:::-;;;;;;:32;;;;;18847:7;18855:1;18847:10;;;;;;;;:::i;:::-;;;;;;;18827:14;18842:1;18827:17;;;;;;;;:::i;:::-;;;;;;;;;;:30;18754:3;;;;:::i;:::-;;;;18717:155;;;-1:-1:-1;18896:15:12;;-1:-1:-1;18935:14:12;-1:-1:-1;18524:436:12;18978:42;;;;17363:1664;;;;;:::o;23069:2424::-;2500:21:10;:19;:21::i;:::-;-1:-1:-1;;;;;23191:18:12;::::1;23156:32;23191:18:::0;;;:10:::1;:18;::::0;;;;;;;:27;;;;;;;;23236:20;;23228:54:::1;;;;-1:-1:-1::0;;;23228:54:12::1;;;;;;;:::i;:::-;23310:10;-1:-1:-1::0;;;;;23300:20:12;::::1;::::0;23292:55:::1;;;::::0;-1:-1:-1;;;23292:55:12;;28163:2:15;23292:55:12::1;::::0;::::1;28145:21:15::0;28202:2;28182:18;;;28175:30;-1:-1:-1;;;28221:18:15;;;28214:52;28283:18;;23292:55:12::1;27961:346:15::0;23292:55:12::1;23382:20:::0;;23432:24:::1;::::0;::::1;::::0;23485:23:::1;::::0;::::1;::::0;23366:13:::1;23599:17:::0;;::::1;:41;;23639:1;23599:41;;;23619:17;23627:9:::0;23619:5;:17:::1;:::i;:::-;23578:62:::0;-1:-1:-1;23650:21:12::1;23674:14;23687:1;23578:62:::0;23674:14:::1;:::i;:::-;23650:38:::0;-1:-1:-1;23736:18:12::1;23757:21;23650:38:::0;23757:5;:21:::1;:::i;:::-;24269:10;24256:24;::::0;;;:12:::1;:24;::::0;;;;:38;;23736:42;;-1:-1:-1;23736:42:12;;24256:24;;;:38:::1;::::0;23736:42;;24256:38:::1;:::i;:::-;;;;;;;;24322:10;24304:14;;:28;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;24487:25:12;::::1;;::::0;;;:17:::1;:25;::::0;;;;:38;;24516:9;;24487:25;:38:::1;::::0;24516:9;;24487:38:::1;:::i;:::-;;;;;;;;24588:18;24612:224;;;;;;;;24655:8;24612:224;;;;24687:15;24612:224;;;;24727:5;24612:224;;;;24757:9;24612:224;;;;24788:6;-1:-1:-1::0;;;;;24612:224:12::1;;;;;24815:10;-1:-1:-1::0;;;;;24612:224:12::1;;;::::0;24588:249:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;24588:249:12::1;;;;;-1:-1:-1::0;;;;;24588:249:12::1;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;24588:249:12::1;;;;;-1:-1:-1::0;;;;;24588:249:12::1;;;;;;;;24897:10;:18;24908:6;-1:-1:-1::0;;;;;24897:18:12::1;-1:-1:-1::0;;;;;24897:18:12::1;;;;;;;;;;;;:27;24916:7;24897:27;;;;;;;;;;;;24890:34:::0;::::1;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;24890:34:12::1;;;;;;;;;;;;;25001:13;25017:17;:25;25035:6;-1:-1:-1::0;;;;;25017:25:12::1;-1:-1:-1::0;;;;;25017:25:12::1;;;;;;;;;;;;:34;25043:7;25017:34;;;;;;;;;;;;25001:50;;25061:17;25104:1;25081:13;:20;;;;:24;;;;:::i;:::-;25061:44;;25128:9;25119:5;:18;25115:219;;25153:27;25183:13;25197:9;25183:24;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;25153:54:::1;::::0;;;;::::1;::::0;;;25183:24:::1;::::0;;::::1;;25153:54:::0;;-1:-1:-1;;;;;25153:54:12::1;::::0;;;::::1;::::0;;;::::1;::::0;;;;25221:13:::1;:20:::0;;25153:54;;-1:-1:-1;25153:54:12;;25235:5;;25221:20;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;:30;;:20:::1;::::0;;;::::1;;:30:::0;;-1:-1:-1;;;;;;25221:30:12::1;-1:-1:-1::0;;;;;25221:30:12;;::::1;;::::0;;;;::::1;::::0;-1:-1:-1;25221:30:12;;::::1;::::0;;;;25283:14;;25265:33:::1;::::0;;:17:::1;:33:::0;;;;;;25299:15;;::::1;::::0;25265:50;;;;;;;:58;;;25115:219:::1;25343:13;:19;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;25343:19:12;;;;;;::::1;;::::0;;-1:-1:-1;;;;;;25343:19:12::1;::::0;;-1:-1:-1;25343:19:12::1;::::0;;;;;;;-1:-1:-1;;;;;25379:25:12;::::1;::::0;;;:17:::1;:25:::0;;;;;;:34;;;;;;;;25372:41;;;;25437:49;;4284:25:15;;;4325:18;;;4318:34;;;25455:10:12::1;::::0;25379:25;;25437:49:::1;::::0;4257:18:15;25437:49:12::1;;;;;;;23146:2347;;;;;;;;;2542:20:10::0;1857:1;3068:7;:21;2888:208;14361:432:12;5764:10;5749:26;;;;:14;:26;;;;;;;;5741:53;;;;-1:-1:-1;;;5741:53:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;14451:18:12;::::1;14443:46;;;;-1:-1:-1::0;;;14443:46:12::1;;;;;;;:::i;:::-;14516:1;14507:6;:10;14499:37;;;::::0;-1:-1:-1;;;14499:37:12;;23180:2:15;14499:37:12::1;::::0;::::1;23162:21:15::0;23219:2;23199:18;;;23192:30;-1:-1:-1;;;23238:18:15;;;23231:44;23292:18;;14499:37:12::1;22978:338:15::0;14499:37:12::1;-1:-1:-1::0;;;;;14631:18:12;::::1;;::::0;;;:12:::1;:18;::::0;;;;;14614:14:::1;::::0;14652:6;;14614:35:::1;::::0;::::1;:::i;:::-;:44;;;;:::i;:::-;14597:14;:61:::0;-1:-1:-1;;;;;14709:18:12;::::1;;::::0;;;:12:::1;:18;::::0;;;;;;:27;;;14760:26;::::1;::::0;::::1;::::0;14730:6;529:25:15;;517:2;502:18;;383:177;14760:26:12::1;;;;;;;;14361:432:::0;;:::o;22434:480::-;22563:10;22517:32;22552:22;;;:10;:22;;;;;;;;:31;;;;;;;;22601:20;;22593:54;;;;-1:-1:-1;;;22593:54:12;;;;;;;:::i;:::-;22665:21;;;;-1:-1:-1;;;;;22665:21:12;22690:10;22665:35;22657:62;;;;-1:-1:-1;;;22657:62:12;;26300:2:15;22657:62:12;;;26282:21:15;26339:2;26319:18;;;26312:30;-1:-1:-1;;;26358:18:15;;;26351:44;26412:18;;22657:62:12;26098:338:15;22657:62:12;22752:1;22737:12;:16;22729:47;;;;-1:-1:-1;;;22729:47:12;;23865:2:15;22729:47:12;;;23847:21:15;23904:2;23884:18;;;23877:30;-1:-1:-1;;;23923:18:15;;;23916:48;23981:18;;22729:47:12;23663:342:15;22729:47:12;22795:24;;;:39;;;22858:49;;;4284:25:15;;;4340:2;4325:18;;4318:34;;;22873:10:12;;22858:49;;4257:18:15;22858:49:12;;;;;;;22507:407;22434:480;;:::o;6453:144::-;5764:10;5749:26;;;;:14;:26;;;;;;;;5741:53;;;;-1:-1:-1;;;5741:53:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;6517:17:12;::::1;6509:45;;;;-1:-1:-1::0;;;6509:45:12::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;6564:19:12::1;;::::0;;;:14:::1;:19;::::0;;;;:26;;-1:-1:-1;;6564:26:12::1;6586:4;6564:26;::::0;;6453:144::o;2575:307:10:-;1899:1;2702:7;;:18;2698:86;;2743:30;;-1:-1:-1;;;2743:30:10;;;;;;;;;;;2698:86;1899:1;2858:7;:17;2575:307::o;1219:160:8:-;1328:43;;;-1:-1:-1;;;;;4023:32:15;;1328:43:8;;;4005:51:15;4072:18;;;;4065:34;;;1328:43:8;;;;;;;;;;3978:18:15;;;;1328:43:8;;;;;;;;-1:-1:-1;;;;;1328:43:8;-1:-1:-1;;;1328:43:8;;;1301:71;;1321:5;;1301:19;:71::i;:::-;1219:160;;;:::o;8115:913:12:-;8331:7;8363:18;;;:43;;-1:-1:-1;8385:21:12;;8363:43;8359:98;;;-1:-1:-1;8429:1:12;8422:8;;8359:98;8535:20;8581:16;8559:18;:10;8572:5;8559:18;:::i;:::-;8558:39;;;;:::i;:::-;8535:62;-1:-1:-1;8607:17:12;8647:13;8628:15;:7;8638:5;8628:15;:::i;:::-;8627:33;;;;:::i;:::-;8607:53;;8699:9;8683:12;:25;8679:101;;8731:1;8724:8;;;;;;8679:101;8848:24;8875;8890:9;8875:12;:24;:::i;:::-;8848:51;-1:-1:-1;8909:24:12;8974:5;8937:33;8956:14;8848:51;8937:33;:::i;:::-;8936:43;;;;:::i;:::-;8909:70;-1:-1:-1;;;;;8115:913:12;;;;;;;;:::o;8370:720:8:-;8450:18;8478:19;8616:4;8613:1;8606:4;8600:11;8593:4;8587;8583:15;8580:1;8573:5;8566;8561:60;8673:7;8663:176;;8717:4;8711:11;8762:16;8759:1;8754:3;8739:40;8808:16;8803:3;8796:29;8663:176;-1:-1:-1;;8916:1:8;8910:8;8866:16;;-1:-1:-1;8942:15:8;;:68;;8994:11;9009:1;8994:16;;8942:68;;;-1:-1:-1;;;;;8960:26:8;;;:31;8942:68;8938:146;;;9033:40;;-1:-1:-1;;;9033:40:8;;-1:-1:-1;;;;;838:32:15;;9033:40:8;;;820:51:15;793:18;;9033:40:8;674:203:15;8938:146:8;8440:650;;8370:720;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:173:15:-;82:20;;-1:-1:-1;;;;;131:31:15;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:15:o;1170:254::-;1238:6;1246;1299:2;1287:9;1278:7;1274:23;1270:32;1267:52;;;1315:1;1312;1305:12;1267:52;1338:29;1357:9;1338:29;:::i;:::-;1328:39;1414:2;1399:18;;;;1386:32;;-1:-1:-1;;;1170:254:15:o;1429:180::-;1488:6;1541:2;1529:9;1520:7;1516:23;1512:32;1509:52;;;1557:1;1554;1547:12;1509:52;-1:-1:-1;1580:23:15;;1429:180;-1:-1:-1;1429:180:15:o;1614:367::-;1677:8;1687:6;1741:3;1734:4;1726:6;1722:17;1718:27;1708:55;;1759:1;1756;1749:12;1708:55;-1:-1:-1;1782:20:15;;-1:-1:-1;;;;;1814:30:15;;1811:50;;;1857:1;1854;1847:12;1811:50;1894:4;1886:6;1882:17;1870:29;;1954:3;1947:4;1937:6;1934:1;1930:14;1922:6;1918:27;1914:38;1911:47;1908:67;;;1971:1;1968;1961:12;1986:437;2072:6;2080;2133:2;2121:9;2112:7;2108:23;2104:32;2101:52;;;2149:1;2146;2139:12;2101:52;2189:9;2176:23;-1:-1:-1;;;;;2214:6:15;2211:30;2208:50;;;2254:1;2251;2244:12;2208:50;2293:70;2355:7;2346:6;2335:9;2331:22;2293:70;:::i;:::-;2382:8;;2267:96;;-1:-1:-1;1986:437:15;-1:-1:-1;;;;1986:437:15:o;2428:435::-;2481:3;2519:5;2513:12;2546:6;2541:3;2534:19;2572:4;2601:2;2596:3;2592:12;2585:19;;2638:2;2631:5;2627:14;2659:1;2669:169;2683:6;2680:1;2677:13;2669:169;;;2744:13;;2732:26;;2778:12;;;;2813:15;;;;2705:1;2698:9;2669:169;;;-1:-1:-1;2854:3:15;;2428:435;-1:-1:-1;;;;;2428:435:15:o;2868:536::-;3153:2;3142:9;3135:21;3116:4;3179:56;3231:2;3220:9;3216:18;3208:6;3179:56;:::i;:::-;3283:9;3275:6;3271:22;3266:2;3255:9;3251:18;3244:50;3311:44;3348:6;3340;3311:44;:::i;:::-;3303:52;;;3391:6;3386:2;3375:9;3371:18;3364:34;2868:536;;;;;;:::o;4363:773::-;4485:6;4493;4501;4509;4562:2;4550:9;4541:7;4537:23;4533:32;4530:52;;;4578:1;4575;4568:12;4530:52;4618:9;4605:23;-1:-1:-1;;;;;4688:2:15;4680:6;4677:14;4674:34;;;4704:1;4701;4694:12;4674:34;4743:70;4805:7;4796:6;4785:9;4781:22;4743:70;:::i;:::-;4832:8;;-1:-1:-1;4717:96:15;-1:-1:-1;4920:2:15;4905:18;;4892:32;;-1:-1:-1;4936:16:15;;;4933:36;;;4965:1;4962;4955:12;4933:36;;5004:72;5068:7;5057:8;5046:9;5042:24;5004:72;:::i;:::-;4363:773;;;;-1:-1:-1;5095:8:15;-1:-1:-1;;;;4363:773:15:o;5141:248::-;5209:6;5217;5270:2;5258:9;5249:7;5245:23;5241:32;5238:52;;;5286:1;5283;5276:12;5238:52;-1:-1:-1;;5309:23:15;;;5379:2;5364:18;;;5351:32;;-1:-1:-1;5141:248:15:o;5687:1485::-;6087:2;6099:21;;;6169:13;;6072:18;;;6191:22;;;6039:4;;6232:3;;6251:18;;;;6288:4;6315:15;;;6039:4;6358:195;6372:6;6369:1;6366:13;6358:195;;;6437:13;;-1:-1:-1;;;;;6433:39:15;6421:52;;6493:12;;;;6528:15;;;;6469:1;6387:9;6358:195;;;6362:3;;6598:9;6593:3;6589:19;6584:2;6573:9;6569:18;6562:47;6632:41;6669:3;6661:6;6632:41;:::i;:::-;6709:22;;;6704:2;6689:18;;6682:50;6785:13;;6807:24;;;6889:15;;;;-1:-1:-1;6849:15:15;;;;-1:-1:-1;6924:1:15;6934:210;6950:8;6945:3;6942:17;6934:210;;;7005:51;7050:5;7039:8;7033:15;5469:12;;5457:25;;5531:4;5520:16;;;5514:23;5498:14;;;5491:47;5591:4;5580:16;;;5574:23;-1:-1:-1;;;;;5570:49:15;5554:14;;;5547:73;5669:4;5658:16;;;5652:23;5636:14;;5629:47;5394:288;7005:51;7117:17;;;;7078:14;;;;6978:1;6969:11;6934:210;;;-1:-1:-1;7161:5:15;;5687:1485;-1:-1:-1;;;;;;;;;5687:1485:15:o;7177:260::-;7245:6;7253;7306:2;7294:9;7285:7;7281:23;7277:32;7274:52;;;7322:1;7319;7312:12;7274:52;7345:29;7364:9;7345:29;:::i;:::-;7335:39;;7393:38;7427:2;7416:9;7412:18;7393:38;:::i;:::-;7383:48;;7177:260;;;;;:::o;7442:673::-;7564:6;7572;7580;7588;7596;7604;7612;7620;7673:3;7661:9;7652:7;7648:23;7644:33;7641:53;;;7690:1;7687;7680:12;7641:53;7713:29;7732:9;7713:29;:::i;:::-;7703:39;;7789:2;7778:9;7774:18;7761:32;7751:42;;7840:2;7829:9;7825:18;7812:32;7802:42;;7891:2;7880:9;7876:18;7863:32;7853:42;;7914:39;7948:3;7937:9;7933:19;7914:39;:::i;:::-;7442:673;;;;-1:-1:-1;7442:673:15;;;;7904:49;8000:3;7985:19;;7972:33;;-1:-1:-1;8052:3:15;8037:19;;8024:33;;8104:3;8089:19;8076:33;;-1:-1:-1;7442:673:15;-1:-1:-1;;7442:673:15:o;8120:1527::-;8341:2;8393:21;;;8463:13;;8366:18;;;8485:22;;;8312:4;;8341:2;8526;;8544:18;;;;8585:15;;;8312:4;8628:993;8642:6;8639:1;8636:13;8628:993;;;8701:13;;8739:9;;8727:22;;8789:11;;;8783:18;8769:12;;;8762:40;8842:11;;;8836:18;8822:12;;;8815:40;8878:4;8922:11;;;8916:18;8902:12;;;8895:40;8958:4;9002:11;;;8996:18;8982:12;;;8975:40;9038:4;9082:11;;;9076:18;9062:12;;;9055:40;9118:4;9162:11;;;9156:18;9142:12;;;9135:40;9198:4;9241:11;;;9235:18;-1:-1:-1;;;;;631:31:15;9299:12;;;619:44;9335:6;9382:11;;;9376:18;952:13;945:21;9439:12;;;933:34;9476:6;9523:12;;;9517:19;9502:13;;;9495:42;9566:6;9557:16;;;;9596:15;;;;8664:1;8657:9;8628:993;;;-1:-1:-1;9638:3:15;;8120:1527;-1:-1:-1;;;;;;;8120:1527:15:o;9652:965::-;9889:2;9941:21;;;10011:13;;9914:18;;;10033:22;;;9860:4;;9889:2;10074;;10092:18;;;;10133:15;;;9860:4;10176:415;10190:6;10187:1;10184:13;10176:415;;;10249:13;;10287:9;;10275:22;;10337:11;;;10331:18;10317:12;;;10310:40;10390:11;;;10384:18;10370:12;;;10363:40;10426:4;10474:11;;;10468:18;-1:-1:-1;;;;;10464:44:15;10450:12;;;10443:66;10538:4;10529:14;;;;10566:15;;;;10505:1;10205:9;10176:415;;10622:316;10699:6;10707;10715;10768:2;10756:9;10747:7;10743:23;10739:32;10736:52;;;10784:1;10781;10774:12;10736:52;-1:-1:-1;;10807:23:15;;;10877:2;10862:18;;10849:32;;-1:-1:-1;10928:2:15;10913:18;;;10900:32;;10622:316;-1:-1:-1;10622:316:15:o;10943:535::-;11047:6;11055;11063;11071;11079;11087;11140:3;11128:9;11119:7;11115:23;11111:33;11108:53;;;11157:1;11154;11147:12;11108:53;11180:29;11199:9;11180:29;:::i;:::-;11170:39;;11256:2;11245:9;11241:18;11228:32;11218:42;;11307:2;11296:9;11292:18;11279:32;11269:42;;11358:2;11347:9;11343:18;11330:32;11320:42;;11381:39;11415:3;11404:9;11400:19;11381:39;:::i;:::-;11371:49;;11467:3;11456:9;11452:19;11439:33;11429:43;;10943:535;;;;;;;;:::o;11802:697::-;12019:2;12071:21;;;12141:13;;12044:18;;;12163:22;;;11990:4;;12019:2;12242:15;;;;12216:2;12201:18;;;11990:4;12285:188;12299:6;12296:1;12293:13;12285:188;;;12348:43;12387:3;12378:6;12372:13;11560:5;11554:12;11549:3;11542:25;11616:4;11609:5;11605:16;11599:23;11592:4;11587:3;11583:14;11576:47;11672:4;11665:5;11661:16;11655:23;11648:4;11643:3;11639:14;11632:47;11728:4;11721:5;11717:16;11711:23;11704:4;11699:3;11695:14;11688:47;11784:4;11777:5;11773:16;11767:23;11760:4;11755:3;11751:14;11744:47;;;11483:314;12348:43;12448:15;;;;12420:4;12411:14;;;;;12321:1;12314:9;12285:188;;;-1:-1:-1;12490:3:15;;11802:697;-1:-1:-1;;;;;;11802:697:15:o;13100:253::-;5469:12;;5457:25;;5531:4;5520:16;;;5514:23;5498:14;;;5491:47;5591:4;5580:16;;;5574:23;-1:-1:-1;;;;;5570:49:15;5554:14;;;5547:73;5669:4;5658:16;;;5652:23;5636:14;;;5629:47;13288:3;13273:19;;13301:46;5394:288;13573:264;13437:12;;13425:25;;13499:4;13488:16;;;13482:23;13466:14;;;13459:47;13555:4;13544:16;;;13538:23;13522:14;;;13515:47;13769:2;13754:18;;13781:50;13358:210;13842:241;14022:3;14007:19;;14035:42;14011:9;14059:6;11560:5;11554:12;11549:3;11542:25;11616:4;11609:5;11605:16;11599:23;11592:4;11587:3;11583:14;11576:47;11672:4;11665:5;11661:16;11655:23;11648:4;11643:3;11639:14;11632:47;11728:4;11721:5;11717:16;11711:23;11704:4;11699:3;11695:14;11688:47;11784:4;11777:5;11773:16;11767:23;11760:4;11755:3;11751:14;11744:47;;;11483:314;14952:465;15209:2;15198:9;15191:21;15172:4;15235:56;15287:2;15276:9;15272:18;15264:6;15235:56;:::i;:::-;15339:9;15331:6;15327:22;15322:2;15311:9;15307:18;15300:50;15367:44;15404:6;15396;15367:44;:::i;16214:721::-;16447:2;16499:21;;;16569:13;;16472:18;;;16591:22;;;16418:4;;16447:2;16670:15;;;;16644:2;16629:18;;;16418:4;16713:196;16727:6;16724:1;16721:13;16713:196;;;16776:51;16823:3;16814:6;16808:13;13437:12;;13425:25;;13499:4;13488:16;;;13482:23;13466:14;;;13459:47;13555:4;13544:16;;;13538:23;13522:14;;13515:47;13358:210;16776:51;16884:15;;;;16856:4;16847:14;;;;;16749:1;16742:9;16713:196;;16940:1210;17183:2;17235:21;;;17305:13;;17208:18;;;17327:22;;;17154:4;;17183:2;17368;;17386:18;;;;17427:15;;;17154:4;17470:654;17484:6;17481:1;17478:13;17470:654;;;17543:13;;17581:9;;17569:22;;17631:11;;;17625:18;17611:12;;;17604:40;17684:11;;;17678:18;17664:12;;;17657:40;17720:4;17764:11;;;17758:18;17744:12;;;17737:40;17800:4;17843:11;;;17837:18;-1:-1:-1;;;;;17931:21:15;;;17917:12;;;17910:43;;;;17886:3;18024:11;;;18018:18;18014:27;18000:12;;;17993:49;18071:4;18062:14;;;;18099:15;;;;17895:1;17499:9;17470:654;;18155:127;18216:10;18211:3;18207:20;18204:1;18197:31;18247:4;18244:1;18237:15;18271:4;18268:1;18261:15;18287:168;18360:9;;;18391;;18408:15;;;18402:22;;18388:37;18378:71;;18429:18;;:::i;18460:217::-;18500:1;18526;18516:132;;18570:10;18565:3;18561:20;18558:1;18551:31;18605:4;18602:1;18595:15;18633:4;18630:1;18623:15;18516:132;-1:-1:-1;18662:9:15;;18460:217::o;18682:125::-;18747:9;;;18768:10;;;18765:36;;;18781:18;;:::i;18812:128::-;18879:9;;;18900:11;;;18897:37;;;18914:18;;:::i;18945:135::-;18984:3;19005:17;;;19002:43;;19025:18;;:::i;:::-;-1:-1:-1;19072:1:15;19061:13;;18945:135::o;19085:127::-;19146:10;19141:3;19137:20;19134:1;19127:31;19177:4;19174:1;19167:15;19201:4;19198:1;19191:15;19562:338;19764:2;19746:21;;;19803:2;19783:18;;;19776:30;-1:-1:-1;;;19837:2:15;19822:18;;19815:44;19891:2;19876:18;;19562:338::o;21622:127::-;21683:10;21678:3;21674:20;21671:1;21664:31;21714:4;21711:1;21704:15;21738:4;21735:1;21728:15;21754:184;21824:6;21877:2;21865:9;21856:7;21852:23;21848:32;21845:52;;;21893:1;21890;21883:12;21845:52;-1:-1:-1;21916:16:15;;21754:184;-1:-1:-1;21754:184:15:o;22634:339::-;22836:2;22818:21;;;22875:2;22855:18;;;22848:30;-1:-1:-1;;;22909:2:15;22894:18;;22887:45;22964:2;22949:18;;22634:339::o;25752:341::-;25954:2;25936:21;;;25993:2;25973:18;;;25966:30;-1:-1:-1;;;26027:2:15;26012:18;;26005:47;26084:2;26069:18;;25752:341::o;26441:127::-;26502:10;26497:3;26493:20;26490:1;26483:31;26533:4;26530:1;26523:15;26557:4;26554:1;26547:15"},"methodIdentifiers":{"addBot(address)":"ffecf516","addOwner(address)":"7065cb48","authorizedBots(address)":"3ba8396e","batchCreateUserStakes(address[],uint256[])":"549e61d3","buySellStake(address,uint256)":"eb44e0a3","calculateUnclaimedFunds(address)":"00159da6","cancelSellStake(uint256)":"953d16bf","cancellationFee()":"6ef569a5","claimUnlockedFunds()":"0c7d6386","clearVesting(address)":"48ea286d","createUserStake(address,uint256)":"f109208f","createVesting(address,uint256,uint256,uint256,address,uint256)":"9437e32e","createVesting(address,uint256,uint256,uint256,address,uint256,uint256,uint256)":"74d1c8e3","currentEpochId()":"eacdc5ff","dollarsVested(address)":"592d1dd1","endEpoch(uint256,uint256,uint256)":"8851ec0f","epochs(uint256)":"c6b61e4c","getAllSellStakes()":"62cd6a09","getAllWithdrawStakes(address)":"c7b530b0","getAllWithdrawVestings(address)":"7d08af97","getEpoch(uint256)":"bc0bc6ba","getEpochs(uint256,uint256)":"96fd111a","getMarketplaceHistory(uint256,uint256)":"cfcf3319","getMarketplaceHistoryCount()":"61d1080b","getNetStake(address)":"1eb9e53e","getSellStake(address,uint256)":"a0d46758","getUnclaimedFundsBreakdown(address)":"e88f8e66","getUnlockedVesting(address,uint256)":"80ca0ecf","getUnlockedVestingBonus(address,uint256)":"0a84096a","getUserMarketplaceSales(address)":"7e6d9926","getUserStakeInfo(address)":"c32d3ae2","getUserTotalUnclaimedUsdValue(address)":"7bc221ac","getVestedTotals(address[])":"3c92f98d","getVestingSchedule(address,uint256)":"bed9757e","getVestings(address)":"7a0c6dc0","getWithdrawStake(address,uint256)":"b6c3dc4c","getWithdrawVestingCounter()":"e079fd91","lockupDuration()":"1ada70a8","marketplaceHistory(uint256)":"9f3a676c","marketplaceMin()":"fe2f50d0","marketplace_sales(address)":"8f82818f","migrateVestings(address,address)":"7b3cbecb","owner()":"8da5cb5b","owners(address)":"022914a7","paybackPercent()":"a36be55c","priceOracles(address)":"01374518","removeOwner(address)":"173825d9","sellStake(uint256,uint256)":"58116227","sellStakeKeys(uint256)":"441a4175","sellStakes(address,uint256)":"43a32f89","setPriceOracle(address,address)":"67a74ddc","testUpgradeFunction()":"c2676603","totalBigStakes()":"2ded58aa","unlockDelay()":"0519da32","unlockSchedules(address,uint256)":"51f6cf2f","updateCancellationFee(uint256)":"1aefa2d1","updateLockupDuration(uint256)":"c36d03fd","updateMarketplaceMin(uint256)":"51e62472","updatePaybackPercent(uint256)":"3253ea5c","updateSellStake(uint256,uint256)":"f2bb5630","updateUnlockDelay(uint256)":"ce13d090","userBigStake(address)":"13baee5b","userLastClaimedEpoch(address)":"da1b4364","vestedTotal(address)":"092c7610","vestings(address,uint256)":"bd84477d","withdrawFromVestingPool(address,uint256)":"3f35e722","withdrawStake(uint256)":"25d5971f","withdrawStakes(address,uint256)":"cc573a91","withdrawVestingLiabilities(address)":"87b4b105"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"ReentrancyGuardReentrantCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"bonus\",\"type\":\"uint256\"}],\"name\":\"BonusClaimed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"seller\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"fee\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"stakeId\",\"type\":\"uint256\"}],\"name\":\"CancellationFeePaid\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"epochId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"treasuryTvl\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"unlockPercentage\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"paybackPercent\",\"type\":\"uint256\"}],\"name\":\"EpochEnded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"FundsClaimed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"FundsWithdrawn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"StakeCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"seller\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"stakeId\",\"type\":\"uint256\"}],\"name\":\"StakeSaleCancelled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"seller\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"buyer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"saleAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"stakeId\",\"type\":\"uint256\"}],\"name\":\"StakeSold\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"seller\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"saleAmount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"stakeId\",\"type\":\"uint256\"}],\"name\":\"StakeUpForSale\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"stakeId\",\"type\":\"uint256\"}],\"name\":\"StakeWithdrawn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"UnlockScheduleSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"bonus\",\"type\":\"uint256\"}],\"name\":\"VestingClaimed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"bonus\",\"type\":\"uint256\"}],\"name\":\"VestingCreated\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"bot\",\"type\":\"address\"}],\"name\":\"addBot\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"addOwner\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"authorizedBots\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"users\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"}],\"name\":\"batchCreateUserStakes\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"seller\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"stakeId\",\"type\":\"uint256\"}],\"name\":\"buySellStake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"calculateUnclaimedFunds\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"totalUnclaimed\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"stakeId\",\"type\":\"uint256\"}],\"name\":\"cancelSellStake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cancellationFee\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimUnlockedFunds\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"clearVesting\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"createUserStake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"bonus\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lockedUntil\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"usdAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lastClaimed\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"createdAt\",\"type\":\"uint256\"}],\"name\":\"createVesting\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"bonus\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lockedUntil\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"usdAmount\",\"type\":\"uint256\"}],\"name\":\"createVesting\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currentEpochId\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"dollarsVested\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"estDaysRemaining\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"currentTreasuryTvl\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_paybackPercent\",\"type\":\"uint256\"}],\"name\":\"endEpoch\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"epochs\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"estDaysRemaining\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"currentTreasuryTvl\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"totalLiability\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"unlockPercentage\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"timestamp\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getAllSellStakes\",\"outputs\":[{\"internalType\":\"address[]\",\"name\":\"sellers\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"stakeIds\",\"type\":\"uint256[]\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"salePrice\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"seller\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"listTime\",\"type\":\"uint256\"}],\"internalType\":\"struct CunaFinanceBsc.SellStake[]\",\"name\":\"sellStakeData\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"getAllWithdrawStakes\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakeId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"unlockTime\",\"type\":\"uint256\"}],\"internalType\":\"struct CunaFinanceBsc.WithdrawStake[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"getAllWithdrawVestings\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"vestingId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"unlockTime\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"internalType\":\"struct CunaFinanceBsc.WithdrawVesting[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"epochId\",\"type\":\"uint256\"}],\"name\":\"getEpoch\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"estDaysRemaining\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"currentTreasuryTvl\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"totalLiability\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"unlockPercentage\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"timestamp\",\"type\":\"uint256\"}],\"internalType\":\"struct CunaFinanceBsc.Epoch\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"startId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"endId\",\"type\":\"uint256\"}],\"name\":\"getEpochs\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"estDaysRemaining\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"currentTreasuryTvl\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"totalLiability\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"unlockPercentage\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"timestamp\",\"type\":\"uint256\"}],\"internalType\":\"struct CunaFinanceBsc.Epoch[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"startIndex\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"getMarketplaceHistory\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"listTime\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"saleTime\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"origValue\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"saleValue\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"seller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"buyer\",\"type\":\"address\"}],\"internalType\":\"struct CunaFinanceBsc.MarketplaceHistory[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getMarketplaceHistoryCount\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"getNetStake\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"seller\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"stakeId\",\"type\":\"uint256\"}],\"name\":\"getSellStake\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"salePrice\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"seller\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"listTime\",\"type\":\"uint256\"}],\"internalType\":\"struct CunaFinanceBsc.SellStake\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"getUnclaimedFundsBreakdown\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"epochIds\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256\",\"name\":\"totalUnclaimed\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_vestingIndex\",\"type\":\"uint256\"}],\"name\":\"getUnlockedVesting\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_vestingIndex\",\"type\":\"uint256\"}],\"name\":\"getUnlockedVestingBonus\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"getUserMarketplaceSales\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"getUserStakeInfo\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"netStake\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"unclaimedFunds\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"totalOriginalStake\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"getUserTotalUnclaimedUsdValue\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"totalUsd\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"_tokens\",\"type\":\"address[]\"}],\"name\":\"getVestedTotals\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"usdValues\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256\",\"name\":\"totalUsd\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_vestingIndex\",\"type\":\"uint256\"}],\"name\":\"getVestingSchedule\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"getVestings\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"bonus\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lockedUntil\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"claimedAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"claimedBonus\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lastClaimed\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"createdAt\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"complete\",\"type\":\"bool\"},{\"internalType\":\"uint256\",\"name\":\"usdAmount\",\"type\":\"uint256\"}],\"internalType\":\"struct CunaFinanceBsc.Vesting[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"stakeId\",\"type\":\"uint256\"}],\"name\":\"getWithdrawStake\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakeId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"unlockTime\",\"type\":\"uint256\"}],\"internalType\":\"struct CunaFinanceBsc.WithdrawStake\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getWithdrawVestingCounter\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"lockupDuration\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"marketplaceHistory\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"listTime\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"saleTime\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"origValue\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"saleValue\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"seller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"buyer\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"marketplaceMin\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"marketplace_sales\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"oldAddress\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"newAddress\",\"type\":\"address\"}],\"name\":\"migrateVestings\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"owners\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"paybackPercent\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"priceOracles\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"}],\"name\":\"removeOwner\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"salePrice\",\"type\":\"uint256\"}],\"name\":\"sellStake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"sellStakeKeys\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"seller\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"stakeId\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"sellStakes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"salePrice\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"seller\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"listTime\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_oracle\",\"type\":\"address\"}],\"name\":\"setPriceOracle\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"testUpgradeFunction\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalBigStakes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"unlockDelay\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"unlockSchedules\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"timeOffset\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"percentage\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_newFee\",\"type\":\"uint256\"}],\"name\":\"updateCancellationFee\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_duration\",\"type\":\"uint256\"}],\"name\":\"updateLockupDuration\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_newMin\",\"type\":\"uint256\"}],\"name\":\"updateMarketplaceMin\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_newPercent\",\"type\":\"uint256\"}],\"name\":\"updatePaybackPercent\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"stakeId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"newSalePrice\",\"type\":\"uint256\"}],\"name\":\"updateSellStake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_delay\",\"type\":\"uint256\"}],\"name\":\"updateUnlockDelay\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"userBigStake\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"userLastClaimedEpoch\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"vestedTotal\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"vestings\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"bonus\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lockedUntil\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"claimedAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"claimedBonus\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lastClaimed\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"createdAt\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"complete\",\"type\":\"bool\"},{\"internalType\":\"uint256\",\"name\":\"usdAmount\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"withdrawFromVestingPool\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"stakeId\",\"type\":\"uint256\"}],\"name\":\"withdrawStake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"withdrawStakes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"stakeId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"unlockTime\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"withdrawVestingLiabilities\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"errors\":{\"ReentrancyGuardReentrantCall()\":[{\"details\":\"Unauthorized reentrant call.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}]},\"kind\":\"dev\",\"methods\":{\"batchCreateUserStakes(address[],uint256[])\":{\"details\":\"Only to be used by bots for initial setup\",\"params\":{\"amounts\":\"Array of stake amounts (must match users length)\",\"users\":\"Array of user addresses\"}},\"buySellStake(address,uint256)\":{\"params\":{\"seller\":\"The address of the seller \",\"stakeId\":\"The stake ID to buy\"}},\"cancelSellStake(uint256)\":{\"params\":{\"stakeId\":\"The stake ID to cancel\"}},\"clearVesting(address)\":{\"details\":\"Only to be used by bots in emergencies\",\"params\":{\"user\":\"The user whose vestings will be ended and 0'd\"}},\"createUserStake(address,uint256)\":{\"details\":\"Only to be used by bots for initial setup or emergency adjustments\",\"params\":{\"amount\":\"The stake amount\",\"user\":\"The user address to create/update stake for\"}},\"createVesting(address,uint256,uint256,uint256,address,uint256)\":{\"details\":\"Only to be used by bots for manual vesting creation\",\"params\":{\"amount\":\"The amount for the vesting\",\"bonus\":\"The bonus amount for the vesting\",\"lockedUntil\":\"The unlock timestamp for the vesting\",\"token\":\"The token address for the vesting\",\"usdAmount\":\"The USD value of the vesting\",\"user\":\"The user address to create the vesting for\"}},\"endEpoch(uint256,uint256,uint256)\":{\"params\":{\"_paybackPercent\":\"Percentage multiplier for unlock calculation (scaled by 10000)\",\"currentTreasuryTvl\":\"Current treasury total value locked\",\"estDaysRemaining\":\"Estimated days remaining for the protocol\"}},\"getAllSellStakes()\":{\"returns\":{\"sellStakeData\":\"Array of SellStake structs\",\"sellers\":\"Array of seller addresses\",\"stakeIds\":\"Array of stake IDs\"}},\"getAllWithdrawVestings(address)\":{\"params\":{\"user\":\"The address to evaluate.\"},\"returns\":{\"_0\":\"An array of WithdrawVesting for the given user.\"}},\"getMarketplaceHistory(uint256,uint256)\":{\"params\":{\"length\":\"Number of entries to return\",\"startIndex\":\"Starting index in history array\"},\"returns\":{\"_0\":\"Array of MarketplaceHistory structs\"}},\"getMarketplaceHistoryCount()\":{\"returns\":{\"_0\":\"Total number of marketplace transactions\"}},\"getSellStake(address,uint256)\":{\"params\":{\"seller\":\"The seller address\",\"stakeId\":\"The stake ID\"},\"returns\":{\"_0\":\"The SellStake struct\"}},\"getUserMarketplaceSales(address)\":{\"params\":{\"user\":\"The user address\"},\"returns\":{\"_0\":\"Total sales amount for the user\"}},\"getUserTotalUnclaimedUsdValue(address)\":{\"returns\":{\"totalUsd\":\"The total unclaimed stake value, in USD (1e18 precision).\"}},\"getVestedTotals(address[])\":{\"params\":{\"_tokens\":\"The array of token addresses to evaluate.\"},\"returns\":{\"amounts\":\"The array of vested amounts for each token.\",\"totalUsd\":\"The total USD value of all vested tokens in the array.\",\"usdValues\":\"The array of USD values for each token's vested amount.\"}},\"getWithdrawVestingCounter()\":{\"returns\":{\"_0\":\"Current counter value for tracking unique withdrawal IDs\"}},\"migrateVestings(address,address)\":{\"details\":\"Only to be used by bots for account migrations\",\"params\":{\"newAddress\":\"The address to migrate vestings to\",\"oldAddress\":\"The address with existing vestings to migrate from\"}},\"sellStake(uint256,uint256)\":{\"params\":{\"salePrice\":\"The price seller wants to receive\",\"value\":\"The payback value to sell (must be >= marketplaceMin)\"}},\"testUpgradeFunction()\":{\"returns\":{\"_0\":\"Returns a constant value to verify upgrade worked\"}},\"updateCancellationFee(uint256)\":{\"params\":{\"_newFee\":\"The fee percentage (scaled by 10000), ex: 500 = 5%\"}},\"updateMarketplaceMin(uint256)\":{\"params\":{\"_newMin\":\"The minimum value in USD (with 18 decimals), ex: 25 * 1e18 = $25\"}},\"updateSellStake(uint256,uint256)\":{\"params\":{\"newSalePrice\":\"The new sale price\",\"stakeId\":\"The stake ID to update\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"addBot(address)\":{\"notice\":\"Function to add a bot to the list (only callable by the contract owner)\"},\"batchCreateUserStakes(address[],uint256[])\":{\"notice\":\"Batch create stakes for multiple users (efficient for migration)\"},\"buySellStake(address,uint256)\":{\"notice\":\"Buy a listed stake from marketplace\"},\"calculateUnclaimedFunds(address)\":{\"notice\":\"Calculate total unclaimed funds for a user across all epochs since last claim\"},\"cancelSellStake(uint256)\":{\"notice\":\"Cancel a listing and restore the value to big stake (minus cancellation fee)\"},\"claimUnlockedFunds()\":{\"notice\":\"Claim unlocked funds and create withdrawable stakes\"},\"clearVesting(address)\":{\"notice\":\"This function will end and clear a user's vestings.\"},\"createUserStake(address,uint256)\":{\"notice\":\"Create or update a user's big stake (for migration or manual adjustment)\"},\"createVesting(address,uint256,uint256,uint256,address,uint256)\":{\"notice\":\"Creates a vesting for a given user\"},\"endEpoch(uint256,uint256,uint256)\":{\"notice\":\"End current epoch and calculate unlock percentage\"},\"getAllSellStakes()\":{\"notice\":\"Get all active marketplace listings\"},\"getAllWithdrawStakes(address)\":{\"notice\":\"Get all withdraw stakes for a user\"},\"getAllWithdrawVestings(address)\":{\"notice\":\"Function that returns an array of all the user's withdrawVestings.\"},\"getEpoch(uint256)\":{\"notice\":\"Get epoch information by ID\"},\"getEpochs(uint256,uint256)\":{\"notice\":\"Get multiple epochs for analysis\"},\"getMarketplaceHistory(uint256,uint256)\":{\"notice\":\"Get marketplace history\"},\"getMarketplaceHistoryCount()\":{\"notice\":\"Get total marketplace history count\"},\"getNetStake(address)\":{\"notice\":\"Get user's net stake (big stake minus unclaimed funds)\"},\"getSellStake(address,uint256)\":{\"notice\":\"Get a specific marketplace listing\"},\"getUnclaimedFundsBreakdown(address)\":{\"notice\":\"Get detailed unclaimed funds breakdown by epoch\"},\"getUserMarketplaceSales(address)\":{\"notice\":\"Get user's total marketplace sales\"},\"getUserStakeInfo(address)\":{\"notice\":\"Get comprehensive user stake information\"},\"getUserTotalUnclaimedUsdValue(address)\":{\"notice\":\"Returns the total USD value of the user's unclaimed, uncomplete, stake amounts, based on current token prices from the oracle.\"},\"getVestedTotals(address[])\":{\"notice\":\"Returns the vested amounts and USD values for an array of tokens.\"},\"getVestings(address)\":{\"notice\":\"View function to get all vestings for a specific address\"},\"getWithdrawStake(address,uint256)\":{\"notice\":\"Get specific withdraw stake by stakeId\"},\"getWithdrawVestingCounter()\":{\"notice\":\"Returns the current withdraw vesting counter value\"},\"migrateVestings(address,address)\":{\"notice\":\"Migrates all vestings from an old address to a new address\"},\"sellStake(uint256,uint256)\":{\"notice\":\"List payback value for sale on marketplace\"},\"testUpgradeFunction()\":{\"notice\":\"Test function for upgrade verification\"},\"updateCancellationFee(uint256)\":{\"notice\":\"Update cancellation fee percentage\"},\"updateMarketplaceMin(uint256)\":{\"notice\":\"Update marketplace minimum value for listings\"},\"updateSellStake(uint256,uint256)\":{\"notice\":\"Update the sale price of a listing\"},\"withdrawStake(uint256)\":{\"notice\":\"Withdraw claimed funds after unlock period\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/CunaFinanceBsc.sol\":\"CunaFinanceBsc\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x2fa0657dd7b8bc75475a47f64bc04a9adb42236b15d65e6781594ea69a46c3e4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7496f42681aed94bf0142a077324e50b86046610c1724e7c12e96cf1c365914a\",\"dweb:/ipfs/QmZvhNdSAAbN4PKPdheAqwpXukUiXp3Q3TdQccDMg2NDTV\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x982c5cb790ab941d1e04f807120a71709d4c313ba0bfc16006447ffbd27fbbd5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8150ceb4ac947e8a442b2a9c017e01e880b2be2dd958f1fa9bc405f4c5a86508\",\"dweb:/ipfs/QmbcBmFX66AY6Kbhnd5gx7zpkgqnUafo43XnmayAM7zVdB\"]},\"@openzeppelin/contracts/utils/ReentrancyGuard.sol\":{\"keccak256\":\"0x11a5a79827df29e915a12740caf62fe21ebe27c08c9ae3e09abe9ee3ba3866d3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3cf0c69ab827e3251db9ee6a50647d62c90ba580a4d7bbff21f2bea39e7b2f4a\",\"dweb:/ipfs/QmZiKwtKU1SBX4RGfQtY7PZfiapbbu6SZ9vizGQD9UHjRA\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"contracts/CunaFinanceBsc.sol\":{\"keccak256\":\"0xca7df45c24e09e7d3750e7f4ecdd264a1d2b3fa2012be50a9ee841b8d713417e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ed13d8f7a5f230b13b61fb13efa852eaa4f5ff2df3465c98bd0071379df09bbb\",\"dweb:/ipfs/QmU4agnLAtJUM5QKcRJWoXmhdWQSuN1CiNdj7xUZNCZvPA\"]}},\"version\":1}"},"iPriceOracle":{"abi":[{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"getLatestPrice","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":{"getLatestPrice(address)":"16345f18"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"getLatestPrice\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/CunaFinanceBsc.sol\":\"iPriceOracle\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x2fa0657dd7b8bc75475a47f64bc04a9adb42236b15d65e6781594ea69a46c3e4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7496f42681aed94bf0142a077324e50b86046610c1724e7c12e96cf1c365914a\",\"dweb:/ipfs/QmZvhNdSAAbN4PKPdheAqwpXukUiXp3Q3TdQccDMg2NDTV\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x982c5cb790ab941d1e04f807120a71709d4c313ba0bfc16006447ffbd27fbbd5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8150ceb4ac947e8a442b2a9c017e01e880b2be2dd958f1fa9bc405f4c5a86508\",\"dweb:/ipfs/QmbcBmFX66AY6Kbhnd5gx7zpkgqnUafo43XnmayAM7zVdB\"]},\"@openzeppelin/contracts/utils/ReentrancyGuard.sol\":{\"keccak256\":\"0x11a5a79827df29e915a12740caf62fe21ebe27c08c9ae3e09abe9ee3ba3866d3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3cf0c69ab827e3251db9ee6a50647d62c90ba580a4d7bbff21f2bea39e7b2f4a\",\"dweb:/ipfs/QmZiKwtKU1SBX4RGfQtY7PZfiapbbu6SZ9vizGQD9UHjRA\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"contracts/CunaFinanceBsc.sol\":{\"keccak256\":\"0xca7df45c24e09e7d3750e7f4ecdd264a1d2b3fa2012be50a9ee841b8d713417e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ed13d8f7a5f230b13b61fb13efa852eaa4f5ff2df3465c98bd0071379df09bbb\",\"dweb:/ipfs/QmU4agnLAtJUM5QKcRJWoXmhdWQSuN1CiNdj7xUZNCZvPA\"]}},\"version\":1}"}},"contracts/mocks/MockERC20.sol":{"MockERC20":{"abi":[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"value","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_278":{"entryPoint":null,"id":278,"parameterSlots":2,"returnSlots":0},"@_4535":{"entryPoint":null,"id":4535,"parameterSlots":3,"returnSlots":0},"@_mint_581":{"entryPoint":113,"id":581,"parameterSlots":2,"returnSlots":0},"@_update_548":{"entryPoint":179,"id":548,"parameterSlots":3,"returnSlots":0},"abi_decode_string_fromMemory":{"entryPoint":508,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256_fromMemory":{"entryPoint":683,"id":null,"parameterSlots":2,"returnSlots":3},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_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},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":1145,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":858,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":941,"id":null,"parameterSlots":2,"returnSlots":0},"extract_byte_array_length":{"entryPoint":798,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x41":{"entryPoint":486,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:5172:15","statements":[{"nodeType":"YulBlock","src":"6:3:15","statements":[]},{"body":{"nodeType":"YulBlock","src":"46:95:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"63:1:15","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"70:3:15","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"75:10:15","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"66:3:15"},"nodeType":"YulFunctionCall","src":"66:20:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"56:6:15"},"nodeType":"YulFunctionCall","src":"56:31:15"},"nodeType":"YulExpressionStatement","src":"56:31:15"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"103:1:15","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"106:4:15","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"96:6:15"},"nodeType":"YulFunctionCall","src":"96:15:15"},"nodeType":"YulExpressionStatement","src":"96:15:15"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"127:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"130:4:15","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"120:6:15"},"nodeType":"YulFunctionCall","src":"120:15:15"},"nodeType":"YulExpressionStatement","src":"120:15:15"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"14:127:15"},{"body":{"nodeType":"YulBlock","src":"210:776:15","statements":[{"body":{"nodeType":"YulBlock","src":"259:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"268:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"271:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"261:6:15"},"nodeType":"YulFunctionCall","src":"261:12:15"},"nodeType":"YulExpressionStatement","src":"261:12:15"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"238:6:15"},{"kind":"number","nodeType":"YulLiteral","src":"246:4:15","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"234:3:15"},"nodeType":"YulFunctionCall","src":"234:17:15"},{"name":"end","nodeType":"YulIdentifier","src":"253:3:15"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"230:3:15"},"nodeType":"YulFunctionCall","src":"230:27:15"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"223:6:15"},"nodeType":"YulFunctionCall","src":"223:35:15"},"nodeType":"YulIf","src":"220:55:15"},{"nodeType":"YulVariableDeclaration","src":"284:23:15","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"300:6:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"294:5:15"},"nodeType":"YulFunctionCall","src":"294:13:15"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"288:2:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"316:28:15","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"334:2:15","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"338:1:15","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"330:3:15"},"nodeType":"YulFunctionCall","src":"330:10:15"},{"kind":"number","nodeType":"YulLiteral","src":"342:1:15","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"326:3:15"},"nodeType":"YulFunctionCall","src":"326:18:15"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"320:2:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"367:22:15","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"369:16:15"},"nodeType":"YulFunctionCall","src":"369:18:15"},"nodeType":"YulExpressionStatement","src":"369:18:15"}]},"condition":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"359:2:15"},{"name":"_2","nodeType":"YulIdentifier","src":"363:2:15"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"356:2:15"},"nodeType":"YulFunctionCall","src":"356:10:15"},"nodeType":"YulIf","src":"353:36:15"},{"nodeType":"YulVariableDeclaration","src":"398:17:15","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"412:2:15","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"408:3:15"},"nodeType":"YulFunctionCall","src":"408:7:15"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"402:2:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"424:23:15","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"444:2:15","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"438:5:15"},"nodeType":"YulFunctionCall","src":"438:9:15"},"variables":[{"name":"memPtr","nodeType":"YulTypedName","src":"428:6:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"456:71:15","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"478:6:15"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"502:2:15"},{"kind":"number","nodeType":"YulLiteral","src":"506:4:15","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"498:3:15"},"nodeType":"YulFunctionCall","src":"498:13:15"},{"name":"_3","nodeType":"YulIdentifier","src":"513:2:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"494:3:15"},"nodeType":"YulFunctionCall","src":"494:22:15"},{"kind":"number","nodeType":"YulLiteral","src":"518:2:15","type":"","value":"63"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"490:3:15"},"nodeType":"YulFunctionCall","src":"490:31:15"},{"name":"_3","nodeType":"YulIdentifier","src":"523:2:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"486:3:15"},"nodeType":"YulFunctionCall","src":"486:40:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"474:3:15"},"nodeType":"YulFunctionCall","src":"474:53:15"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"460:10:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"586:22:15","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"588:16:15"},"nodeType":"YulFunctionCall","src":"588:18:15"},"nodeType":"YulExpressionStatement","src":"588:18:15"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"545:10:15"},{"name":"_2","nodeType":"YulIdentifier","src":"557:2:15"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"542:2:15"},"nodeType":"YulFunctionCall","src":"542:18:15"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"565:10:15"},{"name":"memPtr","nodeType":"YulIdentifier","src":"577:6:15"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"562:2:15"},"nodeType":"YulFunctionCall","src":"562:22:15"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"539:2:15"},"nodeType":"YulFunctionCall","src":"539:46:15"},"nodeType":"YulIf","src":"536:72:15"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"624:2:15","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"628:10:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"617:6:15"},"nodeType":"YulFunctionCall","src":"617:22:15"},"nodeType":"YulExpressionStatement","src":"617:22:15"},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"655:6:15"},{"name":"_1","nodeType":"YulIdentifier","src":"663:2:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"648:6:15"},"nodeType":"YulFunctionCall","src":"648:18:15"},"nodeType":"YulExpressionStatement","src":"648:18:15"},{"nodeType":"YulVariableDeclaration","src":"675:14:15","value":{"kind":"number","nodeType":"YulLiteral","src":"685:4:15","type":"","value":"0x20"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"679:2:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"735:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"744:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"747:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"737:6:15"},"nodeType":"YulFunctionCall","src":"737:12:15"},"nodeType":"YulExpressionStatement","src":"737:12:15"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"712:6:15"},{"name":"_1","nodeType":"YulIdentifier","src":"720:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"708:3:15"},"nodeType":"YulFunctionCall","src":"708:15:15"},{"name":"_4","nodeType":"YulIdentifier","src":"725:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"704:3:15"},"nodeType":"YulFunctionCall","src":"704:24:15"},{"name":"end","nodeType":"YulIdentifier","src":"730:3:15"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"701:2:15"},"nodeType":"YulFunctionCall","src":"701:33:15"},"nodeType":"YulIf","src":"698:53:15"},{"nodeType":"YulVariableDeclaration","src":"760:10:15","value":{"kind":"number","nodeType":"YulLiteral","src":"769:1:15","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"764:1:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"825:87:15","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"854:6:15"},{"name":"i","nodeType":"YulIdentifier","src":"862:1:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"850:3:15"},"nodeType":"YulFunctionCall","src":"850:14:15"},{"name":"_4","nodeType":"YulIdentifier","src":"866:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"846:3:15"},"nodeType":"YulFunctionCall","src":"846:23:15"},{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"885:6:15"},{"name":"i","nodeType":"YulIdentifier","src":"893:1:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"881:3:15"},"nodeType":"YulFunctionCall","src":"881:14:15"},{"name":"_4","nodeType":"YulIdentifier","src":"897:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"877:3:15"},"nodeType":"YulFunctionCall","src":"877:23:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"871:5:15"},"nodeType":"YulFunctionCall","src":"871:30:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"839:6:15"},"nodeType":"YulFunctionCall","src":"839:63:15"},"nodeType":"YulExpressionStatement","src":"839:63:15"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"790:1:15"},{"name":"_1","nodeType":"YulIdentifier","src":"793:2:15"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"787:2:15"},"nodeType":"YulFunctionCall","src":"787:9:15"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"797:19:15","statements":[{"nodeType":"YulAssignment","src":"799:15:15","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"808:1:15"},{"name":"_4","nodeType":"YulIdentifier","src":"811:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"804:3:15"},"nodeType":"YulFunctionCall","src":"804:10:15"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"799:1:15"}]}]},"pre":{"nodeType":"YulBlock","src":"783:3:15","statements":[]},"src":"779:133:15"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"936:6:15"},{"name":"_1","nodeType":"YulIdentifier","src":"944:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"932:3:15"},"nodeType":"YulFunctionCall","src":"932:15:15"},{"name":"_4","nodeType":"YulIdentifier","src":"949:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"928:3:15"},"nodeType":"YulFunctionCall","src":"928:24:15"},{"kind":"number","nodeType":"YulLiteral","src":"954:1:15","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"921:6:15"},"nodeType":"YulFunctionCall","src":"921:35:15"},"nodeType":"YulExpressionStatement","src":"921:35:15"},{"nodeType":"YulAssignment","src":"965:15:15","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"974:6:15"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"965:5:15"}]}]},"name":"abi_decode_string_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"184:6:15","type":""},{"name":"end","nodeType":"YulTypedName","src":"192:3:15","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"200:5:15","type":""}],"src":"146:840:15"},{"body":{"nodeType":"YulBlock","src":"1126:488:15","statements":[{"body":{"nodeType":"YulBlock","src":"1172:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1181:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1184:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1174:6:15"},"nodeType":"YulFunctionCall","src":"1174:12:15"},"nodeType":"YulExpressionStatement","src":"1174:12:15"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1147:7:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"1156:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1143:3:15"},"nodeType":"YulFunctionCall","src":"1143:23:15"},{"kind":"number","nodeType":"YulLiteral","src":"1168:2:15","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1139:3:15"},"nodeType":"YulFunctionCall","src":"1139:32:15"},"nodeType":"YulIf","src":"1136:52:15"},{"nodeType":"YulVariableDeclaration","src":"1197:30:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1217:9:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1211:5:15"},"nodeType":"YulFunctionCall","src":"1211:16:15"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"1201:6:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1236:28:15","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1254:2:15","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"1258:1:15","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1250:3:15"},"nodeType":"YulFunctionCall","src":"1250:10:15"},{"kind":"number","nodeType":"YulLiteral","src":"1262:1:15","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1246:3:15"},"nodeType":"YulFunctionCall","src":"1246:18:15"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"1240:2:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"1291:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1300:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1303:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1293:6:15"},"nodeType":"YulFunctionCall","src":"1293:12:15"},"nodeType":"YulExpressionStatement","src":"1293:12:15"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1279:6:15"},{"name":"_1","nodeType":"YulIdentifier","src":"1287:2:15"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1276:2:15"},"nodeType":"YulFunctionCall","src":"1276:14:15"},"nodeType":"YulIf","src":"1273:34:15"},{"nodeType":"YulAssignment","src":"1316:71:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1359:9:15"},{"name":"offset","nodeType":"YulIdentifier","src":"1370:6:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1355:3:15"},"nodeType":"YulFunctionCall","src":"1355:22:15"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1379:7:15"}],"functionName":{"name":"abi_decode_string_fromMemory","nodeType":"YulIdentifier","src":"1326:28:15"},"nodeType":"YulFunctionCall","src":"1326:61:15"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1316:6:15"}]},{"nodeType":"YulVariableDeclaration","src":"1396:41:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1422:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"1433:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1418:3:15"},"nodeType":"YulFunctionCall","src":"1418:18:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1412:5:15"},"nodeType":"YulFunctionCall","src":"1412:25:15"},"variables":[{"name":"offset_1","nodeType":"YulTypedName","src":"1400:8:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"1466:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1475:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1478:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1468:6:15"},"nodeType":"YulFunctionCall","src":"1468:12:15"},"nodeType":"YulExpressionStatement","src":"1468:12:15"}]},"condition":{"arguments":[{"name":"offset_1","nodeType":"YulIdentifier","src":"1452:8:15"},{"name":"_1","nodeType":"YulIdentifier","src":"1462:2:15"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1449:2:15"},"nodeType":"YulFunctionCall","src":"1449:16:15"},"nodeType":"YulIf","src":"1446:36:15"},{"nodeType":"YulAssignment","src":"1491:73:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1534:9:15"},{"name":"offset_1","nodeType":"YulIdentifier","src":"1545:8:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1530:3:15"},"nodeType":"YulFunctionCall","src":"1530:24:15"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1556:7:15"}],"functionName":{"name":"abi_decode_string_fromMemory","nodeType":"YulIdentifier","src":"1501:28:15"},"nodeType":"YulFunctionCall","src":"1501:63:15"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1491:6:15"}]},{"nodeType":"YulAssignment","src":"1573:35:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1593:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"1604:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1589:3:15"},"nodeType":"YulFunctionCall","src":"1589:18:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1583:5:15"},"nodeType":"YulFunctionCall","src":"1583:25:15"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"1573:6:15"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1076:9:15","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1087:7:15","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1099:6:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1107:6:15","type":""},{"name":"value2","nodeType":"YulTypedName","src":"1115:6:15","type":""}],"src":"991:623:15"},{"body":{"nodeType":"YulBlock","src":"1674:325:15","statements":[{"nodeType":"YulAssignment","src":"1684:22:15","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1698:1:15","type":"","value":"1"},{"name":"data","nodeType":"YulIdentifier","src":"1701:4:15"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"1694:3:15"},"nodeType":"YulFunctionCall","src":"1694:12:15"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"1684:6:15"}]},{"nodeType":"YulVariableDeclaration","src":"1715:38:15","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"1745:4:15"},{"kind":"number","nodeType":"YulLiteral","src":"1751:1:15","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1741:3:15"},"nodeType":"YulFunctionCall","src":"1741:12:15"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"1719:18:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"1792:31:15","statements":[{"nodeType":"YulAssignment","src":"1794:27:15","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1808:6:15"},{"kind":"number","nodeType":"YulLiteral","src":"1816:4:15","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1804:3:15"},"nodeType":"YulFunctionCall","src":"1804:17:15"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"1794:6:15"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"1772:18:15"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1765:6:15"},"nodeType":"YulFunctionCall","src":"1765:26:15"},"nodeType":"YulIf","src":"1762:61:15"},{"body":{"nodeType":"YulBlock","src":"1882:111:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1903:1:15","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1910:3:15","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"1915:10:15","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1906:3:15"},"nodeType":"YulFunctionCall","src":"1906:20:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1896:6:15"},"nodeType":"YulFunctionCall","src":"1896:31:15"},"nodeType":"YulExpressionStatement","src":"1896:31:15"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1947:1:15","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"1950:4:15","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1940:6:15"},"nodeType":"YulFunctionCall","src":"1940:15:15"},"nodeType":"YulExpressionStatement","src":"1940:15:15"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1975:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1978:4:15","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1968:6:15"},"nodeType":"YulFunctionCall","src":"1968:15:15"},"nodeType":"YulExpressionStatement","src":"1968:15:15"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"1838:18:15"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1861:6:15"},{"kind":"number","nodeType":"YulLiteral","src":"1869:2:15","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"1858:2:15"},"nodeType":"YulFunctionCall","src":"1858:14:15"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"1835:2:15"},"nodeType":"YulFunctionCall","src":"1835:38:15"},"nodeType":"YulIf","src":"1832:161:15"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"1654:4:15","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"1663:6:15","type":""}],"src":"1619:380:15"},{"body":{"nodeType":"YulBlock","src":"2060:65:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2077:1:15","type":"","value":"0"},{"name":"ptr","nodeType":"YulIdentifier","src":"2080:3:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2070:6:15"},"nodeType":"YulFunctionCall","src":"2070:14:15"},"nodeType":"YulExpressionStatement","src":"2070:14:15"},{"nodeType":"YulAssignment","src":"2093:26:15","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2111:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2114:4:15","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"2101:9:15"},"nodeType":"YulFunctionCall","src":"2101:18:15"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"2093:4:15"}]}]},"name":"array_dataslot_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nodeType":"YulTypedName","src":"2043:3:15","type":""}],"returnVariables":[{"name":"data","nodeType":"YulTypedName","src":"2051:4:15","type":""}],"src":"2004:121:15"},{"body":{"nodeType":"YulBlock","src":"2211:464:15","statements":[{"body":{"nodeType":"YulBlock","src":"2244:425:15","statements":[{"nodeType":"YulVariableDeclaration","src":"2258:11:15","value":{"kind":"number","nodeType":"YulLiteral","src":"2268:1:15","type":"","value":"0"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"2262:2:15","type":""}]},{"expression":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"2289:2:15"},{"name":"array","nodeType":"YulIdentifier","src":"2293:5:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2282:6:15"},"nodeType":"YulFunctionCall","src":"2282:17:15"},"nodeType":"YulExpressionStatement","src":"2282:17:15"},{"nodeType":"YulVariableDeclaration","src":"2312:31:15","value":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"2334:2:15"},{"kind":"number","nodeType":"YulLiteral","src":"2338:4:15","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"2324:9:15"},"nodeType":"YulFunctionCall","src":"2324:19:15"},"variables":[{"name":"data","nodeType":"YulTypedName","src":"2316:4:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"2356:57:15","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"2379:4:15"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2389:1:15","type":"","value":"5"},{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"2396:10:15"},{"kind":"number","nodeType":"YulLiteral","src":"2408:2:15","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2392:3:15"},"nodeType":"YulFunctionCall","src":"2392:19:15"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"2385:3:15"},"nodeType":"YulFunctionCall","src":"2385:27:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2375:3:15"},"nodeType":"YulFunctionCall","src":"2375:38:15"},"variables":[{"name":"deleteStart","nodeType":"YulTypedName","src":"2360:11:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"2450:23:15","statements":[{"nodeType":"YulAssignment","src":"2452:19:15","value":{"name":"data","nodeType":"YulIdentifier","src":"2467:4:15"},"variableNames":[{"name":"deleteStart","nodeType":"YulIdentifier","src":"2452:11:15"}]}]},"condition":{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"2432:10:15"},{"kind":"number","nodeType":"YulLiteral","src":"2444:4:15","type":"","value":"0x20"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2429:2:15"},"nodeType":"YulFunctionCall","src":"2429:20:15"},"nodeType":"YulIf","src":"2426:47:15"},{"nodeType":"YulVariableDeclaration","src":"2486:41:15","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"2500:4:15"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2510:1:15","type":"","value":"5"},{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"2517:3:15"},{"kind":"number","nodeType":"YulLiteral","src":"2522:2:15","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2513:3:15"},"nodeType":"YulFunctionCall","src":"2513:12:15"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"2506:3:15"},"nodeType":"YulFunctionCall","src":"2506:20:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2496:3:15"},"nodeType":"YulFunctionCall","src":"2496:31:15"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"2490:2:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"2540:24:15","value":{"name":"deleteStart","nodeType":"YulIdentifier","src":"2553:11:15"},"variables":[{"name":"start","nodeType":"YulTypedName","src":"2544:5:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"2638:21:15","statements":[{"expression":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"2647:5:15"},{"name":"_1","nodeType":"YulIdentifier","src":"2654:2:15"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"2640:6:15"},"nodeType":"YulFunctionCall","src":"2640:17:15"},"nodeType":"YulExpressionStatement","src":"2640:17:15"}]},"condition":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"2588:5:15"},{"name":"_2","nodeType":"YulIdentifier","src":"2595:2:15"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2585:2:15"},"nodeType":"YulFunctionCall","src":"2585:13:15"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"2599:26:15","statements":[{"nodeType":"YulAssignment","src":"2601:22:15","value":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"2614:5:15"},{"kind":"number","nodeType":"YulLiteral","src":"2621:1:15","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2610:3:15"},"nodeType":"YulFunctionCall","src":"2610:13:15"},"variableNames":[{"name":"start","nodeType":"YulIdentifier","src":"2601:5:15"}]}]},"pre":{"nodeType":"YulBlock","src":"2581:3:15","statements":[]},"src":"2577:82:15"}]},"condition":{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"2227:3:15"},{"kind":"number","nodeType":"YulLiteral","src":"2232:2:15","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2224:2:15"},"nodeType":"YulFunctionCall","src":"2224:11:15"},"nodeType":"YulIf","src":"2221:448:15"}]},"name":"clean_up_bytearray_end_slots_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nodeType":"YulTypedName","src":"2183:5:15","type":""},{"name":"len","nodeType":"YulTypedName","src":"2190:3:15","type":""},{"name":"startIndex","nodeType":"YulTypedName","src":"2195:10:15","type":""}],"src":"2130:545:15"},{"body":{"nodeType":"YulBlock","src":"2765:81:15","statements":[{"nodeType":"YulAssignment","src":"2775:65:15","value":{"arguments":[{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"2790:4:15"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2808:1:15","type":"","value":"3"},{"name":"len","nodeType":"YulIdentifier","src":"2811:3:15"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2804:3:15"},"nodeType":"YulFunctionCall","src":"2804:11:15"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2821:1:15","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"2817:3:15"},"nodeType":"YulFunctionCall","src":"2817:6:15"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"2800:3:15"},"nodeType":"YulFunctionCall","src":"2800:24:15"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"2796:3:15"},"nodeType":"YulFunctionCall","src":"2796:29:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2786:3:15"},"nodeType":"YulFunctionCall","src":"2786:40:15"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2832:1:15","type":"","value":"1"},{"name":"len","nodeType":"YulIdentifier","src":"2835:3:15"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2828:3:15"},"nodeType":"YulFunctionCall","src":"2828:11:15"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"2783:2:15"},"nodeType":"YulFunctionCall","src":"2783:57:15"},"variableNames":[{"name":"used","nodeType":"YulIdentifier","src":"2775:4:15"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"2742:4:15","type":""},{"name":"len","nodeType":"YulTypedName","src":"2748:3:15","type":""}],"returnVariables":[{"name":"used","nodeType":"YulTypedName","src":"2756:4:15","type":""}],"src":"2680:166:15"},{"body":{"nodeType":"YulBlock","src":"2947:1256:15","statements":[{"nodeType":"YulVariableDeclaration","src":"2957:24:15","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"2977:3:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2971:5:15"},"nodeType":"YulFunctionCall","src":"2971:10:15"},"variables":[{"name":"newLen","nodeType":"YulTypedName","src":"2961:6:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"3024:22:15","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"3026:16:15"},"nodeType":"YulFunctionCall","src":"3026:18:15"},"nodeType":"YulExpressionStatement","src":"3026:18:15"}]},"condition":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"2996:6:15"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3012:2:15","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"3016:1:15","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3008:3:15"},"nodeType":"YulFunctionCall","src":"3008:10:15"},{"kind":"number","nodeType":"YulLiteral","src":"3020:1:15","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3004:3:15"},"nodeType":"YulFunctionCall","src":"3004:18:15"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2993:2:15"},"nodeType":"YulFunctionCall","src":"2993:30:15"},"nodeType":"YulIf","src":"2990:56:15"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"3099:4:15"},{"arguments":[{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"3137:4:15"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"3131:5:15"},"nodeType":"YulFunctionCall","src":"3131:11:15"}],"functionName":{"name":"extract_byte_array_length","nodeType":"YulIdentifier","src":"3105:25:15"},"nodeType":"YulFunctionCall","src":"3105:38:15"},{"name":"newLen","nodeType":"YulIdentifier","src":"3145:6:15"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nodeType":"YulIdentifier","src":"3055:43:15"},"nodeType":"YulFunctionCall","src":"3055:97:15"},"nodeType":"YulExpressionStatement","src":"3055:97:15"},{"nodeType":"YulVariableDeclaration","src":"3161:18:15","value":{"kind":"number","nodeType":"YulLiteral","src":"3178:1:15","type":"","value":"0"},"variables":[{"name":"srcOffset","nodeType":"YulTypedName","src":"3165:9:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"3188:23:15","value":{"kind":"number","nodeType":"YulLiteral","src":"3207:4:15","type":"","value":"0x20"},"variables":[{"name":"srcOffset_1","nodeType":"YulTypedName","src":"3192:11:15","type":""}]},{"nodeType":"YulAssignment","src":"3220:24:15","value":{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"3233:11:15"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"3220:9:15"}]},{"cases":[{"body":{"nodeType":"YulBlock","src":"3290:656:15","statements":[{"nodeType":"YulVariableDeclaration","src":"3304:35:15","value":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"3323:6:15"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3335:2:15","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3331:3:15"},"nodeType":"YulFunctionCall","src":"3331:7:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3319:3:15"},"nodeType":"YulFunctionCall","src":"3319:20:15"},"variables":[{"name":"loopEnd","nodeType":"YulTypedName","src":"3308:7:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"3352:49:15","value":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"3396:4:15"}],"functionName":{"name":"array_dataslot_string_storage","nodeType":"YulIdentifier","src":"3366:29:15"},"nodeType":"YulFunctionCall","src":"3366:35:15"},"variables":[{"name":"dstPtr","nodeType":"YulTypedName","src":"3356:6:15","type":""}]},{"nodeType":"YulVariableDeclaration","src":"3414:10:15","value":{"kind":"number","nodeType":"YulLiteral","src":"3423:1:15","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"3418:1:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"3501:172:15","statements":[{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"3526:6:15"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3544:3:15"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"3549:9:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3540:3:15"},"nodeType":"YulFunctionCall","src":"3540:19:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3534:5:15"},"nodeType":"YulFunctionCall","src":"3534:26:15"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"3519:6:15"},"nodeType":"YulFunctionCall","src":"3519:42:15"},"nodeType":"YulExpressionStatement","src":"3519:42:15"},{"nodeType":"YulAssignment","src":"3578:24:15","value":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"3592:6:15"},{"kind":"number","nodeType":"YulLiteral","src":"3600:1:15","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3588:3:15"},"nodeType":"YulFunctionCall","src":"3588:14:15"},"variableNames":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"3578:6:15"}]},{"nodeType":"YulAssignment","src":"3619:40:15","value":{"arguments":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"3636:9:15"},{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"3647:11:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3632:3:15"},"nodeType":"YulFunctionCall","src":"3632:27:15"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"3619:9:15"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"3448:1:15"},{"name":"loopEnd","nodeType":"YulIdentifier","src":"3451:7:15"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3445:2:15"},"nodeType":"YulFunctionCall","src":"3445:14:15"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"3460:28:15","statements":[{"nodeType":"YulAssignment","src":"3462:24:15","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"3471:1:15"},{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"3474:11:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3467:3:15"},"nodeType":"YulFunctionCall","src":"3467:19:15"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"3462:1:15"}]}]},"pre":{"nodeType":"YulBlock","src":"3441:3:15","statements":[]},"src":"3437:236:15"},{"body":{"nodeType":"YulBlock","src":"3721:166:15","statements":[{"nodeType":"YulVariableDeclaration","src":"3739:43:15","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3766:3:15"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"3771:9:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3762:3:15"},"nodeType":"YulFunctionCall","src":"3762:19:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3756:5:15"},"nodeType":"YulFunctionCall","src":"3756:26:15"},"variables":[{"name":"lastValue","nodeType":"YulTypedName","src":"3743:9:15","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"3806:6:15"},{"arguments":[{"name":"lastValue","nodeType":"YulIdentifier","src":"3818:9:15"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3845:1:15","type":"","value":"3"},{"name":"newLen","nodeType":"YulIdentifier","src":"3848:6:15"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3841:3:15"},"nodeType":"YulFunctionCall","src":"3841:14:15"},{"kind":"number","nodeType":"YulLiteral","src":"3857:3:15","type":"","value":"248"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3837:3:15"},"nodeType":"YulFunctionCall","src":"3837:24:15"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3867:1:15","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3863:3:15"},"nodeType":"YulFunctionCall","src":"3863:6:15"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"3833:3:15"},"nodeType":"YulFunctionCall","src":"3833:37:15"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3829:3:15"},"nodeType":"YulFunctionCall","src":"3829:42:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3814:3:15"},"nodeType":"YulFunctionCall","src":"3814:58:15"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"3799:6:15"},"nodeType":"YulFunctionCall","src":"3799:74:15"},"nodeType":"YulExpressionStatement","src":"3799:74:15"}]},"condition":{"arguments":[{"name":"loopEnd","nodeType":"YulIdentifier","src":"3692:7:15"},{"name":"newLen","nodeType":"YulIdentifier","src":"3701:6:15"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3689:2:15"},"nodeType":"YulFunctionCall","src":"3689:19:15"},"nodeType":"YulIf","src":"3686:201:15"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"3907:4:15"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3921:1:15","type":"","value":"1"},{"name":"newLen","nodeType":"YulIdentifier","src":"3924:6:15"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3917:3:15"},"nodeType":"YulFunctionCall","src":"3917:14:15"},{"kind":"number","nodeType":"YulLiteral","src":"3933:1:15","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3913:3:15"},"nodeType":"YulFunctionCall","src":"3913:22:15"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"3900:6:15"},"nodeType":"YulFunctionCall","src":"3900:36:15"},"nodeType":"YulExpressionStatement","src":"3900:36:15"}]},"nodeType":"YulCase","src":"3283:663:15","value":{"kind":"number","nodeType":"YulLiteral","src":"3288:1:15","type":"","value":"1"}},{"body":{"nodeType":"YulBlock","src":"3963:234:15","statements":[{"nodeType":"YulVariableDeclaration","src":"3977:14:15","value":{"kind":"number","nodeType":"YulLiteral","src":"3990:1:15","type":"","value":"0"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"3981:5:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"4026:67:15","statements":[{"nodeType":"YulAssignment","src":"4044:35:15","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"4063:3:15"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"4068:9:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4059:3:15"},"nodeType":"YulFunctionCall","src":"4059:19:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4053:5:15"},"nodeType":"YulFunctionCall","src":"4053:26:15"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"4044:5:15"}]}]},"condition":{"name":"newLen","nodeType":"YulIdentifier","src":"4007:6:15"},"nodeType":"YulIf","src":"4004:89:15"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"4113:4:15"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4172:5:15"},{"name":"newLen","nodeType":"YulIdentifier","src":"4179:6:15"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulIdentifier","src":"4119:52:15"},"nodeType":"YulFunctionCall","src":"4119:67:15"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"4106:6:15"},"nodeType":"YulFunctionCall","src":"4106:81:15"},"nodeType":"YulExpressionStatement","src":"4106:81:15"}]},"nodeType":"YulCase","src":"3955:242:15","value":"default"}],"expression":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"3263:6:15"},{"kind":"number","nodeType":"YulLiteral","src":"3271:2:15","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3260:2:15"},"nodeType":"YulFunctionCall","src":"3260:14:15"},"nodeType":"YulSwitch","src":"3253:944:15"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nodeType":"YulTypedName","src":"2932:4:15","type":""},{"name":"src","nodeType":"YulTypedName","src":"2938:3:15","type":""}],"src":"2851:1352:15"},{"body":{"nodeType":"YulBlock","src":"4309:102:15","statements":[{"nodeType":"YulAssignment","src":"4319:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4331:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"4342:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4327:3:15"},"nodeType":"YulFunctionCall","src":"4327:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4319:4:15"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4361:9:15"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4376:6:15"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4392:3:15","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"4397:1:15","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"4388:3:15"},"nodeType":"YulFunctionCall","src":"4388:11:15"},{"kind":"number","nodeType":"YulLiteral","src":"4401:1:15","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4384:3:15"},"nodeType":"YulFunctionCall","src":"4384:19:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4372:3:15"},"nodeType":"YulFunctionCall","src":"4372:32:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4354:6:15"},"nodeType":"YulFunctionCall","src":"4354:51:15"},"nodeType":"YulExpressionStatement","src":"4354:51:15"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4278:9:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"4289:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4300:4:15","type":""}],"src":"4208:203:15"},{"body":{"nodeType":"YulBlock","src":"4464:174:15","statements":[{"nodeType":"YulAssignment","src":"4474:16:15","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"4485:1:15"},{"name":"y","nodeType":"YulIdentifier","src":"4488:1:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4481:3:15"},"nodeType":"YulFunctionCall","src":"4481:9:15"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"4474:3:15"}]},{"body":{"nodeType":"YulBlock","src":"4521:111:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4542:1:15","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4549:3:15","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"4554:10:15","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"4545:3:15"},"nodeType":"YulFunctionCall","src":"4545:20:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4535:6:15"},"nodeType":"YulFunctionCall","src":"4535:31:15"},"nodeType":"YulExpressionStatement","src":"4535:31:15"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4586:1:15","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"4589:4:15","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4579:6:15"},"nodeType":"YulFunctionCall","src":"4579:15:15"},"nodeType":"YulExpressionStatement","src":"4579:15:15"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4614:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4617:4:15","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4607:6:15"},"nodeType":"YulFunctionCall","src":"4607:15:15"},"nodeType":"YulExpressionStatement","src":"4607:15:15"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"4505:1:15"},{"name":"sum","nodeType":"YulIdentifier","src":"4508:3:15"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4502:2:15"},"nodeType":"YulFunctionCall","src":"4502:10:15"},"nodeType":"YulIf","src":"4499:133:15"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"4447:1:15","type":""},{"name":"y","nodeType":"YulTypedName","src":"4450:1:15","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"4456:3:15","type":""}],"src":"4416:222:15"},{"body":{"nodeType":"YulBlock","src":"4800:188:15","statements":[{"nodeType":"YulAssignment","src":"4810:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4822:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"4833:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4818:3:15"},"nodeType":"YulFunctionCall","src":"4818:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4810:4:15"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4852:9:15"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4867:6:15"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4883:3:15","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"4888:1:15","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"4879:3:15"},"nodeType":"YulFunctionCall","src":"4879:11:15"},{"kind":"number","nodeType":"YulLiteral","src":"4892:1:15","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4875:3:15"},"nodeType":"YulFunctionCall","src":"4875:19:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4863:3:15"},"nodeType":"YulFunctionCall","src":"4863:32:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4845:6:15"},"nodeType":"YulFunctionCall","src":"4845:51:15"},"nodeType":"YulExpressionStatement","src":"4845:51:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4916:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"4927:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4912:3:15"},"nodeType":"YulFunctionCall","src":"4912:18:15"},{"name":"value1","nodeType":"YulIdentifier","src":"4932:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4905:6:15"},"nodeType":"YulFunctionCall","src":"4905:34:15"},"nodeType":"YulExpressionStatement","src":"4905:34:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4959:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"4970:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4955:3:15"},"nodeType":"YulFunctionCall","src":"4955:18:15"},{"name":"value2","nodeType":"YulIdentifier","src":"4975:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4948:6:15"},"nodeType":"YulFunctionCall","src":"4948:34:15"},"nodeType":"YulExpressionStatement","src":"4948:34:15"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4753:9:15","type":""},{"name":"value2","nodeType":"YulTypedName","src":"4764:6:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"4772:6:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"4780:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4791:4:15","type":""}],"src":"4643:345:15"},{"body":{"nodeType":"YulBlock","src":"5094:76:15","statements":[{"nodeType":"YulAssignment","src":"5104:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5116:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"5127:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5112:3:15"},"nodeType":"YulFunctionCall","src":"5112:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"5104:4:15"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5146:9:15"},{"name":"value0","nodeType":"YulIdentifier","src":"5157:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5139:6:15"},"nodeType":"YulFunctionCall","src":"5139:25:15"},"nodeType":"YulExpressionStatement","src":"5139:25:15"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5063:9:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"5074:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"5085:4:15","type":""}],"src":"4993:177:15"}]},"contents":"{\n { }\n function panic_error_0x41()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n function abi_decode_string_fromMemory(offset, end) -> array\n {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n let _1 := mload(offset)\n let _2 := sub(shl(64, 1), 1)\n if gt(_1, _2) { panic_error_0x41() }\n let _3 := not(31)\n let memPtr := mload(64)\n let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n mstore(memPtr, _1)\n let _4 := 0x20\n if gt(add(add(offset, _1), _4), end) { revert(0, 0) }\n let i := 0\n for { } lt(i, _1) { i := add(i, _4) }\n {\n mstore(add(add(memPtr, i), _4), mload(add(add(offset, i), _4)))\n }\n mstore(add(add(memPtr, _1), _4), 0)\n array := memPtr\n }\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256_fromMemory(headStart, dataEnd) -> value0, value1, value2\n {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n let offset := mload(headStart)\n let _1 := sub(shl(64, 1), 1)\n if gt(offset, _1) { revert(0, 0) }\n value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n let offset_1 := mload(add(headStart, 32))\n if gt(offset_1, _1) { revert(0, 0) }\n value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n value2 := mload(add(headStart, 64))\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 array_dataslot_string_storage(ptr) -> data\n {\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n }\n function clean_up_bytearray_end_slots_string_storage(array, len, startIndex)\n {\n if gt(len, 31)\n {\n let _1 := 0\n mstore(_1, array)\n let data := keccak256(_1, 0x20)\n let deleteStart := add(data, shr(5, add(startIndex, 31)))\n if lt(startIndex, 0x20) { deleteStart := data }\n let _2 := add(data, shr(5, add(len, 31)))\n let start := deleteStart\n for { } lt(start, _2) { start := add(start, 1) }\n { sstore(start, _1) }\n }\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used\n {\n used := or(and(data, not(shr(shl(3, len), not(0)))), shl(1, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src)\n {\n let newLen := mload(src)\n if gt(newLen, sub(shl(64, 1), 1)) { panic_error_0x41() }\n clean_up_bytearray_end_slots_string_storage(slot, extract_byte_array_length(sload(slot)), newLen)\n let srcOffset := 0\n let srcOffset_1 := 0x20\n srcOffset := srcOffset_1\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(31))\n let dstPtr := array_dataslot_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, srcOffset_1) }\n {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, srcOffset_1)\n }\n if lt(loopEnd, newLen)\n {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, and(lastValue, not(shr(and(shl(3, newLen), 248), not(0)))))\n }\n sstore(slot, add(shl(1, newLen), 1))\n }\n default {\n let value := 0\n if newLen\n {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\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 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_address_t_uint256_t_uint256__to_t_address_t_uint256_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), value1)\n mstore(add(headStart, 64), value2)\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}","id":15,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60806040523480156200001157600080fd5b5060405162000c3638038062000c368339810160408190526200003491620002ab565b82826003620000448382620003ad565b506004620000538282620003ad565b5050506200006833826200007160201b60201c565b505050620004a1565b6001600160a01b038216620000a15760405163ec442f0560e01b8152600060048201526024015b60405180910390fd5b620000af60008383620000b3565b5050565b6001600160a01b038316620000e2578060026000828254620000d6919062000479565b90915550620001569050565b6001600160a01b03831660009081526020819052604090205481811015620001375760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640162000098565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216620001745760028054829003905562000193565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620001d991815260200190565b60405180910390a3505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200020e57600080fd5b81516001600160401b03808211156200022b576200022b620001e6565b604051601f8301601f19908116603f01168101908282118183101715620002565762000256620001e6565b816040528381526020925086838588010111156200027357600080fd5b600091505b8382101562000297578582018301518183018401529082019062000278565b600093810190920192909252949350505050565b600080600060608486031215620002c157600080fd5b83516001600160401b0380821115620002d957600080fd5b620002e787838801620001fc565b94506020860151915080821115620002fe57600080fd5b506200030d86828701620001fc565b925050604084015190509250925092565b600181811c908216806200033357607f821691505b6020821081036200035457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003a857600081815260208120601f850160051c81016020861015620003835750805b601f850160051c820191505b81811015620003a4578281556001016200038f565b5050505b505050565b81516001600160401b03811115620003c957620003c9620001e6565b620003e181620003da84546200031e565b846200035a565b602080601f831160018114620004195760008415620004005750858301515b600019600386901b1c1916600185901b178555620003a4565b600085815260208120601f198616915b828110156200044a5788860151825594840194600190910190840162000429565b5085821015620004695787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200049b57634e487b7160e01b600052601160045260246000fd5b92915050565b61078580620004b16000396000f3fe608060405234801561001057600080fd5b506004361061009e5760003560e01c806340c10f191161006657806340c10f191461011857806370a082311461012d57806395d89b4114610156578063a9059cbb1461015e578063dd62ed3e1461017157600080fd5b806306fdde03146100a3578063095ea7b3146100c157806318160ddd146100e457806323b872dd146100f6578063313ce56714610109575b600080fd5b6100ab6101aa565b6040516100b891906105cf565b60405180910390f35b6100d46100cf366004610639565b61023c565b60405190151581526020016100b8565b6002545b6040519081526020016100b8565b6100d4610104366004610663565b610256565b604051601281526020016100b8565b61012b610126366004610639565b61027a565b005b6100e861013b36600461069f565b6001600160a01b031660009081526020819052604090205490565b6100ab610288565b6100d461016c366004610639565b610297565b6100e861017f3660046106c1565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101b9906106f4565b80601f01602080910402602001604051908101604052809291908181526020018280546101e5906106f4565b80156102325780601f1061020757610100808354040283529160200191610232565b820191906000526020600020905b81548152906001019060200180831161021557829003601f168201915b5050505050905090565b60003361024a8185856102a5565b60019150505b92915050565b6000336102648582856102b7565b61026f85858561033b565b506001949350505050565b610284828261039a565b5050565b6060600480546101b9906106f4565b60003361024a81858561033b565b6102b283838360016103d0565b505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811015610335578181101561032657604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b610335848484840360006103d0565b50505050565b6001600160a01b03831661036557604051634b637e8f60e11b81526000600482015260240161031d565b6001600160a01b03821661038f5760405163ec442f0560e01b81526000600482015260240161031d565b6102b28383836104a5565b6001600160a01b0382166103c45760405163ec442f0560e01b81526000600482015260240161031d565b610284600083836104a5565b6001600160a01b0384166103fa5760405163e602df0560e01b81526000600482015260240161031d565b6001600160a01b03831661042457604051634a1406b160e11b81526000600482015260240161031d565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561033557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161049791815260200190565b60405180910390a350505050565b6001600160a01b0383166104d05780600260008282546104c5919061072e565b909155506105429050565b6001600160a01b038316600090815260208190526040902054818110156105235760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161031d565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821661055e5760028054829003905561057d565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516105c291815260200190565b60405180910390a3505050565b600060208083528351808285015260005b818110156105fc578581018301518582016040015282016105e0565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461063457600080fd5b919050565b6000806040838503121561064c57600080fd5b6106558361061d565b946020939093013593505050565b60008060006060848603121561067857600080fd5b6106818461061d565b925061068f6020850161061d565b9150604084013590509250925092565b6000602082840312156106b157600080fd5b6106ba8261061d565b9392505050565b600080604083850312156106d457600080fd5b6106dd8361061d565b91506106eb6020840161061d565b90509250929050565b600181811c9082168061070857607f821691505b60208210810361072857634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561025057634e487b7160e01b600052601160045260246000fdfea2646970667358221220983b92cef7a4df0dbc4a7d7639bd6d030390289a4f1c82f7c51c96d24da2b23964736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0xC36 CODESIZE SUB DUP1 PUSH3 0xC36 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x2AB JUMP JUMPDEST DUP3 DUP3 PUSH1 0x3 PUSH3 0x44 DUP4 DUP3 PUSH3 0x3AD JUMP JUMPDEST POP PUSH1 0x4 PUSH3 0x53 DUP3 DUP3 PUSH3 0x3AD JUMP JUMPDEST POP POP POP PUSH3 0x68 CALLER DUP3 PUSH3 0x71 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP POP PUSH3 0x4A1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH3 0xA1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0xAF PUSH1 0x0 DUP4 DUP4 PUSH3 0xB3 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH3 0xE2 JUMPI DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0xD6 SWAP2 SWAP1 PUSH3 0x479 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH3 0x156 SWAP1 POP 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 PUSH3 0x137 JUMPI PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH3 0x98 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH3 0x174 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH3 0x193 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 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH3 0x1D9 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x20E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x22B JUMPI PUSH3 0x22B PUSH3 0x1E6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x256 JUMPI PUSH3 0x256 PUSH3 0x1E6 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x273 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x297 JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0x278 JUMP JUMPDEST PUSH1 0x0 SWAP4 DUP2 ADD SWAP1 SWAP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x2C1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x2D9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x2E7 DUP8 DUP4 DUP9 ADD PUSH3 0x1FC JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x2FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x30D DUP7 DUP3 DUP8 ADD PUSH3 0x1FC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD MLOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x333 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x354 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 0x1F DUP3 GT ISZERO PUSH3 0x3A8 JUMPI PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP7 LT ISZERO PUSH3 0x383 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x3A4 JUMPI DUP3 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x38F JUMP JUMPDEST POP POP POP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH3 0x3C9 JUMPI PUSH3 0x3C9 PUSH3 0x1E6 JUMP JUMPDEST PUSH3 0x3E1 DUP2 PUSH3 0x3DA DUP5 SLOAD PUSH3 0x31E JUMP JUMPDEST DUP5 PUSH3 0x35A JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x419 JUMPI PUSH1 0x0 DUP5 ISZERO PUSH3 0x400 JUMPI POP DUP6 DUP4 ADD MLOAD JUMPDEST PUSH1 0x0 NOT PUSH1 0x3 DUP7 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP6 SWAP1 SHL OR DUP6 SSTORE PUSH3 0x3A4 JUMP JUMPDEST PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP7 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x44A JUMPI DUP9 DUP7 ADD MLOAD DUP3 SSTORE SWAP5 DUP5 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP2 ADD SWAP1 DUP5 ADD PUSH3 0x429 JUMP JUMPDEST POP DUP6 DUP3 LT ISZERO PUSH3 0x469 JUMPI DUP8 DUP6 ADD MLOAD PUSH1 0x0 NOT PUSH1 0x3 DUP9 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH3 0x49B 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 PUSH2 0x785 DUP1 PUSH3 0x4B1 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 0x9E JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x40C10F19 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x118 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x12D JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x156 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x15E JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x171 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xA3 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xC1 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xE4 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0xF6 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x109 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xAB PUSH2 0x1AA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB8 SWAP2 SWAP1 PUSH2 0x5CF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xD4 PUSH2 0xCF CALLDATASIZE PUSH1 0x4 PUSH2 0x639 JUMP JUMPDEST PUSH2 0x23C JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xB8 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xB8 JUMP JUMPDEST PUSH2 0xD4 PUSH2 0x104 CALLDATASIZE PUSH1 0x4 PUSH2 0x663 JUMP JUMPDEST PUSH2 0x256 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xB8 JUMP JUMPDEST PUSH2 0x12B PUSH2 0x126 CALLDATASIZE PUSH1 0x4 PUSH2 0x639 JUMP JUMPDEST PUSH2 0x27A JUMP JUMPDEST STOP JUMPDEST PUSH2 0xE8 PUSH2 0x13B CALLDATASIZE PUSH1 0x4 PUSH2 0x69F 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 0xAB PUSH2 0x288 JUMP JUMPDEST PUSH2 0xD4 PUSH2 0x16C CALLDATASIZE PUSH1 0x4 PUSH2 0x639 JUMP JUMPDEST PUSH2 0x297 JUMP JUMPDEST PUSH2 0xE8 PUSH2 0x17F CALLDATASIZE PUSH1 0x4 PUSH2 0x6C1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x1B9 SWAP1 PUSH2 0x6F4 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 0x1E5 SWAP1 PUSH2 0x6F4 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x232 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x207 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x232 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 0x215 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 0x24A DUP2 DUP6 DUP6 PUSH2 0x2A5 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x264 DUP6 DUP3 DUP6 PUSH2 0x2B7 JUMP JUMPDEST PUSH2 0x26F DUP6 DUP6 DUP6 PUSH2 0x33B JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x284 DUP3 DUP3 PUSH2 0x39A JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1B9 SWAP1 PUSH2 0x6F4 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x24A DUP2 DUP6 DUP6 PUSH2 0x33B JUMP JUMPDEST PUSH2 0x2B2 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x3D0 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH1 0x0 NOT DUP2 LT ISZERO PUSH2 0x335 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x326 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x335 DUP5 DUP5 DUP5 DUP5 SUB PUSH1 0x0 PUSH2 0x3D0 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x365 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x31D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x38F JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x31D JUMP JUMPDEST PUSH2 0x2B2 DUP4 DUP4 DUP4 PUSH2 0x4A5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3C4 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x31D JUMP JUMPDEST PUSH2 0x284 PUSH1 0x0 DUP4 DUP4 PUSH2 0x4A5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x3FA JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x31D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x424 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x31D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP3 SWAP1 SSTORE DUP1 ISZERO PUSH2 0x335 JUMPI DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x497 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x4D0 JUMPI DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x4C5 SWAP2 SWAP1 PUSH2 0x72E JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x542 SWAP1 POP 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 0x523 JUMPI PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x31D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x55E JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0x57D 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 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0x5C2 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x5FC JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x5E0 JUMP JUMPDEST POP PUSH1 0x0 PUSH1 0x40 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x634 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x64C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x655 DUP4 PUSH2 0x61D 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 0x678 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x681 DUP5 PUSH2 0x61D JUMP JUMPDEST SWAP3 POP PUSH2 0x68F PUSH1 0x20 DUP6 ADD PUSH2 0x61D JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x6B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x6BA DUP3 PUSH2 0x61D JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x6D4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x6DD DUP4 PUSH2 0x61D JUMP JUMPDEST SWAP2 POP PUSH2 0x6EB PUSH1 0x20 DUP5 ADD PUSH2 0x61D JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x708 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x728 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 0x250 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 SWAP9 EXTCODESIZE SWAP3 0xCE 0xF7 LOG4 0xDF 0xD 0xBC 0x4A PUSH30 0x7639BD6D030390289A4F1C82F7C51C96D24DA2B23964736F6C6343000814 STOP CALLER ","sourceMap":"115:307:13:-:0;;;149:176;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;262:4;268:6;1648:5:4;:13;262:4:13;1648:5:4;:13;:::i;:::-;-1:-1:-1;1671:7:4;:17;1681:7;1671;:17;:::i;:::-;;1582:113;;286:32:13::1;292:10;304:13;286:5;;;:32;;:::i;:::-;149:176:::0;;;115:307;;7362:208:4;-1:-1:-1;;;;;7432:21:4;;7428:91;;7476:32;;-1:-1:-1;;;7476:32:4;;7505:1;7476:32;;;4354:51:15;4327:18;;7476:32:4;;;;;;;;7428:91;7528:35;7544:1;7548:7;7557:5;7528:7;:35::i;:::-;7362:208;;:::o;5912:1107::-;-1:-1:-1;;;;;6001:18:4;;5997:540;;6153:5;6137:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;5997:540:4;;-1:-1:-1;5997:540:4;;-1:-1:-1;;;;;6211:15:4;;6189:19;6211:15;;;;;;;;;;;6244:19;;;6240:115;;;6290:50;;-1:-1:-1;;;6290:50:4;;-1:-1:-1;;;;;4863:32:15;;6290:50:4;;;4845:51:15;4912:18;;;4905:34;;;4955:18;;;4948:34;;;4818:18;;6290:50:4;4643:345:15;6240:115:4;-1:-1:-1;;;;;6475:15:4;;:9;:15;;;;;;;;;;6493:19;;;;6475:37;;5997:540;-1:-1:-1;;;;;6551:16:4;;6547:425;;6714:12;:21;;;;;;;6547:425;;;-1:-1:-1;;;;;6925:13:4;;:9;:13;;;;;;;;;;:22;;;;;;6547:425;7002:2;-1:-1:-1;;;;;6987:25:4;6996:4;-1:-1:-1;;;;;6987:25:4;;7006:5;6987:25;;;;5139::15;;5127:2;5112:18;;4993:177;6987:25:4;;;;;;;;5912:1107;;;:::o;14:127:15:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:840;200:5;253:3;246:4;238:6;234:17;230:27;220:55;;271:1;268;261:12;220:55;294:13;;-1:-1:-1;;;;;356:10:15;;;353:36;;;369:18;;:::i;:::-;444:2;438:9;412:2;498:13;;-1:-1:-1;;494:22:15;;;518:2;490:31;486:40;474:53;;;542:18;;;562:22;;;539:46;536:72;;;588:18;;:::i;:::-;628:10;624:2;617:22;663:2;655:6;648:18;685:4;675:14;;730:3;725:2;720;712:6;708:15;704:24;701:33;698:53;;;747:1;744;737:12;698:53;769:1;760:10;;779:133;793:2;790:1;787:9;779:133;;;881:14;;;877:23;;871:30;850:14;;;846:23;;839:63;804:10;;;;779:133;;;954:1;932:15;;;928:24;;;921:35;;;;936:6;146:840;-1:-1:-1;;;;146:840:15:o;991:623::-;1099:6;1107;1115;1168:2;1156:9;1147:7;1143:23;1139:32;1136:52;;;1184:1;1181;1174:12;1136:52;1211:16;;-1:-1:-1;;;;;1276:14:15;;;1273:34;;;1303:1;1300;1293:12;1273:34;1326:61;1379:7;1370:6;1359:9;1355:22;1326:61;:::i;:::-;1316:71;;1433:2;1422:9;1418:18;1412:25;1396:41;;1462:2;1452:8;1449:16;1446:36;;;1478:1;1475;1468:12;1446:36;;1501:63;1556:7;1545:8;1534:9;1530:24;1501:63;:::i;:::-;1491:73;;;1604:2;1593:9;1589:18;1583:25;1573:35;;991:623;;;;;:::o;1619:380::-;1698:1;1694:12;;;;1741;;;1762:61;;1816:4;1808:6;1804:17;1794:27;;1762:61;1869:2;1861:6;1858:14;1838:18;1835:38;1832:161;;1915:10;1910:3;1906:20;1903:1;1896:31;1950:4;1947:1;1940:15;1978:4;1975:1;1968:15;1832:161;;1619:380;;;:::o;2130:545::-;2232:2;2227:3;2224:11;2221:448;;;2268:1;2293:5;2289:2;2282:17;2338:4;2334:2;2324:19;2408:2;2396:10;2392:19;2389:1;2385:27;2379:4;2375:38;2444:4;2432:10;2429:20;2426:47;;;-1:-1:-1;2467:4:15;2426:47;2522:2;2517:3;2513:12;2510:1;2506:20;2500:4;2496:31;2486:41;;2577:82;2595:2;2588:5;2585:13;2577:82;;;2640:17;;;2621:1;2610:13;2577:82;;;2581:3;;;2221:448;2130:545;;;:::o;2851:1352::-;2971:10;;-1:-1:-1;;;;;2993:30:15;;2990:56;;;3026:18;;:::i;:::-;3055:97;3145:6;3105:38;3137:4;3131:11;3105:38;:::i;:::-;3099:4;3055:97;:::i;:::-;3207:4;;3271:2;3260:14;;3288:1;3283:663;;;;3990:1;4007:6;4004:89;;;-1:-1:-1;4059:19:15;;;4053:26;4004:89;-1:-1:-1;;2808:1:15;2804:11;;;2800:24;2796:29;2786:40;2832:1;2828:11;;;2783:57;4106:81;;3253:944;;3283:663;2077:1;2070:14;;;2114:4;2101:18;;-1:-1:-1;;3319:20:15;;;3437:236;3451:7;3448:1;3445:14;3437:236;;;3540:19;;;3534:26;3519:42;;3632:27;;;;3600:1;3588:14;;;;3467:19;;3437:236;;;3441:3;3701:6;3692:7;3689:19;3686:201;;;3762:19;;;3756:26;-1:-1:-1;;3845:1:15;3841:14;;;3857:3;3837:24;3833:37;3829:42;3814:58;3799:74;;3686:201;-1:-1:-1;;;;;3933:1:15;3917:14;;;3913:22;3900:36;;-1:-1:-1;2851:1352:15:o;4416:222::-;4481:9;;;4502:10;;;4499:133;;;4554:10;4549:3;4545:20;4542:1;4535:31;4589:4;4586:1;4579:15;4617:4;4614:1;4607:15;4499:133;4416:222;;;;:::o;4993:177::-;115:307:13;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_approve_632":{"entryPoint":677,"id":632,"parameterSlots":3,"returnSlots":0},"@_approve_692":{"entryPoint":976,"id":692,"parameterSlots":4,"returnSlots":0},"@_mint_581":{"entryPoint":922,"id":581,"parameterSlots":2,"returnSlots":0},"@_msgSender_1357":{"entryPoint":null,"id":1357,"parameterSlots":0,"returnSlots":1},"@_spendAllowance_740":{"entryPoint":695,"id":740,"parameterSlots":3,"returnSlots":0},"@_transfer_471":{"entryPoint":827,"id":471,"parameterSlots":3,"returnSlots":0},"@_update_548":{"entryPoint":1189,"id":548,"parameterSlots":3,"returnSlots":0},"@allowance_368":{"entryPoint":null,"id":368,"parameterSlots":2,"returnSlots":1},"@approve_392":{"entryPoint":572,"id":392,"parameterSlots":2,"returnSlots":1},"@balanceOf_327":{"entryPoint":null,"id":327,"parameterSlots":1,"returnSlots":1},"@decimals_305":{"entryPoint":null,"id":305,"parameterSlots":0,"returnSlots":1},"@mint_4548":{"entryPoint":634,"id":4548,"parameterSlots":2,"returnSlots":0},"@name_287":{"entryPoint":426,"id":287,"parameterSlots":0,"returnSlots":1},"@symbol_296":{"entryPoint":648,"id":296,"parameterSlots":0,"returnSlots":1},"@totalSupply_314":{"entryPoint":null,"id":314,"parameterSlots":0,"returnSlots":1},"@transferFrom_424":{"entryPoint":598,"id":424,"parameterSlots":3,"returnSlots":1},"@transfer_351":{"entryPoint":663,"id":351,"parameterSlots":2,"returnSlots":1},"abi_decode_address":{"entryPoint":1565,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":1695,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":1729,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":1635,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":1593,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":1487,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":1838,"id":null,"parameterSlots":2,"returnSlots":1},"extract_byte_array_length":{"entryPoint":1780,"id":null,"parameterSlots":1,"returnSlots":1}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:3523:15","statements":[{"nodeType":"YulBlock","src":"6:3:15","statements":[]},{"body":{"nodeType":"YulBlock","src":"135:427:15","statements":[{"nodeType":"YulVariableDeclaration","src":"145:12:15","value":{"kind":"number","nodeType":"YulLiteral","src":"155:2:15","type":"","value":"32"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"149:2:15","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"173:9:15"},{"name":"_1","nodeType":"YulIdentifier","src":"184:2:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"166:6:15"},"nodeType":"YulFunctionCall","src":"166:21:15"},"nodeType":"YulExpressionStatement","src":"166:21:15"},{"nodeType":"YulVariableDeclaration","src":"196:27:15","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"216:6:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"210:5:15"},"nodeType":"YulFunctionCall","src":"210:13:15"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"200:6:15","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"243:9:15"},{"name":"_1","nodeType":"YulIdentifier","src":"254:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"239:3:15"},"nodeType":"YulFunctionCall","src":"239:18:15"},{"name":"length","nodeType":"YulIdentifier","src":"259:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"232:6:15"},"nodeType":"YulFunctionCall","src":"232:34:15"},"nodeType":"YulExpressionStatement","src":"232:34:15"},{"nodeType":"YulVariableDeclaration","src":"275:10:15","value":{"kind":"number","nodeType":"YulLiteral","src":"284:1:15","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"279:1:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"344:90:15","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"373:9:15"},{"name":"i","nodeType":"YulIdentifier","src":"384:1:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"369:3:15"},"nodeType":"YulFunctionCall","src":"369:17:15"},{"kind":"number","nodeType":"YulLiteral","src":"388:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"365:3:15"},"nodeType":"YulFunctionCall","src":"365:26:15"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"407:6:15"},{"name":"i","nodeType":"YulIdentifier","src":"415:1:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"403:3:15"},"nodeType":"YulFunctionCall","src":"403:14:15"},{"name":"_1","nodeType":"YulIdentifier","src":"419:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"399:3:15"},"nodeType":"YulFunctionCall","src":"399:23:15"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"393:5:15"},"nodeType":"YulFunctionCall","src":"393:30:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"358:6:15"},"nodeType":"YulFunctionCall","src":"358:66:15"},"nodeType":"YulExpressionStatement","src":"358:66:15"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"305:1:15"},{"name":"length","nodeType":"YulIdentifier","src":"308:6:15"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"302:2:15"},"nodeType":"YulFunctionCall","src":"302:13:15"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"316:19:15","statements":[{"nodeType":"YulAssignment","src":"318:15:15","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"327:1:15"},{"name":"_1","nodeType":"YulIdentifier","src":"330:2:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"323:3:15"},"nodeType":"YulFunctionCall","src":"323:10:15"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"318:1:15"}]}]},"pre":{"nodeType":"YulBlock","src":"298:3:15","statements":[]},"src":"294:140:15"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"458:9:15"},{"name":"length","nodeType":"YulIdentifier","src":"469:6:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"454:3:15"},"nodeType":"YulFunctionCall","src":"454:22:15"},{"kind":"number","nodeType":"YulLiteral","src":"478:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"450:3:15"},"nodeType":"YulFunctionCall","src":"450:31:15"},{"kind":"number","nodeType":"YulLiteral","src":"483:1:15","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"443:6:15"},"nodeType":"YulFunctionCall","src":"443:42:15"},"nodeType":"YulExpressionStatement","src":"443:42:15"},{"nodeType":"YulAssignment","src":"494:62:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"510:9:15"},{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"529:6:15"},{"kind":"number","nodeType":"YulLiteral","src":"537:2:15","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"525:3:15"},"nodeType":"YulFunctionCall","src":"525:15:15"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"546:2:15","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"542:3:15"},"nodeType":"YulFunctionCall","src":"542:7:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"521:3:15"},"nodeType":"YulFunctionCall","src":"521:29:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"506:3:15"},"nodeType":"YulFunctionCall","src":"506:45:15"},{"kind":"number","nodeType":"YulLiteral","src":"553:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"502:3:15"},"nodeType":"YulFunctionCall","src":"502:54:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"494:4:15"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"104:9:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"115:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"126:4:15","type":""}],"src":"14:548:15"},{"body":{"nodeType":"YulBlock","src":"616:124:15","statements":[{"nodeType":"YulAssignment","src":"626:29:15","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"648:6:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"635:12:15"},"nodeType":"YulFunctionCall","src":"635:20:15"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"626:5:15"}]},{"body":{"nodeType":"YulBlock","src":"718:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"727:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"730:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"720:6:15"},"nodeType":"YulFunctionCall","src":"720:12:15"},"nodeType":"YulExpressionStatement","src":"720:12:15"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"677:5:15"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"688:5:15"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"703:3:15","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"708:1:15","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"699:3:15"},"nodeType":"YulFunctionCall","src":"699:11:15"},{"kind":"number","nodeType":"YulLiteral","src":"712:1:15","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"695:3:15"},"nodeType":"YulFunctionCall","src":"695:19:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"684:3:15"},"nodeType":"YulFunctionCall","src":"684:31:15"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"674:2:15"},"nodeType":"YulFunctionCall","src":"674:42:15"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"667:6:15"},"nodeType":"YulFunctionCall","src":"667:50:15"},"nodeType":"YulIf","src":"664:70:15"}]},"name":"abi_decode_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"595:6:15","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"606:5:15","type":""}],"src":"567:173:15"},{"body":{"nodeType":"YulBlock","src":"832:167:15","statements":[{"body":{"nodeType":"YulBlock","src":"878:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"887:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"890:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"880:6:15"},"nodeType":"YulFunctionCall","src":"880:12:15"},"nodeType":"YulExpressionStatement","src":"880:12:15"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"853:7:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"862:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"849:3:15"},"nodeType":"YulFunctionCall","src":"849:23:15"},{"kind":"number","nodeType":"YulLiteral","src":"874:2:15","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"845:3:15"},"nodeType":"YulFunctionCall","src":"845:32:15"},"nodeType":"YulIf","src":"842:52:15"},{"nodeType":"YulAssignment","src":"903:39:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"932:9:15"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"913:18:15"},"nodeType":"YulFunctionCall","src":"913:29:15"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"903:6:15"}]},{"nodeType":"YulAssignment","src":"951:42:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"978:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"989:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"974:3:15"},"nodeType":"YulFunctionCall","src":"974:18:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"961:12:15"},"nodeType":"YulFunctionCall","src":"961:32:15"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"951:6:15"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"790:9:15","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"801:7:15","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"813:6:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"821:6:15","type":""}],"src":"745:254:15"},{"body":{"nodeType":"YulBlock","src":"1099:92:15","statements":[{"nodeType":"YulAssignment","src":"1109:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1121:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"1132:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1117:3:15"},"nodeType":"YulFunctionCall","src":"1117:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1109:4:15"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1151:9:15"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1176:6:15"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1169:6:15"},"nodeType":"YulFunctionCall","src":"1169:14:15"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1162:6:15"},"nodeType":"YulFunctionCall","src":"1162:22:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1144:6:15"},"nodeType":"YulFunctionCall","src":"1144:41:15"},"nodeType":"YulExpressionStatement","src":"1144:41:15"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1068:9:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1079:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1090:4:15","type":""}],"src":"1004:187:15"},{"body":{"nodeType":"YulBlock","src":"1297:76:15","statements":[{"nodeType":"YulAssignment","src":"1307:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1319:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"1330:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1315:3:15"},"nodeType":"YulFunctionCall","src":"1315:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1307:4:15"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1349:9:15"},{"name":"value0","nodeType":"YulIdentifier","src":"1360:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1342:6:15"},"nodeType":"YulFunctionCall","src":"1342:25:15"},"nodeType":"YulExpressionStatement","src":"1342:25:15"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1266:9:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1277:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1288:4:15","type":""}],"src":"1196:177:15"},{"body":{"nodeType":"YulBlock","src":"1482:224:15","statements":[{"body":{"nodeType":"YulBlock","src":"1528:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1537:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1540:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1530:6:15"},"nodeType":"YulFunctionCall","src":"1530:12:15"},"nodeType":"YulExpressionStatement","src":"1530:12:15"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1503:7:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"1512:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1499:3:15"},"nodeType":"YulFunctionCall","src":"1499:23:15"},{"kind":"number","nodeType":"YulLiteral","src":"1524:2:15","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1495:3:15"},"nodeType":"YulFunctionCall","src":"1495:32:15"},"nodeType":"YulIf","src":"1492:52:15"},{"nodeType":"YulAssignment","src":"1553:39:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1582:9:15"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"1563:18:15"},"nodeType":"YulFunctionCall","src":"1563:29:15"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1553:6:15"}]},{"nodeType":"YulAssignment","src":"1601:48:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1634:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"1645:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1630:3:15"},"nodeType":"YulFunctionCall","src":"1630:18:15"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"1611:18:15"},"nodeType":"YulFunctionCall","src":"1611:38:15"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1601:6:15"}]},{"nodeType":"YulAssignment","src":"1658:42:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1685:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"1696:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1681:3:15"},"nodeType":"YulFunctionCall","src":"1681:18:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1668:12:15"},"nodeType":"YulFunctionCall","src":"1668:32:15"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"1658:6:15"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1432:9:15","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1443:7:15","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1455:6:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1463:6:15","type":""},{"name":"value2","nodeType":"YulTypedName","src":"1471:6:15","type":""}],"src":"1378:328:15"},{"body":{"nodeType":"YulBlock","src":"1808:87:15","statements":[{"nodeType":"YulAssignment","src":"1818:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1830:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"1841:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1826:3:15"},"nodeType":"YulFunctionCall","src":"1826:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1818:4:15"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1860:9:15"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1875:6:15"},{"kind":"number","nodeType":"YulLiteral","src":"1883:4:15","type":"","value":"0xff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1871:3:15"},"nodeType":"YulFunctionCall","src":"1871:17:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1853:6:15"},"nodeType":"YulFunctionCall","src":"1853:36:15"},"nodeType":"YulExpressionStatement","src":"1853:36:15"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1777:9:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1788:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1799:4:15","type":""}],"src":"1711:184:15"},{"body":{"nodeType":"YulBlock","src":"1970:116:15","statements":[{"body":{"nodeType":"YulBlock","src":"2016:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2025:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2028:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2018:6:15"},"nodeType":"YulFunctionCall","src":"2018:12:15"},"nodeType":"YulExpressionStatement","src":"2018:12:15"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1991:7:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"2000:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1987:3:15"},"nodeType":"YulFunctionCall","src":"1987:23:15"},{"kind":"number","nodeType":"YulLiteral","src":"2012:2:15","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1983:3:15"},"nodeType":"YulFunctionCall","src":"1983:32:15"},"nodeType":"YulIf","src":"1980:52:15"},{"nodeType":"YulAssignment","src":"2041:39:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2070:9:15"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"2051:18:15"},"nodeType":"YulFunctionCall","src":"2051:29:15"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2041:6:15"}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1936:9:15","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1947:7:15","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1959:6:15","type":""}],"src":"1900:186:15"},{"body":{"nodeType":"YulBlock","src":"2178:173:15","statements":[{"body":{"nodeType":"YulBlock","src":"2224:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2233:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2236:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2226:6:15"},"nodeType":"YulFunctionCall","src":"2226:12:15"},"nodeType":"YulExpressionStatement","src":"2226:12:15"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2199:7:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"2208:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2195:3:15"},"nodeType":"YulFunctionCall","src":"2195:23:15"},{"kind":"number","nodeType":"YulLiteral","src":"2220:2:15","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2191:3:15"},"nodeType":"YulFunctionCall","src":"2191:32:15"},"nodeType":"YulIf","src":"2188:52:15"},{"nodeType":"YulAssignment","src":"2249:39:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2278:9:15"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"2259:18:15"},"nodeType":"YulFunctionCall","src":"2259:29:15"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2249:6:15"}]},{"nodeType":"YulAssignment","src":"2297:48:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2330:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"2341:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2326:3:15"},"nodeType":"YulFunctionCall","src":"2326:18:15"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"2307:18:15"},"nodeType":"YulFunctionCall","src":"2307:38:15"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"2297:6:15"}]}]},"name":"abi_decode_tuple_t_addresst_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2136:9:15","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2147:7:15","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2159:6:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2167:6:15","type":""}],"src":"2091:260:15"},{"body":{"nodeType":"YulBlock","src":"2411:325:15","statements":[{"nodeType":"YulAssignment","src":"2421:22:15","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2435:1:15","type":"","value":"1"},{"name":"data","nodeType":"YulIdentifier","src":"2438:4:15"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"2431:3:15"},"nodeType":"YulFunctionCall","src":"2431:12:15"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"2421:6:15"}]},{"nodeType":"YulVariableDeclaration","src":"2452:38:15","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"2482:4:15"},{"kind":"number","nodeType":"YulLiteral","src":"2488:1:15","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2478:3:15"},"nodeType":"YulFunctionCall","src":"2478:12:15"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"2456:18:15","type":""}]},{"body":{"nodeType":"YulBlock","src":"2529:31:15","statements":[{"nodeType":"YulAssignment","src":"2531:27:15","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"2545:6:15"},{"kind":"number","nodeType":"YulLiteral","src":"2553:4:15","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2541:3:15"},"nodeType":"YulFunctionCall","src":"2541:17:15"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"2531:6:15"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"2509:18:15"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2502:6:15"},"nodeType":"YulFunctionCall","src":"2502:26:15"},"nodeType":"YulIf","src":"2499:61:15"},{"body":{"nodeType":"YulBlock","src":"2619:111:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2640:1:15","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2647:3:15","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"2652:10:15","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2643:3:15"},"nodeType":"YulFunctionCall","src":"2643:20:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2633:6:15"},"nodeType":"YulFunctionCall","src":"2633:31:15"},"nodeType":"YulExpressionStatement","src":"2633:31:15"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2684:1:15","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"2687:4:15","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2677:6:15"},"nodeType":"YulFunctionCall","src":"2677:15:15"},"nodeType":"YulExpressionStatement","src":"2677:15:15"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2712:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2715:4:15","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2705:6:15"},"nodeType":"YulFunctionCall","src":"2705:15:15"},"nodeType":"YulExpressionStatement","src":"2705:15:15"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"2575:18:15"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"2598:6:15"},{"kind":"number","nodeType":"YulLiteral","src":"2606:2:15","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2595:2:15"},"nodeType":"YulFunctionCall","src":"2595:14:15"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"2572:2:15"},"nodeType":"YulFunctionCall","src":"2572:38:15"},"nodeType":"YulIf","src":"2569:161:15"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"2391:4:15","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"2400:6:15","type":""}],"src":"2356:380:15"},{"body":{"nodeType":"YulBlock","src":"2898:188:15","statements":[{"nodeType":"YulAssignment","src":"2908:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2920:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"2931:2:15","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2916:3:15"},"nodeType":"YulFunctionCall","src":"2916:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2908:4:15"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2950:9:15"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2965:6:15"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2981:3:15","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"2986:1:15","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2977:3:15"},"nodeType":"YulFunctionCall","src":"2977:11:15"},{"kind":"number","nodeType":"YulLiteral","src":"2990:1:15","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2973:3:15"},"nodeType":"YulFunctionCall","src":"2973:19:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2961:3:15"},"nodeType":"YulFunctionCall","src":"2961:32:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2943:6:15"},"nodeType":"YulFunctionCall","src":"2943:51:15"},"nodeType":"YulExpressionStatement","src":"2943:51:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3014:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"3025:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3010:3:15"},"nodeType":"YulFunctionCall","src":"3010:18:15"},{"name":"value1","nodeType":"YulIdentifier","src":"3030:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3003:6:15"},"nodeType":"YulFunctionCall","src":"3003:34:15"},"nodeType":"YulExpressionStatement","src":"3003:34:15"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3057:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"3068:2:15","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3053:3:15"},"nodeType":"YulFunctionCall","src":"3053:18:15"},{"name":"value2","nodeType":"YulIdentifier","src":"3073:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3046:6:15"},"nodeType":"YulFunctionCall","src":"3046:34:15"},"nodeType":"YulExpressionStatement","src":"3046:34:15"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2851:9:15","type":""},{"name":"value2","nodeType":"YulTypedName","src":"2862:6:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2870:6:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"2878:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2889:4:15","type":""}],"src":"2741:345:15"},{"body":{"nodeType":"YulBlock","src":"3192:102:15","statements":[{"nodeType":"YulAssignment","src":"3202:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3214:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"3225:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3210:3:15"},"nodeType":"YulFunctionCall","src":"3210:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3202:4:15"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3244:9:15"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3259:6:15"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3275:3:15","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"3280:1:15","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3271:3:15"},"nodeType":"YulFunctionCall","src":"3271:11:15"},{"kind":"number","nodeType":"YulLiteral","src":"3284:1:15","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3267:3:15"},"nodeType":"YulFunctionCall","src":"3267:19:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3255:3:15"},"nodeType":"YulFunctionCall","src":"3255:32:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3237:6:15"},"nodeType":"YulFunctionCall","src":"3237:51:15"},"nodeType":"YulExpressionStatement","src":"3237:51:15"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3161:9:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3172:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3183:4:15","type":""}],"src":"3091:203:15"},{"body":{"nodeType":"YulBlock","src":"3347:174:15","statements":[{"nodeType":"YulAssignment","src":"3357:16:15","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"3368:1:15"},{"name":"y","nodeType":"YulIdentifier","src":"3371:1:15"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3364:3:15"},"nodeType":"YulFunctionCall","src":"3364:9:15"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"3357:3:15"}]},{"body":{"nodeType":"YulBlock","src":"3404:111:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3425:1:15","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3432:3:15","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"3437:10:15","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3428:3:15"},"nodeType":"YulFunctionCall","src":"3428:20:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3418:6:15"},"nodeType":"YulFunctionCall","src":"3418:31:15"},"nodeType":"YulExpressionStatement","src":"3418:31:15"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3469:1:15","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"3472:4:15","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3462:6:15"},"nodeType":"YulFunctionCall","src":"3462:15:15"},"nodeType":"YulExpressionStatement","src":"3462:15:15"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3497:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3500:4:15","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3490:6:15"},"nodeType":"YulFunctionCall","src":"3490:15:15"},"nodeType":"YulExpressionStatement","src":"3490:15:15"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"3388:1:15"},{"name":"sum","nodeType":"YulIdentifier","src":"3391:3:15"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3385:2:15"},"nodeType":"YulFunctionCall","src":"3385:10:15"},"nodeType":"YulIf","src":"3382:133:15"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"3330:1:15","type":""},{"name":"y","nodeType":"YulTypedName","src":"3333:1:15","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"3339:3:15","type":""}],"src":"3299:222:15"}]},"contents":"{\n { }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n let _1 := 32\n mstore(headStart, _1)\n let length := mload(value0)\n mstore(add(headStart, _1), length)\n let i := 0\n for { } lt(i, length) { i := add(i, _1) }\n {\n mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n }\n 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 value1 := calldataload(add(headStart, 32))\n }\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, iszero(iszero(value0)))\n }\n function abi_encode_tuple_t_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 value2 := calldataload(add(headStart, 64))\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 abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_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), value1)\n mstore(add(headStart, 64), value2)\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 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":15,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561001057600080fd5b506004361061009e5760003560e01c806340c10f191161006657806340c10f191461011857806370a082311461012d57806395d89b4114610156578063a9059cbb1461015e578063dd62ed3e1461017157600080fd5b806306fdde03146100a3578063095ea7b3146100c157806318160ddd146100e457806323b872dd146100f6578063313ce56714610109575b600080fd5b6100ab6101aa565b6040516100b891906105cf565b60405180910390f35b6100d46100cf366004610639565b61023c565b60405190151581526020016100b8565b6002545b6040519081526020016100b8565b6100d4610104366004610663565b610256565b604051601281526020016100b8565b61012b610126366004610639565b61027a565b005b6100e861013b36600461069f565b6001600160a01b031660009081526020819052604090205490565b6100ab610288565b6100d461016c366004610639565b610297565b6100e861017f3660046106c1565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101b9906106f4565b80601f01602080910402602001604051908101604052809291908181526020018280546101e5906106f4565b80156102325780601f1061020757610100808354040283529160200191610232565b820191906000526020600020905b81548152906001019060200180831161021557829003601f168201915b5050505050905090565b60003361024a8185856102a5565b60019150505b92915050565b6000336102648582856102b7565b61026f85858561033b565b506001949350505050565b610284828261039a565b5050565b6060600480546101b9906106f4565b60003361024a81858561033b565b6102b283838360016103d0565b505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811015610335578181101561032657604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b610335848484840360006103d0565b50505050565b6001600160a01b03831661036557604051634b637e8f60e11b81526000600482015260240161031d565b6001600160a01b03821661038f5760405163ec442f0560e01b81526000600482015260240161031d565b6102b28383836104a5565b6001600160a01b0382166103c45760405163ec442f0560e01b81526000600482015260240161031d565b610284600083836104a5565b6001600160a01b0384166103fa5760405163e602df0560e01b81526000600482015260240161031d565b6001600160a01b03831661042457604051634a1406b160e11b81526000600482015260240161031d565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561033557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161049791815260200190565b60405180910390a350505050565b6001600160a01b0383166104d05780600260008282546104c5919061072e565b909155506105429050565b6001600160a01b038316600090815260208190526040902054818110156105235760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161031d565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821661055e5760028054829003905561057d565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516105c291815260200190565b60405180910390a3505050565b600060208083528351808285015260005b818110156105fc578581018301518582016040015282016105e0565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461063457600080fd5b919050565b6000806040838503121561064c57600080fd5b6106558361061d565b946020939093013593505050565b60008060006060848603121561067857600080fd5b6106818461061d565b925061068f6020850161061d565b9150604084013590509250925092565b6000602082840312156106b157600080fd5b6106ba8261061d565b9392505050565b600080604083850312156106d457600080fd5b6106dd8361061d565b91506106eb6020840161061d565b90509250929050565b600181811c9082168061070857607f821691505b60208210810361072857634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561025057634e487b7160e01b600052601160045260246000fdfea2646970667358221220983b92cef7a4df0dbc4a7d7639bd6d030390289a4f1c82f7c51c96d24da2b23964736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x9E JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x40C10F19 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x118 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x12D JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x156 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x15E JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x171 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xA3 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xC1 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xE4 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0xF6 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x109 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xAB PUSH2 0x1AA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB8 SWAP2 SWAP1 PUSH2 0x5CF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xD4 PUSH2 0xCF CALLDATASIZE PUSH1 0x4 PUSH2 0x639 JUMP JUMPDEST PUSH2 0x23C JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xB8 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xB8 JUMP JUMPDEST PUSH2 0xD4 PUSH2 0x104 CALLDATASIZE PUSH1 0x4 PUSH2 0x663 JUMP JUMPDEST PUSH2 0x256 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xB8 JUMP JUMPDEST PUSH2 0x12B PUSH2 0x126 CALLDATASIZE PUSH1 0x4 PUSH2 0x639 JUMP JUMPDEST PUSH2 0x27A JUMP JUMPDEST STOP JUMPDEST PUSH2 0xE8 PUSH2 0x13B CALLDATASIZE PUSH1 0x4 PUSH2 0x69F 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 0xAB PUSH2 0x288 JUMP JUMPDEST PUSH2 0xD4 PUSH2 0x16C CALLDATASIZE PUSH1 0x4 PUSH2 0x639 JUMP JUMPDEST PUSH2 0x297 JUMP JUMPDEST PUSH2 0xE8 PUSH2 0x17F CALLDATASIZE PUSH1 0x4 PUSH2 0x6C1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x1B9 SWAP1 PUSH2 0x6F4 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 0x1E5 SWAP1 PUSH2 0x6F4 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x232 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x207 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x232 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 0x215 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 0x24A DUP2 DUP6 DUP6 PUSH2 0x2A5 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x264 DUP6 DUP3 DUP6 PUSH2 0x2B7 JUMP JUMPDEST PUSH2 0x26F DUP6 DUP6 DUP6 PUSH2 0x33B JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x284 DUP3 DUP3 PUSH2 0x39A JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1B9 SWAP1 PUSH2 0x6F4 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x24A DUP2 DUP6 DUP6 PUSH2 0x33B JUMP JUMPDEST PUSH2 0x2B2 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x3D0 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH1 0x0 NOT DUP2 LT ISZERO PUSH2 0x335 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x326 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x335 DUP5 DUP5 DUP5 DUP5 SUB PUSH1 0x0 PUSH2 0x3D0 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x365 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x31D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x38F JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x31D JUMP JUMPDEST PUSH2 0x2B2 DUP4 DUP4 DUP4 PUSH2 0x4A5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3C4 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x31D JUMP JUMPDEST PUSH2 0x284 PUSH1 0x0 DUP4 DUP4 PUSH2 0x4A5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x3FA JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x31D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x424 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x31D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP8 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP3 SWAP1 SSTORE DUP1 ISZERO PUSH2 0x335 JUMPI DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x497 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x4D0 JUMPI DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x4C5 SWAP2 SWAP1 PUSH2 0x72E JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x542 SWAP1 POP 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 0x523 JUMPI PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x31D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x55E JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0x57D 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 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0x5C2 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x5FC JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x5E0 JUMP JUMPDEST POP PUSH1 0x0 PUSH1 0x40 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x634 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x64C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x655 DUP4 PUSH2 0x61D 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 0x678 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x681 DUP5 PUSH2 0x61D JUMP JUMPDEST SWAP3 POP PUSH2 0x68F PUSH1 0x20 DUP6 ADD PUSH2 0x61D JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x6B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x6BA DUP3 PUSH2 0x61D JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x6D4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x6DD DUP4 PUSH2 0x61D JUMP JUMPDEST SWAP2 POP PUSH2 0x6EB PUSH1 0x20 DUP5 ADD PUSH2 0x61D JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x708 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x728 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 0x250 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 SWAP9 EXTCODESIZE SWAP3 0xCE 0xF7 LOG4 0xDF 0xD 0xBC 0x4A PUSH30 0x7639BD6D030390289A4F1C82F7C51C96D24DA2B23964736F6C6343000814 STOP CALLER ","sourceMap":"115:307:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760:89:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3902:186;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:15;;1162:22;1144:41;;1132:2;1117:18;3902:186:4;1004:187:15;2803:97:4;2881:12;;2803:97;;;1342:25:15;;;1330:2;1315:18;2803:97:4;1196:177:15;4680:244:4;;;;;;:::i;:::-;;:::i;2688:82::-;;;2761:2;1853:36:15;;1841:2;1826:18;2688:82:4;1711:184:15;335:85:13;;;;;;:::i;:::-;;:::i;:::-;;2933:116:4;;;;;;:::i;:::-;-1:-1:-1;;;;;3024:18:4;2998:7;3024:18;;;;;;;;;;;;2933:116;1962:93;;;:::i;3244:178::-;;;;;;:::i;:::-;;:::i;3455:140::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3561:18:4;;;3535:7;3561:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3455:140;1760:89;1805:13;1837:5;1830:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760:89;:::o;3902:186::-;3975:4;735:10:9;4029:31:4;735:10:9;4045:7:4;4054:5;4029:8;:31::i;:::-;4077:4;4070:11;;;3902:186;;;;;:::o;4680:244::-;4767:4;735:10:9;4823:37:4;4839:4;735:10:9;4854:5:4;4823:15;:37::i;:::-;4870:26;4880:4;4886:2;4890:5;4870:9;:26::i;:::-;-1:-1:-1;4913:4:4;;4680:244;-1:-1:-1;;;;4680:244:4:o;335:85:13:-;396:17;402:2;406:6;396:5;:17::i;:::-;335:85;;:::o;1962:93:4:-;2009:13;2041:7;2034:14;;;;;:::i;3244:178::-;3313:4;735:10:9;3367:27:4;735:10:9;3384:2:4;3388:5;3367:9;:27::i;8630:128::-;8714:37;8723:5;8730:7;8739:5;8746:4;8714:8;:37::i;:::-;8630:128;;;:::o;10319:476::-;-1:-1:-1;;;;;3561:18:4;;;10418:24;3561:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10484:36:4;;10480:309;;;10559:5;10540:16;:24;10536:130;;;10591:60;;-1:-1:-1;;;10591:60:4;;-1:-1:-1;;;;;2961:32:15;;10591:60:4;;;2943:51:15;3010:18;;;3003:34;;;3053:18;;;3046:34;;;2916:18;;10591:60:4;;;;;;;;10536:130;10707:57;10716:5;10723:7;10751:5;10732:16;:24;10758:5;10707:8;:57::i;:::-;10408:387;10319:476;;;:::o;5297:300::-;-1:-1:-1;;;;;5380:18:4;;5376:86;;5421:30;;-1:-1:-1;;;5421:30:4;;5448:1;5421:30;;;3237:51:15;3210:18;;5421:30:4;3091:203:15;5376:86:4;-1:-1:-1;;;;;5475:16:4;;5471:86;;5514:32;;-1:-1:-1;;;5514:32:4;;5543:1;5514:32;;;3237:51:15;3210:18;;5514:32:4;3091:203:15;5471:86:4;5566:24;5574:4;5580:2;5584:5;5566:7;:24::i;7362:208::-;-1:-1:-1;;;;;7432:21:4;;7428:91;;7476:32;;-1:-1:-1;;;7476:32:4;;7505:1;7476:32;;;3237:51:15;3210:18;;7476:32:4;3091:203:15;7428:91:4;7528:35;7544:1;7548:7;7557:5;7528:7;:35::i;9605:432::-;-1:-1:-1;;;;;9717:19:4;;9713:89;;9759:32;;-1:-1:-1;;;9759:32:4;;9788:1;9759:32;;;3237:51:15;3210:18;;9759:32:4;3091:203:15;9713:89:4;-1:-1:-1;;;;;9815:21:4;;9811:90;;9859:31;;-1:-1:-1;;;9859:31:4;;9887:1;9859:31;;;3237:51:15;3210:18;;9859:31:4;3091:203:15;9811:90:4;-1:-1:-1;;;;;9910:18:4;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;9955:76;;;;10005:7;-1:-1:-1;;;;;9989:31:4;9998:5;-1:-1:-1;;;;;9989:31:4;;10014:5;9989:31;;;;1342:25:15;;1330:2;1315:18;;1196:177;9989:31:4;;;;;;;;9605:432;;;;:::o;5912:1107::-;-1:-1:-1;;;;;6001:18:4;;5997:540;;6153:5;6137:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;5997:540:4;;-1:-1:-1;5997:540:4;;-1:-1:-1;;;;;6211:15:4;;6189:19;6211:15;;;;;;;;;;;6244:19;;;6240:115;;;6290:50;;-1:-1:-1;;;6290:50:4;;-1:-1:-1;;;;;2961:32:15;;6290:50:4;;;2943:51:15;3010:18;;;3003:34;;;3053:18;;;3046:34;;;2916:18;;6290:50:4;2741:345:15;6240:115:4;-1:-1:-1;;;;;6475:15:4;;:9;:15;;;;;;;;;;6493:19;;;;6475:37;;5997:540;-1:-1:-1;;;;;6551:16:4;;6547:425;;6714:12;:21;;;;;;;6547:425;;;-1:-1:-1;;;;;6925:13:4;;:9;:13;;;;;;;;;;:22;;;;;;6547:425;7002:2;-1:-1:-1;;;;;6987:25:4;6996:4;-1:-1:-1;;;;;6987:25:4;;7006:5;6987:25;;;;1342::15;;1330:2;1315:18;;1196:177;6987:25:4;;;;;;;;5912:1107;;;:::o;14:548:15:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:15;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:15:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;:::-;2041:39;1900:186;-1:-1:-1;;;1900:186:15:o;2091:260::-;2159:6;2167;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;2259:29;2278:9;2259:29;:::i;:::-;2249:39;;2307:38;2341:2;2330:9;2326:18;2307:38;:::i;:::-;2297:48;;2091:260;;;;;:::o;2356:380::-;2435:1;2431:12;;;;2478;;;2499:61;;2553:4;2545:6;2541:17;2531:27;;2499:61;2606:2;2598:6;2595:14;2575:18;2572:38;2569:161;;2652:10;2647:3;2643:20;2640:1;2633:31;2687:4;2684:1;2677:15;2715:4;2712:1;2705:15;2569:161;;2356:380;;;:::o;3299:222::-;3364:9;;;3385:10;;;3382:133;;;3437:10;3432:3;3428:20;3425:1;3418:31;3472:4;3469:1;3462:15;3500:4;3497:1;3490:15"},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","decimals()":"313ce567","mint(address,uint256)":"40c10f19","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"initialSupply\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"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\":\"value\",\"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\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"mint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"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\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}]},\"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\":\"See {IERC20-approve}. NOTE: If `value` 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\":\"Returns the value of tokens owned by `account`.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"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\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. 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 `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/mocks/MockERC20.sol\":\"MockERC20\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x19fdfb0f3b89a230e7dbd1cf416f1a6b531a3ee5db4da483f946320fc74afc0e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3490d794728f5bfecb46820431adaff71ba374141545ec20b650bb60353fac23\",\"dweb:/ipfs/QmPsfxjVpMcZbpE7BH93DzTpEaktESigEw4SmDzkXuJ4WR\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x86b7b71a6aedefdad89b607378eeab1dcc5389b9ea7d17346d08af01d7190994\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1dc2db8d94a21eac8efe03adf574c419b08536409b416057a2b5b95cb772c43c\",\"dweb:/ipfs/QmZfqJCKVU1ScuX2A7s8WZdQEaikwJbDH5JBrBdKTUT4Gu\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"contracts/mocks/MockERC20.sol\":{\"keccak256\":\"0xcf12701d197347199f94e2ac9df19e61b7d09ff13713c6504e7c1d32598da460\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d9538931694419a94f4fc977ebf569ad4aaadd501ac266ab5e19dc958f329dd2\",\"dweb:/ipfs/QmRNqCFbLSRyB7aFUPh22uM7zDk1kfUkm4uB6jmGwCvCCT\"]}},\"version\":1}"}},"contracts/mocks/MockPriceOracle.sol":{"MockPriceOracle":{"abi":[{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"getLatestPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"prices","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setDefaultPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"6080604052670de0b6b3a764000060015534801561001c57600080fd5b506101b48061002c6000396000f3fe608060405234801561001057600080fd5b506004361061004b5760003560e01c8062e4768b1461005057806316345f181461007c5780636d3c7ec5146100a1578063cfed246b146100b4575b600080fd5b61007a61005e366004610120565b6001600160a01b03909116600090815260208190526040902055565b005b61008f61008a36600461014a565b6100d4565b60405190815260200160405180910390f35b61007a6100af366004610165565b600155565b61008f6100c236600461014a565b60006020819052908152604090205481565b6001600160a01b03811660009081526020819052604081205480156100f957806100fd565b6001545b9392505050565b80356001600160a01b038116811461011b57600080fd5b919050565b6000806040838503121561013357600080fd5b61013c83610104565b946020939093013593505050565b60006020828403121561015c57600080fd5b6100fd82610104565b60006020828403121561017757600080fd5b503591905056fea264697066735822122074810bcef461428127255ceb8f644802bcf66b40377053eac3f253dfc5be0e8064736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH8 0xDE0B6B3A7640000 PUSH1 0x1 SSTORE CALLVALUE DUP1 ISZERO PUSH2 0x1C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1B4 DUP1 PUSH2 0x2C 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 0x4B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH3 0xE4768B EQ PUSH2 0x50 JUMPI DUP1 PUSH4 0x16345F18 EQ PUSH2 0x7C JUMPI DUP1 PUSH4 0x6D3C7EC5 EQ PUSH2 0xA1 JUMPI DUP1 PUSH4 0xCFED246B EQ PUSH2 0xB4 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x7A PUSH2 0x5E CALLDATASIZE PUSH1 0x4 PUSH2 0x120 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SSTORE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x8F PUSH2 0x8A CALLDATASIZE PUSH1 0x4 PUSH2 0x14A JUMP JUMPDEST PUSH2 0xD4 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x7A PUSH2 0xAF CALLDATASIZE PUSH1 0x4 PUSH2 0x165 JUMP JUMPDEST PUSH1 0x1 SSTORE JUMP JUMPDEST PUSH2 0x8F PUSH2 0xC2 CALLDATASIZE PUSH1 0x4 PUSH2 0x14A JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP2 SWAP1 MSTORE SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD DUP1 ISZERO PUSH2 0xF9 JUMPI DUP1 PUSH2 0xFD JUMP JUMPDEST PUSH1 0x1 SLOAD JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x11B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x133 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x13C DUP4 PUSH2 0x104 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x15C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xFD DUP3 PUSH2 0x104 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x177 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH21 0x810BCEF461428127255CEB8F644802BCF66B403770 MSTORE8 0xEA 0xC3 CALLCODE MSTORE8 0xDF 0xC5 0xBE 0xE DUP1 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"58:517:14:-:0;;;167:4;136:35;;58:517;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@getLatestPrice_4593":{"entryPoint":212,"id":4593,"parameterSlots":1,"returnSlots":1},"@prices_4555":{"entryPoint":null,"id":4555,"parameterSlots":0,"returnSlots":0},"@setDefaultPrice_4603":{"entryPoint":null,"id":4603,"parameterSlots":1,"returnSlots":0},"@setPrice_4572":{"entryPoint":null,"id":4572,"parameterSlots":2,"returnSlots":0},"abi_decode_address":{"entryPoint":260,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":330,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":288,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256":{"entryPoint":357,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:1006:15","statements":[{"nodeType":"YulBlock","src":"6:3:15","statements":[]},{"body":{"nodeType":"YulBlock","src":"63:124:15","statements":[{"nodeType":"YulAssignment","src":"73:29:15","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"95:6:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"82:12:15"},"nodeType":"YulFunctionCall","src":"82:20:15"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"73:5:15"}]},{"body":{"nodeType":"YulBlock","src":"165:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"174:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"177:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"167:6:15"},"nodeType":"YulFunctionCall","src":"167:12:15"},"nodeType":"YulExpressionStatement","src":"167:12:15"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"124:5:15"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"135:5:15"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"150:3:15","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"155:1:15","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"146:3:15"},"nodeType":"YulFunctionCall","src":"146:11:15"},{"kind":"number","nodeType":"YulLiteral","src":"159:1:15","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"142:3:15"},"nodeType":"YulFunctionCall","src":"142:19:15"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"131:3:15"},"nodeType":"YulFunctionCall","src":"131:31:15"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"121:2:15"},"nodeType":"YulFunctionCall","src":"121:42:15"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"114:6:15"},"nodeType":"YulFunctionCall","src":"114:50:15"},"nodeType":"YulIf","src":"111:70:15"}]},"name":"abi_decode_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"42:6:15","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"53:5:15","type":""}],"src":"14:173:15"},{"body":{"nodeType":"YulBlock","src":"279:167:15","statements":[{"body":{"nodeType":"YulBlock","src":"325:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"334:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"337:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"327:6:15"},"nodeType":"YulFunctionCall","src":"327:12:15"},"nodeType":"YulExpressionStatement","src":"327:12:15"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"300:7:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"309:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"296:3:15"},"nodeType":"YulFunctionCall","src":"296:23:15"},{"kind":"number","nodeType":"YulLiteral","src":"321:2:15","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"292:3:15"},"nodeType":"YulFunctionCall","src":"292:32:15"},"nodeType":"YulIf","src":"289:52:15"},{"nodeType":"YulAssignment","src":"350:39:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"379:9:15"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"360:18:15"},"nodeType":"YulFunctionCall","src":"360:29:15"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"350:6:15"}]},{"nodeType":"YulAssignment","src":"398:42:15","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"425:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"436:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"421:3:15"},"nodeType":"YulFunctionCall","src":"421:18:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"408:12:15"},"nodeType":"YulFunctionCall","src":"408:32:15"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"398:6:15"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"237:9:15","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"248:7:15","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"260:6:15","type":""},{"name":"value1","nodeType":"YulTypedName","src":"268:6:15","type":""}],"src":"192:254:15"},{"body":{"nodeType":"YulBlock","src":"521:116:15","statements":[{"body":{"nodeType":"YulBlock","src":"567:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"576:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"579:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"569:6:15"},"nodeType":"YulFunctionCall","src":"569:12:15"},"nodeType":"YulExpressionStatement","src":"569:12:15"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"542:7:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"551:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"538:3:15"},"nodeType":"YulFunctionCall","src":"538:23:15"},{"kind":"number","nodeType":"YulLiteral","src":"563:2:15","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"534:3:15"},"nodeType":"YulFunctionCall","src":"534:32:15"},"nodeType":"YulIf","src":"531:52:15"},{"nodeType":"YulAssignment","src":"592:39:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"621:9:15"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"602:18:15"},"nodeType":"YulFunctionCall","src":"602:29:15"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"592:6:15"}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"487:9:15","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"498:7:15","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"510:6:15","type":""}],"src":"451:186:15"},{"body":{"nodeType":"YulBlock","src":"743:76:15","statements":[{"nodeType":"YulAssignment","src":"753:26:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"765:9:15"},{"kind":"number","nodeType":"YulLiteral","src":"776:2:15","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"761:3:15"},"nodeType":"YulFunctionCall","src":"761:18:15"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"753:4:15"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"795:9:15"},{"name":"value0","nodeType":"YulIdentifier","src":"806:6:15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"788:6:15"},"nodeType":"YulFunctionCall","src":"788:25:15"},"nodeType":"YulExpressionStatement","src":"788:25:15"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"712:9:15","type":""},{"name":"value0","nodeType":"YulTypedName","src":"723:6:15","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"734:4:15","type":""}],"src":"642:177:15"},{"body":{"nodeType":"YulBlock","src":"894:110:15","statements":[{"body":{"nodeType":"YulBlock","src":"940:16:15","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"949:1:15","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"952:1:15","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"942:6:15"},"nodeType":"YulFunctionCall","src":"942:12:15"},"nodeType":"YulExpressionStatement","src":"942:12:15"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"915:7:15"},{"name":"headStart","nodeType":"YulIdentifier","src":"924:9:15"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"911:3:15"},"nodeType":"YulFunctionCall","src":"911:23:15"},{"kind":"number","nodeType":"YulLiteral","src":"936:2:15","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"907:3:15"},"nodeType":"YulFunctionCall","src":"907:32:15"},"nodeType":"YulIf","src":"904:52:15"},{"nodeType":"YulAssignment","src":"965:33:15","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"988:9:15"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"975:12:15"},"nodeType":"YulFunctionCall","src":"975:23:15"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"965:6:15"}]}]},"name":"abi_decode_tuple_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"860:9:15","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"871:7:15","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"883:6:15","type":""}],"src":"824:180:15"}]},"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 value1 := calldataload(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_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_uint256(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := calldataload(headStart)\n }\n}","id":15,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561001057600080fd5b506004361061004b5760003560e01c8062e4768b1461005057806316345f181461007c5780636d3c7ec5146100a1578063cfed246b146100b4575b600080fd5b61007a61005e366004610120565b6001600160a01b03909116600090815260208190526040902055565b005b61008f61008a36600461014a565b6100d4565b60405190815260200160405180910390f35b61007a6100af366004610165565b600155565b61008f6100c236600461014a565b60006020819052908152604090205481565b6001600160a01b03811660009081526020819052604081205480156100f957806100fd565b6001545b9392505050565b80356001600160a01b038116811461011b57600080fd5b919050565b6000806040838503121561013357600080fd5b61013c83610104565b946020939093013593505050565b60006020828403121561015c57600080fd5b6100fd82610104565b60006020828403121561017757600080fd5b503591905056fea264697066735822122074810bcef461428127255ceb8f644802bcf66b40377053eac3f253dfc5be0e8064736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH3 0xE4768B EQ PUSH2 0x50 JUMPI DUP1 PUSH4 0x16345F18 EQ PUSH2 0x7C JUMPI DUP1 PUSH4 0x6D3C7EC5 EQ PUSH2 0xA1 JUMPI DUP1 PUSH4 0xCFED246B EQ PUSH2 0xB4 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x7A PUSH2 0x5E CALLDATASIZE PUSH1 0x4 PUSH2 0x120 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SSTORE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x8F PUSH2 0x8A CALLDATASIZE PUSH1 0x4 PUSH2 0x14A JUMP JUMPDEST PUSH2 0xD4 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x7A PUSH2 0xAF CALLDATASIZE PUSH1 0x4 PUSH2 0x165 JUMP JUMPDEST PUSH1 0x1 SSTORE JUMP JUMPDEST PUSH2 0x8F PUSH2 0xC2 CALLDATASIZE PUSH1 0x4 PUSH2 0x14A JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP2 SWAP1 MSTORE SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD DUP1 ISZERO PUSH2 0xF9 JUMPI DUP1 PUSH2 0xFD JUMP JUMPDEST PUSH1 0x1 SLOAD JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x11B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x133 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x13C DUP4 PUSH2 0x104 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x15C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xFD DUP3 PUSH2 0x104 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x177 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH21 0x810BCEF461428127255CEB8F644802BCF66B403770 MSTORE8 0xEA 0xC3 CALLCODE MSTORE8 0xDF 0xC5 0xBE 0xE DUP1 PUSH5 0x736F6C6343 STOP ADDMOD EQ STOP CALLER ","sourceMap":"58:517:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205:95;;;;;;:::i;:::-;-1:-1:-1;;;;;272:13:14;;;:6;:13;;;;;;;;;;:21;205:95;;;310:167;;;;;;:::i;:::-;;:::i;:::-;;;788:25:15;;;776:2;761:18;310:167:14;;;;;;;487:86;;;;;;:::i;:::-;546:12;:20;487:86;89:41;;;;;;:::i;:::-;;;;;;;;;;;;;;;310:167;-1:-1:-1;;;;;407:13:14;;372:7;407:13;;;;;;;;;;;437:10;;:33;;465:5;437:33;;;450:12;;437:33;430:40;310:167;-1:-1:-1;;;310:167:14:o;14:173:15:-;82:20;;-1:-1:-1;;;;;131:31:15;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;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;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:15:o;451:186::-;510:6;563:2;551:9;542:7;538:23;534:32;531:52;;;579:1;576;569:12;531:52;602:29;621:9;602:29;:::i;824:180::-;883:6;936:2;924:9;915:7;911:23;907:32;904:52;;;952:1;949;942:12;904:52;-1:-1:-1;975:23:15;;824:180;-1:-1:-1;824:180:15:o"},"methodIdentifiers":{"getLatestPrice(address)":"16345f18","prices(address)":"cfed246b","setDefaultPrice(uint256)":"6d3c7ec5","setPrice(address,uint256)":"00e4768b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"getLatestPrice\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"prices\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"price\",\"type\":\"uint256\"}],\"name\":\"setDefaultPrice\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"price\",\"type\":\"uint256\"}],\"name\":\"setPrice\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/mocks/MockPriceOracle.sol\":\"MockPriceOracle\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/mocks/MockPriceOracle.sol\":{\"keccak256\":\"0xc73f3d36c58df8a84e704d34b92f0687df698d74a48a4d97912968448762a825\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f7a53d6a708e4c86e53c2163604e63dbc95bf15df67fa15bf9fb29084aa56eac\",\"dweb:/ipfs/QmXHc5rw3CKUbPKAKjcHB5buyFrg5UjG4m52vyyGKKebvL\"]}},\"version\":1}"}}}}} |