- 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.4 MiB
1 line
2.4 MiB
{"id":"ad36f0191c68faf0db469d2a65d028e9","_format":"hh-sol-build-info-1","solcVersion":"0.8.20","solcLongVersion":"0.8.20+commit.a1b79de6","input":{"language":"Solidity","sources":{"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (proxy/utils/Initializable.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\n * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\n * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\n * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\n *\n * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\n * reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in\n * case an upgrade adds a module that needs to be initialized.\n *\n * For example:\n *\n * [.hljs-theme-light.nopadding]\n * ```solidity\n * contract MyToken is ERC20Upgradeable {\n * function initialize() initializer public {\n * __ERC20_init(\"MyToken\", \"MTK\");\n * }\n * }\n *\n * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\n * function initializeV2() reinitializer(2) public {\n * __ERC20Permit_init(\"MyToken\");\n * }\n * }\n * ```\n *\n * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\n * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\n *\n * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\n * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\n *\n * [CAUTION]\n * ====\n * Avoid leaving a contract uninitialized.\n *\n * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\n * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\n * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\n *\n * [.hljs-theme-light.nopadding]\n * ```\n * /// @custom:oz-upgrades-unsafe-allow constructor\n * constructor() {\n * _disableInitializers();\n * }\n * ```\n * ====\n */\nabstract contract Initializable {\n /**\n * @dev Storage of the initializable contract.\n *\n * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions\n * when using with upgradeable contracts.\n *\n * @custom:storage-location erc7201:openzeppelin.storage.Initializable\n */\n struct InitializableStorage {\n /**\n * @dev Indicates that the contract has been initialized.\n */\n uint64 _initialized;\n /**\n * @dev Indicates that the contract is in the process of being initialized.\n */\n bool _initializing;\n }\n\n // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.Initializable\")) - 1)) & ~bytes32(uint256(0xff))\n bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00;\n\n /**\n * @dev The contract is already initialized.\n */\n error InvalidInitialization();\n\n /**\n * @dev The contract is not initializing.\n */\n error NotInitializing();\n\n /**\n * @dev Triggered when the contract has been initialized or reinitialized.\n */\n event Initialized(uint64 version);\n\n /**\n * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\n * `onlyInitializing` functions can be used to initialize parent contracts.\n *\n * Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any\n * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in\n * production.\n *\n * Emits an {Initialized} event.\n */\n modifier initializer() {\n // solhint-disable-next-line var-name-mixedcase\n InitializableStorage storage $ = _getInitializableStorage();\n\n // Cache values to avoid duplicated sloads\n bool isTopLevelCall = !$._initializing;\n uint64 initialized = $._initialized;\n\n // Allowed calls:\n // - initialSetup: the contract is not in the initializing state and no previous version was\n // initialized\n // - construction: the contract is initialized at version 1 (no reinitialization) and the\n // current contract is just being deployed\n bool initialSetup = initialized == 0 && isTopLevelCall;\n bool construction = initialized == 1 && address(this).code.length == 0;\n\n if (!initialSetup && !construction) {\n revert InvalidInitialization();\n }\n $._initialized = 1;\n if (isTopLevelCall) {\n $._initializing = true;\n }\n _;\n if (isTopLevelCall) {\n $._initializing = false;\n emit Initialized(1);\n }\n }\n\n /**\n * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\n * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\n * used to initialize parent contracts.\n *\n * A reinitializer may be used after the original initialization step. This is essential to configure modules that\n * are added through upgrades and that require initialization.\n *\n * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\n * cannot be nested. If one is invoked in the context of another, execution will revert.\n *\n * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\n * a contract, executing them in the right order is up to the developer or operator.\n *\n * WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization.\n *\n * Emits an {Initialized} event.\n */\n modifier reinitializer(uint64 version) {\n // solhint-disable-next-line var-name-mixedcase\n InitializableStorage storage $ = _getInitializableStorage();\n\n if ($._initializing || $._initialized >= version) {\n revert InvalidInitialization();\n }\n $._initialized = version;\n $._initializing = true;\n _;\n $._initializing = false;\n emit Initialized(version);\n }\n\n /**\n * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\n * {initializer} and {reinitializer} modifiers, directly or indirectly.\n */\n modifier onlyInitializing() {\n _checkInitializing();\n _;\n }\n\n /**\n * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}.\n */\n function _checkInitializing() internal view virtual {\n if (!_isInitializing()) {\n revert NotInitializing();\n }\n }\n\n /**\n * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\n * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\n * to any version. It is recommended to use this to lock implementation contracts that are designed to be called\n * through proxies.\n *\n * Emits an {Initialized} event the first time it is successfully executed.\n */\n function _disableInitializers() internal virtual {\n // solhint-disable-next-line var-name-mixedcase\n InitializableStorage storage $ = _getInitializableStorage();\n\n if ($._initializing) {\n revert InvalidInitialization();\n }\n if ($._initialized != type(uint64).max) {\n $._initialized = type(uint64).max;\n emit Initialized(type(uint64).max);\n }\n }\n\n /**\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\n */\n function _getInitializedVersion() internal view returns (uint64) {\n return _getInitializableStorage()._initialized;\n }\n\n /**\n * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.\n */\n function _isInitializing() internal view returns (bool) {\n return _getInitializableStorage()._initializing;\n }\n\n /**\n * @dev Pointer to storage slot. Allows integrators to override it with a custom storage location.\n *\n * NOTE: Consider following the ERC-7201 formula to derive storage locations.\n */\n function _initializableStorageSlot() internal pure virtual returns (bytes32) {\n return INITIALIZABLE_STORAGE;\n }\n\n /**\n * @dev Returns a pointer to the storage namespace.\n */\n // solhint-disable-next-line var-name-mixedcase\n function _getInitializableStorage() private pure returns (InitializableStorage storage $) {\n bytes32 slot = _initializableStorageSlot();\n assembly {\n $.slot := slot\n }\n }\n}\n"},"@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol)\n\npragma solidity ^0.8.20;\nimport {Initializable} from \"../proxy/utils/Initializable.sol\";\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 ReentrancyGuardUpgradeable is Initializable {\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 /// @custom:storage-location erc7201:openzeppelin.storage.ReentrancyGuard\n struct ReentrancyGuardStorage {\n uint256 _status;\n }\n\n // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.ReentrancyGuard\")) - 1)) & ~bytes32(uint256(0xff))\n bytes32 private constant ReentrancyGuardStorageLocation = 0x9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00;\n\n function _getReentrancyGuardStorage() private pure returns (ReentrancyGuardStorage storage $) {\n assembly {\n $.slot := ReentrancyGuardStorageLocation\n }\n }\n\n /**\n * @dev Unauthorized reentrant call.\n */\n error ReentrancyGuardReentrantCall();\n\n function __ReentrancyGuard_init() internal onlyInitializing {\n __ReentrancyGuard_init_unchained();\n }\n\n function __ReentrancyGuard_init_unchained() internal onlyInitializing {\n ReentrancyGuardStorage storage $ = _getReentrancyGuardStorage();\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 ReentrancyGuardStorage storage $ = _getReentrancyGuardStorage();\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 ReentrancyGuardStorage storage $ = _getReentrancyGuardStorage();\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 ReentrancyGuardStorage storage $ = _getReentrancyGuardStorage();\n return $._status == ENTERED;\n }\n}\n"},"@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"},"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-upgradeable/utils/ReentrancyGuardUpgradeable.sol\";\nimport \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.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 Initializable, ReentrancyGuardUpgradeable {\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 // BSC USDT token address for stake rewards and marketplace payments\n address private constant BSC_TOKEN = 0x55d398326f99059fF775485246999027B3197955;\n \n mapping(address => WithdrawVesting[]) private withdrawVestingActual;\n uint256 private withdrawVestingCounterActual;\n uint256 private stakeIdCounter;\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 instantBuyoutPercent;// Percentage for instant buyout (e.g., 8000 = 80%)\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 /// @custom:oz-upgrades-unsafe-allow constructor\n constructor() {\n _disableInitializers();\n }\n\n function initialize() public initializer {\n __ReentrancyGuard_init();\n \n owner = msg.sender;\n owners[msg.sender] = true;\n owners[0x8a9281ECEcE9b599C2f42d829C3d0d8e74b7083e] = true;\n\n authorizedBots[0xbf12D3b827a230F7390EbCc9b83b289FdC98ba81] = true;\n authorizedBots[0x7c40f272570fdf9549d6f67493aC250a1DB52F27] = true;\n authorizedBots[0x8a9281ECEcE9b599C2f42d829C3d0d8e74b7083e] = true;\n\n // Initialize big stake for the address\n userBigStake[0x8a9281ECEcE9b599C2f42d829C3d0d8e74b7083e] = 10000 * 1e18;\n totalBigStakes += 10000 * 1e18;\n\n unlockDelay = 60 * 60 * 36;\n }\n\n // Ownership Management\n function addOwner(address _newOwner) external onlyOwner {\n require(_newOwner != address(0), \"Invalid address\");\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 onlyOwner {\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 depositRewards(uint256 _amount) external onlyOwner {\n IERC20(BSC_TOKEN).safeTransferFrom(msg.sender, address(this), _amount);\n }\n \n function withdrawFromStakingPool(uint256 _amount) external onlyOwner {\n IERC20(BSC_TOKEN).safeTransfer(msg.sender, _amount);\n emit FundsWithdrawn(msg.sender, BSC_TOKEN, _amount);\n }\n\n function setPriceOracle(address _token, address _oracle) external onlyOwner {\n priceOracles[_token] = _oracle;\n }\n \n /// @notice Set unlock schedule for a token using percentage-based steps\n /// @param _token The token address to set the schedule for\n /// @param _lockTime The initial lock time in seconds\n /// @param _percentagePerStep The percentage to unlock at each step (scaled by 10000)\n function setUnlockScheduleByPercentage(address _token, uint256 _lockTime, uint256 _percentagePerStep) external onlyOwner {\n require(_token != address(0), \"Invalid token address\");\n require(_percentagePerStep > 0 && _percentagePerStep <= 10000, \"Invalid percentage\");\n \n // Clear existing schedule\n delete unlockSchedules[_token];\n \n uint256 totalPercentage = 0;\n uint256 timeOffset = _lockTime;\n \n // Create unlock steps until we reach 100%\n while (totalPercentage < 10000) {\n uint256 stepPercentage = _percentagePerStep;\n \n // Adjust last step to exactly reach 100%\n if (totalPercentage + stepPercentage > 10000) {\n stepPercentage = 10000 - totalPercentage;\n }\n \n unlockSchedules[_token].push(UnlockStep({\n timeOffset: timeOffset,\n percentage: stepPercentage\n }));\n \n totalPercentage += stepPercentage;\n timeOffset += _lockTime; // Each step adds the same time interval\n }\n \n emit UnlockScheduleSet(_token);\n }\n \n // /// @notice Set custom unlock schedule for a token with specific steps\n // /// @param _token The token address to set the schedule for\n // /// @param _timeOffsets Array of time offsets in seconds\n // /// @param _percentages Array of percentages to unlock (scaled by 10000)\n // function setUnlockScheduleCustom(address _token, uint256[] calldata _timeOffsets, uint256[] calldata _percentages) external onlyOwner {\n // require(_token != address(0), \"Invalid token address\");\n // require(_timeOffsets.length == _percentages.length, \"Array length mismatch\");\n // require(_timeOffsets.length > 0, \"Empty arrays\");\n \n // // Clear existing schedule\n // delete unlockSchedules[_token];\n \n // uint256 totalPercentage = 0;\n \n // for (uint256 i = 0; i < _timeOffsets.length; i++) {\n // require(_percentages[i] > 0, \"Invalid percentage\");\n // totalPercentage += _percentages[i];\n \n // unlockSchedules[_token].push(UnlockStep({\n // timeOffset: _timeOffsets[i],\n // percentage: _percentages[i]\n // }));\n // }\n \n // require(totalPercentage == 10000, \"Total percentage must equal 100%\");\n \n // emit UnlockScheduleSet(_token);\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 /// @notice Update instant buyout percentage\n /// @param _newPercent The buyout percentage (scaled by 10000), ex: 8000 = 80%\n function updateInstantBuyoutPercent(uint256 _newPercent) external onlyOwner {\n require(_newPercent <= 10000, \"Percentage cannot exceed 100%\");\n instantBuyoutPercent = _newPercent;\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 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 BSC USDT tokens to user\n IERC20(BSC_TOKEN).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 /// @notice Instantly buy out a portion of user's stake at configured percentage\n /// @param amount The amount of stake to buy out\n function instantBuyout(uint256 amount) external nonReentrant {\n require(amount > 0, \"Invalid amount\");\n require(instantBuyoutPercent > 0, \"Buyout not available\");\n \n // Check that user has enough net stake\n uint256 netStake = getNetStake(msg.sender);\n require(amount <= netStake, \"Insufficient net stake\");\n \n uint256 payoutAmount = (amount * instantBuyoutPercent) / 10000;\n \n // Deduct amount from user's big stake\n userBigStake[msg.sender] -= amount;\n totalBigStakes -= amount;\n \n // Create withdrawable stake with unlock delay (like claimUnlockedFunds)\n stakeIdCounter++;\n withdrawStakes[msg.sender].push(WithdrawStake({\n stakeId: stakeIdCounter,\n amount: payoutAmount,\n unlockTime: block.timestamp + unlockDelay\n }));\n \n emit FundsClaimed(msg.sender, payoutAmount);\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 for (uint256 i = 0; i < epochCount; i++) {\n uint256 epochId = startEpoch + i;\n epochIds[i] = epochId;\n \n if (remainingStake > 0) {\n uint256 unlocked = (remainingStake * epochs[epochId].unlockPercentage) / 10000;\n amounts[i] = unlocked;\n totalUnclaimed += unlocked;\n remainingStake -= unlocked;\n } else {\n amounts[i] = 0;\n }\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 counter\n stakeIdCounter++;\n uint256 stakeId = stakeIdCounter;\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 discount and protocol share using discount squared formula\n uint256 discount = value > salePrice ? value - salePrice : 0;\n uint256 discountPercent = discount * 10000 / value; // Calculate discount percentage (scaled by 10000)\n uint256 protocolSharePercent = (discountPercent * discountPercent) / 10000; // Square the discount percentage\n uint256 protocolShare = (value * protocolSharePercent) / 10000; // Apply squared discount to stake value\n uint256 buyerStake = value - protocolShare; // Buyer gets value minus protocol share\n \n // Transfer payment from buyer to seller (direct transfer)\n IERC20(BSC_TOKEN).safeTransferFrom(msg.sender, 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 Claim unlocked vesting tokens for a specific vesting\n /// @param _vestingIndex The index of the vesting to claim from\n function claimVesting(uint256 _vestingIndex) external nonReentrant {\n require(_vestingIndex < vestings[msg.sender].length, \"Invalid vesting index\");\n \n Vesting storage vesting = vestings[msg.sender][_vestingIndex];\n require(!vesting.complete, \"Vesting complete\");\n \n uint256 maxClaim = getUnlockedVesting(msg.sender, _vestingIndex);\n require(maxClaim >= vesting.claimedAmount, \"Invalid claim amount\");\n \n uint256 amountToClaim = maxClaim - vesting.claimedAmount;\n require(amountToClaim > 0, \"Nothing to claim\");\n\n vesting.claimedAmount += amountToClaim;\n if (vesting.claimedAmount >= vesting.amount) {\n vesting.complete = true;\n }\n \n // Update user's dollarsVested\n if (dollarsVested[msg.sender] > 0) {\n uint256 usdPrice = (iPriceOracle(priceOracles[vesting.token]).getLatestPrice(vesting.token) * amountToClaim) / 1e18;\n if (usdPrice >= dollarsVested[msg.sender]) {\n dollarsVested[msg.sender] = 0;\n } else {\n dollarsVested[msg.sender] -= usdPrice;\n }\n }\n vestedTotal[vesting.token] -= amountToClaim;\n \n // Add vesting claims to cooldown queue\n withdrawVestingActual[msg.sender].push(WithdrawVesting({\n vestingId: withdrawVestingCounterActual++,\n amount: amountToClaim,\n unlockTime: block.timestamp + unlockDelay,\n token: vesting.token\n }));\n \n // Increment withdraw vesting liabilities for this token\n withdrawVestingLiabilities[vesting.token] += amountToClaim;\n\n emit VestingClaimed(msg.sender, amountToClaim, 0);\n }\n\n /// @notice Claim all unlocked vesting tokens for a specific token\n /// @param _token The token address to claim all vestings for\n function claimAllVestingByToken(address _token) external nonReentrant {\n uint256 totalReward = 0;\n \n for (uint256 i = 0; i < vestings[msg.sender].length; i++) {\n Vesting storage vesting = vestings[msg.sender][i];\n if (vesting.token == _token && !vesting.complete) {\n uint256 maxClaim = getUnlockedVesting(msg.sender, i);\n if (maxClaim > vesting.claimedAmount) {\n uint256 amountToClaim = maxClaim - vesting.claimedAmount;\n totalReward += amountToClaim;\n \n vesting.claimedAmount += amountToClaim;\n if (vesting.claimedAmount >= vesting.amount) {\n vesting.complete = true;\n }\n }\n }\n }\n \n require(totalReward > 0, \"Nothing to claim\");\n \n // Update user's dollarsVested\n if (dollarsVested[msg.sender] > 0) {\n uint256 usdPrice = (iPriceOracle(priceOracles[_token]).getLatestPrice(_token) * totalReward) / 1e18;\n if (usdPrice >= dollarsVested[msg.sender]) {\n dollarsVested[msg.sender] = 0;\n } else {\n dollarsVested[msg.sender] -= usdPrice;\n }\n }\n vestedTotal[_token] -= totalReward;\n \n // Add vesting claims to cooldown queue\n withdrawVestingActual[msg.sender].push(WithdrawVesting({\n vestingId: withdrawVestingCounterActual++,\n amount: totalReward,\n unlockTime: block.timestamp + unlockDelay,\n token: _token\n }));\n \n // Increment withdraw vesting liabilities for this token\n withdrawVestingLiabilities[_token] += totalReward;\n\n emit VestingClaimed(msg.sender, totalReward, 0);\n }\n\n /// @notice Claim unlocked bonus tokens from a specific vesting\n /// @param _vestingIndex The index of the vesting to claim bonus from\n function claimBonus(uint256 _vestingIndex) external nonReentrant {\n require(_vestingIndex < vestings[msg.sender].length, \"Invalid vesting index\");\n \n Vesting storage vesting = vestings[msg.sender][_vestingIndex];\n uint256 maxBonus = getUnlockedVestingBonus(msg.sender, _vestingIndex);\n\n require(maxBonus >= vesting.claimedBonus, \"Invalid claim amount\");\n uint256 bonusToClaim = maxBonus - vesting.claimedBonus;\n require(bonusToClaim > 0, \"Nothing to claim\");\n\n vesting.claimedBonus += bonusToClaim;\n\n // Create withdrawable stake with unlock delay (add 1e6 to distinguish from normal stakes)\n withdrawStakes[msg.sender].push(WithdrawStake({\n stakeId: _vestingIndex + 1e6,\n amount: bonusToClaim,\n unlockTime: block.timestamp + unlockDelay\n }));\n\n emit BonusClaimed(msg.sender, bonusToClaim);\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 /// @notice Withdraws vesting tokens after cooldown period\n /// @param _vestingId The vesting ID to withdraw\n function withdrawVestingToken(uint256 _vestingId) external nonReentrant {\n WithdrawVesting[] storage userVestings = withdrawVestingActual[msg.sender];\n require(userVestings.length > 0, \"No vestings available\");\n \n for (uint256 i = 0; i < userVestings.length; i++) {\n WithdrawVesting storage vestingWithdraw = userVestings[i];\n if (vestingWithdraw.vestingId == _vestingId && vestingWithdraw.amount > 0) {\n require(block.timestamp >= vestingWithdraw.unlockTime, \"Vesting locked\");\n \n uint256 amount = vestingWithdraw.amount;\n address token = vestingWithdraw.token;\n \n // Mark as withdrawn\n vestingWithdraw.amount = 0;\n \n // Decrement withdraw vesting liabilities for this token\n withdrawVestingLiabilities[token] -= amount;\n \n // Transfer tokens\n IERC20(token).safeTransfer(msg.sender, amount);\n emit StakeWithdrawn(msg.sender, amount, _vestingId);\n return;\n }\n }\n \n revert(\"Vesting not found\");\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","storageLayout"],"":["ast"]}}}},"output":{"sources":{"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","exportedSymbols":{"Initializable":[267]},"id":268,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"113:24:0"},{"abstract":true,"baseContracts":[],"canonicalName":"Initializable","contractDependencies":[],"contractKind":"contract","documentation":{"id":2,"nodeType":"StructuredDocumentation","src":"139:2209:0","text":" @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\n behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\n external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\n function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\n The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\n reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in\n case an upgrade adds a module that needs to be initialized.\n For example:\n [.hljs-theme-light.nopadding]\n ```solidity\n contract MyToken is ERC20Upgradeable {\n function initialize() initializer public {\n __ERC20_init(\"MyToken\", \"MTK\");\n }\n }\n contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\n function initializeV2() reinitializer(2) public {\n __ERC20Permit_init(\"MyToken\");\n }\n }\n ```\n TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\n possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\n CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\n that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\n [CAUTION]\n ====\n Avoid leaving a contract uninitialized.\n An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\n contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\n the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\n [.hljs-theme-light.nopadding]\n ```\n /// @custom:oz-upgrades-unsafe-allow constructor\n constructor() {\n _disableInitializers();\n }\n ```\n ===="},"fullyImplemented":true,"id":267,"linearizedBaseContracts":[267],"name":"Initializable","nameLocation":"2367:13:0","nodeType":"ContractDefinition","nodes":[{"canonicalName":"Initializable.InitializableStorage","documentation":{"id":3,"nodeType":"StructuredDocumentation","src":"2387:293:0","text":" @dev Storage of the initializable contract.\n It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions\n when using with upgradeable contracts.\n @custom:storage-location erc7201:openzeppelin.storage.Initializable"},"id":10,"members":[{"constant":false,"id":6,"mutability":"mutable","name":"_initialized","nameLocation":"2820:12:0","nodeType":"VariableDeclaration","scope":10,"src":"2813:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":5,"name":"uint64","nodeType":"ElementaryTypeName","src":"2813:6:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9,"mutability":"mutable","name":"_initializing","nameLocation":"2955:13:0","nodeType":"VariableDeclaration","scope":10,"src":"2950:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8,"name":"bool","nodeType":"ElementaryTypeName","src":"2950:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"InitializableStorage","nameLocation":"2692:20:0","nodeType":"StructDefinition","scope":267,"src":"2685:290:0","visibility":"public"},{"constant":true,"id":13,"mutability":"constant","name":"INITIALIZABLE_STORAGE","nameLocation":"3123:21:0","nodeType":"VariableDeclaration","scope":267,"src":"3098:115:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":11,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3098:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307866306335376531363834306466303430663135303838646332663831666533393163333932336265633733653233613936363265666339633232396336613030","id":12,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3147:66:0","typeDescriptions":{"typeIdentifier":"t_rational_108904022758810753673719992590105913556127789646572562039383141376366747609600_by_1","typeString":"int_const 1089...(70 digits omitted)...9600"},"value":"0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00"},"visibility":"private"},{"documentation":{"id":14,"nodeType":"StructuredDocumentation","src":"3220:60:0","text":" @dev The contract is already initialized."},"errorSelector":"f92ee8a9","id":16,"name":"InvalidInitialization","nameLocation":"3291:21:0","nodeType":"ErrorDefinition","parameters":{"id":15,"nodeType":"ParameterList","parameters":[],"src":"3312:2:0"},"src":"3285:30:0"},{"documentation":{"id":17,"nodeType":"StructuredDocumentation","src":"3321:57:0","text":" @dev The contract is not initializing."},"errorSelector":"d7e6bcf8","id":19,"name":"NotInitializing","nameLocation":"3389:15:0","nodeType":"ErrorDefinition","parameters":{"id":18,"nodeType":"ParameterList","parameters":[],"src":"3404:2:0"},"src":"3383:24:0"},{"anonymous":false,"documentation":{"id":20,"nodeType":"StructuredDocumentation","src":"3413:90:0","text":" @dev Triggered when the contract has been initialized or reinitialized."},"eventSelector":"c7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2","id":24,"name":"Initialized","nameLocation":"3514:11:0","nodeType":"EventDefinition","parameters":{"id":23,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22,"indexed":false,"mutability":"mutable","name":"version","nameLocation":"3533:7:0","nodeType":"VariableDeclaration","scope":24,"src":"3526:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21,"name":"uint64","nodeType":"ElementaryTypeName","src":"3526:6:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"3525:16:0"},"src":"3508:34:0"},{"body":{"id":106,"nodeType":"Block","src":"4092:1079:0","statements":[{"assignments":[29],"declarations":[{"constant":false,"id":29,"mutability":"mutable","name":"$","nameLocation":"4187:1:0","nodeType":"VariableDeclaration","scope":106,"src":"4158:30:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage"},"typeName":{"id":28,"nodeType":"UserDefinedTypeName","pathNode":{"id":27,"name":"InitializableStorage","nameLocations":["4158:20:0"],"nodeType":"IdentifierPath","referencedDeclaration":10,"src":"4158:20:0"},"referencedDeclaration":10,"src":"4158:20:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage"}},"visibility":"internal"}],"id":32,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":30,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":266,"src":"4191:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$10_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":31,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4191:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"4158:59:0"},{"assignments":[34],"declarations":[{"constant":false,"id":34,"mutability":"mutable","name":"isTopLevelCall","nameLocation":"4284:14:0","nodeType":"VariableDeclaration","scope":106,"src":"4279:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":33,"name":"bool","nodeType":"ElementaryTypeName","src":"4279:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":38,"initialValue":{"id":37,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4301:16:0","subExpression":{"expression":{"id":35,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29,"src":"4302:1:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":36,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4304:13:0","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":9,"src":"4302:15:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"4279:38:0"},{"assignments":[40],"declarations":[{"constant":false,"id":40,"mutability":"mutable","name":"initialized","nameLocation":"4334:11:0","nodeType":"VariableDeclaration","scope":106,"src":"4327:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":39,"name":"uint64","nodeType":"ElementaryTypeName","src":"4327:6:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":43,"initialValue":{"expression":{"id":41,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29,"src":"4348:1:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":42,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4350:12:0","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":6,"src":"4348:14:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"4327:35:0"},{"assignments":[45],"declarations":[{"constant":false,"id":45,"mutability":"mutable","name":"initialSetup","nameLocation":"4709:12:0","nodeType":"VariableDeclaration","scope":106,"src":"4704:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":44,"name":"bool","nodeType":"ElementaryTypeName","src":"4704:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":51,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":50,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":48,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":46,"name":"initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40,"src":"4724:11:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":47,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4739:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4724:16:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":49,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34,"src":"4744:14:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4724:34:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"4704:54:0"},{"assignments":[53],"declarations":[{"constant":false,"id":53,"mutability":"mutable","name":"construction","nameLocation":"4773:12:0","nodeType":"VariableDeclaration","scope":106,"src":"4768:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":52,"name":"bool","nodeType":"ElementaryTypeName","src":"4768:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":66,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":65,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":56,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":54,"name":"initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40,"src":"4788:11:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":55,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4803:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4788:16:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":64,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"arguments":[{"id":59,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4816:4:0","typeDescriptions":{"typeIdentifier":"t_contract$_Initializable_$267","typeString":"contract Initializable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Initializable_$267","typeString":"contract Initializable"}],"id":58,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4808:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":57,"name":"address","nodeType":"ElementaryTypeName","src":"4808:7:0","typeDescriptions":{}}},"id":60,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4808:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":61,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4822:4:0","memberName":"code","nodeType":"MemberAccess","src":"4808:18:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":62,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4827:6:0","memberName":"length","nodeType":"MemberAccess","src":"4808:25:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":63,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4837:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4808:30:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4788:50:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"4768:70:0"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":71,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":68,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4853:13:0","subExpression":{"id":67,"name":"initialSetup","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":45,"src":"4854:12:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":70,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4870:13:0","subExpression":{"id":69,"name":"construction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":53,"src":"4871:12:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4853:30:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":76,"nodeType":"IfStatement","src":"4849:91:0","trueBody":{"id":75,"nodeType":"Block","src":"4885:55:0","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":72,"name":"InvalidInitialization","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16,"src":"4906:21:0","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":73,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4906:23:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":74,"nodeType":"RevertStatement","src":"4899:30:0"}]}},{"expression":{"id":81,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":77,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29,"src":"4949:1:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":79,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4951:12:0","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":6,"src":"4949:14:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"31","id":80,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4966:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4949:18:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":82,"nodeType":"ExpressionStatement","src":"4949:18:0"},{"condition":{"id":83,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34,"src":"4981:14:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":91,"nodeType":"IfStatement","src":"4977:67:0","trueBody":{"id":90,"nodeType":"Block","src":"4997:47:0","statements":[{"expression":{"id":88,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":84,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29,"src":"5011:1:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":86,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5013:13:0","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":9,"src":"5011:15:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":87,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5029:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"5011:22:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":89,"nodeType":"ExpressionStatement","src":"5011:22:0"}]}},{"id":92,"nodeType":"PlaceholderStatement","src":"5053:1:0"},{"condition":{"id":93,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34,"src":"5068:14:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":105,"nodeType":"IfStatement","src":"5064:101:0","trueBody":{"id":104,"nodeType":"Block","src":"5084:81:0","statements":[{"expression":{"id":98,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":94,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29,"src":"5098:1:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":96,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5100:13:0","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":9,"src":"5098:15:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":97,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5116:5:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"5098:23:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":99,"nodeType":"ExpressionStatement","src":"5098:23:0"},{"eventCall":{"arguments":[{"hexValue":"31","id":101,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5152:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"}],"id":100,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24,"src":"5140:11:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$returns$__$","typeString":"function (uint64)"}},"id":102,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5140:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":103,"nodeType":"EmitStatement","src":"5135:19:0"}]}}]},"documentation":{"id":25,"nodeType":"StructuredDocumentation","src":"3548:516:0","text":" @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\n `onlyInitializing` functions can be used to initialize parent contracts.\n Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any\n number of times. This behavior in the constructor can be useful during testing and is not expected to be used in\n production.\n Emits an {Initialized} event."},"id":107,"name":"initializer","nameLocation":"4078:11:0","nodeType":"ModifierDefinition","parameters":{"id":26,"nodeType":"ParameterList","parameters":[],"src":"4089:2:0"},"src":"4069:1102:0","virtual":false,"visibility":"internal"},{"body":{"id":153,"nodeType":"Block","src":"6289:392:0","statements":[{"assignments":[114],"declarations":[{"constant":false,"id":114,"mutability":"mutable","name":"$","nameLocation":"6384:1:0","nodeType":"VariableDeclaration","scope":153,"src":"6355:30:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage"},"typeName":{"id":113,"nodeType":"UserDefinedTypeName","pathNode":{"id":112,"name":"InitializableStorage","nameLocations":["6355:20:0"],"nodeType":"IdentifierPath","referencedDeclaration":10,"src":"6355:20:0"},"referencedDeclaration":10,"src":"6355:20:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage"}},"visibility":"internal"}],"id":117,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":115,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":266,"src":"6388:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$10_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":116,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6388:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"6355:59:0"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":124,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":118,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":114,"src":"6429:1:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":119,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6431:13:0","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":9,"src":"6429:15:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":123,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":120,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":114,"src":"6448:1:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":121,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6450:12:0","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":6,"src":"6448:14:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":122,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":110,"src":"6466:7:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"6448:25:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6429:44:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":129,"nodeType":"IfStatement","src":"6425:105:0","trueBody":{"id":128,"nodeType":"Block","src":"6475:55:0","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":125,"name":"InvalidInitialization","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16,"src":"6496:21:0","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":126,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6496:23:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":127,"nodeType":"RevertStatement","src":"6489:30:0"}]}},{"expression":{"id":134,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":130,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":114,"src":"6539:1:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":132,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6541:12:0","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":6,"src":"6539:14:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":133,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":110,"src":"6556:7:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"6539:24:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":135,"nodeType":"ExpressionStatement","src":"6539:24:0"},{"expression":{"id":140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":136,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":114,"src":"6573:1:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":138,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6575:13:0","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":9,"src":"6573:15:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":139,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6591:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6573:22:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":141,"nodeType":"ExpressionStatement","src":"6573:22:0"},{"id":142,"nodeType":"PlaceholderStatement","src":"6605:1:0"},{"expression":{"id":147,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":143,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":114,"src":"6616:1:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":145,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6618:13:0","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":9,"src":"6616:15:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":146,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6634:5:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"6616:23:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":148,"nodeType":"ExpressionStatement","src":"6616:23:0"},{"eventCall":{"arguments":[{"id":150,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":110,"src":"6666:7:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":149,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24,"src":"6654:11:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$returns$__$","typeString":"function (uint64)"}},"id":151,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6654:20:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":152,"nodeType":"EmitStatement","src":"6649:25:0"}]},"documentation":{"id":108,"nodeType":"StructuredDocumentation","src":"5177:1068:0","text":" @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\n contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\n used to initialize parent contracts.\n A reinitializer may be used after the original initialization step. This is essential to configure modules that\n are added through upgrades and that require initialization.\n When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\n cannot be nested. If one is invoked in the context of another, execution will revert.\n Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\n a contract, executing them in the right order is up to the developer or operator.\n WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization.\n Emits an {Initialized} event."},"id":154,"name":"reinitializer","nameLocation":"6259:13:0","nodeType":"ModifierDefinition","parameters":{"id":111,"nodeType":"ParameterList","parameters":[{"constant":false,"id":110,"mutability":"mutable","name":"version","nameLocation":"6280:7:0","nodeType":"VariableDeclaration","scope":154,"src":"6273:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":109,"name":"uint64","nodeType":"ElementaryTypeName","src":"6273:6:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6272:16:0"},"src":"6250:431:0","virtual":false,"visibility":"internal"},{"body":{"id":161,"nodeType":"Block","src":"6919:48:0","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":157,"name":"_checkInitializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":175,"src":"6929:18:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":158,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6929:20:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":159,"nodeType":"ExpressionStatement","src":"6929:20:0"},{"id":160,"nodeType":"PlaceholderStatement","src":"6959:1:0"}]},"documentation":{"id":155,"nodeType":"StructuredDocumentation","src":"6687:199:0","text":" @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\n {initializer} and {reinitializer} modifiers, directly or indirectly."},"id":162,"name":"onlyInitializing","nameLocation":"6900:16:0","nodeType":"ModifierDefinition","parameters":{"id":156,"nodeType":"ParameterList","parameters":[],"src":"6916:2:0"},"src":"6891:76:0","virtual":false,"visibility":"internal"},{"body":{"id":174,"nodeType":"Block","src":"7134:89:0","statements":[{"condition":{"id":168,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"7148:18:0","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":166,"name":"_isInitializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":243,"src":"7149:15:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bool_$","typeString":"function () view returns (bool)"}},"id":167,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7149:17:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":173,"nodeType":"IfStatement","src":"7144:73:0","trueBody":{"id":172,"nodeType":"Block","src":"7168:49:0","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":169,"name":"NotInitializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19,"src":"7189:15:0","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7189:17:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":171,"nodeType":"RevertStatement","src":"7182:24:0"}]}}]},"documentation":{"id":163,"nodeType":"StructuredDocumentation","src":"6973:104:0","text":" @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}."},"id":175,"implemented":true,"kind":"function","modifiers":[],"name":"_checkInitializing","nameLocation":"7091:18:0","nodeType":"FunctionDefinition","parameters":{"id":164,"nodeType":"ParameterList","parameters":[],"src":"7109:2:0"},"returnParameters":{"id":165,"nodeType":"ParameterList","parameters":[],"src":"7134:0:0"},"scope":267,"src":"7082:141:0","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":220,"nodeType":"Block","src":"7758:373:0","statements":[{"assignments":[181],"declarations":[{"constant":false,"id":181,"mutability":"mutable","name":"$","nameLocation":"7853:1:0","nodeType":"VariableDeclaration","scope":220,"src":"7824:30:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage"},"typeName":{"id":180,"nodeType":"UserDefinedTypeName","pathNode":{"id":179,"name":"InitializableStorage","nameLocations":["7824:20:0"],"nodeType":"IdentifierPath","referencedDeclaration":10,"src":"7824:20:0"},"referencedDeclaration":10,"src":"7824:20:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage"}},"visibility":"internal"}],"id":184,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":182,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":266,"src":"7857:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$10_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":183,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7857:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"7824:59:0"},{"condition":{"expression":{"id":185,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":181,"src":"7898:1:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":186,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7900:13:0","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":9,"src":"7898:15:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":191,"nodeType":"IfStatement","src":"7894:76:0","trueBody":{"id":190,"nodeType":"Block","src":"7915:55:0","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":187,"name":"InvalidInitialization","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16,"src":"7936:21:0","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":188,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7936:23:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":189,"nodeType":"RevertStatement","src":"7929:30:0"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":192,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":181,"src":"7983:1:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":193,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7985:12:0","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":6,"src":"7983:14:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"arguments":[{"id":196,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8006:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":195,"name":"uint64","nodeType":"ElementaryTypeName","src":"8006:6:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":194,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8001:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":197,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8001:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":198,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8014:3:0","memberName":"max","nodeType":"MemberAccess","src":"8001:16:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"7983:34:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":219,"nodeType":"IfStatement","src":"7979:146:0","trueBody":{"id":218,"nodeType":"Block","src":"8019:106:0","statements":[{"expression":{"id":208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":200,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":181,"src":"8033:1:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":202,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8035:12:0","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":6,"src":"8033:14:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"arguments":[{"id":205,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8055:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":204,"name":"uint64","nodeType":"ElementaryTypeName","src":"8055:6:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":203,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8050:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":206,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8050:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":207,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8063:3:0","memberName":"max","nodeType":"MemberAccess","src":"8050:16:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"8033:33:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":209,"nodeType":"ExpressionStatement","src":"8033:33:0"},{"eventCall":{"arguments":[{"expression":{"arguments":[{"id":213,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8102:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":212,"name":"uint64","nodeType":"ElementaryTypeName","src":"8102:6:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":211,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8097:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":214,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8097:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":215,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8110:3:0","memberName":"max","nodeType":"MemberAccess","src":"8097:16:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":210,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24,"src":"8085:11:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$returns$__$","typeString":"function (uint64)"}},"id":216,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8085:29:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":217,"nodeType":"EmitStatement","src":"8080:34:0"}]}}]},"documentation":{"id":176,"nodeType":"StructuredDocumentation","src":"7229:475:0","text":" @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\n Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\n to any version. It is recommended to use this to lock implementation contracts that are designed to be called\n through proxies.\n Emits an {Initialized} event the first time it is successfully executed."},"id":221,"implemented":true,"kind":"function","modifiers":[],"name":"_disableInitializers","nameLocation":"7718:20:0","nodeType":"FunctionDefinition","parameters":{"id":177,"nodeType":"ParameterList","parameters":[],"src":"7738:2:0"},"returnParameters":{"id":178,"nodeType":"ParameterList","parameters":[],"src":"7758:0:0"},"scope":267,"src":"7709:422:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":231,"nodeType":"Block","src":"8306:63:0","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":227,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":266,"src":"8323:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$10_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":228,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8323:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":229,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8350:12:0","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":6,"src":"8323:39:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":226,"id":230,"nodeType":"Return","src":"8316:46:0"}]},"documentation":{"id":222,"nodeType":"StructuredDocumentation","src":"8137:99:0","text":" @dev Returns the highest version that has been initialized. See {reinitializer}."},"id":232,"implemented":true,"kind":"function","modifiers":[],"name":"_getInitializedVersion","nameLocation":"8250:22:0","nodeType":"FunctionDefinition","parameters":{"id":223,"nodeType":"ParameterList","parameters":[],"src":"8272:2:0"},"returnParameters":{"id":226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":225,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":232,"src":"8298:6:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":224,"name":"uint64","nodeType":"ElementaryTypeName","src":"8298:6:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8297:8:0"},"scope":267,"src":"8241:128:0","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":242,"nodeType":"Block","src":"8541:64:0","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":238,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":266,"src":"8558:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$10_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":239,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8558:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":240,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8585:13:0","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":9,"src":"8558:40:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":237,"id":241,"nodeType":"Return","src":"8551:47:0"}]},"documentation":{"id":233,"nodeType":"StructuredDocumentation","src":"8375:105:0","text":" @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}."},"id":243,"implemented":true,"kind":"function","modifiers":[],"name":"_isInitializing","nameLocation":"8494:15:0","nodeType":"FunctionDefinition","parameters":{"id":234,"nodeType":"ParameterList","parameters":[],"src":"8509:2:0"},"returnParameters":{"id":237,"nodeType":"ParameterList","parameters":[{"constant":false,"id":236,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":243,"src":"8535:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":235,"name":"bool","nodeType":"ElementaryTypeName","src":"8535:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8534:6:0"},"scope":267,"src":"8485:120:0","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":251,"nodeType":"Block","src":"8896:45:0","statements":[{"expression":{"id":249,"name":"INITIALIZABLE_STORAGE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13,"src":"8913:21:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":248,"id":250,"nodeType":"Return","src":"8906:28:0"}]},"documentation":{"id":244,"nodeType":"StructuredDocumentation","src":"8611:203:0","text":" @dev Pointer to storage slot. Allows integrators to override it with a custom storage location.\n NOTE: Consider following the ERC-7201 formula to derive storage locations."},"id":252,"implemented":true,"kind":"function","modifiers":[],"name":"_initializableStorageSlot","nameLocation":"8828:25:0","nodeType":"FunctionDefinition","parameters":{"id":245,"nodeType":"ParameterList","parameters":[],"src":"8853:2:0"},"returnParameters":{"id":248,"nodeType":"ParameterList","parameters":[{"constant":false,"id":247,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":252,"src":"8887:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":246,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8887:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8886:9:0"},"scope":267,"src":"8819:122:0","stateMutability":"pure","virtual":true,"visibility":"internal"},{"body":{"id":265,"nodeType":"Block","src":"9161:115:0","statements":[{"assignments":[260],"declarations":[{"constant":false,"id":260,"mutability":"mutable","name":"slot","nameLocation":"9179:4:0","nodeType":"VariableDeclaration","scope":265,"src":"9171:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":259,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9171:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":263,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":261,"name":"_initializableStorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":252,"src":"9186:25:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_bytes32_$","typeString":"function () pure returns (bytes32)"}},"id":262,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9186:27:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"9171:42:0"},{"AST":{"nodeType":"YulBlock","src":"9232:38:0","statements":[{"nodeType":"YulAssignment","src":"9246:14:0","value":{"name":"slot","nodeType":"YulIdentifier","src":"9256:4:0"},"variableNames":[{"name":"$.slot","nodeType":"YulIdentifier","src":"9246:6:0"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":257,"isOffset":false,"isSlot":true,"src":"9246:6:0","suffix":"slot","valueSize":1},{"declaration":260,"isOffset":false,"isSlot":false,"src":"9256:4:0","valueSize":1}],"id":264,"nodeType":"InlineAssembly","src":"9223:47:0"}]},"documentation":{"id":253,"nodeType":"StructuredDocumentation","src":"8947:67:0","text":" @dev Returns a pointer to the storage namespace."},"id":266,"implemented":true,"kind":"function","modifiers":[],"name":"_getInitializableStorage","nameLocation":"9080:24:0","nodeType":"FunctionDefinition","parameters":{"id":254,"nodeType":"ParameterList","parameters":[],"src":"9104:2:0"},"returnParameters":{"id":258,"nodeType":"ParameterList","parameters":[{"constant":false,"id":257,"mutability":"mutable","name":"$","nameLocation":"9158:1:0","nodeType":"VariableDeclaration","scope":266,"src":"9129:30:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage"},"typeName":{"id":256,"nodeType":"UserDefinedTypeName","pathNode":{"id":255,"name":"InitializableStorage","nameLocations":["9129:20:0"],"nodeType":"IdentifierPath","referencedDeclaration":10,"src":"9129:20:0"},"referencedDeclaration":10,"src":"9129:20:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$10_storage_ptr","typeString":"struct Initializable.InitializableStorage"}},"visibility":"internal"}],"src":"9128:32:0"},"scope":267,"src":"9071:205:0","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":268,"src":"2349:6929:0","usedErrors":[16,19],"usedEvents":[24]}],"src":"113:9166:0"},"id":0},"@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.sol","exportedSymbols":{"Initializable":[267],"ReentrancyGuardUpgradeable":[396]},"id":397,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":269,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:1"},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","file":"../proxy/utils/Initializable.sol","id":271,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":397,"sourceUnit":268,"src":"134:63:1","symbolAliases":[{"foreign":{"id":270,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":267,"src":"142:13:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":273,"name":"Initializable","nameLocations":["1142:13:1"],"nodeType":"IdentifierPath","referencedDeclaration":267,"src":"1142:13:1"},"id":274,"nodeType":"InheritanceSpecifier","src":"1142:13:1"}],"canonicalName":"ReentrancyGuardUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":272,"nodeType":"StructuredDocumentation","src":"199:894:1","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":396,"linearizedBaseContracts":[396,267],"name":"ReentrancyGuardUpgradeable","nameLocation":"1112:26:1","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":277,"mutability":"constant","name":"NOT_ENTERED","nameLocation":"1935:11:1","nodeType":"VariableDeclaration","scope":396,"src":"1910:40:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":275,"name":"uint256","nodeType":"ElementaryTypeName","src":"1910:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31","id":276,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1949:1:1","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"visibility":"private"},{"constant":true,"id":280,"mutability":"constant","name":"ENTERED","nameLocation":"1981:7:1","nodeType":"VariableDeclaration","scope":396,"src":"1956:36:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":278,"name":"uint256","nodeType":"ElementaryTypeName","src":"1956:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"32","id":279,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1991:1:1","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"visibility":"private"},{"canonicalName":"ReentrancyGuardUpgradeable.ReentrancyGuardStorage","documentation":{"id":281,"nodeType":"StructuredDocumentation","src":"1999:73:1","text":"@custom:storage-location erc7201:openzeppelin.storage.ReentrancyGuard"},"id":284,"members":[{"constant":false,"id":283,"mutability":"mutable","name":"_status","nameLocation":"2125:7:1","nodeType":"VariableDeclaration","scope":284,"src":"2117:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":282,"name":"uint256","nodeType":"ElementaryTypeName","src":"2117:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"ReentrancyGuardStorage","nameLocation":"2084:22:1","nodeType":"StructDefinition","scope":396,"src":"2077:62:1","visibility":"public"},{"constant":true,"id":287,"mutability":"constant","name":"ReentrancyGuardStorageLocation","nameLocation":"2289:30:1","nodeType":"VariableDeclaration","scope":396,"src":"2264:124:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":285,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2264:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307839623737396231373432326430646639323232333031386233326234643166613436653037313732336436383137653234383664303033626563633535663030","id":286,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2322:66:1","typeDescriptions":{"typeIdentifier":"t_rational_70319816728846589445362000750570655803700195216363692647688146666176345628416_by_1","typeString":"int_const 7031...(69 digits omitted)...8416"},"value":"0x9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00"},"visibility":"private"},{"body":{"id":294,"nodeType":"Block","src":"2489:89:1","statements":[{"AST":{"nodeType":"YulBlock","src":"2508:64:1","statements":[{"nodeType":"YulAssignment","src":"2522:40:1","value":{"name":"ReentrancyGuardStorageLocation","nodeType":"YulIdentifier","src":"2532:30:1"},"variableNames":[{"name":"$.slot","nodeType":"YulIdentifier","src":"2522:6:1"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":291,"isOffset":false,"isSlot":true,"src":"2522:6:1","suffix":"slot","valueSize":1},{"declaration":287,"isOffset":false,"isSlot":false,"src":"2532:30:1","valueSize":1}],"id":293,"nodeType":"InlineAssembly","src":"2499:73:1"}]},"id":295,"implemented":true,"kind":"function","modifiers":[],"name":"_getReentrancyGuardStorage","nameLocation":"2404:26:1","nodeType":"FunctionDefinition","parameters":{"id":288,"nodeType":"ParameterList","parameters":[],"src":"2430:2:1"},"returnParameters":{"id":292,"nodeType":"ParameterList","parameters":[{"constant":false,"id":291,"mutability":"mutable","name":"$","nameLocation":"2486:1:1","nodeType":"VariableDeclaration","scope":295,"src":"2455:32:1","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ReentrancyGuardStorage_$284_storage_ptr","typeString":"struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage"},"typeName":{"id":290,"nodeType":"UserDefinedTypeName","pathNode":{"id":289,"name":"ReentrancyGuardStorage","nameLocations":["2455:22:1"],"nodeType":"IdentifierPath","referencedDeclaration":284,"src":"2455:22:1"},"referencedDeclaration":284,"src":"2455:22:1","typeDescriptions":{"typeIdentifier":"t_struct$_ReentrancyGuardStorage_$284_storage_ptr","typeString":"struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage"}},"visibility":"internal"}],"src":"2454:34:1"},"scope":396,"src":"2395:183:1","stateMutability":"pure","virtual":false,"visibility":"private"},{"documentation":{"id":296,"nodeType":"StructuredDocumentation","src":"2584:52:1","text":" @dev Unauthorized reentrant call."},"errorSelector":"3ee5aeb5","id":298,"name":"ReentrancyGuardReentrantCall","nameLocation":"2647:28:1","nodeType":"ErrorDefinition","parameters":{"id":297,"nodeType":"ParameterList","parameters":[],"src":"2675:2:1"},"src":"2641:37:1"},{"body":{"id":306,"nodeType":"Block","src":"2744:51:1","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":303,"name":"__ReentrancyGuard_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":325,"src":"2754:32:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":304,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2754:34:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":305,"nodeType":"ExpressionStatement","src":"2754:34:1"}]},"id":307,"implemented":true,"kind":"function","modifiers":[{"id":301,"kind":"modifierInvocation","modifierName":{"id":300,"name":"onlyInitializing","nameLocations":["2727:16:1"],"nodeType":"IdentifierPath","referencedDeclaration":162,"src":"2727:16:1"},"nodeType":"ModifierInvocation","src":"2727:16:1"}],"name":"__ReentrancyGuard_init","nameLocation":"2693:22:1","nodeType":"FunctionDefinition","parameters":{"id":299,"nodeType":"ParameterList","parameters":[],"src":"2715:2:1"},"returnParameters":{"id":302,"nodeType":"ParameterList","parameters":[],"src":"2744:0:1"},"scope":396,"src":"2684:111:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":324,"nodeType":"Block","src":"2871:113:1","statements":[{"assignments":[314],"declarations":[{"constant":false,"id":314,"mutability":"mutable","name":"$","nameLocation":"2912:1:1","nodeType":"VariableDeclaration","scope":324,"src":"2881:32:1","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ReentrancyGuardStorage_$284_storage_ptr","typeString":"struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage"},"typeName":{"id":313,"nodeType":"UserDefinedTypeName","pathNode":{"id":312,"name":"ReentrancyGuardStorage","nameLocations":["2881:22:1"],"nodeType":"IdentifierPath","referencedDeclaration":284,"src":"2881:22:1"},"referencedDeclaration":284,"src":"2881:22:1","typeDescriptions":{"typeIdentifier":"t_struct$_ReentrancyGuardStorage_$284_storage_ptr","typeString":"struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage"}},"visibility":"internal"}],"id":317,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":315,"name":"_getReentrancyGuardStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":295,"src":"2916:26:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ReentrancyGuardStorage_$284_storage_ptr_$","typeString":"function () pure returns (struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage storage pointer)"}},"id":316,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2916:28:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ReentrancyGuardStorage_$284_storage_ptr","typeString":"struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"2881:63:1"},{"expression":{"id":322,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":318,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":314,"src":"2954:1:1","typeDescriptions":{"typeIdentifier":"t_struct$_ReentrancyGuardStorage_$284_storage_ptr","typeString":"struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage storage pointer"}},"id":320,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"2956:7:1","memberName":"_status","nodeType":"MemberAccess","referencedDeclaration":283,"src":"2954:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":321,"name":"NOT_ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":277,"src":"2966:11:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2954:23:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":323,"nodeType":"ExpressionStatement","src":"2954:23:1"}]},"id":325,"implemented":true,"kind":"function","modifiers":[{"id":310,"kind":"modifierInvocation","modifierName":{"id":309,"name":"onlyInitializing","nameLocations":["2854:16:1"],"nodeType":"IdentifierPath","referencedDeclaration":162,"src":"2854:16:1"},"nodeType":"ModifierInvocation","src":"2854:16:1"}],"name":"__ReentrancyGuard_init_unchained","nameLocation":"2810:32:1","nodeType":"FunctionDefinition","parameters":{"id":308,"nodeType":"ParameterList","parameters":[],"src":"2842:2:1"},"returnParameters":{"id":311,"nodeType":"ParameterList","parameters":[],"src":"2871:0:1"},"scope":396,"src":"2801:183:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":335,"nodeType":"Block","src":"3385:79:1","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":328,"name":"_nonReentrantBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":361,"src":"3395:19:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":329,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3395:21:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":330,"nodeType":"ExpressionStatement","src":"3395:21:1"},{"id":331,"nodeType":"PlaceholderStatement","src":"3426:1:1"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":332,"name":"_nonReentrantAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":377,"src":"3437:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":333,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3437:20:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":334,"nodeType":"ExpressionStatement","src":"3437:20:1"}]},"documentation":{"id":326,"nodeType":"StructuredDocumentation","src":"2990:366:1","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":336,"name":"nonReentrant","nameLocation":"3370:12:1","nodeType":"ModifierDefinition","parameters":{"id":327,"nodeType":"ParameterList","parameters":[],"src":"3382:2:1"},"src":"3361:103:1","virtual":false,"visibility":"internal"},{"body":{"id":360,"nodeType":"Block","src":"3509:345:1","statements":[{"assignments":[341],"declarations":[{"constant":false,"id":341,"mutability":"mutable","name":"$","nameLocation":"3550:1:1","nodeType":"VariableDeclaration","scope":360,"src":"3519:32:1","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ReentrancyGuardStorage_$284_storage_ptr","typeString":"struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage"},"typeName":{"id":340,"nodeType":"UserDefinedTypeName","pathNode":{"id":339,"name":"ReentrancyGuardStorage","nameLocations":["3519:22:1"],"nodeType":"IdentifierPath","referencedDeclaration":284,"src":"3519:22:1"},"referencedDeclaration":284,"src":"3519:22:1","typeDescriptions":{"typeIdentifier":"t_struct$_ReentrancyGuardStorage_$284_storage_ptr","typeString":"struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage"}},"visibility":"internal"}],"id":344,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":342,"name":"_getReentrancyGuardStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":295,"src":"3554:26:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ReentrancyGuardStorage_$284_storage_ptr_$","typeString":"function () pure returns (struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage storage pointer)"}},"id":343,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3554:28:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ReentrancyGuardStorage_$284_storage_ptr","typeString":"struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"3519:63:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":348,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":345,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":341,"src":"3670:1:1","typeDescriptions":{"typeIdentifier":"t_struct$_ReentrancyGuardStorage_$284_storage_ptr","typeString":"struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage storage pointer"}},"id":346,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3672:7:1","memberName":"_status","nodeType":"MemberAccess","referencedDeclaration":283,"src":"3670:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":347,"name":"ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":280,"src":"3683:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3670:20:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":353,"nodeType":"IfStatement","src":"3666:88:1","trueBody":{"id":352,"nodeType":"Block","src":"3692:62:1","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":349,"name":"ReentrancyGuardReentrantCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":298,"src":"3713:28:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$__$","typeString":"function () pure"}},"id":350,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3713:30:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":351,"nodeType":"RevertStatement","src":"3706:37:1"}]}},{"expression":{"id":358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":354,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":341,"src":"3828:1:1","typeDescriptions":{"typeIdentifier":"t_struct$_ReentrancyGuardStorage_$284_storage_ptr","typeString":"struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage storage pointer"}},"id":356,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3830:7:1","memberName":"_status","nodeType":"MemberAccess","referencedDeclaration":283,"src":"3828:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":357,"name":"ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":280,"src":"3840:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3828:19:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":359,"nodeType":"ExpressionStatement","src":"3828:19:1"}]},"id":361,"implemented":true,"kind":"function","modifiers":[],"name":"_nonReentrantBefore","nameLocation":"3479:19:1","nodeType":"FunctionDefinition","parameters":{"id":337,"nodeType":"ParameterList","parameters":[],"src":"3498:2:1"},"returnParameters":{"id":338,"nodeType":"ParameterList","parameters":[],"src":"3509:0:1"},"scope":396,"src":"3470:384:1","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":376,"nodeType":"Block","src":"3898:245:1","statements":[{"assignments":[366],"declarations":[{"constant":false,"id":366,"mutability":"mutable","name":"$","nameLocation":"3939:1:1","nodeType":"VariableDeclaration","scope":376,"src":"3908:32:1","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ReentrancyGuardStorage_$284_storage_ptr","typeString":"struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage"},"typeName":{"id":365,"nodeType":"UserDefinedTypeName","pathNode":{"id":364,"name":"ReentrancyGuardStorage","nameLocations":["3908:22:1"],"nodeType":"IdentifierPath","referencedDeclaration":284,"src":"3908:22:1"},"referencedDeclaration":284,"src":"3908:22:1","typeDescriptions":{"typeIdentifier":"t_struct$_ReentrancyGuardStorage_$284_storage_ptr","typeString":"struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage"}},"visibility":"internal"}],"id":369,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":367,"name":"_getReentrancyGuardStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":295,"src":"3943:26:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ReentrancyGuardStorage_$284_storage_ptr_$","typeString":"function () pure returns (struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage storage pointer)"}},"id":368,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3943:28:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ReentrancyGuardStorage_$284_storage_ptr","typeString":"struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"3908:63:1"},{"expression":{"id":374,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":370,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":366,"src":"4113:1:1","typeDescriptions":{"typeIdentifier":"t_struct$_ReentrancyGuardStorage_$284_storage_ptr","typeString":"struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage storage pointer"}},"id":372,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4115:7:1","memberName":"_status","nodeType":"MemberAccess","referencedDeclaration":283,"src":"4113:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":373,"name":"NOT_ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":277,"src":"4125:11:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4113:23:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":375,"nodeType":"ExpressionStatement","src":"4113:23:1"}]},"id":377,"implemented":true,"kind":"function","modifiers":[],"name":"_nonReentrantAfter","nameLocation":"3869:18:1","nodeType":"FunctionDefinition","parameters":{"id":362,"nodeType":"ParameterList","parameters":[],"src":"3887:2:1"},"returnParameters":{"id":363,"nodeType":"ParameterList","parameters":[],"src":"3898:0:1"},"scope":396,"src":"3860:283:1","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":394,"nodeType":"Block","src":"4386:117:1","statements":[{"assignments":[385],"declarations":[{"constant":false,"id":385,"mutability":"mutable","name":"$","nameLocation":"4427:1:1","nodeType":"VariableDeclaration","scope":394,"src":"4396:32:1","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ReentrancyGuardStorage_$284_storage_ptr","typeString":"struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage"},"typeName":{"id":384,"nodeType":"UserDefinedTypeName","pathNode":{"id":383,"name":"ReentrancyGuardStorage","nameLocations":["4396:22:1"],"nodeType":"IdentifierPath","referencedDeclaration":284,"src":"4396:22:1"},"referencedDeclaration":284,"src":"4396:22:1","typeDescriptions":{"typeIdentifier":"t_struct$_ReentrancyGuardStorage_$284_storage_ptr","typeString":"struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage"}},"visibility":"internal"}],"id":388,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":386,"name":"_getReentrancyGuardStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":295,"src":"4431:26:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ReentrancyGuardStorage_$284_storage_ptr_$","typeString":"function () pure returns (struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage storage pointer)"}},"id":387,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4431:28:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ReentrancyGuardStorage_$284_storage_ptr","typeString":"struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"4396:63:1"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":392,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":389,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":385,"src":"4476:1:1","typeDescriptions":{"typeIdentifier":"t_struct$_ReentrancyGuardStorage_$284_storage_ptr","typeString":"struct ReentrancyGuardUpgradeable.ReentrancyGuardStorage storage pointer"}},"id":390,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4478:7:1","memberName":"_status","nodeType":"MemberAccess","referencedDeclaration":283,"src":"4476:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":391,"name":"ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":280,"src":"4489:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4476:20:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":382,"id":393,"nodeType":"Return","src":"4469:27:1"}]},"documentation":{"id":378,"nodeType":"StructuredDocumentation","src":"4149:168:1","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":395,"implemented":true,"kind":"function","modifiers":[],"name":"_reentrancyGuardEntered","nameLocation":"4331:23:1","nodeType":"FunctionDefinition","parameters":{"id":379,"nodeType":"ParameterList","parameters":[],"src":"4354:2:1"},"returnParameters":{"id":382,"nodeType":"ParameterList","parameters":[{"constant":false,"id":381,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":395,"src":"4380:4:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":380,"name":"bool","nodeType":"ElementaryTypeName","src":"4380:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4379:6:1"},"scope":396,"src":"4322:181:1","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":397,"src":"1094:3411:1","usedErrors":[16,19,298],"usedEvents":[24]}],"src":"109:4397:1"},"id":1},"@openzeppelin/contracts/interfaces/IERC1363.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1363.sol","exportedSymbols":{"IERC1363":[478],"IERC165":[1784],"IERC20":[1216]},"id":479,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":398,"literals":["solidity",">=","0.6",".2"],"nodeType":"PragmaDirective","src":"107:24:2"},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20.sol","file":"./IERC20.sol","id":400,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":479,"sourceUnit":487,"src":"133:36:2","symbolAliases":[{"foreign":{"id":399,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1216,"src":"141:6:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","file":"./IERC165.sol","id":402,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":479,"sourceUnit":483,"src":"170:38:2","symbolAliases":[{"foreign":{"id":401,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"178:7:2","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":404,"name":"IERC20","nameLocations":["590:6:2"],"nodeType":"IdentifierPath","referencedDeclaration":1216,"src":"590:6:2"},"id":405,"nodeType":"InheritanceSpecifier","src":"590:6:2"},{"baseName":{"id":406,"name":"IERC165","nameLocations":["598:7:2"],"nodeType":"IdentifierPath","referencedDeclaration":1784,"src":"598:7:2"},"id":407,"nodeType":"InheritanceSpecifier","src":"598:7:2"}],"canonicalName":"IERC1363","contractDependencies":[],"contractKind":"interface","documentation":{"id":403,"nodeType":"StructuredDocumentation","src":"210:357:2","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":478,"linearizedBaseContracts":[478,1784,1216],"name":"IERC1363","nameLocation":"578:8:2","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":408,"nodeType":"StructuredDocumentation","src":"1148:370:2","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":417,"implemented":false,"kind":"function","modifiers":[],"name":"transferAndCall","nameLocation":"1532:15:2","nodeType":"FunctionDefinition","parameters":{"id":413,"nodeType":"ParameterList","parameters":[{"constant":false,"id":410,"mutability":"mutable","name":"to","nameLocation":"1556:2:2","nodeType":"VariableDeclaration","scope":417,"src":"1548:10:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":409,"name":"address","nodeType":"ElementaryTypeName","src":"1548:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":412,"mutability":"mutable","name":"value","nameLocation":"1568:5:2","nodeType":"VariableDeclaration","scope":417,"src":"1560:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":411,"name":"uint256","nodeType":"ElementaryTypeName","src":"1560:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1547:27:2"},"returnParameters":{"id":416,"nodeType":"ParameterList","parameters":[{"constant":false,"id":415,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":417,"src":"1593:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":414,"name":"bool","nodeType":"ElementaryTypeName","src":"1593:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1592:6:2"},"scope":478,"src":"1523:76:2","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":418,"nodeType":"StructuredDocumentation","src":"1605:453:2","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":429,"implemented":false,"kind":"function","modifiers":[],"name":"transferAndCall","nameLocation":"2072:15:2","nodeType":"FunctionDefinition","parameters":{"id":425,"nodeType":"ParameterList","parameters":[{"constant":false,"id":420,"mutability":"mutable","name":"to","nameLocation":"2096:2:2","nodeType":"VariableDeclaration","scope":429,"src":"2088:10:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":419,"name":"address","nodeType":"ElementaryTypeName","src":"2088:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":422,"mutability":"mutable","name":"value","nameLocation":"2108:5:2","nodeType":"VariableDeclaration","scope":429,"src":"2100:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":421,"name":"uint256","nodeType":"ElementaryTypeName","src":"2100:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":424,"mutability":"mutable","name":"data","nameLocation":"2130:4:2","nodeType":"VariableDeclaration","scope":429,"src":"2115:19:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":423,"name":"bytes","nodeType":"ElementaryTypeName","src":"2115:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2087:48:2"},"returnParameters":{"id":428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":427,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":429,"src":"2154:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":426,"name":"bool","nodeType":"ElementaryTypeName","src":"2154:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2153:6:2"},"scope":478,"src":"2063:97:2","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":430,"nodeType":"StructuredDocumentation","src":"2166:453:2","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":441,"implemented":false,"kind":"function","modifiers":[],"name":"transferFromAndCall","nameLocation":"2633:19:2","nodeType":"FunctionDefinition","parameters":{"id":437,"nodeType":"ParameterList","parameters":[{"constant":false,"id":432,"mutability":"mutable","name":"from","nameLocation":"2661:4:2","nodeType":"VariableDeclaration","scope":441,"src":"2653:12:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":431,"name":"address","nodeType":"ElementaryTypeName","src":"2653:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":434,"mutability":"mutable","name":"to","nameLocation":"2675:2:2","nodeType":"VariableDeclaration","scope":441,"src":"2667:10:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":433,"name":"address","nodeType":"ElementaryTypeName","src":"2667:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":436,"mutability":"mutable","name":"value","nameLocation":"2687:5:2","nodeType":"VariableDeclaration","scope":441,"src":"2679:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":435,"name":"uint256","nodeType":"ElementaryTypeName","src":"2679:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2652:41:2"},"returnParameters":{"id":440,"nodeType":"ParameterList","parameters":[{"constant":false,"id":439,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":441,"src":"2712:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":438,"name":"bool","nodeType":"ElementaryTypeName","src":"2712:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2711:6:2"},"scope":478,"src":"2624:94:2","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":442,"nodeType":"StructuredDocumentation","src":"2724:536:2","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":455,"implemented":false,"kind":"function","modifiers":[],"name":"transferFromAndCall","nameLocation":"3274:19:2","nodeType":"FunctionDefinition","parameters":{"id":451,"nodeType":"ParameterList","parameters":[{"constant":false,"id":444,"mutability":"mutable","name":"from","nameLocation":"3302:4:2","nodeType":"VariableDeclaration","scope":455,"src":"3294:12:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":443,"name":"address","nodeType":"ElementaryTypeName","src":"3294:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":446,"mutability":"mutable","name":"to","nameLocation":"3316:2:2","nodeType":"VariableDeclaration","scope":455,"src":"3308:10:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":445,"name":"address","nodeType":"ElementaryTypeName","src":"3308:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":448,"mutability":"mutable","name":"value","nameLocation":"3328:5:2","nodeType":"VariableDeclaration","scope":455,"src":"3320:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":447,"name":"uint256","nodeType":"ElementaryTypeName","src":"3320:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":450,"mutability":"mutable","name":"data","nameLocation":"3350:4:2","nodeType":"VariableDeclaration","scope":455,"src":"3335:19:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":449,"name":"bytes","nodeType":"ElementaryTypeName","src":"3335:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3293:62:2"},"returnParameters":{"id":454,"nodeType":"ParameterList","parameters":[{"constant":false,"id":453,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":455,"src":"3374:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":452,"name":"bool","nodeType":"ElementaryTypeName","src":"3374:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3373:6:2"},"scope":478,"src":"3265:115:2","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":456,"nodeType":"StructuredDocumentation","src":"3386:390:2","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":465,"implemented":false,"kind":"function","modifiers":[],"name":"approveAndCall","nameLocation":"3790:14:2","nodeType":"FunctionDefinition","parameters":{"id":461,"nodeType":"ParameterList","parameters":[{"constant":false,"id":458,"mutability":"mutable","name":"spender","nameLocation":"3813:7:2","nodeType":"VariableDeclaration","scope":465,"src":"3805:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":457,"name":"address","nodeType":"ElementaryTypeName","src":"3805:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":460,"mutability":"mutable","name":"value","nameLocation":"3830:5:2","nodeType":"VariableDeclaration","scope":465,"src":"3822:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":459,"name":"uint256","nodeType":"ElementaryTypeName","src":"3822:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3804:32:2"},"returnParameters":{"id":464,"nodeType":"ParameterList","parameters":[{"constant":false,"id":463,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":465,"src":"3855:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":462,"name":"bool","nodeType":"ElementaryTypeName","src":"3855:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3854:6:2"},"scope":478,"src":"3781:80:2","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":466,"nodeType":"StructuredDocumentation","src":"3867:478:2","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":477,"implemented":false,"kind":"function","modifiers":[],"name":"approveAndCall","nameLocation":"4359:14:2","nodeType":"FunctionDefinition","parameters":{"id":473,"nodeType":"ParameterList","parameters":[{"constant":false,"id":468,"mutability":"mutable","name":"spender","nameLocation":"4382:7:2","nodeType":"VariableDeclaration","scope":477,"src":"4374:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":467,"name":"address","nodeType":"ElementaryTypeName","src":"4374:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":470,"mutability":"mutable","name":"value","nameLocation":"4399:5:2","nodeType":"VariableDeclaration","scope":477,"src":"4391:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":469,"name":"uint256","nodeType":"ElementaryTypeName","src":"4391:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":472,"mutability":"mutable","name":"data","nameLocation":"4421:4:2","nodeType":"VariableDeclaration","scope":477,"src":"4406:19:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":471,"name":"bytes","nodeType":"ElementaryTypeName","src":"4406:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4373:53:2"},"returnParameters":{"id":476,"nodeType":"ParameterList","parameters":[{"constant":false,"id":475,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":477,"src":"4445:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":474,"name":"bool","nodeType":"ElementaryTypeName","src":"4445:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4444:6:2"},"scope":478,"src":"4350:101:2","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":479,"src":"568:3885:2","usedErrors":[],"usedEvents":[1150,1159]}],"src":"107:4347:2"},"id":2},"@openzeppelin/contracts/interfaces/IERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","exportedSymbols":{"IERC165":[1784]},"id":483,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":480,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"106:25:3"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"../utils/introspection/IERC165.sol","id":482,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":483,"sourceUnit":1785,"src":"133:59:3","symbolAliases":[{"foreign":{"id":481,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"141:7:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""}],"src":"106:87:3"},"id":3},"@openzeppelin/contracts/interfaces/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20.sol","exportedSymbols":{"IERC20":[1216]},"id":487,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":484,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"105:25:4"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../token/ERC20/IERC20.sol","id":486,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":487,"sourceUnit":1217,"src":"132:49:4","symbolAliases":[{"foreign":{"id":485,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1216,"src":"140:6:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""}],"src":"105:77:4"},"id":4},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","exportedSymbols":{"IERC1155Errors":[623],"IERC20Errors":[528],"IERC721Errors":[576]},"id":624,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":488,"literals":["solidity",">=","0.8",".4"],"nodeType":"PragmaDirective","src":"112:24:5"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":489,"nodeType":"StructuredDocumentation","src":"138:141:5","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":528,"linearizedBaseContracts":[528],"name":"IERC20Errors","nameLocation":"290:12:5","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":490,"nodeType":"StructuredDocumentation","src":"309:309:5","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":498,"name":"ERC20InsufficientBalance","nameLocation":"629:24:5","nodeType":"ErrorDefinition","parameters":{"id":497,"nodeType":"ParameterList","parameters":[{"constant":false,"id":492,"mutability":"mutable","name":"sender","nameLocation":"662:6:5","nodeType":"VariableDeclaration","scope":498,"src":"654:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":491,"name":"address","nodeType":"ElementaryTypeName","src":"654:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":494,"mutability":"mutable","name":"balance","nameLocation":"678:7:5","nodeType":"VariableDeclaration","scope":498,"src":"670:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":493,"name":"uint256","nodeType":"ElementaryTypeName","src":"670:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":496,"mutability":"mutable","name":"needed","nameLocation":"695:6:5","nodeType":"VariableDeclaration","scope":498,"src":"687:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":495,"name":"uint256","nodeType":"ElementaryTypeName","src":"687:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"653:49:5"},"src":"623:80:5"},{"documentation":{"id":499,"nodeType":"StructuredDocumentation","src":"709:152:5","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"96c6fd1e","id":503,"name":"ERC20InvalidSender","nameLocation":"872:18:5","nodeType":"ErrorDefinition","parameters":{"id":502,"nodeType":"ParameterList","parameters":[{"constant":false,"id":501,"mutability":"mutable","name":"sender","nameLocation":"899:6:5","nodeType":"VariableDeclaration","scope":503,"src":"891:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":500,"name":"address","nodeType":"ElementaryTypeName","src":"891:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"890:16:5"},"src":"866:41:5"},{"documentation":{"id":504,"nodeType":"StructuredDocumentation","src":"913:159:5","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":508,"name":"ERC20InvalidReceiver","nameLocation":"1083:20:5","nodeType":"ErrorDefinition","parameters":{"id":507,"nodeType":"ParameterList","parameters":[{"constant":false,"id":506,"mutability":"mutable","name":"receiver","nameLocation":"1112:8:5","nodeType":"VariableDeclaration","scope":508,"src":"1104:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":505,"name":"address","nodeType":"ElementaryTypeName","src":"1104:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1103:18:5"},"src":"1077:45:5"},{"documentation":{"id":509,"nodeType":"StructuredDocumentation","src":"1128:345:5","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":517,"name":"ERC20InsufficientAllowance","nameLocation":"1484:26:5","nodeType":"ErrorDefinition","parameters":{"id":516,"nodeType":"ParameterList","parameters":[{"constant":false,"id":511,"mutability":"mutable","name":"spender","nameLocation":"1519:7:5","nodeType":"VariableDeclaration","scope":517,"src":"1511:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":510,"name":"address","nodeType":"ElementaryTypeName","src":"1511:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":513,"mutability":"mutable","name":"allowance","nameLocation":"1536:9:5","nodeType":"VariableDeclaration","scope":517,"src":"1528:17:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":512,"name":"uint256","nodeType":"ElementaryTypeName","src":"1528:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":515,"mutability":"mutable","name":"needed","nameLocation":"1555:6:5","nodeType":"VariableDeclaration","scope":517,"src":"1547:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":514,"name":"uint256","nodeType":"ElementaryTypeName","src":"1547:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1510:52:5"},"src":"1478:85:5"},{"documentation":{"id":518,"nodeType":"StructuredDocumentation","src":"1569:174:5","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":522,"name":"ERC20InvalidApprover","nameLocation":"1754:20:5","nodeType":"ErrorDefinition","parameters":{"id":521,"nodeType":"ParameterList","parameters":[{"constant":false,"id":520,"mutability":"mutable","name":"approver","nameLocation":"1783:8:5","nodeType":"VariableDeclaration","scope":522,"src":"1775:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":519,"name":"address","nodeType":"ElementaryTypeName","src":"1775:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1774:18:5"},"src":"1748:45:5"},{"documentation":{"id":523,"nodeType":"StructuredDocumentation","src":"1799:195:5","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":527,"name":"ERC20InvalidSpender","nameLocation":"2005:19:5","nodeType":"ErrorDefinition","parameters":{"id":526,"nodeType":"ParameterList","parameters":[{"constant":false,"id":525,"mutability":"mutable","name":"spender","nameLocation":"2033:7:5","nodeType":"VariableDeclaration","scope":527,"src":"2025:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":524,"name":"address","nodeType":"ElementaryTypeName","src":"2025:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2024:17:5"},"src":"1999:43:5"}],"scope":624,"src":"280:1764:5","usedErrors":[498,503,508,517,522,527],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC721Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":529,"nodeType":"StructuredDocumentation","src":"2046:143:5","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":576,"linearizedBaseContracts":[576],"name":"IERC721Errors","nameLocation":"2200:13:5","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":530,"nodeType":"StructuredDocumentation","src":"2220:219:5","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":534,"name":"ERC721InvalidOwner","nameLocation":"2450:18:5","nodeType":"ErrorDefinition","parameters":{"id":533,"nodeType":"ParameterList","parameters":[{"constant":false,"id":532,"mutability":"mutable","name":"owner","nameLocation":"2477:5:5","nodeType":"VariableDeclaration","scope":534,"src":"2469:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":531,"name":"address","nodeType":"ElementaryTypeName","src":"2469:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2468:15:5"},"src":"2444:40:5"},{"documentation":{"id":535,"nodeType":"StructuredDocumentation","src":"2490:132:5","text":" @dev Indicates a `tokenId` whose `owner` is the zero address.\n @param tokenId Identifier number of a token."},"errorSelector":"7e273289","id":539,"name":"ERC721NonexistentToken","nameLocation":"2633:22:5","nodeType":"ErrorDefinition","parameters":{"id":538,"nodeType":"ParameterList","parameters":[{"constant":false,"id":537,"mutability":"mutable","name":"tokenId","nameLocation":"2664:7:5","nodeType":"VariableDeclaration","scope":539,"src":"2656:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":536,"name":"uint256","nodeType":"ElementaryTypeName","src":"2656:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2655:17:5"},"src":"2627:46:5"},{"documentation":{"id":540,"nodeType":"StructuredDocumentation","src":"2679:289:5","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":548,"name":"ERC721IncorrectOwner","nameLocation":"2979:20:5","nodeType":"ErrorDefinition","parameters":{"id":547,"nodeType":"ParameterList","parameters":[{"constant":false,"id":542,"mutability":"mutable","name":"sender","nameLocation":"3008:6:5","nodeType":"VariableDeclaration","scope":548,"src":"3000:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":541,"name":"address","nodeType":"ElementaryTypeName","src":"3000:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":544,"mutability":"mutable","name":"tokenId","nameLocation":"3024:7:5","nodeType":"VariableDeclaration","scope":548,"src":"3016:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":543,"name":"uint256","nodeType":"ElementaryTypeName","src":"3016:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":546,"mutability":"mutable","name":"owner","nameLocation":"3041:5:5","nodeType":"VariableDeclaration","scope":548,"src":"3033:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":545,"name":"address","nodeType":"ElementaryTypeName","src":"3033:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2999:48:5"},"src":"2973:75:5"},{"documentation":{"id":549,"nodeType":"StructuredDocumentation","src":"3054:152:5","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"73c6ac6e","id":553,"name":"ERC721InvalidSender","nameLocation":"3217:19:5","nodeType":"ErrorDefinition","parameters":{"id":552,"nodeType":"ParameterList","parameters":[{"constant":false,"id":551,"mutability":"mutable","name":"sender","nameLocation":"3245:6:5","nodeType":"VariableDeclaration","scope":553,"src":"3237:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":550,"name":"address","nodeType":"ElementaryTypeName","src":"3237:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3236:16:5"},"src":"3211:42:5"},{"documentation":{"id":554,"nodeType":"StructuredDocumentation","src":"3259:159:5","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":558,"name":"ERC721InvalidReceiver","nameLocation":"3429:21:5","nodeType":"ErrorDefinition","parameters":{"id":557,"nodeType":"ParameterList","parameters":[{"constant":false,"id":556,"mutability":"mutable","name":"receiver","nameLocation":"3459:8:5","nodeType":"VariableDeclaration","scope":558,"src":"3451:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":555,"name":"address","nodeType":"ElementaryTypeName","src":"3451:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3450:18:5"},"src":"3423:46:5"},{"documentation":{"id":559,"nodeType":"StructuredDocumentation","src":"3475:247:5","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":565,"name":"ERC721InsufficientApproval","nameLocation":"3733:26:5","nodeType":"ErrorDefinition","parameters":{"id":564,"nodeType":"ParameterList","parameters":[{"constant":false,"id":561,"mutability":"mutable","name":"operator","nameLocation":"3768:8:5","nodeType":"VariableDeclaration","scope":565,"src":"3760:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":560,"name":"address","nodeType":"ElementaryTypeName","src":"3760:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":563,"mutability":"mutable","name":"tokenId","nameLocation":"3786:7:5","nodeType":"VariableDeclaration","scope":565,"src":"3778:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":562,"name":"uint256","nodeType":"ElementaryTypeName","src":"3778:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3759:35:5"},"src":"3727:68:5"},{"documentation":{"id":566,"nodeType":"StructuredDocumentation","src":"3801:174:5","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":570,"name":"ERC721InvalidApprover","nameLocation":"3986:21:5","nodeType":"ErrorDefinition","parameters":{"id":569,"nodeType":"ParameterList","parameters":[{"constant":false,"id":568,"mutability":"mutable","name":"approver","nameLocation":"4016:8:5","nodeType":"VariableDeclaration","scope":570,"src":"4008:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":567,"name":"address","nodeType":"ElementaryTypeName","src":"4008:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4007:18:5"},"src":"3980:46:5"},{"documentation":{"id":571,"nodeType":"StructuredDocumentation","src":"4032:197:5","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":575,"name":"ERC721InvalidOperator","nameLocation":"4240:21:5","nodeType":"ErrorDefinition","parameters":{"id":574,"nodeType":"ParameterList","parameters":[{"constant":false,"id":573,"mutability":"mutable","name":"operator","nameLocation":"4270:8:5","nodeType":"VariableDeclaration","scope":575,"src":"4262:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":572,"name":"address","nodeType":"ElementaryTypeName","src":"4262:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4261:18:5"},"src":"4234:46:5"}],"scope":624,"src":"2190:2092:5","usedErrors":[534,539,548,553,558,565,570,575],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1155Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":577,"nodeType":"StructuredDocumentation","src":"4284:145:5","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":623,"linearizedBaseContracts":[623],"name":"IERC1155Errors","nameLocation":"4440:14:5","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":578,"nodeType":"StructuredDocumentation","src":"4461:361:5","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":588,"name":"ERC1155InsufficientBalance","nameLocation":"4833:26:5","nodeType":"ErrorDefinition","parameters":{"id":587,"nodeType":"ParameterList","parameters":[{"constant":false,"id":580,"mutability":"mutable","name":"sender","nameLocation":"4868:6:5","nodeType":"VariableDeclaration","scope":588,"src":"4860:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":579,"name":"address","nodeType":"ElementaryTypeName","src":"4860:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":582,"mutability":"mutable","name":"balance","nameLocation":"4884:7:5","nodeType":"VariableDeclaration","scope":588,"src":"4876:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":581,"name":"uint256","nodeType":"ElementaryTypeName","src":"4876:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":584,"mutability":"mutable","name":"needed","nameLocation":"4901:6:5","nodeType":"VariableDeclaration","scope":588,"src":"4893:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":583,"name":"uint256","nodeType":"ElementaryTypeName","src":"4893:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":586,"mutability":"mutable","name":"tokenId","nameLocation":"4917:7:5","nodeType":"VariableDeclaration","scope":588,"src":"4909:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":585,"name":"uint256","nodeType":"ElementaryTypeName","src":"4909:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4859:66:5"},"src":"4827:99:5"},{"documentation":{"id":589,"nodeType":"StructuredDocumentation","src":"4932:152:5","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"01a83514","id":593,"name":"ERC1155InvalidSender","nameLocation":"5095:20:5","nodeType":"ErrorDefinition","parameters":{"id":592,"nodeType":"ParameterList","parameters":[{"constant":false,"id":591,"mutability":"mutable","name":"sender","nameLocation":"5124:6:5","nodeType":"VariableDeclaration","scope":593,"src":"5116:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":590,"name":"address","nodeType":"ElementaryTypeName","src":"5116:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5115:16:5"},"src":"5089:43:5"},{"documentation":{"id":594,"nodeType":"StructuredDocumentation","src":"5138:159:5","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":598,"name":"ERC1155InvalidReceiver","nameLocation":"5308:22:5","nodeType":"ErrorDefinition","parameters":{"id":597,"nodeType":"ParameterList","parameters":[{"constant":false,"id":596,"mutability":"mutable","name":"receiver","nameLocation":"5339:8:5","nodeType":"VariableDeclaration","scope":598,"src":"5331:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":595,"name":"address","nodeType":"ElementaryTypeName","src":"5331:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5330:18:5"},"src":"5302:47:5"},{"documentation":{"id":599,"nodeType":"StructuredDocumentation","src":"5355:256:5","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":605,"name":"ERC1155MissingApprovalForAll","nameLocation":"5622:28:5","nodeType":"ErrorDefinition","parameters":{"id":604,"nodeType":"ParameterList","parameters":[{"constant":false,"id":601,"mutability":"mutable","name":"operator","nameLocation":"5659:8:5","nodeType":"VariableDeclaration","scope":605,"src":"5651:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":600,"name":"address","nodeType":"ElementaryTypeName","src":"5651:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":603,"mutability":"mutable","name":"owner","nameLocation":"5677:5:5","nodeType":"VariableDeclaration","scope":605,"src":"5669:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":602,"name":"address","nodeType":"ElementaryTypeName","src":"5669:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5650:33:5"},"src":"5616:68:5"},{"documentation":{"id":606,"nodeType":"StructuredDocumentation","src":"5690:174:5","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":610,"name":"ERC1155InvalidApprover","nameLocation":"5875:22:5","nodeType":"ErrorDefinition","parameters":{"id":609,"nodeType":"ParameterList","parameters":[{"constant":false,"id":608,"mutability":"mutable","name":"approver","nameLocation":"5906:8:5","nodeType":"VariableDeclaration","scope":610,"src":"5898:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":607,"name":"address","nodeType":"ElementaryTypeName","src":"5898:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5897:18:5"},"src":"5869:47:5"},{"documentation":{"id":611,"nodeType":"StructuredDocumentation","src":"5922:197:5","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":615,"name":"ERC1155InvalidOperator","nameLocation":"6130:22:5","nodeType":"ErrorDefinition","parameters":{"id":614,"nodeType":"ParameterList","parameters":[{"constant":false,"id":613,"mutability":"mutable","name":"operator","nameLocation":"6161:8:5","nodeType":"VariableDeclaration","scope":615,"src":"6153:16:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":612,"name":"address","nodeType":"ElementaryTypeName","src":"6153:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6152:18:5"},"src":"6124:47:5"},{"documentation":{"id":616,"nodeType":"StructuredDocumentation","src":"6177:280:5","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":622,"name":"ERC1155InvalidArrayLength","nameLocation":"6468:25:5","nodeType":"ErrorDefinition","parameters":{"id":621,"nodeType":"ParameterList","parameters":[{"constant":false,"id":618,"mutability":"mutable","name":"idsLength","nameLocation":"6502:9:5","nodeType":"VariableDeclaration","scope":622,"src":"6494:17:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":617,"name":"uint256","nodeType":"ElementaryTypeName","src":"6494:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":620,"mutability":"mutable","name":"valuesLength","nameLocation":"6521:12:5","nodeType":"VariableDeclaration","scope":622,"src":"6513:20:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":619,"name":"uint256","nodeType":"ElementaryTypeName","src":"6513:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6493:41:5"},"src":"6462:73:5"}],"scope":624,"src":"4430:2107:5","usedErrors":[588,593,598,605,610,615,622],"usedEvents":[]}],"src":"112:6426:5"},"id":5},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","exportedSymbols":{"Context":[1772],"ERC20":[1138],"IERC20":[1216],"IERC20Errors":[528],"IERC20Metadata":[1242]},"id":1139,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":625,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"105:24:6"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"./IERC20.sol","id":627,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1139,"sourceUnit":1217,"src":"131:36:6","symbolAliases":[{"foreign":{"id":626,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1216,"src":"139:6:6","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"./extensions/IERC20Metadata.sol","id":629,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1139,"sourceUnit":1243,"src":"168:63:6","symbolAliases":[{"foreign":{"id":628,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1242,"src":"176:14:6","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../../utils/Context.sol","id":631,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1139,"sourceUnit":1773,"src":"232:48:6","symbolAliases":[{"foreign":{"id":630,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1772,"src":"240:7:6","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","file":"../../interfaces/draft-IERC6093.sol","id":633,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1139,"sourceUnit":624,"src":"281:65:6","symbolAliases":[{"foreign":{"id":632,"name":"IERC20Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":528,"src":"289:12:6","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":635,"name":"Context","nameLocations":["1133:7:6"],"nodeType":"IdentifierPath","referencedDeclaration":1772,"src":"1133:7:6"},"id":636,"nodeType":"InheritanceSpecifier","src":"1133:7:6"},{"baseName":{"id":637,"name":"IERC20","nameLocations":["1142:6:6"],"nodeType":"IdentifierPath","referencedDeclaration":1216,"src":"1142:6:6"},"id":638,"nodeType":"InheritanceSpecifier","src":"1142:6:6"},{"baseName":{"id":639,"name":"IERC20Metadata","nameLocations":["1150:14:6"],"nodeType":"IdentifierPath","referencedDeclaration":1242,"src":"1150:14:6"},"id":640,"nodeType":"InheritanceSpecifier","src":"1150:14:6"},{"baseName":{"id":641,"name":"IERC20Errors","nameLocations":["1166:12:6"],"nodeType":"IdentifierPath","referencedDeclaration":528,"src":"1166:12:6"},"id":642,"nodeType":"InheritanceSpecifier","src":"1166:12:6"}],"canonicalName":"ERC20","contractDependencies":[],"contractKind":"contract","documentation":{"id":634,"nodeType":"StructuredDocumentation","src":"348:757:6","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":1138,"linearizedBaseContracts":[1138,528,1242,1216,1772],"name":"ERC20","nameLocation":"1124:5:6","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":646,"mutability":"mutable","name":"_balances","nameLocation":"1229:9:6","nodeType":"VariableDeclaration","scope":1138,"src":"1185:53:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":645,"keyName":"account","keyNameLocation":"1201:7:6","keyType":{"id":643,"name":"address","nodeType":"ElementaryTypeName","src":"1193:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1185:35:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":644,"name":"uint256","nodeType":"ElementaryTypeName","src":"1212:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":652,"mutability":"mutable","name":"_allowances","nameLocation":"1317:11:6","nodeType":"VariableDeclaration","scope":1138,"src":"1245:83:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"typeName":{"id":651,"keyName":"account","keyNameLocation":"1261:7:6","keyType":{"id":647,"name":"address","nodeType":"ElementaryTypeName","src":"1253:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1245:63:6","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":650,"keyName":"spender","keyNameLocation":"1288:7:6","keyType":{"id":648,"name":"address","nodeType":"ElementaryTypeName","src":"1280:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1272:35:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":649,"name":"uint256","nodeType":"ElementaryTypeName","src":"1299:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"private"},{"constant":false,"id":654,"mutability":"mutable","name":"_totalSupply","nameLocation":"1351:12:6","nodeType":"VariableDeclaration","scope":1138,"src":"1335:28:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":653,"name":"uint256","nodeType":"ElementaryTypeName","src":"1335:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":656,"mutability":"mutable","name":"_name","nameLocation":"1385:5:6","nodeType":"VariableDeclaration","scope":1138,"src":"1370:20:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":655,"name":"string","nodeType":"ElementaryTypeName","src":"1370:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":658,"mutability":"mutable","name":"_symbol","nameLocation":"1411:7:6","nodeType":"VariableDeclaration","scope":1138,"src":"1396:22:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":657,"name":"string","nodeType":"ElementaryTypeName","src":"1396:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"body":{"id":674,"nodeType":"Block","src":"1638:57:6","statements":[{"expression":{"id":668,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":666,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":656,"src":"1648:5:6","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":667,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":661,"src":"1656:5:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1648:13:6","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":669,"nodeType":"ExpressionStatement","src":"1648:13:6"},{"expression":{"id":672,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":670,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":658,"src":"1671:7:6","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":671,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":663,"src":"1681:7:6","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1671:17:6","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":673,"nodeType":"ExpressionStatement","src":"1671:17:6"}]},"documentation":{"id":659,"nodeType":"StructuredDocumentation","src":"1425:152:6","text":" @dev Sets the values for {name} and {symbol}.\n Both values are immutable: they can only be set once during construction."},"id":675,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":664,"nodeType":"ParameterList","parameters":[{"constant":false,"id":661,"mutability":"mutable","name":"name_","nameLocation":"1608:5:6","nodeType":"VariableDeclaration","scope":675,"src":"1594:19:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":660,"name":"string","nodeType":"ElementaryTypeName","src":"1594:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":663,"mutability":"mutable","name":"symbol_","nameLocation":"1629:7:6","nodeType":"VariableDeclaration","scope":675,"src":"1615:21:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":662,"name":"string","nodeType":"ElementaryTypeName","src":"1615:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1593:44:6"},"returnParameters":{"id":665,"nodeType":"ParameterList","parameters":[],"src":"1638:0:6"},"scope":1138,"src":"1582:113:6","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[1229],"body":{"id":683,"nodeType":"Block","src":"1820:29:6","statements":[{"expression":{"id":681,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":656,"src":"1837:5:6","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":680,"id":682,"nodeType":"Return","src":"1830:12:6"}]},"documentation":{"id":676,"nodeType":"StructuredDocumentation","src":"1701:54:6","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":684,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"1769:4:6","nodeType":"FunctionDefinition","parameters":{"id":677,"nodeType":"ParameterList","parameters":[],"src":"1773:2:6"},"returnParameters":{"id":680,"nodeType":"ParameterList","parameters":[{"constant":false,"id":679,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":684,"src":"1805:13:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":678,"name":"string","nodeType":"ElementaryTypeName","src":"1805:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1804:15:6"},"scope":1138,"src":"1760:89:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1235],"body":{"id":692,"nodeType":"Block","src":"2024:31:6","statements":[{"expression":{"id":690,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":658,"src":"2041:7:6","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":689,"id":691,"nodeType":"Return","src":"2034:14:6"}]},"documentation":{"id":685,"nodeType":"StructuredDocumentation","src":"1855:102:6","text":" @dev Returns the symbol of the token, usually a shorter version of the\n name."},"functionSelector":"95d89b41","id":693,"implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"1971:6:6","nodeType":"FunctionDefinition","parameters":{"id":686,"nodeType":"ParameterList","parameters":[],"src":"1977:2:6"},"returnParameters":{"id":689,"nodeType":"ParameterList","parameters":[{"constant":false,"id":688,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":693,"src":"2009:13:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":687,"name":"string","nodeType":"ElementaryTypeName","src":"2009:6:6","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2008:15:6"},"scope":1138,"src":"1962:93:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1241],"body":{"id":701,"nodeType":"Block","src":"2744:26:6","statements":[{"expression":{"hexValue":"3138","id":699,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2761:2:6","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"functionReturnParameters":698,"id":700,"nodeType":"Return","src":"2754:9:6"}]},"documentation":{"id":694,"nodeType":"StructuredDocumentation","src":"2061:622:6","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":702,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"2697:8:6","nodeType":"FunctionDefinition","parameters":{"id":695,"nodeType":"ParameterList","parameters":[],"src":"2705:2:6"},"returnParameters":{"id":698,"nodeType":"ParameterList","parameters":[{"constant":false,"id":697,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":702,"src":"2737:5:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":696,"name":"uint8","nodeType":"ElementaryTypeName","src":"2737:5:6","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"2736:7:6"},"scope":1138,"src":"2688:82:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1165],"body":{"id":710,"nodeType":"Block","src":"2864:36:6","statements":[{"expression":{"id":708,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":654,"src":"2881:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":707,"id":709,"nodeType":"Return","src":"2874:19:6"}]},"documentation":{"id":703,"nodeType":"StructuredDocumentation","src":"2776:22:6","text":"@inheritdoc IERC20"},"functionSelector":"18160ddd","id":711,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"2812:11:6","nodeType":"FunctionDefinition","parameters":{"id":704,"nodeType":"ParameterList","parameters":[],"src":"2823:2:6"},"returnParameters":{"id":707,"nodeType":"ParameterList","parameters":[{"constant":false,"id":706,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":711,"src":"2855:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":705,"name":"uint256","nodeType":"ElementaryTypeName","src":"2855:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2854:9:6"},"scope":1138,"src":"2803:97:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1173],"body":{"id":723,"nodeType":"Block","src":"3007:42:6","statements":[{"expression":{"baseExpression":{"id":719,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":646,"src":"3024:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":721,"indexExpression":{"id":720,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":714,"src":"3034:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3024:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":718,"id":722,"nodeType":"Return","src":"3017:25:6"}]},"documentation":{"id":712,"nodeType":"StructuredDocumentation","src":"2906:22:6","text":"@inheritdoc IERC20"},"functionSelector":"70a08231","id":724,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"2942:9:6","nodeType":"FunctionDefinition","parameters":{"id":715,"nodeType":"ParameterList","parameters":[{"constant":false,"id":714,"mutability":"mutable","name":"account","nameLocation":"2960:7:6","nodeType":"VariableDeclaration","scope":724,"src":"2952:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":713,"name":"address","nodeType":"ElementaryTypeName","src":"2952:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2951:17:6"},"returnParameters":{"id":718,"nodeType":"ParameterList","parameters":[{"constant":false,"id":717,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":724,"src":"2998:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":716,"name":"uint256","nodeType":"ElementaryTypeName","src":"2998:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2997:9:6"},"scope":1138,"src":"2933:116:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1183],"body":{"id":747,"nodeType":"Block","src":"3319:103:6","statements":[{"assignments":[735],"declarations":[{"constant":false,"id":735,"mutability":"mutable","name":"owner","nameLocation":"3337:5:6","nodeType":"VariableDeclaration","scope":747,"src":"3329:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":734,"name":"address","nodeType":"ElementaryTypeName","src":"3329:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":738,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":736,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1754,"src":"3345:10:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":737,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3345:12:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3329:28:6"},{"expression":{"arguments":[{"id":740,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":735,"src":"3377:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":741,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":727,"src":"3384:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":742,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":729,"src":"3388:5:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":739,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"3367:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":743,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3367:27:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":744,"nodeType":"ExpressionStatement","src":"3367:27:6"},{"expression":{"hexValue":"74727565","id":745,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3411:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":733,"id":746,"nodeType":"Return","src":"3404:11:6"}]},"documentation":{"id":725,"nodeType":"StructuredDocumentation","src":"3055:184:6","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":748,"implemented":true,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"3253:8:6","nodeType":"FunctionDefinition","parameters":{"id":730,"nodeType":"ParameterList","parameters":[{"constant":false,"id":727,"mutability":"mutable","name":"to","nameLocation":"3270:2:6","nodeType":"VariableDeclaration","scope":748,"src":"3262:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":726,"name":"address","nodeType":"ElementaryTypeName","src":"3262:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":729,"mutability":"mutable","name":"value","nameLocation":"3282:5:6","nodeType":"VariableDeclaration","scope":748,"src":"3274:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":728,"name":"uint256","nodeType":"ElementaryTypeName","src":"3274:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3261:27:6"},"returnParameters":{"id":733,"nodeType":"ParameterList","parameters":[{"constant":false,"id":732,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":748,"src":"3313:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":731,"name":"bool","nodeType":"ElementaryTypeName","src":"3313:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3312:6:6"},"scope":1138,"src":"3244:178:6","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1193],"body":{"id":764,"nodeType":"Block","src":"3544:51:6","statements":[{"expression":{"baseExpression":{"baseExpression":{"id":758,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":652,"src":"3561:11:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":760,"indexExpression":{"id":759,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":751,"src":"3573:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3561:18:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":762,"indexExpression":{"id":761,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":753,"src":"3580:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3561:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":757,"id":763,"nodeType":"Return","src":"3554:34:6"}]},"documentation":{"id":749,"nodeType":"StructuredDocumentation","src":"3428:22:6","text":"@inheritdoc IERC20"},"functionSelector":"dd62ed3e","id":765,"implemented":true,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"3464:9:6","nodeType":"FunctionDefinition","parameters":{"id":754,"nodeType":"ParameterList","parameters":[{"constant":false,"id":751,"mutability":"mutable","name":"owner","nameLocation":"3482:5:6","nodeType":"VariableDeclaration","scope":765,"src":"3474:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":750,"name":"address","nodeType":"ElementaryTypeName","src":"3474:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":753,"mutability":"mutable","name":"spender","nameLocation":"3497:7:6","nodeType":"VariableDeclaration","scope":765,"src":"3489:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":752,"name":"address","nodeType":"ElementaryTypeName","src":"3489:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3473:32:6"},"returnParameters":{"id":757,"nodeType":"ParameterList","parameters":[{"constant":false,"id":756,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":765,"src":"3535:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":755,"name":"uint256","nodeType":"ElementaryTypeName","src":"3535:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3534:9:6"},"scope":1138,"src":"3455:140:6","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1203],"body":{"id":788,"nodeType":"Block","src":"3981:107:6","statements":[{"assignments":[776],"declarations":[{"constant":false,"id":776,"mutability":"mutable","name":"owner","nameLocation":"3999:5:6","nodeType":"VariableDeclaration","scope":788,"src":"3991:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":775,"name":"address","nodeType":"ElementaryTypeName","src":"3991:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":779,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":777,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1754,"src":"4007:10:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":778,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4007:12:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3991:28:6"},{"expression":{"arguments":[{"id":781,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":776,"src":"4038:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":782,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":768,"src":"4045:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":783,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":770,"src":"4054:5:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":780,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[1029,1089],"referencedDeclaration":1029,"src":"4029:8:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":784,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4029:31:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":785,"nodeType":"ExpressionStatement","src":"4029:31:6"},{"expression":{"hexValue":"74727565","id":786,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4077:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":774,"id":787,"nodeType":"Return","src":"4070:11:6"}]},"documentation":{"id":766,"nodeType":"StructuredDocumentation","src":"3601:296:6","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":789,"implemented":true,"kind":"function","modifiers":[],"name":"approve","nameLocation":"3911:7:6","nodeType":"FunctionDefinition","parameters":{"id":771,"nodeType":"ParameterList","parameters":[{"constant":false,"id":768,"mutability":"mutable","name":"spender","nameLocation":"3927:7:6","nodeType":"VariableDeclaration","scope":789,"src":"3919:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":767,"name":"address","nodeType":"ElementaryTypeName","src":"3919:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":770,"mutability":"mutable","name":"value","nameLocation":"3944:5:6","nodeType":"VariableDeclaration","scope":789,"src":"3936:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":769,"name":"uint256","nodeType":"ElementaryTypeName","src":"3936:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3918:32:6"},"returnParameters":{"id":774,"nodeType":"ParameterList","parameters":[{"constant":false,"id":773,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":789,"src":"3975:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":772,"name":"bool","nodeType":"ElementaryTypeName","src":"3975:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3974:6:6"},"scope":1138,"src":"3902:186:6","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1215],"body":{"id":820,"nodeType":"Block","src":"4773:151:6","statements":[{"assignments":[802],"declarations":[{"constant":false,"id":802,"mutability":"mutable","name":"spender","nameLocation":"4791:7:6","nodeType":"VariableDeclaration","scope":820,"src":"4783:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":801,"name":"address","nodeType":"ElementaryTypeName","src":"4783:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":805,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":803,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1754,"src":"4801:10:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":804,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4801:12:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4783:30:6"},{"expression":{"arguments":[{"id":807,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":792,"src":"4839:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":808,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":802,"src":"4845:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":809,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":796,"src":"4854:5:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":806,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1137,"src":"4823:15:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":810,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4823:37:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":811,"nodeType":"ExpressionStatement","src":"4823:37:6"},{"expression":{"arguments":[{"id":813,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":792,"src":"4880:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":814,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":794,"src":"4886:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":815,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":796,"src":"4890:5:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":812,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":868,"src":"4870:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":816,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4870:26:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":817,"nodeType":"ExpressionStatement","src":"4870:26:6"},{"expression":{"hexValue":"74727565","id":818,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4913:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":800,"id":819,"nodeType":"Return","src":"4906:11:6"}]},"documentation":{"id":790,"nodeType":"StructuredDocumentation","src":"4094:581:6","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":821,"implemented":true,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"4689:12:6","nodeType":"FunctionDefinition","parameters":{"id":797,"nodeType":"ParameterList","parameters":[{"constant":false,"id":792,"mutability":"mutable","name":"from","nameLocation":"4710:4:6","nodeType":"VariableDeclaration","scope":821,"src":"4702:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":791,"name":"address","nodeType":"ElementaryTypeName","src":"4702:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":794,"mutability":"mutable","name":"to","nameLocation":"4724:2:6","nodeType":"VariableDeclaration","scope":821,"src":"4716:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":793,"name":"address","nodeType":"ElementaryTypeName","src":"4716:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":796,"mutability":"mutable","name":"value","nameLocation":"4736:5:6","nodeType":"VariableDeclaration","scope":821,"src":"4728:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":795,"name":"uint256","nodeType":"ElementaryTypeName","src":"4728:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4701:41:6"},"returnParameters":{"id":800,"nodeType":"ParameterList","parameters":[{"constant":false,"id":799,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":821,"src":"4767:4:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":798,"name":"bool","nodeType":"ElementaryTypeName","src":"4767:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4766:6:6"},"scope":1138,"src":"4680:244:6","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":867,"nodeType":"Block","src":"5366:231:6","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":836,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":831,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":824,"src":"5380:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":834,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5396:1:6","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":833,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5388:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":832,"name":"address","nodeType":"ElementaryTypeName","src":"5388:7:6","typeDescriptions":{}}},"id":835,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5388:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5380:18:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":845,"nodeType":"IfStatement","src":"5376:86:6","trueBody":{"id":844,"nodeType":"Block","src":"5400:62:6","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":840,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5448:1:6","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":839,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5440:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":838,"name":"address","nodeType":"ElementaryTypeName","src":"5440:7:6","typeDescriptions":{}}},"id":841,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5440:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":837,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":503,"src":"5421:18:6","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":842,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5421:30:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":843,"nodeType":"RevertStatement","src":"5414:37:6"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":851,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":846,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":826,"src":"5475:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":849,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5489:1:6","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":848,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5481:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":847,"name":"address","nodeType":"ElementaryTypeName","src":"5481:7:6","typeDescriptions":{}}},"id":850,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5481:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5475:16:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":860,"nodeType":"IfStatement","src":"5471:86:6","trueBody":{"id":859,"nodeType":"Block","src":"5493:64:6","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":855,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5543:1:6","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":854,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5535:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":853,"name":"address","nodeType":"ElementaryTypeName","src":"5535:7:6","typeDescriptions":{}}},"id":856,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5535:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":852,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":508,"src":"5514:20:6","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":857,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5514:32:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":858,"nodeType":"RevertStatement","src":"5507:39:6"}]}},{"expression":{"arguments":[{"id":862,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":824,"src":"5574:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":863,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":826,"src":"5580:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":864,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":828,"src":"5584:5:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":861,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":945,"src":"5566:7:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":865,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5566:24:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":866,"nodeType":"ExpressionStatement","src":"5566:24:6"}]},"documentation":{"id":822,"nodeType":"StructuredDocumentation","src":"4930:362:6","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":868,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"5306:9:6","nodeType":"FunctionDefinition","parameters":{"id":829,"nodeType":"ParameterList","parameters":[{"constant":false,"id":824,"mutability":"mutable","name":"from","nameLocation":"5324:4:6","nodeType":"VariableDeclaration","scope":868,"src":"5316:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":823,"name":"address","nodeType":"ElementaryTypeName","src":"5316:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":826,"mutability":"mutable","name":"to","nameLocation":"5338:2:6","nodeType":"VariableDeclaration","scope":868,"src":"5330:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":825,"name":"address","nodeType":"ElementaryTypeName","src":"5330:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":828,"mutability":"mutable","name":"value","nameLocation":"5350:5:6","nodeType":"VariableDeclaration","scope":868,"src":"5342:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":827,"name":"uint256","nodeType":"ElementaryTypeName","src":"5342:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5315:41:6"},"returnParameters":{"id":830,"nodeType":"ParameterList","parameters":[],"src":"5366:0:6"},"scope":1138,"src":"5297:300:6","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":944,"nodeType":"Block","src":"5987:1032:6","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":883,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":878,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":871,"src":"6001:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":881,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6017:1:6","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":880,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6009:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":879,"name":"address","nodeType":"ElementaryTypeName","src":"6009:7:6","typeDescriptions":{}}},"id":882,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6009:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6001:18:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":915,"nodeType":"Block","src":"6175:362:6","statements":[{"assignments":[890],"declarations":[{"constant":false,"id":890,"mutability":"mutable","name":"fromBalance","nameLocation":"6197:11:6","nodeType":"VariableDeclaration","scope":915,"src":"6189:19:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":889,"name":"uint256","nodeType":"ElementaryTypeName","src":"6189:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":894,"initialValue":{"baseExpression":{"id":891,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":646,"src":"6211:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":893,"indexExpression":{"id":892,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":871,"src":"6221:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6211:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6189:37:6"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":897,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":895,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":890,"src":"6244:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":896,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":875,"src":"6258:5:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6244:19:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":905,"nodeType":"IfStatement","src":"6240:115:6","trueBody":{"id":904,"nodeType":"Block","src":"6265:90:6","statements":[{"errorCall":{"arguments":[{"id":899,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":871,"src":"6315:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":900,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":890,"src":"6321:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":901,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":875,"src":"6334:5:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":898,"name":"ERC20InsufficientBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":498,"src":"6290:24:6","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256) pure"}},"id":902,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6290:50:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":903,"nodeType":"RevertStatement","src":"6283:57:6"}]}},{"id":914,"nodeType":"UncheckedBlock","src":"6368:159:6","statements":[{"expression":{"id":912,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":906,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":646,"src":"6475:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":908,"indexExpression":{"id":907,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":871,"src":"6485:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6475:15:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":911,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":909,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":890,"src":"6493:11:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":910,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":875,"src":"6507:5:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6493:19:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6475:37:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":913,"nodeType":"ExpressionStatement","src":"6475:37:6"}]}]},"id":916,"nodeType":"IfStatement","src":"5997:540:6","trueBody":{"id":888,"nodeType":"Block","src":"6021:148:6","statements":[{"expression":{"id":886,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":884,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":654,"src":"6137:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":885,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":875,"src":"6153:5:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6137:21:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":887,"nodeType":"ExpressionStatement","src":"6137:21:6"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":922,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":917,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":873,"src":"6551:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":920,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6565:1:6","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":919,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6557:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":918,"name":"address","nodeType":"ElementaryTypeName","src":"6557:7:6","typeDescriptions":{}}},"id":921,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6557:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6551:16:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":936,"nodeType":"Block","src":"6766:206:6","statements":[{"id":935,"nodeType":"UncheckedBlock","src":"6780:182:6","statements":[{"expression":{"id":933,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":929,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":646,"src":"6925:9:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":931,"indexExpression":{"id":930,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":873,"src":"6935:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6925:13:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":932,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":875,"src":"6942:5:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6925:22:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":934,"nodeType":"ExpressionStatement","src":"6925:22:6"}]}]},"id":937,"nodeType":"IfStatement","src":"6547:425:6","trueBody":{"id":928,"nodeType":"Block","src":"6569:191:6","statements":[{"id":927,"nodeType":"UncheckedBlock","src":"6583:167:6","statements":[{"expression":{"id":925,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":923,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":654,"src":"6714:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":924,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":875,"src":"6730:5:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6714:21:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":926,"nodeType":"ExpressionStatement","src":"6714:21:6"}]}]}},{"eventCall":{"arguments":[{"id":939,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":871,"src":"6996:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":940,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":873,"src":"7002:2:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":941,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":875,"src":"7006:5:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":938,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1150,"src":"6987:8:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":942,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6987:25:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":943,"nodeType":"EmitStatement","src":"6982:30:6"}]},"documentation":{"id":869,"nodeType":"StructuredDocumentation","src":"5603:304:6","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":945,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"5921:7:6","nodeType":"FunctionDefinition","parameters":{"id":876,"nodeType":"ParameterList","parameters":[{"constant":false,"id":871,"mutability":"mutable","name":"from","nameLocation":"5937:4:6","nodeType":"VariableDeclaration","scope":945,"src":"5929:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":870,"name":"address","nodeType":"ElementaryTypeName","src":"5929:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":873,"mutability":"mutable","name":"to","nameLocation":"5951:2:6","nodeType":"VariableDeclaration","scope":945,"src":"5943:10:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":872,"name":"address","nodeType":"ElementaryTypeName","src":"5943:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":875,"mutability":"mutable","name":"value","nameLocation":"5963:5:6","nodeType":"VariableDeclaration","scope":945,"src":"5955:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":874,"name":"uint256","nodeType":"ElementaryTypeName","src":"5955:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5928:41:6"},"returnParameters":{"id":877,"nodeType":"ParameterList","parameters":[],"src":"5987:0:6"},"scope":1138,"src":"5912:1107:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":977,"nodeType":"Block","src":"7418:152:6","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":958,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":953,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":948,"src":"7432:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":956,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7451:1:6","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":955,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7443:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":954,"name":"address","nodeType":"ElementaryTypeName","src":"7443:7:6","typeDescriptions":{}}},"id":957,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7443:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7432:21:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":967,"nodeType":"IfStatement","src":"7428:91:6","trueBody":{"id":966,"nodeType":"Block","src":"7455:64:6","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":962,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7505:1:6","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":961,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7497:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":960,"name":"address","nodeType":"ElementaryTypeName","src":"7497:7:6","typeDescriptions":{}}},"id":963,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7497:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":959,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":508,"src":"7476:20:6","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":964,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7476:32:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":965,"nodeType":"RevertStatement","src":"7469:39:6"}]}},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":971,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7544:1:6","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":970,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7536:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":969,"name":"address","nodeType":"ElementaryTypeName","src":"7536:7:6","typeDescriptions":{}}},"id":972,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7536:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":973,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":948,"src":"7548:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":974,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":950,"src":"7557:5:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":968,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":945,"src":"7528:7:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":975,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7528:35:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":976,"nodeType":"ExpressionStatement","src":"7528:35:6"}]},"documentation":{"id":946,"nodeType":"StructuredDocumentation","src":"7025:332:6","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":978,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"7371:5:6","nodeType":"FunctionDefinition","parameters":{"id":951,"nodeType":"ParameterList","parameters":[{"constant":false,"id":948,"mutability":"mutable","name":"account","nameLocation":"7385:7:6","nodeType":"VariableDeclaration","scope":978,"src":"7377:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":947,"name":"address","nodeType":"ElementaryTypeName","src":"7377:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":950,"mutability":"mutable","name":"value","nameLocation":"7402:5:6","nodeType":"VariableDeclaration","scope":978,"src":"7394:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":949,"name":"uint256","nodeType":"ElementaryTypeName","src":"7394:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7376:32:6"},"returnParameters":{"id":952,"nodeType":"ParameterList","parameters":[],"src":"7418:0:6"},"scope":1138,"src":"7362:208:6","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1010,"nodeType":"Block","src":"7944:150:6","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":991,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":986,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":981,"src":"7958:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":989,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7977:1:6","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":988,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7969:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":987,"name":"address","nodeType":"ElementaryTypeName","src":"7969:7:6","typeDescriptions":{}}},"id":990,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7969:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7958:21:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1000,"nodeType":"IfStatement","src":"7954:89:6","trueBody":{"id":999,"nodeType":"Block","src":"7981:62:6","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":995,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8029:1:6","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":994,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8021:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":993,"name":"address","nodeType":"ElementaryTypeName","src":"8021:7:6","typeDescriptions":{}}},"id":996,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8021:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":992,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":503,"src":"8002:18:6","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":997,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8002:30:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":998,"nodeType":"RevertStatement","src":"7995:37:6"}]}},{"expression":{"arguments":[{"id":1002,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":981,"src":"8060:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":1005,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8077:1:6","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":1004,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8069:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1003,"name":"address","nodeType":"ElementaryTypeName","src":"8069:7:6","typeDescriptions":{}}},"id":1006,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8069:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1007,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":983,"src":"8081:5:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1001,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":945,"src":"8052:7:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1008,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8052:35:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1009,"nodeType":"ExpressionStatement","src":"8052:35:6"}]},"documentation":{"id":979,"nodeType":"StructuredDocumentation","src":"7576:307:6","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":1011,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"7897:5:6","nodeType":"FunctionDefinition","parameters":{"id":984,"nodeType":"ParameterList","parameters":[{"constant":false,"id":981,"mutability":"mutable","name":"account","nameLocation":"7911:7:6","nodeType":"VariableDeclaration","scope":1011,"src":"7903:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":980,"name":"address","nodeType":"ElementaryTypeName","src":"7903:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":983,"mutability":"mutable","name":"value","nameLocation":"7928:5:6","nodeType":"VariableDeclaration","scope":1011,"src":"7920:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":982,"name":"uint256","nodeType":"ElementaryTypeName","src":"7920:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7902:32:6"},"returnParameters":{"id":985,"nodeType":"ParameterList","parameters":[],"src":"7944:0:6"},"scope":1138,"src":"7888:206:6","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1028,"nodeType":"Block","src":"8704:54:6","statements":[{"expression":{"arguments":[{"id":1022,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1014,"src":"8723:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1023,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1016,"src":"8730:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1024,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1018,"src":"8739:5:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":1025,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8746:4:6","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":1021,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[1029,1089],"referencedDeclaration":1089,"src":"8714:8:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":1026,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8714:37:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1027,"nodeType":"ExpressionStatement","src":"8714:37:6"}]},"documentation":{"id":1012,"nodeType":"StructuredDocumentation","src":"8100:525:6","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":1029,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"8639:8:6","nodeType":"FunctionDefinition","parameters":{"id":1019,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1014,"mutability":"mutable","name":"owner","nameLocation":"8656:5:6","nodeType":"VariableDeclaration","scope":1029,"src":"8648:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1013,"name":"address","nodeType":"ElementaryTypeName","src":"8648:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1016,"mutability":"mutable","name":"spender","nameLocation":"8671:7:6","nodeType":"VariableDeclaration","scope":1029,"src":"8663:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1015,"name":"address","nodeType":"ElementaryTypeName","src":"8663:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1018,"mutability":"mutable","name":"value","nameLocation":"8688:5:6","nodeType":"VariableDeclaration","scope":1029,"src":"8680:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1017,"name":"uint256","nodeType":"ElementaryTypeName","src":"8680:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8647:47:6"},"returnParameters":{"id":1020,"nodeType":"ParameterList","parameters":[],"src":"8704:0:6"},"scope":1138,"src":"8630:128:6","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1088,"nodeType":"Block","src":"9703:334:6","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1046,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1041,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1032,"src":"9717:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1044,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9734:1:6","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":1043,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9726:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1042,"name":"address","nodeType":"ElementaryTypeName","src":"9726:7:6","typeDescriptions":{}}},"id":1045,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9726:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9717:19:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1055,"nodeType":"IfStatement","src":"9713:89:6","trueBody":{"id":1054,"nodeType":"Block","src":"9738:64:6","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1050,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9788:1:6","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":1049,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9780:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1048,"name":"address","nodeType":"ElementaryTypeName","src":"9780:7:6","typeDescriptions":{}}},"id":1051,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9780:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1047,"name":"ERC20InvalidApprover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":522,"src":"9759:20:6","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":1052,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9759:32:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1053,"nodeType":"RevertStatement","src":"9752:39:6"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1061,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1056,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1034,"src":"9815:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1059,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9834:1:6","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":1058,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9826:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1057,"name":"address","nodeType":"ElementaryTypeName","src":"9826:7:6","typeDescriptions":{}}},"id":1060,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9826:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9815:21:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1070,"nodeType":"IfStatement","src":"9811:90:6","trueBody":{"id":1069,"nodeType":"Block","src":"9838:63:6","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1065,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9887:1:6","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":1064,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9879:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1063,"name":"address","nodeType":"ElementaryTypeName","src":"9879:7:6","typeDescriptions":{}}},"id":1066,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9879:10:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1062,"name":"ERC20InvalidSpender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":527,"src":"9859:19:6","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":1067,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9859:31:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1068,"nodeType":"RevertStatement","src":"9852:38:6"}]}},{"expression":{"id":1077,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":1071,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":652,"src":"9910:11:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":1074,"indexExpression":{"id":1072,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1032,"src":"9922:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9910:18:6","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1075,"indexExpression":{"id":1073,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1034,"src":"9929:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"9910:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1076,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1036,"src":"9940:5:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9910:35:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1078,"nodeType":"ExpressionStatement","src":"9910:35:6"},{"condition":{"id":1079,"name":"emitEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1038,"src":"9959:9:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1087,"nodeType":"IfStatement","src":"9955:76:6","trueBody":{"id":1086,"nodeType":"Block","src":"9970:61:6","statements":[{"eventCall":{"arguments":[{"id":1081,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1032,"src":"9998:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1082,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1034,"src":"10005:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1083,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1036,"src":"10014:5:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1080,"name":"Approval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1159,"src":"9989:8:6","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1084,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9989:31:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1085,"nodeType":"EmitStatement","src":"9984:36:6"}]}}]},"documentation":{"id":1030,"nodeType":"StructuredDocumentation","src":"8764:836:6","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":1089,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"9614:8:6","nodeType":"FunctionDefinition","parameters":{"id":1039,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1032,"mutability":"mutable","name":"owner","nameLocation":"9631:5:6","nodeType":"VariableDeclaration","scope":1089,"src":"9623:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1031,"name":"address","nodeType":"ElementaryTypeName","src":"9623:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1034,"mutability":"mutable","name":"spender","nameLocation":"9646:7:6","nodeType":"VariableDeclaration","scope":1089,"src":"9638:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1033,"name":"address","nodeType":"ElementaryTypeName","src":"9638:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1036,"mutability":"mutable","name":"value","nameLocation":"9663:5:6","nodeType":"VariableDeclaration","scope":1089,"src":"9655:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1035,"name":"uint256","nodeType":"ElementaryTypeName","src":"9655:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1038,"mutability":"mutable","name":"emitEvent","nameLocation":"9675:9:6","nodeType":"VariableDeclaration","scope":1089,"src":"9670:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1037,"name":"bool","nodeType":"ElementaryTypeName","src":"9670:4:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9622:63:6"},"returnParameters":{"id":1040,"nodeType":"ParameterList","parameters":[],"src":"9703:0:6"},"scope":1138,"src":"9605:432:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1136,"nodeType":"Block","src":"10408:387:6","statements":[{"assignments":[1100],"declarations":[{"constant":false,"id":1100,"mutability":"mutable","name":"currentAllowance","nameLocation":"10426:16:6","nodeType":"VariableDeclaration","scope":1136,"src":"10418:24:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1099,"name":"uint256","nodeType":"ElementaryTypeName","src":"10418:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1105,"initialValue":{"arguments":[{"id":1102,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1092,"src":"10455:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1103,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1094,"src":"10462:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1101,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":765,"src":"10445:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":1104,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10445:25:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10418:52:6"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1112,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1106,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1100,"src":"10484:16:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"id":1109,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10508:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":1108,"name":"uint256","nodeType":"ElementaryTypeName","src":"10508:7:6","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":1107,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10503:4:6","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":1110,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10503:13:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":1111,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10517:3:6","memberName":"max","nodeType":"MemberAccess","src":"10503:17:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10484:36:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1135,"nodeType":"IfStatement","src":"10480:309:6","trueBody":{"id":1134,"nodeType":"Block","src":"10522:267:6","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1115,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1113,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1100,"src":"10540:16:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":1114,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1096,"src":"10559:5:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10540:24:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1123,"nodeType":"IfStatement","src":"10536:130:6","trueBody":{"id":1122,"nodeType":"Block","src":"10566:100:6","statements":[{"errorCall":{"arguments":[{"id":1117,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1094,"src":"10618:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1118,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1100,"src":"10627:16:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1119,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1096,"src":"10645:5:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1116,"name":"ERC20InsufficientAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":517,"src":"10591:26:6","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256) pure"}},"id":1120,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10591:60:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1121,"nodeType":"RevertStatement","src":"10584:67:6"}]}},{"id":1133,"nodeType":"UncheckedBlock","src":"10679:100:6","statements":[{"expression":{"arguments":[{"id":1125,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1092,"src":"10716:5:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1126,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1094,"src":"10723:7:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1129,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1127,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1100,"src":"10732:16:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1128,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1096,"src":"10751:5:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10732:24:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":1130,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10758:5:6","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":1124,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[1029,1089],"referencedDeclaration":1089,"src":"10707:8:6","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":1131,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10707:57:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1132,"nodeType":"ExpressionStatement","src":"10707:57:6"}]}]}}]},"documentation":{"id":1090,"nodeType":"StructuredDocumentation","src":"10043:271:6","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":1137,"implemented":true,"kind":"function","modifiers":[],"name":"_spendAllowance","nameLocation":"10328:15:6","nodeType":"FunctionDefinition","parameters":{"id":1097,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1092,"mutability":"mutable","name":"owner","nameLocation":"10352:5:6","nodeType":"VariableDeclaration","scope":1137,"src":"10344:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1091,"name":"address","nodeType":"ElementaryTypeName","src":"10344:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1094,"mutability":"mutable","name":"spender","nameLocation":"10367:7:6","nodeType":"VariableDeclaration","scope":1137,"src":"10359:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1093,"name":"address","nodeType":"ElementaryTypeName","src":"10359:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1096,"mutability":"mutable","name":"value","nameLocation":"10384:5:6","nodeType":"VariableDeclaration","scope":1137,"src":"10376:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1095,"name":"uint256","nodeType":"ElementaryTypeName","src":"10376:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10343:47:6"},"returnParameters":{"id":1098,"nodeType":"ParameterList","parameters":[],"src":"10408:0:6"},"scope":1138,"src":"10319:476:6","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":1139,"src":"1106:9691:6","usedErrors":[498,503,508,517,522,527],"usedEvents":[1150,1159]}],"src":"105:10693:6"},"id":6},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","exportedSymbols":{"IERC20":[1216]},"id":1217,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1140,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"106:25:7"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20","contractDependencies":[],"contractKind":"interface","documentation":{"id":1141,"nodeType":"StructuredDocumentation","src":"133:71:7","text":" @dev Interface of the ERC-20 standard as defined in the ERC."},"fullyImplemented":false,"id":1216,"linearizedBaseContracts":[1216],"name":"IERC20","nameLocation":"215:6:7","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":1142,"nodeType":"StructuredDocumentation","src":"228:158:7","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":1150,"name":"Transfer","nameLocation":"397:8:7","nodeType":"EventDefinition","parameters":{"id":1149,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1144,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"422:4:7","nodeType":"VariableDeclaration","scope":1150,"src":"406:20:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1143,"name":"address","nodeType":"ElementaryTypeName","src":"406:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1146,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"444:2:7","nodeType":"VariableDeclaration","scope":1150,"src":"428:18:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1145,"name":"address","nodeType":"ElementaryTypeName","src":"428:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1148,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"456:5:7","nodeType":"VariableDeclaration","scope":1150,"src":"448:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1147,"name":"uint256","nodeType":"ElementaryTypeName","src":"448:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"405:57:7"},"src":"391:72:7"},{"anonymous":false,"documentation":{"id":1151,"nodeType":"StructuredDocumentation","src":"469:148:7","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":1159,"name":"Approval","nameLocation":"628:8:7","nodeType":"EventDefinition","parameters":{"id":1158,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1153,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"653:5:7","nodeType":"VariableDeclaration","scope":1159,"src":"637:21:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1152,"name":"address","nodeType":"ElementaryTypeName","src":"637:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1155,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"676:7:7","nodeType":"VariableDeclaration","scope":1159,"src":"660:23:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1154,"name":"address","nodeType":"ElementaryTypeName","src":"660:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1157,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"693:5:7","nodeType":"VariableDeclaration","scope":1159,"src":"685:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1156,"name":"uint256","nodeType":"ElementaryTypeName","src":"685:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"636:63:7"},"src":"622:78:7"},{"documentation":{"id":1160,"nodeType":"StructuredDocumentation","src":"706:65:7","text":" @dev Returns the value of tokens in existence."},"functionSelector":"18160ddd","id":1165,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"785:11:7","nodeType":"FunctionDefinition","parameters":{"id":1161,"nodeType":"ParameterList","parameters":[],"src":"796:2:7"},"returnParameters":{"id":1164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1163,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1165,"src":"822:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1162,"name":"uint256","nodeType":"ElementaryTypeName","src":"822:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"821:9:7"},"scope":1216,"src":"776:55:7","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1166,"nodeType":"StructuredDocumentation","src":"837:71:7","text":" @dev Returns the value of tokens owned by `account`."},"functionSelector":"70a08231","id":1173,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"922:9:7","nodeType":"FunctionDefinition","parameters":{"id":1169,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1168,"mutability":"mutable","name":"account","nameLocation":"940:7:7","nodeType":"VariableDeclaration","scope":1173,"src":"932:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1167,"name":"address","nodeType":"ElementaryTypeName","src":"932:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"931:17:7"},"returnParameters":{"id":1172,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1171,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1173,"src":"972:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1170,"name":"uint256","nodeType":"ElementaryTypeName","src":"972:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"971:9:7"},"scope":1216,"src":"913:68:7","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1174,"nodeType":"StructuredDocumentation","src":"987:213:7","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":1183,"implemented":false,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"1214:8:7","nodeType":"FunctionDefinition","parameters":{"id":1179,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1176,"mutability":"mutable","name":"to","nameLocation":"1231:2:7","nodeType":"VariableDeclaration","scope":1183,"src":"1223:10:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1175,"name":"address","nodeType":"ElementaryTypeName","src":"1223:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1178,"mutability":"mutable","name":"value","nameLocation":"1243:5:7","nodeType":"VariableDeclaration","scope":1183,"src":"1235:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1177,"name":"uint256","nodeType":"ElementaryTypeName","src":"1235:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1222:27:7"},"returnParameters":{"id":1182,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1181,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1183,"src":"1268:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1180,"name":"bool","nodeType":"ElementaryTypeName","src":"1268:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1267:6:7"},"scope":1216,"src":"1205:69:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1184,"nodeType":"StructuredDocumentation","src":"1280:264:7","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":1193,"implemented":false,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"1558:9:7","nodeType":"FunctionDefinition","parameters":{"id":1189,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1186,"mutability":"mutable","name":"owner","nameLocation":"1576:5:7","nodeType":"VariableDeclaration","scope":1193,"src":"1568:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1185,"name":"address","nodeType":"ElementaryTypeName","src":"1568:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1188,"mutability":"mutable","name":"spender","nameLocation":"1591:7:7","nodeType":"VariableDeclaration","scope":1193,"src":"1583:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1187,"name":"address","nodeType":"ElementaryTypeName","src":"1583:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1567:32:7"},"returnParameters":{"id":1192,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1191,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1193,"src":"1623:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1190,"name":"uint256","nodeType":"ElementaryTypeName","src":"1623:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1622:9:7"},"scope":1216,"src":"1549:83:7","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1194,"nodeType":"StructuredDocumentation","src":"1638:667:7","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":1203,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"2319:7:7","nodeType":"FunctionDefinition","parameters":{"id":1199,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1196,"mutability":"mutable","name":"spender","nameLocation":"2335:7:7","nodeType":"VariableDeclaration","scope":1203,"src":"2327:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1195,"name":"address","nodeType":"ElementaryTypeName","src":"2327:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1198,"mutability":"mutable","name":"value","nameLocation":"2352:5:7","nodeType":"VariableDeclaration","scope":1203,"src":"2344:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1197,"name":"uint256","nodeType":"ElementaryTypeName","src":"2344:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2326:32:7"},"returnParameters":{"id":1202,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1201,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1203,"src":"2377:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1200,"name":"bool","nodeType":"ElementaryTypeName","src":"2377:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2376:6:7"},"scope":1216,"src":"2310:73:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1204,"nodeType":"StructuredDocumentation","src":"2389:297:7","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":1215,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"2700:12:7","nodeType":"FunctionDefinition","parameters":{"id":1211,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1206,"mutability":"mutable","name":"from","nameLocation":"2721:4:7","nodeType":"VariableDeclaration","scope":1215,"src":"2713:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1205,"name":"address","nodeType":"ElementaryTypeName","src":"2713:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1208,"mutability":"mutable","name":"to","nameLocation":"2735:2:7","nodeType":"VariableDeclaration","scope":1215,"src":"2727:10:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1207,"name":"address","nodeType":"ElementaryTypeName","src":"2727:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1210,"mutability":"mutable","name":"value","nameLocation":"2747:5:7","nodeType":"VariableDeclaration","scope":1215,"src":"2739:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1209,"name":"uint256","nodeType":"ElementaryTypeName","src":"2739:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2712:41:7"},"returnParameters":{"id":1214,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1213,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1215,"src":"2772:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1212,"name":"bool","nodeType":"ElementaryTypeName","src":"2772:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2771:6:7"},"scope":1216,"src":"2691:87:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":1217,"src":"205:2575:7","usedErrors":[],"usedEvents":[1150,1159]}],"src":"106:2675:7"},"id":7},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","exportedSymbols":{"IERC20":[1216],"IERC20Metadata":[1242]},"id":1243,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1218,"literals":["solidity",">=","0.6",".2"],"nodeType":"PragmaDirective","src":"125:24:8"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../IERC20.sol","id":1220,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1243,"sourceUnit":1217,"src":"151:37:8","symbolAliases":[{"foreign":{"id":1219,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1216,"src":"159:6:8","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":1222,"name":"IERC20","nameLocations":["306:6:8"],"nodeType":"IdentifierPath","referencedDeclaration":1216,"src":"306:6:8"},"id":1223,"nodeType":"InheritanceSpecifier","src":"306:6:8"}],"canonicalName":"IERC20Metadata","contractDependencies":[],"contractKind":"interface","documentation":{"id":1221,"nodeType":"StructuredDocumentation","src":"190:87:8","text":" @dev Interface for the optional metadata functions from the ERC-20 standard."},"fullyImplemented":false,"id":1242,"linearizedBaseContracts":[1242,1216],"name":"IERC20Metadata","nameLocation":"288:14:8","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":1224,"nodeType":"StructuredDocumentation","src":"319:54:8","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":1229,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"387:4:8","nodeType":"FunctionDefinition","parameters":{"id":1225,"nodeType":"ParameterList","parameters":[],"src":"391:2:8"},"returnParameters":{"id":1228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1227,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1229,"src":"417:13:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1226,"name":"string","nodeType":"ElementaryTypeName","src":"417:6:8","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"416:15:8"},"scope":1242,"src":"378:54:8","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1230,"nodeType":"StructuredDocumentation","src":"438:56:8","text":" @dev Returns the symbol of the token."},"functionSelector":"95d89b41","id":1235,"implemented":false,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"508:6:8","nodeType":"FunctionDefinition","parameters":{"id":1231,"nodeType":"ParameterList","parameters":[],"src":"514:2:8"},"returnParameters":{"id":1234,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1233,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1235,"src":"540:13:8","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1232,"name":"string","nodeType":"ElementaryTypeName","src":"540:6:8","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"539:15:8"},"scope":1242,"src":"499:56:8","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1236,"nodeType":"StructuredDocumentation","src":"561:65:8","text":" @dev Returns the decimals places of the token."},"functionSelector":"313ce567","id":1241,"implemented":false,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"640:8:8","nodeType":"FunctionDefinition","parameters":{"id":1237,"nodeType":"ParameterList","parameters":[],"src":"648:2:8"},"returnParameters":{"id":1240,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1239,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1241,"src":"674:5:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1238,"name":"uint8","nodeType":"ElementaryTypeName","src":"674:5:8","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"673:7:8"},"scope":1242,"src":"631:50:8","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":1243,"src":"278:405:8","usedErrors":[],"usedEvents":[1150,1159]}],"src":"125:559:8"},"id":8},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","exportedSymbols":{"IERC20Permit":[1278]},"id":1279,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1244,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"123:25:9"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20Permit","contractDependencies":[],"contractKind":"interface","documentation":{"id":1245,"nodeType":"StructuredDocumentation","src":"150:1965:9","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":1278,"linearizedBaseContracts":[1278],"name":"IERC20Permit","nameLocation":"2126:12:9","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":1246,"nodeType":"StructuredDocumentation","src":"2145:850:9","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":1263,"implemented":false,"kind":"function","modifiers":[],"name":"permit","nameLocation":"3009:6:9","nodeType":"FunctionDefinition","parameters":{"id":1261,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1248,"mutability":"mutable","name":"owner","nameLocation":"3033:5:9","nodeType":"VariableDeclaration","scope":1263,"src":"3025:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1247,"name":"address","nodeType":"ElementaryTypeName","src":"3025:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1250,"mutability":"mutable","name":"spender","nameLocation":"3056:7:9","nodeType":"VariableDeclaration","scope":1263,"src":"3048:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1249,"name":"address","nodeType":"ElementaryTypeName","src":"3048:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1252,"mutability":"mutable","name":"value","nameLocation":"3081:5:9","nodeType":"VariableDeclaration","scope":1263,"src":"3073:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1251,"name":"uint256","nodeType":"ElementaryTypeName","src":"3073:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1254,"mutability":"mutable","name":"deadline","nameLocation":"3104:8:9","nodeType":"VariableDeclaration","scope":1263,"src":"3096:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1253,"name":"uint256","nodeType":"ElementaryTypeName","src":"3096:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1256,"mutability":"mutable","name":"v","nameLocation":"3128:1:9","nodeType":"VariableDeclaration","scope":1263,"src":"3122:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1255,"name":"uint8","nodeType":"ElementaryTypeName","src":"3122:5:9","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1258,"mutability":"mutable","name":"r","nameLocation":"3147:1:9","nodeType":"VariableDeclaration","scope":1263,"src":"3139:9:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1257,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3139:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1260,"mutability":"mutable","name":"s","nameLocation":"3166:1:9","nodeType":"VariableDeclaration","scope":1263,"src":"3158:9:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1259,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3158:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3015:158:9"},"returnParameters":{"id":1262,"nodeType":"ParameterList","parameters":[],"src":"3182:0:9"},"scope":1278,"src":"3000:183:9","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1264,"nodeType":"StructuredDocumentation","src":"3189:294:9","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":1271,"implemented":false,"kind":"function","modifiers":[],"name":"nonces","nameLocation":"3497:6:9","nodeType":"FunctionDefinition","parameters":{"id":1267,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1266,"mutability":"mutable","name":"owner","nameLocation":"3512:5:9","nodeType":"VariableDeclaration","scope":1271,"src":"3504:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1265,"name":"address","nodeType":"ElementaryTypeName","src":"3504:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3503:15:9"},"returnParameters":{"id":1270,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1269,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1271,"src":"3542:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1268,"name":"uint256","nodeType":"ElementaryTypeName","src":"3542:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3541:9:9"},"scope":1278,"src":"3488:63:9","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1272,"nodeType":"StructuredDocumentation","src":"3557:128:9","text":" @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}."},"functionSelector":"3644e515","id":1277,"implemented":false,"kind":"function","modifiers":[],"name":"DOMAIN_SEPARATOR","nameLocation":"3752:16:9","nodeType":"FunctionDefinition","parameters":{"id":1273,"nodeType":"ParameterList","parameters":[],"src":"3768:2:9"},"returnParameters":{"id":1276,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1275,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1277,"src":"3794:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1274,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3794:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3793:9:9"},"scope":1278,"src":"3743:60:9","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":1279,"src":"2116:1689:9","usedErrors":[],"usedEvents":[]}],"src":"123:3683:9"},"id":9},"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","exportedSymbols":{"IERC1363":[478],"IERC20":[1216],"SafeERC20":[1742]},"id":1743,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1280,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"115:24:10"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../IERC20.sol","id":1282,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1743,"sourceUnit":1217,"src":"141:37:10","symbolAliases":[{"foreign":{"id":1281,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1216,"src":"149:6:10","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1363.sol","file":"../../../interfaces/IERC1363.sol","id":1284,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1743,"sourceUnit":479,"src":"179:58:10","symbolAliases":[{"foreign":{"id":1283,"name":"IERC1363","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":478,"src":"187:8:10","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"SafeERC20","contractDependencies":[],"contractKind":"library","documentation":{"id":1285,"nodeType":"StructuredDocumentation","src":"239:458:10","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":1742,"linearizedBaseContracts":[1742],"name":"SafeERC20","nameLocation":"706:9:10","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":1286,"nodeType":"StructuredDocumentation","src":"722:65:10","text":" @dev An operation with an ERC-20 token failed."},"errorSelector":"5274afe7","id":1290,"name":"SafeERC20FailedOperation","nameLocation":"798:24:10","nodeType":"ErrorDefinition","parameters":{"id":1289,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1288,"mutability":"mutable","name":"token","nameLocation":"831:5:10","nodeType":"VariableDeclaration","scope":1290,"src":"823:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1287,"name":"address","nodeType":"ElementaryTypeName","src":"823:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"822:15:10"},"src":"792:46:10"},{"documentation":{"id":1291,"nodeType":"StructuredDocumentation","src":"844:71:10","text":" @dev Indicates a failed `decreaseAllowance` request."},"errorSelector":"e570110f","id":1299,"name":"SafeERC20FailedDecreaseAllowance","nameLocation":"926:32:10","nodeType":"ErrorDefinition","parameters":{"id":1298,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1293,"mutability":"mutable","name":"spender","nameLocation":"967:7:10","nodeType":"VariableDeclaration","scope":1299,"src":"959:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1292,"name":"address","nodeType":"ElementaryTypeName","src":"959:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1295,"mutability":"mutable","name":"currentAllowance","nameLocation":"984:16:10","nodeType":"VariableDeclaration","scope":1299,"src":"976:24:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1294,"name":"uint256","nodeType":"ElementaryTypeName","src":"976:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1297,"mutability":"mutable","name":"requestedDecrease","nameLocation":"1010:17:10","nodeType":"VariableDeclaration","scope":1299,"src":"1002:25:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1296,"name":"uint256","nodeType":"ElementaryTypeName","src":"1002:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"958:70:10"},"src":"920:109:10"},{"body":{"id":1322,"nodeType":"Block","src":"1291:88:10","statements":[{"expression":{"arguments":[{"id":1311,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1303,"src":"1321:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},{"arguments":[{"expression":{"id":1314,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1303,"src":"1343:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"id":1315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1349:8:10","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":1183,"src":"1343:14:10","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},{"components":[{"id":1316,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1305,"src":"1360:2:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1317,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1307,"src":"1364:5:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1318,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1359:11:10","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":1312,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1328:3:10","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1313,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1332:10:10","memberName":"encodeCall","nodeType":"MemberAccess","src":"1328:14:10","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1319,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1328:43:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1310,"name":"_callOptionalReturn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1700,"src":"1301:19:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$1216_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (contract IERC20,bytes memory)"}},"id":1320,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1301:71:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1321,"nodeType":"ExpressionStatement","src":"1301:71:10"}]},"documentation":{"id":1300,"nodeType":"StructuredDocumentation","src":"1035:179:10","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":1323,"implemented":true,"kind":"function","modifiers":[],"name":"safeTransfer","nameLocation":"1228:12:10","nodeType":"FunctionDefinition","parameters":{"id":1308,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1303,"mutability":"mutable","name":"token","nameLocation":"1248:5:10","nodeType":"VariableDeclaration","scope":1323,"src":"1241:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"},"typeName":{"id":1302,"nodeType":"UserDefinedTypeName","pathNode":{"id":1301,"name":"IERC20","nameLocations":["1241:6:10"],"nodeType":"IdentifierPath","referencedDeclaration":1216,"src":"1241:6:10"},"referencedDeclaration":1216,"src":"1241:6:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":1305,"mutability":"mutable","name":"to","nameLocation":"1263:2:10","nodeType":"VariableDeclaration","scope":1323,"src":"1255:10:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1304,"name":"address","nodeType":"ElementaryTypeName","src":"1255:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1307,"mutability":"mutable","name":"value","nameLocation":"1275:5:10","nodeType":"VariableDeclaration","scope":1323,"src":"1267:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1306,"name":"uint256","nodeType":"ElementaryTypeName","src":"1267:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1240:41:10"},"returnParameters":{"id":1309,"nodeType":"ParameterList","parameters":[],"src":"1291:0:10"},"scope":1742,"src":"1219:160:10","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1349,"nodeType":"Block","src":"1708:98:10","statements":[{"expression":{"arguments":[{"id":1337,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1327,"src":"1738:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},{"arguments":[{"expression":{"id":1340,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1327,"src":"1760:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"id":1341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1766:12:10","memberName":"transferFrom","nodeType":"MemberAccess","referencedDeclaration":1215,"src":"1760:18:10","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":1342,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1329,"src":"1781:4:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1343,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1331,"src":"1787:2:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1344,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1333,"src":"1791:5:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1345,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1780:17:10","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":1338,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1745:3:10","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1339,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1749:10:10","memberName":"encodeCall","nodeType":"MemberAccess","src":"1745:14:10","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1346,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1745:53:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1336,"name":"_callOptionalReturn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1700,"src":"1718:19:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$1216_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (contract IERC20,bytes memory)"}},"id":1347,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1718:81:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1348,"nodeType":"ExpressionStatement","src":"1718:81:10"}]},"documentation":{"id":1324,"nodeType":"StructuredDocumentation","src":"1385:228:10","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":1350,"implemented":true,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"1627:16:10","nodeType":"FunctionDefinition","parameters":{"id":1334,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1327,"mutability":"mutable","name":"token","nameLocation":"1651:5:10","nodeType":"VariableDeclaration","scope":1350,"src":"1644:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"},"typeName":{"id":1326,"nodeType":"UserDefinedTypeName","pathNode":{"id":1325,"name":"IERC20","nameLocations":["1644:6:10"],"nodeType":"IdentifierPath","referencedDeclaration":1216,"src":"1644:6:10"},"referencedDeclaration":1216,"src":"1644:6:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":1329,"mutability":"mutable","name":"from","nameLocation":"1666:4:10","nodeType":"VariableDeclaration","scope":1350,"src":"1658:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1328,"name":"address","nodeType":"ElementaryTypeName","src":"1658:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1331,"mutability":"mutable","name":"to","nameLocation":"1680:2:10","nodeType":"VariableDeclaration","scope":1350,"src":"1672:10:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1330,"name":"address","nodeType":"ElementaryTypeName","src":"1672:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1333,"mutability":"mutable","name":"value","nameLocation":"1692:5:10","nodeType":"VariableDeclaration","scope":1350,"src":"1684:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1332,"name":"uint256","nodeType":"ElementaryTypeName","src":"1684:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1643:55:10"},"returnParameters":{"id":1335,"nodeType":"ParameterList","parameters":[],"src":"1708:0:10"},"scope":1742,"src":"1618:188:10","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1375,"nodeType":"Block","src":"2033:99:10","statements":[{"expression":{"arguments":[{"id":1364,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1354,"src":"2074:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},{"arguments":[{"expression":{"id":1367,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1354,"src":"2096:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"id":1368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2102:8:10","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":1183,"src":"2096:14:10","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},{"components":[{"id":1369,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1356,"src":"2113:2:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1370,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1358,"src":"2117:5:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1371,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2112:11:10","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":1365,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2081:3:10","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1366,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2085:10:10","memberName":"encodeCall","nodeType":"MemberAccess","src":"2081:14:10","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1372,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2081:43:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1363,"name":"_callOptionalReturnBool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1741,"src":"2050:23:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$1216_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (contract IERC20,bytes memory) returns (bool)"}},"id":1373,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2050:75:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":1362,"id":1374,"nodeType":"Return","src":"2043:82:10"}]},"documentation":{"id":1351,"nodeType":"StructuredDocumentation","src":"1812:126:10","text":" @dev Variant of {safeTransfer} that returns a bool instead of reverting if the operation is not successful."},"id":1376,"implemented":true,"kind":"function","modifiers":[],"name":"trySafeTransfer","nameLocation":"1952:15:10","nodeType":"FunctionDefinition","parameters":{"id":1359,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1354,"mutability":"mutable","name":"token","nameLocation":"1975:5:10","nodeType":"VariableDeclaration","scope":1376,"src":"1968:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"},"typeName":{"id":1353,"nodeType":"UserDefinedTypeName","pathNode":{"id":1352,"name":"IERC20","nameLocations":["1968:6:10"],"nodeType":"IdentifierPath","referencedDeclaration":1216,"src":"1968:6:10"},"referencedDeclaration":1216,"src":"1968:6:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":1356,"mutability":"mutable","name":"to","nameLocation":"1990:2:10","nodeType":"VariableDeclaration","scope":1376,"src":"1982:10:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1355,"name":"address","nodeType":"ElementaryTypeName","src":"1982:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1358,"mutability":"mutable","name":"value","nameLocation":"2002:5:10","nodeType":"VariableDeclaration","scope":1376,"src":"1994:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1357,"name":"uint256","nodeType":"ElementaryTypeName","src":"1994:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1967:41:10"},"returnParameters":{"id":1362,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1361,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1376,"src":"2027:4:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1360,"name":"bool","nodeType":"ElementaryTypeName","src":"2027:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2026:6:10"},"scope":1742,"src":"1943:189:10","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1404,"nodeType":"Block","src":"2381:109:10","statements":[{"expression":{"arguments":[{"id":1392,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1380,"src":"2422:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},{"arguments":[{"expression":{"id":1395,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1380,"src":"2444:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"id":1396,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2450:12:10","memberName":"transferFrom","nodeType":"MemberAccess","referencedDeclaration":1215,"src":"2444:18:10","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":1397,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1382,"src":"2465:4:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1398,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1384,"src":"2471:2:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1399,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1386,"src":"2475:5:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1400,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2464:17:10","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":1393,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2429:3:10","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1394,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2433:10:10","memberName":"encodeCall","nodeType":"MemberAccess","src":"2429:14:10","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1401,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2429:53:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1391,"name":"_callOptionalReturnBool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1741,"src":"2398:23:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$1216_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (contract IERC20,bytes memory) returns (bool)"}},"id":1402,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2398:85:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":1390,"id":1403,"nodeType":"Return","src":"2391:92:10"}]},"documentation":{"id":1377,"nodeType":"StructuredDocumentation","src":"2138:130:10","text":" @dev Variant of {safeTransferFrom} that returns a bool instead of reverting if the operation is not successful."},"id":1405,"implemented":true,"kind":"function","modifiers":[],"name":"trySafeTransferFrom","nameLocation":"2282:19:10","nodeType":"FunctionDefinition","parameters":{"id":1387,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1380,"mutability":"mutable","name":"token","nameLocation":"2309:5:10","nodeType":"VariableDeclaration","scope":1405,"src":"2302:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"},"typeName":{"id":1379,"nodeType":"UserDefinedTypeName","pathNode":{"id":1378,"name":"IERC20","nameLocations":["2302:6:10"],"nodeType":"IdentifierPath","referencedDeclaration":1216,"src":"2302:6:10"},"referencedDeclaration":1216,"src":"2302:6:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":1382,"mutability":"mutable","name":"from","nameLocation":"2324:4:10","nodeType":"VariableDeclaration","scope":1405,"src":"2316:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1381,"name":"address","nodeType":"ElementaryTypeName","src":"2316:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1384,"mutability":"mutable","name":"to","nameLocation":"2338:2:10","nodeType":"VariableDeclaration","scope":1405,"src":"2330:10:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1383,"name":"address","nodeType":"ElementaryTypeName","src":"2330:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1386,"mutability":"mutable","name":"value","nameLocation":"2350:5:10","nodeType":"VariableDeclaration","scope":1405,"src":"2342:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1385,"name":"uint256","nodeType":"ElementaryTypeName","src":"2342:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2301:55:10"},"returnParameters":{"id":1390,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1389,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1405,"src":"2375:4:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1388,"name":"bool","nodeType":"ElementaryTypeName","src":"2375:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2374:6:10"},"scope":1742,"src":"2273:217:10","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1435,"nodeType":"Block","src":"3232:139:10","statements":[{"assignments":[1417],"declarations":[{"constant":false,"id":1417,"mutability":"mutable","name":"oldAllowance","nameLocation":"3250:12:10","nodeType":"VariableDeclaration","scope":1435,"src":"3242:20:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1416,"name":"uint256","nodeType":"ElementaryTypeName","src":"3242:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1426,"initialValue":{"arguments":[{"arguments":[{"id":1422,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3289:4:10","typeDescriptions":{"typeIdentifier":"t_contract$_SafeERC20_$1742","typeString":"library SafeERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_SafeERC20_$1742","typeString":"library SafeERC20"}],"id":1421,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3281:7:10","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1420,"name":"address","nodeType":"ElementaryTypeName","src":"3281:7:10","typeDescriptions":{}}},"id":1423,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3281:13:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1424,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1411,"src":"3296:7:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":1418,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1409,"src":"3265:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"id":1419,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3271:9:10","memberName":"allowance","nodeType":"MemberAccess","referencedDeclaration":1193,"src":"3265:15:10","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view external returns (uint256)"}},"id":1425,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3265:39:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3242:62:10"},{"expression":{"arguments":[{"id":1428,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1409,"src":"3327:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},{"id":1429,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1411,"src":"3334:7:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1432,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1430,"name":"oldAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1417,"src":"3343:12:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":1431,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1413,"src":"3358:5:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3343:20:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1427,"name":"forceApprove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1526,"src":"3314:12:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$1216_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":1433,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3314:50:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1434,"nodeType":"ExpressionStatement","src":"3314:50:10"}]},"documentation":{"id":1406,"nodeType":"StructuredDocumentation","src":"2496:645:10","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":1436,"implemented":true,"kind":"function","modifiers":[],"name":"safeIncreaseAllowance","nameLocation":"3155:21:10","nodeType":"FunctionDefinition","parameters":{"id":1414,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1409,"mutability":"mutable","name":"token","nameLocation":"3184:5:10","nodeType":"VariableDeclaration","scope":1436,"src":"3177:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"},"typeName":{"id":1408,"nodeType":"UserDefinedTypeName","pathNode":{"id":1407,"name":"IERC20","nameLocations":["3177:6:10"],"nodeType":"IdentifierPath","referencedDeclaration":1216,"src":"3177:6:10"},"referencedDeclaration":1216,"src":"3177:6:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":1411,"mutability":"mutable","name":"spender","nameLocation":"3199:7:10","nodeType":"VariableDeclaration","scope":1436,"src":"3191:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1410,"name":"address","nodeType":"ElementaryTypeName","src":"3191:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1413,"mutability":"mutable","name":"value","nameLocation":"3216:5:10","nodeType":"VariableDeclaration","scope":1436,"src":"3208:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1412,"name":"uint256","nodeType":"ElementaryTypeName","src":"3208:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3176:46:10"},"returnParameters":{"id":1415,"nodeType":"ParameterList","parameters":[],"src":"3232:0:10"},"scope":1742,"src":"3146:225:10","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1478,"nodeType":"Block","src":"4137:370:10","statements":[{"id":1477,"nodeType":"UncheckedBlock","src":"4147:354:10","statements":[{"assignments":[1448],"declarations":[{"constant":false,"id":1448,"mutability":"mutable","name":"currentAllowance","nameLocation":"4179:16:10","nodeType":"VariableDeclaration","scope":1477,"src":"4171:24:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1447,"name":"uint256","nodeType":"ElementaryTypeName","src":"4171:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1457,"initialValue":{"arguments":[{"arguments":[{"id":1453,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4222:4:10","typeDescriptions":{"typeIdentifier":"t_contract$_SafeERC20_$1742","typeString":"library SafeERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_SafeERC20_$1742","typeString":"library SafeERC20"}],"id":1452,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4214:7:10","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1451,"name":"address","nodeType":"ElementaryTypeName","src":"4214:7:10","typeDescriptions":{}}},"id":1454,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4214:13:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1455,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1442,"src":"4229:7:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":1449,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1440,"src":"4198:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"id":1450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4204:9:10","memberName":"allowance","nodeType":"MemberAccess","referencedDeclaration":1193,"src":"4198:15:10","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view external returns (uint256)"}},"id":1456,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4198:39:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"4171:66:10"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1460,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1458,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1448,"src":"4255:16:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":1459,"name":"requestedDecrease","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1444,"src":"4274:17:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4255:36:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1468,"nodeType":"IfStatement","src":"4251:160:10","trueBody":{"id":1467,"nodeType":"Block","src":"4293:118:10","statements":[{"errorCall":{"arguments":[{"id":1462,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1442,"src":"4351:7:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1463,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1448,"src":"4360:16:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1464,"name":"requestedDecrease","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1444,"src":"4378:17:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1461,"name":"SafeERC20FailedDecreaseAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1299,"src":"4318:32:10","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256) pure"}},"id":1465,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4318:78:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1466,"nodeType":"RevertStatement","src":"4311:85:10"}]}},{"expression":{"arguments":[{"id":1470,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1440,"src":"4437:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},{"id":1471,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1442,"src":"4444:7:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1474,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1472,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1448,"src":"4453:16:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1473,"name":"requestedDecrease","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1444,"src":"4472:17:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4453:36:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1469,"name":"forceApprove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1526,"src":"4424:12:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$1216_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":1475,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4424:66:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1476,"nodeType":"ExpressionStatement","src":"4424:66:10"}]}]},"documentation":{"id":1437,"nodeType":"StructuredDocumentation","src":"3377:657:10","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":1479,"implemented":true,"kind":"function","modifiers":[],"name":"safeDecreaseAllowance","nameLocation":"4048:21:10","nodeType":"FunctionDefinition","parameters":{"id":1445,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1440,"mutability":"mutable","name":"token","nameLocation":"4077:5:10","nodeType":"VariableDeclaration","scope":1479,"src":"4070:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"},"typeName":{"id":1439,"nodeType":"UserDefinedTypeName","pathNode":{"id":1438,"name":"IERC20","nameLocations":["4070:6:10"],"nodeType":"IdentifierPath","referencedDeclaration":1216,"src":"4070:6:10"},"referencedDeclaration":1216,"src":"4070:6:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":1442,"mutability":"mutable","name":"spender","nameLocation":"4092:7:10","nodeType":"VariableDeclaration","scope":1479,"src":"4084:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1441,"name":"address","nodeType":"ElementaryTypeName","src":"4084:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1444,"mutability":"mutable","name":"requestedDecrease","nameLocation":"4109:17:10","nodeType":"VariableDeclaration","scope":1479,"src":"4101:25:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1443,"name":"uint256","nodeType":"ElementaryTypeName","src":"4101:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4069:58:10"},"returnParameters":{"id":1446,"nodeType":"ParameterList","parameters":[],"src":"4137:0:10"},"scope":1742,"src":"4039:468:10","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1525,"nodeType":"Block","src":"5161:303:10","statements":[{"assignments":[1491],"declarations":[{"constant":false,"id":1491,"mutability":"mutable","name":"approvalCall","nameLocation":"5184:12:10","nodeType":"VariableDeclaration","scope":1525,"src":"5171:25:10","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1490,"name":"bytes","nodeType":"ElementaryTypeName","src":"5171:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":1500,"initialValue":{"arguments":[{"expression":{"id":1494,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1483,"src":"5214:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"id":1495,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5220:7:10","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":1203,"src":"5214:13:10","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},{"components":[{"id":1496,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1485,"src":"5230:7:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1497,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1487,"src":"5239:5:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1498,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5229:16:10","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":1492,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"5199:3:10","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1493,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5203:10:10","memberName":"encodeCall","nodeType":"MemberAccess","src":"5199:14:10","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1499,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5199:47:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"5171:75:10"},{"condition":{"id":1505,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5261:45:10","subExpression":{"arguments":[{"id":1502,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1483,"src":"5286:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},{"id":1503,"name":"approvalCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1491,"src":"5293:12:10","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1501,"name":"_callOptionalReturnBool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1741,"src":"5262:23:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$1216_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (contract IERC20,bytes memory) returns (bool)"}},"id":1504,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5262:44:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1524,"nodeType":"IfStatement","src":"5257:201:10","trueBody":{"id":1523,"nodeType":"Block","src":"5308:150:10","statements":[{"expression":{"arguments":[{"id":1507,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1483,"src":"5342:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},{"arguments":[{"expression":{"id":1510,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1483,"src":"5364:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"id":1511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5370:7:10","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":1203,"src":"5364:13:10","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},{"components":[{"id":1512,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1485,"src":"5380:7:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":1513,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5389:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":1514,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5379:12:10","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":1508,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"5349:3:10","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1509,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5353:10:10","memberName":"encodeCall","nodeType":"MemberAccess","src":"5349:14:10","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1515,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5349:43:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1506,"name":"_callOptionalReturn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1700,"src":"5322:19:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$1216_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (contract IERC20,bytes memory)"}},"id":1516,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5322:71:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1517,"nodeType":"ExpressionStatement","src":"5322:71:10"},{"expression":{"arguments":[{"id":1519,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1483,"src":"5427:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},{"id":1520,"name":"approvalCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1491,"src":"5434:12:10","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1518,"name":"_callOptionalReturn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1700,"src":"5407:19:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$1216_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (contract IERC20,bytes memory)"}},"id":1521,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5407:40:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1522,"nodeType":"ExpressionStatement","src":"5407:40:10"}]}}]},"documentation":{"id":1480,"nodeType":"StructuredDocumentation","src":"4513:566:10","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":1526,"implemented":true,"kind":"function","modifiers":[],"name":"forceApprove","nameLocation":"5093:12:10","nodeType":"FunctionDefinition","parameters":{"id":1488,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1483,"mutability":"mutable","name":"token","nameLocation":"5113:5:10","nodeType":"VariableDeclaration","scope":1526,"src":"5106:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"},"typeName":{"id":1482,"nodeType":"UserDefinedTypeName","pathNode":{"id":1481,"name":"IERC20","nameLocations":["5106:6:10"],"nodeType":"IdentifierPath","referencedDeclaration":1216,"src":"5106:6:10"},"referencedDeclaration":1216,"src":"5106:6:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":1485,"mutability":"mutable","name":"spender","nameLocation":"5128:7:10","nodeType":"VariableDeclaration","scope":1526,"src":"5120:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1484,"name":"address","nodeType":"ElementaryTypeName","src":"5120:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1487,"mutability":"mutable","name":"value","nameLocation":"5145:5:10","nodeType":"VariableDeclaration","scope":1526,"src":"5137:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1486,"name":"uint256","nodeType":"ElementaryTypeName","src":"5137:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5105:46:10"},"returnParameters":{"id":1489,"nodeType":"ParameterList","parameters":[],"src":"5161:0:10"},"scope":1742,"src":"5084:380:10","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1568,"nodeType":"Block","src":"5911:219:10","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1543,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":1539,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1532,"src":"5925:2:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1540,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5928:4:10","memberName":"code","nodeType":"MemberAccess","src":"5925:7:10","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5933:6:10","memberName":"length","nodeType":"MemberAccess","src":"5925:14:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1542,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5943:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5925:19:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":1557,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6011:39:10","subExpression":{"arguments":[{"id":1553,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1532,"src":"6034:2:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1554,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1534,"src":"6038:5:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1555,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1536,"src":"6045:4:10","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":1551,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1530,"src":"6012:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$478","typeString":"contract IERC1363"}},"id":1552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6018:15:10","memberName":"transferAndCall","nodeType":"MemberAccess","referencedDeclaration":429,"src":"6012:21:10","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":1556,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6012:38:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1566,"nodeType":"IfStatement","src":"6007:117:10","trueBody":{"id":1565,"nodeType":"Block","src":"6052:72:10","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":1561,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1530,"src":"6106:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$478","typeString":"contract IERC1363"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$478","typeString":"contract IERC1363"}],"id":1560,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6098:7:10","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1559,"name":"address","nodeType":"ElementaryTypeName","src":"6098:7:10","typeDescriptions":{}}},"id":1562,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6098:14:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1558,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1290,"src":"6073:24:10","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":1563,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6073:40:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1564,"nodeType":"RevertStatement","src":"6066:47:10"}]}},"id":1567,"nodeType":"IfStatement","src":"5921:203:10","trueBody":{"id":1550,"nodeType":"Block","src":"5946:55:10","statements":[{"expression":{"arguments":[{"id":1545,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1530,"src":"5973:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$478","typeString":"contract IERC1363"}},{"id":1546,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1532,"src":"5980:2:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1547,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1534,"src":"5984:5:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$478","typeString":"contract IERC1363"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1544,"name":"safeTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1323,"src":"5960:12:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$1216_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":1548,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5960:30:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1549,"nodeType":"ExpressionStatement","src":"5960:30:10"}]}}]},"documentation":{"id":1527,"nodeType":"StructuredDocumentation","src":"5470:333:10","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":1569,"implemented":true,"kind":"function","modifiers":[],"name":"transferAndCallRelaxed","nameLocation":"5817:22:10","nodeType":"FunctionDefinition","parameters":{"id":1537,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1530,"mutability":"mutable","name":"token","nameLocation":"5849:5:10","nodeType":"VariableDeclaration","scope":1569,"src":"5840:14:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$478","typeString":"contract IERC1363"},"typeName":{"id":1529,"nodeType":"UserDefinedTypeName","pathNode":{"id":1528,"name":"IERC1363","nameLocations":["5840:8:10"],"nodeType":"IdentifierPath","referencedDeclaration":478,"src":"5840:8:10"},"referencedDeclaration":478,"src":"5840:8:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$478","typeString":"contract IERC1363"}},"visibility":"internal"},{"constant":false,"id":1532,"mutability":"mutable","name":"to","nameLocation":"5864:2:10","nodeType":"VariableDeclaration","scope":1569,"src":"5856:10:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1531,"name":"address","nodeType":"ElementaryTypeName","src":"5856:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1534,"mutability":"mutable","name":"value","nameLocation":"5876:5:10","nodeType":"VariableDeclaration","scope":1569,"src":"5868:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1533,"name":"uint256","nodeType":"ElementaryTypeName","src":"5868:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1536,"mutability":"mutable","name":"data","nameLocation":"5896:4:10","nodeType":"VariableDeclaration","scope":1569,"src":"5883:17:10","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1535,"name":"bytes","nodeType":"ElementaryTypeName","src":"5883:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5839:62:10"},"returnParameters":{"id":1538,"nodeType":"ParameterList","parameters":[],"src":"5911:0:10"},"scope":1742,"src":"5808:322:10","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1615,"nodeType":"Block","src":"6649:239:10","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1588,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":1584,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1577,"src":"6663:2:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1585,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6666:4:10","memberName":"code","nodeType":"MemberAccess","src":"6663:7:10","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1586,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6671:6:10","memberName":"length","nodeType":"MemberAccess","src":"6663:14:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1587,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6681:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6663:19:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":1604,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6759:49:10","subExpression":{"arguments":[{"id":1599,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1575,"src":"6786:4:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1600,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1577,"src":"6792:2:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1601,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1579,"src":"6796:5:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1602,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1581,"src":"6803:4:10","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":1597,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1573,"src":"6760:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$478","typeString":"contract IERC1363"}},"id":1598,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6766:19:10","memberName":"transferFromAndCall","nodeType":"MemberAccess","referencedDeclaration":455,"src":"6760:25:10","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":1603,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6760:48:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1613,"nodeType":"IfStatement","src":"6755:127:10","trueBody":{"id":1612,"nodeType":"Block","src":"6810:72:10","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":1608,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1573,"src":"6864:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$478","typeString":"contract IERC1363"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$478","typeString":"contract IERC1363"}],"id":1607,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6856:7:10","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1606,"name":"address","nodeType":"ElementaryTypeName","src":"6856:7:10","typeDescriptions":{}}},"id":1609,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6856:14:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1605,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1290,"src":"6831:24:10","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":1610,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6831:40:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1611,"nodeType":"RevertStatement","src":"6824:47:10"}]}},"id":1614,"nodeType":"IfStatement","src":"6659:223:10","trueBody":{"id":1596,"nodeType":"Block","src":"6684:65:10","statements":[{"expression":{"arguments":[{"id":1590,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1573,"src":"6715:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$478","typeString":"contract IERC1363"}},{"id":1591,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1575,"src":"6722:4:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1592,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1577,"src":"6728:2:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1593,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1579,"src":"6732:5:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$478","typeString":"contract IERC1363"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1589,"name":"safeTransferFrom","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1350,"src":"6698:16:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$1216_$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":1594,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6698:40:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1595,"nodeType":"ExpressionStatement","src":"6698:40:10"}]}}]},"documentation":{"id":1570,"nodeType":"StructuredDocumentation","src":"6136:341:10","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":1616,"implemented":true,"kind":"function","modifiers":[],"name":"transferFromAndCallRelaxed","nameLocation":"6491:26:10","nodeType":"FunctionDefinition","parameters":{"id":1582,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1573,"mutability":"mutable","name":"token","nameLocation":"6536:5:10","nodeType":"VariableDeclaration","scope":1616,"src":"6527:14:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$478","typeString":"contract IERC1363"},"typeName":{"id":1572,"nodeType":"UserDefinedTypeName","pathNode":{"id":1571,"name":"IERC1363","nameLocations":["6527:8:10"],"nodeType":"IdentifierPath","referencedDeclaration":478,"src":"6527:8:10"},"referencedDeclaration":478,"src":"6527:8:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$478","typeString":"contract IERC1363"}},"visibility":"internal"},{"constant":false,"id":1575,"mutability":"mutable","name":"from","nameLocation":"6559:4:10","nodeType":"VariableDeclaration","scope":1616,"src":"6551:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1574,"name":"address","nodeType":"ElementaryTypeName","src":"6551:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1577,"mutability":"mutable","name":"to","nameLocation":"6581:2:10","nodeType":"VariableDeclaration","scope":1616,"src":"6573:10:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1576,"name":"address","nodeType":"ElementaryTypeName","src":"6573:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1579,"mutability":"mutable","name":"value","nameLocation":"6601:5:10","nodeType":"VariableDeclaration","scope":1616,"src":"6593:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1578,"name":"uint256","nodeType":"ElementaryTypeName","src":"6593:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1581,"mutability":"mutable","name":"data","nameLocation":"6629:4:10","nodeType":"VariableDeclaration","scope":1616,"src":"6616:17:10","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1580,"name":"bytes","nodeType":"ElementaryTypeName","src":"6616:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6517:122:10"},"returnParameters":{"id":1583,"nodeType":"ParameterList","parameters":[],"src":"6649:0:10"},"scope":1742,"src":"6482:406:10","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1658,"nodeType":"Block","src":"7655:218:10","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1633,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":1629,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1622,"src":"7669:2:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1630,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7672:4:10","memberName":"code","nodeType":"MemberAccess","src":"7669:7:10","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1631,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7677:6:10","memberName":"length","nodeType":"MemberAccess","src":"7669:14:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1632,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7687:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7669:19:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":1647,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"7755:38:10","subExpression":{"arguments":[{"id":1643,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1622,"src":"7777:2:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1644,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1624,"src":"7781:5:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1645,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1626,"src":"7788:4:10","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":1641,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1620,"src":"7756:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$478","typeString":"contract IERC1363"}},"id":1642,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7762:14:10","memberName":"approveAndCall","nodeType":"MemberAccess","referencedDeclaration":477,"src":"7756:20:10","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":1646,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7756:37:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1656,"nodeType":"IfStatement","src":"7751:116:10","trueBody":{"id":1655,"nodeType":"Block","src":"7795:72:10","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":1651,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1620,"src":"7849:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$478","typeString":"contract IERC1363"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$478","typeString":"contract IERC1363"}],"id":1650,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7841:7:10","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1649,"name":"address","nodeType":"ElementaryTypeName","src":"7841:7:10","typeDescriptions":{}}},"id":1652,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7841:14:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1648,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1290,"src":"7816:24:10","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":1653,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7816:40:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1654,"nodeType":"RevertStatement","src":"7809:47:10"}]}},"id":1657,"nodeType":"IfStatement","src":"7665:202:10","trueBody":{"id":1640,"nodeType":"Block","src":"7690:55:10","statements":[{"expression":{"arguments":[{"id":1635,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1620,"src":"7717:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$478","typeString":"contract IERC1363"}},{"id":1636,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1622,"src":"7724:2:10","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1637,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1624,"src":"7728:5:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$478","typeString":"contract IERC1363"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1634,"name":"forceApprove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1526,"src":"7704:12:10","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$1216_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":1638,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7704:30:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1639,"nodeType":"ExpressionStatement","src":"7704:30:10"}]}}]},"documentation":{"id":1617,"nodeType":"StructuredDocumentation","src":"6894:654:10","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":1659,"implemented":true,"kind":"function","modifiers":[],"name":"approveAndCallRelaxed","nameLocation":"7562:21:10","nodeType":"FunctionDefinition","parameters":{"id":1627,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1620,"mutability":"mutable","name":"token","nameLocation":"7593:5:10","nodeType":"VariableDeclaration","scope":1659,"src":"7584:14:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$478","typeString":"contract IERC1363"},"typeName":{"id":1619,"nodeType":"UserDefinedTypeName","pathNode":{"id":1618,"name":"IERC1363","nameLocations":["7584:8:10"],"nodeType":"IdentifierPath","referencedDeclaration":478,"src":"7584:8:10"},"referencedDeclaration":478,"src":"7584:8:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$478","typeString":"contract IERC1363"}},"visibility":"internal"},{"constant":false,"id":1622,"mutability":"mutable","name":"to","nameLocation":"7608:2:10","nodeType":"VariableDeclaration","scope":1659,"src":"7600:10:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1621,"name":"address","nodeType":"ElementaryTypeName","src":"7600:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1624,"mutability":"mutable","name":"value","nameLocation":"7620:5:10","nodeType":"VariableDeclaration","scope":1659,"src":"7612:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1623,"name":"uint256","nodeType":"ElementaryTypeName","src":"7612:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1626,"mutability":"mutable","name":"data","nameLocation":"7640:4:10","nodeType":"VariableDeclaration","scope":1659,"src":"7627:17:10","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1625,"name":"bytes","nodeType":"ElementaryTypeName","src":"7627:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7583:62:10"},"returnParameters":{"id":1628,"nodeType":"ParameterList","parameters":[],"src":"7655:0:10"},"scope":1742,"src":"7553:320:10","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1699,"nodeType":"Block","src":"8440:650:10","statements":[{"assignments":[1669],"declarations":[{"constant":false,"id":1669,"mutability":"mutable","name":"returnSize","nameLocation":"8458:10:10","nodeType":"VariableDeclaration","scope":1699,"src":"8450:18:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1668,"name":"uint256","nodeType":"ElementaryTypeName","src":"8450:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1670,"nodeType":"VariableDeclarationStatement","src":"8450:18:10"},{"assignments":[1672],"declarations":[{"constant":false,"id":1672,"mutability":"mutable","name":"returnValue","nameLocation":"8486:11:10","nodeType":"VariableDeclaration","scope":1699,"src":"8478:19:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1671,"name":"uint256","nodeType":"ElementaryTypeName","src":"8478:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1673,"nodeType":"VariableDeclarationStatement","src":"8478:19:10"},{"AST":{"nodeType":"YulBlock","src":"8532:396:10","statements":[{"nodeType":"YulVariableDeclaration","src":"8546:75:10","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nodeType":"YulIdentifier","src":"8566:3:10"},"nodeType":"YulFunctionCall","src":"8566:5:10"},{"name":"token","nodeType":"YulIdentifier","src":"8573:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"8580:1:10","type":"","value":"0"},{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"8587:4:10"},{"kind":"number","nodeType":"YulLiteral","src":"8593:4:10","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8583:3:10"},"nodeType":"YulFunctionCall","src":"8583:15:10"},{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"8606:4:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8600:5:10"},"nodeType":"YulFunctionCall","src":"8600:11:10"},{"kind":"number","nodeType":"YulLiteral","src":"8613:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"8616:4:10","type":"","value":"0x20"}],"functionName":{"name":"call","nodeType":"YulIdentifier","src":"8561:4:10"},"nodeType":"YulFunctionCall","src":"8561:60:10"},"variables":[{"name":"success","nodeType":"YulTypedName","src":"8550:7:10","type":""}]},{"body":{"nodeType":"YulBlock","src":"8682:157:10","statements":[{"nodeType":"YulVariableDeclaration","src":"8700:22:10","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8717:4:10","type":"","value":"0x40"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8711:5:10"},"nodeType":"YulFunctionCall","src":"8711:11:10"},"variables":[{"name":"ptr","nodeType":"YulTypedName","src":"8704:3:10","type":""}]},{"expression":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"8754:3:10"},{"kind":"number","nodeType":"YulLiteral","src":"8759:1:10","type":"","value":"0"},{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"8762:14:10"},"nodeType":"YulFunctionCall","src":"8762:16:10"}],"functionName":{"name":"returndatacopy","nodeType":"YulIdentifier","src":"8739:14:10"},"nodeType":"YulFunctionCall","src":"8739:40:10"},"nodeType":"YulExpressionStatement","src":"8739:40:10"},{"expression":{"arguments":[{"name":"ptr","nodeType":"YulIdentifier","src":"8803:3:10"},{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"8808:14:10"},"nodeType":"YulFunctionCall","src":"8808:16:10"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"8796:6:10"},"nodeType":"YulFunctionCall","src":"8796:29:10"},"nodeType":"YulExpressionStatement","src":"8796:29:10"}]},"condition":{"arguments":[{"name":"success","nodeType":"YulIdentifier","src":"8673:7:10"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"8666:6:10"},"nodeType":"YulFunctionCall","src":"8666:15:10"},"nodeType":"YulIf","src":"8663:176:10"},{"nodeType":"YulAssignment","src":"8852:30:10","value":{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"8866:14:10"},"nodeType":"YulFunctionCall","src":"8866:16:10"},"variableNames":[{"name":"returnSize","nodeType":"YulIdentifier","src":"8852:10:10"}]},{"nodeType":"YulAssignment","src":"8895:23:10","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"8916:1:10","type":"","value":"0"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8910:5:10"},"nodeType":"YulFunctionCall","src":"8910:8:10"},"variableNames":[{"name":"returnValue","nodeType":"YulIdentifier","src":"8895:11:10"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":1665,"isOffset":false,"isSlot":false,"src":"8587:4:10","valueSize":1},{"declaration":1665,"isOffset":false,"isSlot":false,"src":"8606:4:10","valueSize":1},{"declaration":1669,"isOffset":false,"isSlot":false,"src":"8852:10:10","valueSize":1},{"declaration":1672,"isOffset":false,"isSlot":false,"src":"8895:11:10","valueSize":1},{"declaration":1663,"isOffset":false,"isSlot":false,"src":"8573:5:10","valueSize":1}],"flags":["memory-safe"],"id":1674,"nodeType":"InlineAssembly","src":"8507:421:10"},{"condition":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1677,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1675,"name":"returnSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1669,"src":"8942:10:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1676,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8956:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8942:15:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1688,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1686,"name":"returnValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1672,"src":"8994:11:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"31","id":1687,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9009:1:10","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"8994:16:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1689,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"8942:68:10","trueExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1685,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"arguments":[{"id":1680,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1663,"src":"8968:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}],"id":1679,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8960:7:10","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1678,"name":"address","nodeType":"ElementaryTypeName","src":"8960:7:10","typeDescriptions":{}}},"id":1681,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8960:14:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1682,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8975:4:10","memberName":"code","nodeType":"MemberAccess","src":"8960:19:10","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1683,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8980:6:10","memberName":"length","nodeType":"MemberAccess","src":"8960:26:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1684,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8990:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8960:31:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1698,"nodeType":"IfStatement","src":"8938:146:10","trueBody":{"id":1697,"nodeType":"Block","src":"9012:72:10","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":1693,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1663,"src":"9066:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}],"id":1692,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9058:7:10","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1691,"name":"address","nodeType":"ElementaryTypeName","src":"9058:7:10","typeDescriptions":{}}},"id":1694,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9058:14:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1690,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1290,"src":"9033:24:10","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$__$","typeString":"function (address) pure"}},"id":1695,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9033:40:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1696,"nodeType":"RevertStatement","src":"9026:47:10"}]}}]},"documentation":{"id":1660,"nodeType":"StructuredDocumentation","src":"7879:486:10","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":1700,"implemented":true,"kind":"function","modifiers":[],"name":"_callOptionalReturn","nameLocation":"8379:19:10","nodeType":"FunctionDefinition","parameters":{"id":1666,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1663,"mutability":"mutable","name":"token","nameLocation":"8406:5:10","nodeType":"VariableDeclaration","scope":1700,"src":"8399:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"},"typeName":{"id":1662,"nodeType":"UserDefinedTypeName","pathNode":{"id":1661,"name":"IERC20","nameLocations":["8399:6:10"],"nodeType":"IdentifierPath","referencedDeclaration":1216,"src":"8399:6:10"},"referencedDeclaration":1216,"src":"8399:6:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":1665,"mutability":"mutable","name":"data","nameLocation":"8426:4:10","nodeType":"VariableDeclaration","scope":1700,"src":"8413:17:10","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1664,"name":"bytes","nodeType":"ElementaryTypeName","src":"8413:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8398:33:10"},"returnParameters":{"id":1667,"nodeType":"ParameterList","parameters":[],"src":"8440:0:10"},"scope":1742,"src":"8370:720:10","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":1740,"nodeType":"Block","src":"9681:391:10","statements":[{"assignments":[1712],"declarations":[{"constant":false,"id":1712,"mutability":"mutable","name":"success","nameLocation":"9696:7:10","nodeType":"VariableDeclaration","scope":1740,"src":"9691:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1711,"name":"bool","nodeType":"ElementaryTypeName","src":"9691:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":1713,"nodeType":"VariableDeclarationStatement","src":"9691:12:10"},{"assignments":[1715],"declarations":[{"constant":false,"id":1715,"mutability":"mutable","name":"returnSize","nameLocation":"9721:10:10","nodeType":"VariableDeclaration","scope":1740,"src":"9713:18:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1714,"name":"uint256","nodeType":"ElementaryTypeName","src":"9713:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1716,"nodeType":"VariableDeclarationStatement","src":"9713:18:10"},{"assignments":[1718],"declarations":[{"constant":false,"id":1718,"mutability":"mutable","name":"returnValue","nameLocation":"9749:11:10","nodeType":"VariableDeclaration","scope":1740,"src":"9741:19:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1717,"name":"uint256","nodeType":"ElementaryTypeName","src":"9741:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1719,"nodeType":"VariableDeclarationStatement","src":"9741:19:10"},{"AST":{"nodeType":"YulBlock","src":"9795:174:10","statements":[{"nodeType":"YulAssignment","src":"9809:71:10","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nodeType":"YulIdentifier","src":"9825:3:10"},"nodeType":"YulFunctionCall","src":"9825:5:10"},{"name":"token","nodeType":"YulIdentifier","src":"9832:5:10"},{"kind":"number","nodeType":"YulLiteral","src":"9839:1:10","type":"","value":"0"},{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"9846:4:10"},{"kind":"number","nodeType":"YulLiteral","src":"9852:4:10","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9842:3:10"},"nodeType":"YulFunctionCall","src":"9842:15:10"},{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"9865:4:10"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9859:5:10"},"nodeType":"YulFunctionCall","src":"9859:11:10"},{"kind":"number","nodeType":"YulLiteral","src":"9872:1:10","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"9875:4:10","type":"","value":"0x20"}],"functionName":{"name":"call","nodeType":"YulIdentifier","src":"9820:4:10"},"nodeType":"YulFunctionCall","src":"9820:60:10"},"variableNames":[{"name":"success","nodeType":"YulIdentifier","src":"9809:7:10"}]},{"nodeType":"YulAssignment","src":"9893:30:10","value":{"arguments":[],"functionName":{"name":"returndatasize","nodeType":"YulIdentifier","src":"9907:14:10"},"nodeType":"YulFunctionCall","src":"9907:16:10"},"variableNames":[{"name":"returnSize","nodeType":"YulIdentifier","src":"9893:10:10"}]},{"nodeType":"YulAssignment","src":"9936:23:10","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"9957:1:10","type":"","value":"0"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9951:5:10"},"nodeType":"YulFunctionCall","src":"9951:8:10"},"variableNames":[{"name":"returnValue","nodeType":"YulIdentifier","src":"9936:11:10"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":1706,"isOffset":false,"isSlot":false,"src":"9846:4:10","valueSize":1},{"declaration":1706,"isOffset":false,"isSlot":false,"src":"9865:4:10","valueSize":1},{"declaration":1715,"isOffset":false,"isSlot":false,"src":"9893:10:10","valueSize":1},{"declaration":1718,"isOffset":false,"isSlot":false,"src":"9936:11:10","valueSize":1},{"declaration":1712,"isOffset":false,"isSlot":false,"src":"9809:7:10","valueSize":1},{"declaration":1704,"isOffset":false,"isSlot":false,"src":"9832:5:10","valueSize":1}],"flags":["memory-safe"],"id":1720,"nodeType":"InlineAssembly","src":"9770:199:10"},{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1738,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1721,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1712,"src":"9985:7:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"components":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1724,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1722,"name":"returnSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1715,"src":"9997:10:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1723,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10011:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9997:15:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1733,"name":"returnValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1718,"src":"10048:11:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":1734,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10063:1:10","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"10048:16:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1736,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"9997:67:10","trueExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1732,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"arguments":[{"id":1727,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1704,"src":"10023:5:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}],"id":1726,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10015:7:10","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1725,"name":"address","nodeType":"ElementaryTypeName","src":"10015:7:10","typeDescriptions":{}}},"id":1728,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10015:14:10","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1729,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10030:4:10","memberName":"code","nodeType":"MemberAccess","src":"10015:19:10","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10035:6:10","memberName":"length","nodeType":"MemberAccess","src":"10015:26:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1731,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10044:1:10","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10015:30:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":1737,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9996:69:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9985:80:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":1710,"id":1739,"nodeType":"Return","src":"9978:87:10"}]},"documentation":{"id":1701,"nodeType":"StructuredDocumentation","src":"9096:491:10","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":1741,"implemented":true,"kind":"function","modifiers":[],"name":"_callOptionalReturnBool","nameLocation":"9601:23:10","nodeType":"FunctionDefinition","parameters":{"id":1707,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1704,"mutability":"mutable","name":"token","nameLocation":"9632:5:10","nodeType":"VariableDeclaration","scope":1741,"src":"9625:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"},"typeName":{"id":1703,"nodeType":"UserDefinedTypeName","pathNode":{"id":1702,"name":"IERC20","nameLocations":["9625:6:10"],"nodeType":"IdentifierPath","referencedDeclaration":1216,"src":"9625:6:10"},"referencedDeclaration":1216,"src":"9625:6:10","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":1706,"mutability":"mutable","name":"data","nameLocation":"9652:4:10","nodeType":"VariableDeclaration","scope":1741,"src":"9639:17:10","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1705,"name":"bytes","nodeType":"ElementaryTypeName","src":"9639:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"9624:33:10"},"returnParameters":{"id":1710,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1709,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1741,"src":"9675:4:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1708,"name":"bool","nodeType":"ElementaryTypeName","src":"9675:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9674:6:10"},"scope":1742,"src":"9592:480:10","stateMutability":"nonpayable","virtual":false,"visibility":"private"}],"scope":1743,"src":"698:9376:10","usedErrors":[1290,1299],"usedEvents":[]}],"src":"115:9960:10"},"id":10},"@openzeppelin/contracts/utils/Context.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","exportedSymbols":{"Context":[1772]},"id":1773,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1744,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:11"},{"abstract":true,"baseContracts":[],"canonicalName":"Context","contractDependencies":[],"contractKind":"contract","documentation":{"id":1745,"nodeType":"StructuredDocumentation","src":"127:496:11","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":1772,"linearizedBaseContracts":[1772],"name":"Context","nameLocation":"642:7:11","nodeType":"ContractDefinition","nodes":[{"body":{"id":1753,"nodeType":"Block","src":"718:34:11","statements":[{"expression":{"expression":{"id":1750,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"735:3:11","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1751,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"739:6:11","memberName":"sender","nodeType":"MemberAccess","src":"735:10:11","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":1749,"id":1752,"nodeType":"Return","src":"728:17:11"}]},"id":1754,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"665:10:11","nodeType":"FunctionDefinition","parameters":{"id":1746,"nodeType":"ParameterList","parameters":[],"src":"675:2:11"},"returnParameters":{"id":1749,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1748,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1754,"src":"709:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1747,"name":"address","nodeType":"ElementaryTypeName","src":"709:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"708:9:11"},"scope":1772,"src":"656:96:11","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":1762,"nodeType":"Block","src":"825:32:11","statements":[{"expression":{"expression":{"id":1759,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"842:3:11","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"846:4:11","memberName":"data","nodeType":"MemberAccess","src":"842:8:11","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":1758,"id":1761,"nodeType":"Return","src":"835:15:11"}]},"id":1763,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"767:8:11","nodeType":"FunctionDefinition","parameters":{"id":1755,"nodeType":"ParameterList","parameters":[],"src":"775:2:11"},"returnParameters":{"id":1758,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1757,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1763,"src":"809:14:11","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1756,"name":"bytes","nodeType":"ElementaryTypeName","src":"809:5:11","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"808:16:11"},"scope":1772,"src":"758:99:11","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":1770,"nodeType":"Block","src":"935:25:11","statements":[{"expression":{"hexValue":"30","id":1768,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"952:1:11","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":1767,"id":1769,"nodeType":"Return","src":"945:8:11"}]},"id":1771,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"872:20:11","nodeType":"FunctionDefinition","parameters":{"id":1764,"nodeType":"ParameterList","parameters":[],"src":"892:2:11"},"returnParameters":{"id":1767,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1766,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1771,"src":"926:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1765,"name":"uint256","nodeType":"ElementaryTypeName","src":"926:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"925:9:11"},"scope":1772,"src":"863:97:11","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":1773,"src":"624:338:11","usedErrors":[],"usedEvents":[]}],"src":"101:862:11"},"id":11},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","exportedSymbols":{"IERC165":[1784]},"id":1785,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1774,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"115:25:12"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC165","contractDependencies":[],"contractKind":"interface","documentation":{"id":1775,"nodeType":"StructuredDocumentation","src":"142:280:12","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":1784,"linearizedBaseContracts":[1784],"name":"IERC165","nameLocation":"433:7:12","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":1776,"nodeType":"StructuredDocumentation","src":"447:340:12","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":1783,"implemented":false,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"801:17:12","nodeType":"FunctionDefinition","parameters":{"id":1779,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1778,"mutability":"mutable","name":"interfaceId","nameLocation":"826:11:12","nodeType":"VariableDeclaration","scope":1783,"src":"819:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":1777,"name":"bytes4","nodeType":"ElementaryTypeName","src":"819:6:12","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"818:20:12"},"returnParameters":{"id":1782,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1781,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1783,"src":"862:4:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1780,"name":"bool","nodeType":"ElementaryTypeName","src":"862:4:12","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"861:6:12"},"scope":1784,"src":"792:76:12","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":1785,"src":"423:447:12","usedErrors":[],"usedEvents":[]}],"src":"115:756:12"},"id":12},"contracts/CunaFinanceBsc.sol":{"ast":{"absolutePath":"contracts/CunaFinanceBsc.sol","exportedSymbols":{"CunaFinanceBsc":[5452],"IERC1363":[478],"IERC20":[1216],"IERC20Permit":[1278],"Initializable":[267],"ReentrancyGuardUpgradeable":[396],"SafeERC20":[1742],"iPriceOracle":[1798]},"id":5453,"license":"MIT","nodeType":"SourceUnit","nodes":[{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","file":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","id":1786,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5453,"sourceUnit":1743,"src":"32:65:13","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","id":1787,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5453,"sourceUnit":1279,"src":"98:73:13","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.sol","id":1788,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5453,"sourceUnit":397,"src":"172:82:13","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","id":1789,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5453,"sourceUnit":268,"src":"255:75:13","symbolAliases":[],"unitAlias":""},{"id":1790,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"332:24:13"},{"abstract":false,"baseContracts":[],"canonicalName":"iPriceOracle","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":1798,"linearizedBaseContracts":[1798],"name":"iPriceOracle","nameLocation":"368:12:13","nodeType":"ContractDefinition","nodes":[{"functionSelector":"16345f18","id":1797,"implemented":false,"kind":"function","modifiers":[],"name":"getLatestPrice","nameLocation":"424:14:13","nodeType":"FunctionDefinition","parameters":{"id":1793,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1792,"mutability":"mutable","name":"token","nameLocation":"447:5:13","nodeType":"VariableDeclaration","scope":1797,"src":"439:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1791,"name":"address","nodeType":"ElementaryTypeName","src":"439:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"438:15:13"},"returnParameters":{"id":1796,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1795,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1797,"src":"477:7:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1794,"name":"uint256","nodeType":"ElementaryTypeName","src":"477:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"476:9:13"},"scope":1798,"src":"415:71:13","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":5453,"src":"358:130:13","usedErrors":[],"usedEvents":[]},{"abstract":false,"baseContracts":[{"baseName":{"id":1799,"name":"Initializable","nameLocations":["540:13:13"],"nodeType":"IdentifierPath","referencedDeclaration":267,"src":"540:13:13"},"id":1800,"nodeType":"InheritanceSpecifier","src":"540:13:13"},{"baseName":{"id":1801,"name":"ReentrancyGuardUpgradeable","nameLocations":["555:26:13"],"nodeType":"IdentifierPath","referencedDeclaration":396,"src":"555:26:13"},"id":1802,"nodeType":"InheritanceSpecifier","src":"555:26:13"}],"canonicalName":"CunaFinanceBsc","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":5452,"linearizedBaseContracts":[5452,396,267],"name":"CunaFinanceBsc","nameLocation":"522:14:13","nodeType":"ContractDefinition","nodes":[{"global":false,"id":1806,"libraryName":{"id":1803,"name":"SafeERC20","nameLocations":["594:9:13"],"nodeType":"IdentifierPath","referencedDeclaration":1742,"src":"594:9:13"},"nodeType":"UsingForDirective","src":"588:27:13","typeName":{"id":1805,"nodeType":"UserDefinedTypeName","pathNode":{"id":1804,"name":"IERC20","nameLocations":["608:6:13"],"nodeType":"IdentifierPath","referencedDeclaration":1216,"src":"608:6:13"},"referencedDeclaration":1216,"src":"608:6:13","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}}},{"canonicalName":"CunaFinanceBsc.Vesting","id":1827,"members":[{"constant":false,"id":1808,"mutability":"mutable","name":"amount","nameLocation":"688:6:13","nodeType":"VariableDeclaration","scope":1827,"src":"680:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1807,"name":"uint256","nodeType":"ElementaryTypeName","src":"680:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1810,"mutability":"mutable","name":"bonus","nameLocation":"712:5:13","nodeType":"VariableDeclaration","scope":1827,"src":"704:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1809,"name":"uint256","nodeType":"ElementaryTypeName","src":"704:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1812,"mutability":"mutable","name":"lockedUntil","nameLocation":"735:11:13","nodeType":"VariableDeclaration","scope":1827,"src":"727:19:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1811,"name":"uint256","nodeType":"ElementaryTypeName","src":"727:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1814,"mutability":"mutable","name":"claimedAmount","nameLocation":"764:13:13","nodeType":"VariableDeclaration","scope":1827,"src":"756:21:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1813,"name":"uint256","nodeType":"ElementaryTypeName","src":"756:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1816,"mutability":"mutable","name":"claimedBonus","nameLocation":"795:12:13","nodeType":"VariableDeclaration","scope":1827,"src":"787:20:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1815,"name":"uint256","nodeType":"ElementaryTypeName","src":"787:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1818,"mutability":"mutable","name":"lastClaimed","nameLocation":"825:11:13","nodeType":"VariableDeclaration","scope":1827,"src":"817:19:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1817,"name":"uint256","nodeType":"ElementaryTypeName","src":"817:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1820,"mutability":"mutable","name":"createdAt","nameLocation":"854:9:13","nodeType":"VariableDeclaration","scope":1827,"src":"846:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1819,"name":"uint256","nodeType":"ElementaryTypeName","src":"846:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1822,"mutability":"mutable","name":"token","nameLocation":"881:5:13","nodeType":"VariableDeclaration","scope":1827,"src":"873:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1821,"name":"address","nodeType":"ElementaryTypeName","src":"873:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1824,"mutability":"mutable","name":"complete","nameLocation":"901:8:13","nodeType":"VariableDeclaration","scope":1827,"src":"896:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1823,"name":"bool","nodeType":"ElementaryTypeName","src":"896:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":1826,"mutability":"mutable","name":"usdAmount","nameLocation":"927:9:13","nodeType":"VariableDeclaration","scope":1827,"src":"919:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1825,"name":"uint256","nodeType":"ElementaryTypeName","src":"919:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Vesting","nameLocation":"662:7:13","nodeType":"StructDefinition","scope":5452,"src":"655:288:13","visibility":"public"},{"canonicalName":"CunaFinanceBsc.UnlockStep","id":1832,"members":[{"constant":false,"id":1829,"mutability":"mutable","name":"timeOffset","nameLocation":"985:10:13","nodeType":"VariableDeclaration","scope":1832,"src":"977:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1828,"name":"uint256","nodeType":"ElementaryTypeName","src":"977:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1831,"mutability":"mutable","name":"percentage","nameLocation":"1013:10:13","nodeType":"VariableDeclaration","scope":1832,"src":"1005:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1830,"name":"uint256","nodeType":"ElementaryTypeName","src":"1005:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"UnlockStep","nameLocation":"956:10:13","nodeType":"StructDefinition","scope":5452,"src":"949:81:13","visibility":"public"},{"canonicalName":"CunaFinanceBsc.WithdrawVesting","id":1841,"members":[{"constant":false,"id":1834,"mutability":"mutable","name":"vestingId","nameLocation":"1077:9:13","nodeType":"VariableDeclaration","scope":1841,"src":"1069:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1833,"name":"uint256","nodeType":"ElementaryTypeName","src":"1069:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1836,"mutability":"mutable","name":"amount","nameLocation":"1104:6:13","nodeType":"VariableDeclaration","scope":1841,"src":"1096:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1835,"name":"uint256","nodeType":"ElementaryTypeName","src":"1096:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1838,"mutability":"mutable","name":"unlockTime","nameLocation":"1128:10:13","nodeType":"VariableDeclaration","scope":1841,"src":"1120:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1837,"name":"uint256","nodeType":"ElementaryTypeName","src":"1120:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1840,"mutability":"mutable","name":"token","nameLocation":"1156:5:13","nodeType":"VariableDeclaration","scope":1841,"src":"1148:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1839,"name":"address","nodeType":"ElementaryTypeName","src":"1148:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"name":"WithdrawVesting","nameLocation":"1043:15:13","nodeType":"StructDefinition","scope":5452,"src":"1036:132:13","visibility":"public"},{"canonicalName":"CunaFinanceBsc.Epoch","id":1852,"members":[{"constant":false,"id":1843,"mutability":"mutable","name":"estDaysRemaining","nameLocation":"1243:16:13","nodeType":"VariableDeclaration","scope":1852,"src":"1235:24:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1842,"name":"uint256","nodeType":"ElementaryTypeName","src":"1235:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1845,"mutability":"mutable","name":"currentTreasuryTvl","nameLocation":"1277:18:13","nodeType":"VariableDeclaration","scope":1852,"src":"1269:26:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1844,"name":"uint256","nodeType":"ElementaryTypeName","src":"1269:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1847,"mutability":"mutable","name":"totalLiability","nameLocation":"1313:14:13","nodeType":"VariableDeclaration","scope":1852,"src":"1305:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1846,"name":"uint256","nodeType":"ElementaryTypeName","src":"1305:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1849,"mutability":"mutable","name":"unlockPercentage","nameLocation":"1395:16:13","nodeType":"VariableDeclaration","scope":1852,"src":"1387:24:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1848,"name":"uint256","nodeType":"ElementaryTypeName","src":"1387:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1851,"mutability":"mutable","name":"timestamp","nameLocation":"1484:9:13","nodeType":"VariableDeclaration","scope":1852,"src":"1476:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1850,"name":"uint256","nodeType":"ElementaryTypeName","src":"1476:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Epoch","nameLocation":"1219:5:13","nodeType":"StructDefinition","scope":5452,"src":"1212:325:13","visibility":"public"},{"canonicalName":"CunaFinanceBsc.WithdrawStake","id":1859,"members":[{"constant":false,"id":1854,"mutability":"mutable","name":"stakeId","nameLocation":"1582:7:13","nodeType":"VariableDeclaration","scope":1859,"src":"1574:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1853,"name":"uint256","nodeType":"ElementaryTypeName","src":"1574:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1856,"mutability":"mutable","name":"amount","nameLocation":"1607:6:13","nodeType":"VariableDeclaration","scope":1859,"src":"1599:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1855,"name":"uint256","nodeType":"ElementaryTypeName","src":"1599:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1858,"mutability":"mutable","name":"unlockTime","nameLocation":"1631:10:13","nodeType":"VariableDeclaration","scope":1859,"src":"1623:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1857,"name":"uint256","nodeType":"ElementaryTypeName","src":"1623:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"WithdrawStake","nameLocation":"1550:13:13","nodeType":"StructDefinition","scope":5452,"src":"1543:105:13","visibility":"public"},{"canonicalName":"CunaFinanceBsc.SellStake","id":1868,"members":[{"constant":false,"id":1861,"mutability":"mutable","name":"value","nameLocation":"1689:5:13","nodeType":"VariableDeclaration","scope":1868,"src":"1681:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1860,"name":"uint256","nodeType":"ElementaryTypeName","src":"1681:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1863,"mutability":"mutable","name":"salePrice","nameLocation":"1753:9:13","nodeType":"VariableDeclaration","scope":1868,"src":"1745:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1862,"name":"uint256","nodeType":"ElementaryTypeName","src":"1745:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1865,"mutability":"mutable","name":"seller","nameLocation":"1822:6:13","nodeType":"VariableDeclaration","scope":1868,"src":"1814:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1864,"name":"address","nodeType":"ElementaryTypeName","src":"1814:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1867,"mutability":"mutable","name":"listTime","nameLocation":"1885:8:13","nodeType":"VariableDeclaration","scope":1868,"src":"1877:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1866,"name":"uint256","nodeType":"ElementaryTypeName","src":"1877:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"SellStake","nameLocation":"1661:9:13","nodeType":"StructDefinition","scope":5452,"src":"1654:285:13","visibility":"public"},{"canonicalName":"CunaFinanceBsc.SellStakeKey","id":1873,"members":[{"constant":false,"id":1870,"mutability":"mutable","name":"seller","nameLocation":"1983:6:13","nodeType":"VariableDeclaration","scope":1873,"src":"1975:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1869,"name":"address","nodeType":"ElementaryTypeName","src":"1975:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1872,"mutability":"mutable","name":"stakeId","nameLocation":"2007:7:13","nodeType":"VariableDeclaration","scope":1873,"src":"1999:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1871,"name":"uint256","nodeType":"ElementaryTypeName","src":"1999:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"SellStakeKey","nameLocation":"1952:12:13","nodeType":"StructDefinition","scope":5452,"src":"1945:119:13","visibility":"public"},{"canonicalName":"CunaFinanceBsc.MarketplaceHistory","id":1886,"members":[{"constant":false,"id":1875,"mutability":"mutable","name":"listTime","nameLocation":"2118:8:13","nodeType":"VariableDeclaration","scope":1886,"src":"2110:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1874,"name":"uint256","nodeType":"ElementaryTypeName","src":"2110:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1877,"mutability":"mutable","name":"saleTime","nameLocation":"2190:8:13","nodeType":"VariableDeclaration","scope":1886,"src":"2182:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1876,"name":"uint256","nodeType":"ElementaryTypeName","src":"2182:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1879,"mutability":"mutable","name":"origValue","nameLocation":"2249:9:13","nodeType":"VariableDeclaration","scope":1886,"src":"2241:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1878,"name":"uint256","nodeType":"ElementaryTypeName","src":"2241:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1881,"mutability":"mutable","name":"saleValue","nameLocation":"2310:9:13","nodeType":"VariableDeclaration","scope":1886,"src":"2302:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1880,"name":"uint256","nodeType":"ElementaryTypeName","src":"2302:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1883,"mutability":"mutable","name":"seller","nameLocation":"2366:6:13","nodeType":"VariableDeclaration","scope":1886,"src":"2358:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1882,"name":"address","nodeType":"ElementaryTypeName","src":"2358:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1885,"mutability":"mutable","name":"buyer","nameLocation":"2417:5:13","nodeType":"VariableDeclaration","scope":1886,"src":"2409:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1884,"name":"address","nodeType":"ElementaryTypeName","src":"2409:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"name":"MarketplaceHistory","nameLocation":"2081:18:13","nodeType":"StructDefinition","scope":5452,"src":"2074:385:13","visibility":"public"},{"constant":false,"functionSelector":"8da5cb5b","id":1888,"mutability":"mutable","name":"owner","nameLocation":"2506:5:13","nodeType":"VariableDeclaration","scope":5452,"src":"2491:20:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1887,"name":"address","nodeType":"ElementaryTypeName","src":"2491:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"public"},{"constant":false,"functionSelector":"022914a7","id":1892,"mutability":"mutable","name":"owners","nameLocation":"2549:6:13","nodeType":"VariableDeclaration","scope":5452,"src":"2517:38:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":1891,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1889,"name":"address","nodeType":"ElementaryTypeName","src":"2525:7:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2517:24:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1890,"name":"bool","nodeType":"ElementaryTypeName","src":"2536:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"public"},{"constant":false,"functionSelector":"3ba8396e","id":1896,"mutability":"mutable","name":"authorizedBots","nameLocation":"2593:14:13","nodeType":"VariableDeclaration","scope":5452,"src":"2561:46:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":1895,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1893,"name":"address","nodeType":"ElementaryTypeName","src":"2569:7:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2561:24:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1894,"name":"bool","nodeType":"ElementaryTypeName","src":"2580:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"public"},{"constant":false,"functionSelector":"bd84477d","id":1902,"mutability":"mutable","name":"vestings","nameLocation":"2650:8:13","nodeType":"VariableDeclaration","scope":5452,"src":"2613:45:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting[])"},"typeName":{"id":1901,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1897,"name":"address","nodeType":"ElementaryTypeName","src":"2621:7:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2613:29:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting[])"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"baseType":{"id":1899,"nodeType":"UserDefinedTypeName","pathNode":{"id":1898,"name":"Vesting","nameLocations":["2632:7:13"],"nodeType":"IdentifierPath","referencedDeclaration":1827,"src":"2632:7:13"},"referencedDeclaration":1827,"src":"2632:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"}},"id":1900,"nodeType":"ArrayTypeName","src":"2632:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting[]"}}},"visibility":"public"},{"constant":false,"functionSelector":"51f6cf2f","id":1908,"mutability":"mutable","name":"unlockSchedules","nameLocation":"2704:15:13","nodeType":"VariableDeclaration","scope":5452,"src":"2664:55:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_UnlockStep_$1832_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.UnlockStep[])"},"typeName":{"id":1907,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1903,"name":"address","nodeType":"ElementaryTypeName","src":"2672:7:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2664:32:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_UnlockStep_$1832_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.UnlockStep[])"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"baseType":{"id":1905,"nodeType":"UserDefinedTypeName","pathNode":{"id":1904,"name":"UnlockStep","nameLocations":["2683:10:13"],"nodeType":"IdentifierPath","referencedDeclaration":1832,"src":"2683:10:13"},"referencedDeclaration":1832,"src":"2683:10:13","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1832_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep"}},"id":1906,"nodeType":"ArrayTypeName","src":"2683:12:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UnlockStep_$1832_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep[]"}}},"visibility":"public"},{"constant":false,"functionSelector":"01374518","id":1912,"mutability":"mutable","name":"priceOracles","nameLocation":"2760:12:13","nodeType":"VariableDeclaration","scope":5452,"src":"2725:47:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"typeName":{"id":1911,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1909,"name":"address","nodeType":"ElementaryTypeName","src":"2733:7:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2725:27:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1910,"name":"address","nodeType":"ElementaryTypeName","src":"2744:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},"visibility":"public"},{"constant":false,"functionSelector":"592d1dd1","id":1916,"mutability":"mutable","name":"dollarsVested","nameLocation":"2813:13:13","nodeType":"VariableDeclaration","scope":5452,"src":"2778:48:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1915,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1913,"name":"address","nodeType":"ElementaryTypeName","src":"2786:7:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2778:27:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1914,"name":"uint256","nodeType":"ElementaryTypeName","src":"2797:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"public"},{"constant":false,"functionSelector":"092c7610","id":1920,"mutability":"mutable","name":"vestedTotal","nameLocation":"2887:11:13","nodeType":"VariableDeclaration","scope":5452,"src":"2852:46:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1919,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1917,"name":"address","nodeType":"ElementaryTypeName","src":"2860:7:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2852:27:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1918,"name":"uint256","nodeType":"ElementaryTypeName","src":"2871:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"public"},{"constant":false,"functionSelector":"1ada70a8","id":1922,"mutability":"mutable","name":"lockupDuration","nameLocation":"2940:14:13","nodeType":"VariableDeclaration","scope":5452,"src":"2925:29:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1921,"name":"uint256","nodeType":"ElementaryTypeName","src":"2925:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"0519da32","id":1924,"mutability":"mutable","name":"unlockDelay","nameLocation":"2975:11:13","nodeType":"VariableDeclaration","scope":5452,"src":"2960:26:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1923,"name":"uint256","nodeType":"ElementaryTypeName","src":"2960:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":true,"id":1927,"mutability":"constant","name":"BONUS_PERCENTAGE","nameLocation":"3017:16:13","nodeType":"VariableDeclaration","scope":5452,"src":"2992:46:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1925,"name":"uint256","nodeType":"ElementaryTypeName","src":"2992:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"3130","id":1926,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3036:2:13","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"visibility":"private"},{"constant":true,"id":1930,"mutability":"constant","name":"BSC_TOKEN","nameLocation":"3147:9:13","nodeType":"VariableDeclaration","scope":5452,"src":"3122:79:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1928,"name":"address","nodeType":"ElementaryTypeName","src":"3122:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"value":{"hexValue":"307835356433393833323666393930353966463737353438353234363939393032374233313937393535","id":1929,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3159:42:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"value":"0x55d398326f99059fF775485246999027B3197955"},"visibility":"private"},{"constant":false,"id":1936,"mutability":"mutable","name":"withdrawVestingActual","nameLocation":"3258:21:13","nodeType":"VariableDeclaration","scope":5452,"src":"3212:67:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawVesting_$1841_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawVesting[])"},"typeName":{"id":1935,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1931,"name":"address","nodeType":"ElementaryTypeName","src":"3220:7:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"3212:37:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawVesting_$1841_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawVesting[])"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"baseType":{"id":1933,"nodeType":"UserDefinedTypeName","pathNode":{"id":1932,"name":"WithdrawVesting","nameLocations":["3231:15:13"],"nodeType":"IdentifierPath","referencedDeclaration":1841,"src":"3231:15:13"},"referencedDeclaration":1841,"src":"3231:15:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawVesting_$1841_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting"}},"id":1934,"nodeType":"ArrayTypeName","src":"3231:17:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1841_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting[]"}}},"visibility":"private"},{"constant":false,"id":1938,"mutability":"mutable","name":"withdrawVestingCounterActual","nameLocation":"3301:28:13","nodeType":"VariableDeclaration","scope":5452,"src":"3285:44:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1937,"name":"uint256","nodeType":"ElementaryTypeName","src":"3285:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":1940,"mutability":"mutable","name":"stakeIdCounter","nameLocation":"3351:14:13","nodeType":"VariableDeclaration","scope":5452,"src":"3335:30:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1939,"name":"uint256","nodeType":"ElementaryTypeName","src":"3335:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"functionSelector":"87b4b105","id":1944,"mutability":"mutable","name":"withdrawVestingLiabilities","nameLocation":"3476:26:13","nodeType":"VariableDeclaration","scope":5452,"src":"3441:61:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1943,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1941,"name":"address","nodeType":"ElementaryTypeName","src":"3449:7:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"3441:27:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1942,"name":"uint256","nodeType":"ElementaryTypeName","src":"3460:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"public"},{"constant":false,"functionSelector":"c6b61e4c","id":1949,"mutability":"mutable","name":"epochs","nameLocation":"3579:6:13","nodeType":"VariableDeclaration","scope":5452,"src":"3546:39:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Epoch_$1852_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.Epoch)"},"typeName":{"id":1948,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1945,"name":"uint256","nodeType":"ElementaryTypeName","src":"3554:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"3546:25:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Epoch_$1852_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.Epoch)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1947,"nodeType":"UserDefinedTypeName","pathNode":{"id":1946,"name":"Epoch","nameLocations":["3565:5:13"],"nodeType":"IdentifierPath","referencedDeclaration":1852,"src":"3565:5:13"},"referencedDeclaration":1852,"src":"3565:5:13","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1852_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch"}}},"visibility":"public"},{"constant":false,"functionSelector":"13baee5b","id":1953,"mutability":"mutable","name":"userBigStake","nameLocation":"3626:12:13","nodeType":"VariableDeclaration","scope":5452,"src":"3591:47:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1952,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1950,"name":"address","nodeType":"ElementaryTypeName","src":"3599:7:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"3591:27:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1951,"name":"uint256","nodeType":"ElementaryTypeName","src":"3610:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"public"},{"constant":false,"functionSelector":"da1b4364","id":1957,"mutability":"mutable","name":"userLastClaimedEpoch","nameLocation":"3717:20:13","nodeType":"VariableDeclaration","scope":5452,"src":"3682:55:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1956,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1954,"name":"address","nodeType":"ElementaryTypeName","src":"3690:7:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"3682:27:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1955,"name":"uint256","nodeType":"ElementaryTypeName","src":"3701:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"public"},{"constant":false,"functionSelector":"cc573a91","id":1963,"mutability":"mutable","name":"withdrawStakes","nameLocation":"3820:14:13","nodeType":"VariableDeclaration","scope":5452,"src":"3777:57:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawStake[])"},"typeName":{"id":1962,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1958,"name":"address","nodeType":"ElementaryTypeName","src":"3785:7:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"3777:35:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawStake[])"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"baseType":{"id":1960,"nodeType":"UserDefinedTypeName","pathNode":{"id":1959,"name":"WithdrawStake","nameLocations":["3796:13:13"],"nodeType":"IdentifierPath","referencedDeclaration":1859,"src":"3796:13:13"},"referencedDeclaration":1859,"src":"3796:13:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1859_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake"}},"id":1961,"nodeType":"ArrayTypeName","src":"3796:15:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake[]"}}},"visibility":"public"},{"constant":false,"functionSelector":"eacdc5ff","id":1965,"mutability":"mutable","name":"currentEpochId","nameLocation":"3885:14:13","nodeType":"VariableDeclaration","scope":5452,"src":"3870:29:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1964,"name":"uint256","nodeType":"ElementaryTypeName","src":"3870:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"2ded58aa","id":1967,"mutability":"mutable","name":"totalBigStakes","nameLocation":"3920:14:13","nodeType":"VariableDeclaration","scope":5452,"src":"3905:29:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1966,"name":"uint256","nodeType":"ElementaryTypeName","src":"3905:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"0a910a6d","id":1969,"mutability":"mutable","name":"instantBuyoutPercent","nameLocation":"4004:20:13","nodeType":"VariableDeclaration","scope":5452,"src":"3989:35:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1968,"name":"uint256","nodeType":"ElementaryTypeName","src":"3989:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"43a32f89","id":1976,"mutability":"mutable","name":"sellStakes","nameLocation":"4172:10:13","nodeType":"VariableDeclaration","scope":5452,"src":"4115:67:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_SellStake_$1868_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct CunaFinanceBsc.SellStake))"},"typeName":{"id":1975,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1970,"name":"address","nodeType":"ElementaryTypeName","src":"4123:7:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"4115:49:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_SellStake_$1868_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct CunaFinanceBsc.SellStake))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1974,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1971,"name":"uint256","nodeType":"ElementaryTypeName","src":"4142:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"4134:29:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_SellStake_$1868_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.SellStake)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1973,"nodeType":"UserDefinedTypeName","pathNode":{"id":1972,"name":"SellStake","nameLocations":["4153:9:13"],"nodeType":"IdentifierPath","referencedDeclaration":1868,"src":"4153:9:13"},"referencedDeclaration":1868,"src":"4153:9:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake"}}}},"visibility":"public"},{"constant":false,"functionSelector":"fe2f50d0","id":1978,"mutability":"mutable","name":"marketplaceMin","nameLocation":"4238:14:13","nodeType":"VariableDeclaration","scope":5452,"src":"4223:29:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1977,"name":"uint256","nodeType":"ElementaryTypeName","src":"4223:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"6ef569a5","id":1980,"mutability":"mutable","name":"cancellationFee","nameLocation":"4340:15:13","nodeType":"VariableDeclaration","scope":5452,"src":"4325:30:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1979,"name":"uint256","nodeType":"ElementaryTypeName","src":"4325:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"8f82818f","id":1984,"mutability":"mutable","name":"marketplace_sales","nameLocation":"4459:17:13","nodeType":"VariableDeclaration","scope":5452,"src":"4424:52:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1983,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1981,"name":"address","nodeType":"ElementaryTypeName","src":"4432:7:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"4424:27:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1982,"name":"uint256","nodeType":"ElementaryTypeName","src":"4443:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"public"},{"constant":false,"functionSelector":"441a4175","id":1988,"mutability":"mutable","name":"sellStakeKeys","nameLocation":"4534:13:13","nodeType":"VariableDeclaration","scope":5452,"src":"4512:35:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1873_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey[]"},"typeName":{"baseType":{"id":1986,"nodeType":"UserDefinedTypeName","pathNode":{"id":1985,"name":"SellStakeKey","nameLocations":["4512:12:13"],"nodeType":"IdentifierPath","referencedDeclaration":1873,"src":"4512:12:13"},"referencedDeclaration":1873,"src":"4512:12:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_storage_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey"}},"id":1987,"nodeType":"ArrayTypeName","src":"4512:14:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1873_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey[]"}},"visibility":"public"},{"constant":false,"id":1994,"mutability":"mutable","name":"sellStakeKeyIndex","nameLocation":"4656:17:13","nodeType":"VariableDeclaration","scope":5452,"src":"4600:73:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"},"typeName":{"id":1993,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1989,"name":"address","nodeType":"ElementaryTypeName","src":"4608:7:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"4600:47:13","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":1992,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1990,"name":"uint256","nodeType":"ElementaryTypeName","src":"4627:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"4619:27:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1991,"name":"uint256","nodeType":"ElementaryTypeName","src":"4638:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"private"},{"constant":false,"functionSelector":"9f3a676c","id":1998,"mutability":"mutable","name":"marketplaceHistory","nameLocation":"4739:18:13","nodeType":"VariableDeclaration","scope":5452,"src":"4711:46:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1886_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.MarketplaceHistory[]"},"typeName":{"baseType":{"id":1996,"nodeType":"UserDefinedTypeName","pathNode":{"id":1995,"name":"MarketplaceHistory","nameLocations":["4711:18:13"],"nodeType":"IdentifierPath","referencedDeclaration":1886,"src":"4711:18:13"},"referencedDeclaration":1886,"src":"4711:18:13","typeDescriptions":{"typeIdentifier":"t_struct$_MarketplaceHistory_$1886_storage_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory"}},"id":1997,"nodeType":"ArrayTypeName","src":"4711:20:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1886_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory[]"}},"visibility":"public"},{"anonymous":false,"eventSelector":"9ade76f4385de306666dfb21a52b27d52db0fde8ad0f515fa261f532cac60d21","id":2006,"name":"VestingCreated","nameLocation":"4824:14:13","nodeType":"EventDefinition","parameters":{"id":2005,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2000,"indexed":true,"mutability":"mutable","name":"user","nameLocation":"4855:4:13","nodeType":"VariableDeclaration","scope":2006,"src":"4839:20:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1999,"name":"address","nodeType":"ElementaryTypeName","src":"4839:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2002,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"4869:6:13","nodeType":"VariableDeclaration","scope":2006,"src":"4861:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2001,"name":"uint256","nodeType":"ElementaryTypeName","src":"4861:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2004,"indexed":false,"mutability":"mutable","name":"bonus","nameLocation":"4885:5:13","nodeType":"VariableDeclaration","scope":2006,"src":"4877:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2003,"name":"uint256","nodeType":"ElementaryTypeName","src":"4877:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4838:53:13"},"src":"4818:74:13"},{"anonymous":false,"eventSelector":"4a94c2c356e29a6583071e731bdacf2ca56565ba5efebcff6936eb7923b51721","id":2014,"name":"VestingClaimed","nameLocation":"4903:14:13","nodeType":"EventDefinition","parameters":{"id":2013,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2008,"indexed":true,"mutability":"mutable","name":"user","nameLocation":"4934:4:13","nodeType":"VariableDeclaration","scope":2014,"src":"4918:20:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2007,"name":"address","nodeType":"ElementaryTypeName","src":"4918:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2010,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"4948:6:13","nodeType":"VariableDeclaration","scope":2014,"src":"4940:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2009,"name":"uint256","nodeType":"ElementaryTypeName","src":"4940:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2012,"indexed":false,"mutability":"mutable","name":"bonus","nameLocation":"4964:5:13","nodeType":"VariableDeclaration","scope":2014,"src":"4956:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2011,"name":"uint256","nodeType":"ElementaryTypeName","src":"4956:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4917:53:13"},"src":"4897:74:13"},{"anonymous":false,"eventSelector":"4e69fdc49495bcab2b4375781457ba16653a90eb4ffb6588351bdc39071433e2","id":2020,"name":"BonusClaimed","nameLocation":"4982:12:13","nodeType":"EventDefinition","parameters":{"id":2019,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2016,"indexed":true,"mutability":"mutable","name":"user","nameLocation":"5011:4:13","nodeType":"VariableDeclaration","scope":2020,"src":"4995:20:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2015,"name":"address","nodeType":"ElementaryTypeName","src":"4995:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2018,"indexed":false,"mutability":"mutable","name":"bonus","nameLocation":"5025:5:13","nodeType":"VariableDeclaration","scope":2020,"src":"5017:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2017,"name":"uint256","nodeType":"ElementaryTypeName","src":"5017:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4994:37:13"},"src":"4976:56:13"},{"anonymous":false,"eventSelector":"de4b6ccc38b84f88129403b65a309f9b1c41d4c316bc2118d7614e449b9d4c45","id":2024,"name":"UnlockScheduleSet","nameLocation":"5043:17:13","nodeType":"EventDefinition","parameters":{"id":2023,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2022,"indexed":true,"mutability":"mutable","name":"token","nameLocation":"5077:5:13","nodeType":"VariableDeclaration","scope":2024,"src":"5061:21:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2021,"name":"address","nodeType":"ElementaryTypeName","src":"5061:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5060:23:13"},"src":"5037:47:13"},{"anonymous":false,"eventSelector":"a92ff919b850e4909ab2261d907ef955f11bc1716733a6cbece38d163a69af8a","id":2032,"name":"FundsWithdrawn","nameLocation":"5095:14:13","nodeType":"EventDefinition","parameters":{"id":2031,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2026,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"5126:5:13","nodeType":"VariableDeclaration","scope":2032,"src":"5110:21:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2025,"name":"address","nodeType":"ElementaryTypeName","src":"5110:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2028,"indexed":true,"mutability":"mutable","name":"token","nameLocation":"5149:5:13","nodeType":"VariableDeclaration","scope":2032,"src":"5133:21:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2027,"name":"address","nodeType":"ElementaryTypeName","src":"5133:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2030,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"5164:6:13","nodeType":"VariableDeclaration","scope":2032,"src":"5156:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2029,"name":"uint256","nodeType":"ElementaryTypeName","src":"5156:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5109:62:13"},"src":"5089:83:13"},{"anonymous":false,"eventSelector":"eadbedb993dfca23e4c79bf4fa5fe531c2e0e926258fabb8445e8bc5c472780f","id":2042,"name":"EpochEnded","nameLocation":"5216:10:13","nodeType":"EventDefinition","parameters":{"id":2041,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2034,"indexed":true,"mutability":"mutable","name":"epochId","nameLocation":"5243:7:13","nodeType":"VariableDeclaration","scope":2042,"src":"5227:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2033,"name":"uint256","nodeType":"ElementaryTypeName","src":"5227:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2036,"indexed":false,"mutability":"mutable","name":"treasuryTvl","nameLocation":"5260:11:13","nodeType":"VariableDeclaration","scope":2042,"src":"5252:19:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2035,"name":"uint256","nodeType":"ElementaryTypeName","src":"5252:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2038,"indexed":false,"mutability":"mutable","name":"unlockPercentage","nameLocation":"5281:16:13","nodeType":"VariableDeclaration","scope":2042,"src":"5273:24:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2037,"name":"uint256","nodeType":"ElementaryTypeName","src":"5273:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2040,"indexed":false,"mutability":"mutable","name":"paybackPercent","nameLocation":"5307:14:13","nodeType":"VariableDeclaration","scope":2042,"src":"5299:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2039,"name":"uint256","nodeType":"ElementaryTypeName","src":"5299:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5226:96:13"},"src":"5210:113:13"},{"anonymous":false,"eventSelector":"ec7e3594982826a1f90c8fc76513357b83a691b7f4e38b8be04f3d40f9b15839","id":2048,"name":"StakeCreated","nameLocation":"5334:12:13","nodeType":"EventDefinition","parameters":{"id":2047,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2044,"indexed":true,"mutability":"mutable","name":"user","nameLocation":"5363:4:13","nodeType":"VariableDeclaration","scope":2048,"src":"5347:20:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2043,"name":"address","nodeType":"ElementaryTypeName","src":"5347:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2046,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"5377:6:13","nodeType":"VariableDeclaration","scope":2048,"src":"5369:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2045,"name":"uint256","nodeType":"ElementaryTypeName","src":"5369:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5346:38:13"},"src":"5328:57:13"},{"anonymous":false,"eventSelector":"a65a8b4f7f65a1063243d7f7e9e4da00ff767599acf21549ef2548a45d1695ae","id":2054,"name":"FundsClaimed","nameLocation":"5396:12:13","nodeType":"EventDefinition","parameters":{"id":2053,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2050,"indexed":true,"mutability":"mutable","name":"user","nameLocation":"5425:4:13","nodeType":"VariableDeclaration","scope":2054,"src":"5409:20:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2049,"name":"address","nodeType":"ElementaryTypeName","src":"5409:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2052,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"5439:6:13","nodeType":"VariableDeclaration","scope":2054,"src":"5431:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2051,"name":"uint256","nodeType":"ElementaryTypeName","src":"5431:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5408:38:13"},"src":"5390:57:13"},{"anonymous":false,"eventSelector":"933735aa8de6d7547d0126171b2f31b9c34dd00f3ecd4be85a0ba047db4fafef","id":2062,"name":"StakeWithdrawn","nameLocation":"5458:14:13","nodeType":"EventDefinition","parameters":{"id":2061,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2056,"indexed":true,"mutability":"mutable","name":"user","nameLocation":"5489:4:13","nodeType":"VariableDeclaration","scope":2062,"src":"5473:20:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2055,"name":"address","nodeType":"ElementaryTypeName","src":"5473:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2058,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"5503:6:13","nodeType":"VariableDeclaration","scope":2062,"src":"5495:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2057,"name":"uint256","nodeType":"ElementaryTypeName","src":"5495:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2060,"indexed":false,"mutability":"mutable","name":"stakeId","nameLocation":"5519:7:13","nodeType":"VariableDeclaration","scope":2062,"src":"5511:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2059,"name":"uint256","nodeType":"ElementaryTypeName","src":"5511:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5472:55:13"},"src":"5452:76:13"},{"anonymous":false,"eventSelector":"8e79b7ba8dab5ebfa59b9c6af1743c3ef14863680b3cc5ac837f8d636f76031c","id":2070,"name":"StakeUpForSale","nameLocation":"5570:14:13","nodeType":"EventDefinition","parameters":{"id":2069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2064,"indexed":true,"mutability":"mutable","name":"seller","nameLocation":"5601:6:13","nodeType":"VariableDeclaration","scope":2070,"src":"5585:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2063,"name":"address","nodeType":"ElementaryTypeName","src":"5585:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2066,"indexed":false,"mutability":"mutable","name":"saleAmount","nameLocation":"5617:10:13","nodeType":"VariableDeclaration","scope":2070,"src":"5609:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2065,"name":"uint256","nodeType":"ElementaryTypeName","src":"5609:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2068,"indexed":false,"mutability":"mutable","name":"stakeId","nameLocation":"5637:7:13","nodeType":"VariableDeclaration","scope":2070,"src":"5629:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2067,"name":"uint256","nodeType":"ElementaryTypeName","src":"5629:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5584:61:13"},"src":"5564:82:13"},{"anonymous":false,"eventSelector":"73d12dec3eb3b445b6c9feb2fd559ba7c852c525bc1e59d8f7ff760c55df041d","id":2076,"name":"StakeSaleCancelled","nameLocation":"5657:18:13","nodeType":"EventDefinition","parameters":{"id":2075,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2072,"indexed":true,"mutability":"mutable","name":"seller","nameLocation":"5692:6:13","nodeType":"VariableDeclaration","scope":2076,"src":"5676:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2071,"name":"address","nodeType":"ElementaryTypeName","src":"5676:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2074,"indexed":false,"mutability":"mutable","name":"stakeId","nameLocation":"5708:7:13","nodeType":"VariableDeclaration","scope":2076,"src":"5700:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2073,"name":"uint256","nodeType":"ElementaryTypeName","src":"5700:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5675:41:13"},"src":"5651:66:13"},{"anonymous":false,"eventSelector":"7bb39d095b04a9986ed34adf14d74c33294d0a9e807f02bf634d532507422eba","id":2086,"name":"StakeSold","nameLocation":"5728:9:13","nodeType":"EventDefinition","parameters":{"id":2085,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2078,"indexed":true,"mutability":"mutable","name":"seller","nameLocation":"5754:6:13","nodeType":"VariableDeclaration","scope":2086,"src":"5738:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2077,"name":"address","nodeType":"ElementaryTypeName","src":"5738:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2080,"indexed":true,"mutability":"mutable","name":"buyer","nameLocation":"5778:5:13","nodeType":"VariableDeclaration","scope":2086,"src":"5762:21:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2079,"name":"address","nodeType":"ElementaryTypeName","src":"5762:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2082,"indexed":false,"mutability":"mutable","name":"saleAmount","nameLocation":"5793:10:13","nodeType":"VariableDeclaration","scope":2086,"src":"5785:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2081,"name":"uint256","nodeType":"ElementaryTypeName","src":"5785:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2084,"indexed":false,"mutability":"mutable","name":"stakeId","nameLocation":"5813:7:13","nodeType":"VariableDeclaration","scope":2086,"src":"5805:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2083,"name":"uint256","nodeType":"ElementaryTypeName","src":"5805:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5737:84:13"},"src":"5722:100:13"},{"anonymous":false,"eventSelector":"4725a4d4de9bff212d0885095e27515072f73f427df55e52f37f241321ef88f9","id":2094,"name":"CancellationFeePaid","nameLocation":"5833:19:13","nodeType":"EventDefinition","parameters":{"id":2093,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2088,"indexed":true,"mutability":"mutable","name":"seller","nameLocation":"5869:6:13","nodeType":"VariableDeclaration","scope":2094,"src":"5853:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2087,"name":"address","nodeType":"ElementaryTypeName","src":"5853:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2090,"indexed":false,"mutability":"mutable","name":"fee","nameLocation":"5885:3:13","nodeType":"VariableDeclaration","scope":2094,"src":"5877:11:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2089,"name":"uint256","nodeType":"ElementaryTypeName","src":"5877:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2092,"indexed":false,"mutability":"mutable","name":"stakeId","nameLocation":"5898:7:13","nodeType":"VariableDeclaration","scope":2094,"src":"5890:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2091,"name":"uint256","nodeType":"ElementaryTypeName","src":"5890:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5852:54:13"},"src":"5827:80:13"},{"body":{"id":2105,"nodeType":"Block","src":"5951:73:13","statements":[{"expression":{"arguments":[{"baseExpression":{"id":2097,"name":"owners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1892,"src":"5969:6:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":2100,"indexExpression":{"expression":{"id":2098,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"5976:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2099,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5980:6:13","memberName":"sender","nodeType":"MemberAccess","src":"5976:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5969:18:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f7420617574686f72697a6564","id":2101,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5989:16:13","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":2096,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"5961:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2102,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5961:45:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2103,"nodeType":"ExpressionStatement","src":"5961:45:13"},{"id":2104,"nodeType":"PlaceholderStatement","src":"6016:1:13"}]},"id":2106,"name":"onlyOwner","nameLocation":"5939:9:13","nodeType":"ModifierDefinition","parameters":{"id":2095,"nodeType":"ParameterList","parameters":[],"src":"5948:2:13"},"src":"5930:94:13","virtual":false,"visibility":"internal"},{"body":{"id":2117,"nodeType":"Block","src":"6053:81:13","statements":[{"expression":{"arguments":[{"baseExpression":{"id":2109,"name":"authorizedBots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1896,"src":"6071:14:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":2112,"indexExpression":{"expression":{"id":2110,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"6086:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2111,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6090:6:13","memberName":"sender","nodeType":"MemberAccess","src":"6086:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6071:26:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f7420617574686f72697a6564","id":2113,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6099:16:13","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":2108,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"6063:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2114,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6063:53:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2115,"nodeType":"ExpressionStatement","src":"6063:53:13"},{"id":2116,"nodeType":"PlaceholderStatement","src":"6126:1:13"}]},"id":2118,"name":"onlyBot","nameLocation":"6043:7:13","nodeType":"ModifierDefinition","parameters":{"id":2107,"nodeType":"ParameterList","parameters":[],"src":"6050:2:13"},"src":"6034:100:13","virtual":false,"visibility":"internal"},{"body":{"id":2125,"nodeType":"Block","src":"6207:39:13","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":2122,"name":"_disableInitializers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":221,"src":"6217:20:13","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":2123,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6217:22:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2124,"nodeType":"ExpressionStatement","src":"6217:22:13"}]},"documentation":{"id":2119,"nodeType":"StructuredDocumentation","src":"6140:48:13","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":2126,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":2120,"nodeType":"ParameterList","parameters":[],"src":"6204:2:13"},"returnParameters":{"id":2121,"nodeType":"ParameterList","parameters":[],"src":"6207:0:13"},"scope":5452,"src":"6193:53:13","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":2192,"nodeType":"Block","src":"6293:613:13","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":2131,"name":"__ReentrancyGuard_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":307,"src":"6303:22:13","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":2132,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6303:24:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2133,"nodeType":"ExpressionStatement","src":"6303:24:13"},{"expression":{"id":2137,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2134,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1888,"src":"6346:5:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":2135,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"6354:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2136,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6358:6:13","memberName":"sender","nodeType":"MemberAccess","src":"6354:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6346:18:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2138,"nodeType":"ExpressionStatement","src":"6346:18:13"},{"expression":{"id":2144,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2139,"name":"owners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1892,"src":"6374:6:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":2142,"indexExpression":{"expression":{"id":2140,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"6381:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6385:6:13","memberName":"sender","nodeType":"MemberAccess","src":"6381:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6374:18:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2143,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6395:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6374:25:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2145,"nodeType":"ExpressionStatement","src":"6374:25:13"},{"expression":{"id":2150,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2146,"name":"owners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1892,"src":"6409:6:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":2148,"indexExpression":{"hexValue":"307838613932383145434563453962353939433266343264383239433364306438653734623730383365","id":2147,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6416:42:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"value":"0x8a9281ECEcE9b599C2f42d829C3d0d8e74b7083e"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6409:50:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2149,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6462:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6409:57:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2151,"nodeType":"ExpressionStatement","src":"6409:57:13"},{"expression":{"id":2156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2152,"name":"authorizedBots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1896,"src":"6477:14:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":2154,"indexExpression":{"hexValue":"307862663132443362383237613233304637333930456243633962383362323839466443393862613831","id":2153,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6492:42:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"value":"0xbf12D3b827a230F7390EbCc9b83b289FdC98ba81"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6477:58:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2155,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6538:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6477:65:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2157,"nodeType":"ExpressionStatement","src":"6477:65:13"},{"expression":{"id":2162,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2158,"name":"authorizedBots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1896,"src":"6552:14:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":2160,"indexExpression":{"hexValue":"307837633430663237323537306664663935343964366636373439336143323530613144423532463237","id":2159,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6567:42:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"value":"0x7c40f272570fdf9549d6f67493aC250a1DB52F27"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6552:58:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2161,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6613:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6552:65:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2163,"nodeType":"ExpressionStatement","src":"6552:65:13"},{"expression":{"id":2168,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2164,"name":"authorizedBots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1896,"src":"6627:14:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":2166,"indexExpression":{"hexValue":"307838613932383145434563453962353939433266343264383239433364306438653734623730383365","id":2165,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6642:42:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"value":"0x8a9281ECEcE9b599C2f42d829C3d0d8e74b7083e"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6627:58:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2167,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6688:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6627:65:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2169,"nodeType":"ExpressionStatement","src":"6627:65:13"},{"expression":{"id":2176,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2170,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"6751:12:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2172,"indexExpression":{"hexValue":"307838613932383145434563453962353939433266343264383239433364306438653734623730383365","id":2171,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6764:42:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"value":"0x8a9281ECEcE9b599C2f42d829C3d0d8e74b7083e"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6751:56:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000000000000000000000_by_1","typeString":"int_const 10000000000000000000000"},"id":2175,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130303030","id":2173,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6810:5:13","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"31653138","id":2174,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6818:4:13","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"src":"6810:12:13","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000000000_by_1","typeString":"int_const 10000000000000000000000"}},"src":"6751:71:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2177,"nodeType":"ExpressionStatement","src":"6751:71:13"},{"expression":{"id":2182,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2178,"name":"totalBigStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1967,"src":"6832:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000000000000000000000_by_1","typeString":"int_const 10000000000000000000000"},"id":2181,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130303030","id":2179,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6850:5:13","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"31653138","id":2180,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6858:4:13","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"src":"6850:12:13","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000000000_by_1","typeString":"int_const 10000000000000000000000"}},"src":"6832:30:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2183,"nodeType":"ExpressionStatement","src":"6832:30:13"},{"expression":{"id":2190,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2184,"name":"unlockDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1924,"src":"6873:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_129600_by_1","typeString":"int_const 129600"},"id":2189,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_3600_by_1","typeString":"int_const 3600"},"id":2187,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3630","id":2185,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6887:2:13","typeDescriptions":{"typeIdentifier":"t_rational_60_by_1","typeString":"int_const 60"},"value":"60"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3630","id":2186,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6892:2:13","typeDescriptions":{"typeIdentifier":"t_rational_60_by_1","typeString":"int_const 60"},"value":"60"},"src":"6887:7:13","typeDescriptions":{"typeIdentifier":"t_rational_3600_by_1","typeString":"int_const 3600"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3336","id":2188,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6897:2:13","typeDescriptions":{"typeIdentifier":"t_rational_36_by_1","typeString":"int_const 36"},"value":"36"},"src":"6887:12:13","typeDescriptions":{"typeIdentifier":"t_rational_129600_by_1","typeString":"int_const 129600"}},"src":"6873:26:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2191,"nodeType":"ExpressionStatement","src":"6873:26:13"}]},"functionSelector":"8129fc1c","id":2193,"implemented":true,"kind":"function","modifiers":[{"id":2129,"kind":"modifierInvocation","modifierName":{"id":2128,"name":"initializer","nameLocations":["6281:11:13"],"nodeType":"IdentifierPath","referencedDeclaration":107,"src":"6281:11:13"},"nodeType":"ModifierInvocation","src":"6281:11:13"}],"name":"initialize","nameLocation":"6261:10:13","nodeType":"FunctionDefinition","parameters":{"id":2127,"nodeType":"ParameterList","parameters":[],"src":"6271:2:13"},"returnParameters":{"id":2130,"nodeType":"ParameterList","parameters":[],"src":"6293:0:13"},"scope":5452,"src":"6252:654:13","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":2224,"nodeType":"Block","src":"6996:156:13","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2206,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2201,"name":"_newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2195,"src":"7014:9:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2204,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7035:1:13","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":2203,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7027:7:13","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2202,"name":"address","nodeType":"ElementaryTypeName","src":"7027:7:13","typeDescriptions":{}}},"id":2205,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7027:10:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7014:23:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642061646472657373","id":2207,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7039:17:13","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":2200,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7006:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2208,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7006:51:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2209,"nodeType":"ExpressionStatement","src":"7006:51:13"},{"expression":{"arguments":[{"id":2214,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"7075:18:13","subExpression":{"baseExpression":{"id":2211,"name":"owners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1892,"src":"7076:6:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":2213,"indexExpression":{"id":2212,"name":"_newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2195,"src":"7083:9:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7076:17:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416c7265616479206f776e6572","id":2215,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7095:15:13","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":2210,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7067:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2216,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7067:44:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2217,"nodeType":"ExpressionStatement","src":"7067:44:13"},{"expression":{"id":2222,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2218,"name":"owners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1892,"src":"7121:6:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":2220,"indexExpression":{"id":2219,"name":"_newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2195,"src":"7128:9:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7121:17:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2221,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7141:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"7121:24:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2223,"nodeType":"ExpressionStatement","src":"7121:24:13"}]},"functionSelector":"7065cb48","id":2225,"implemented":true,"kind":"function","modifiers":[{"id":2198,"kind":"modifierInvocation","modifierName":{"id":2197,"name":"onlyOwner","nameLocations":["6986:9:13"],"nodeType":"IdentifierPath","referencedDeclaration":2106,"src":"6986:9:13"},"nodeType":"ModifierInvocation","src":"6986:9:13"}],"name":"addOwner","nameLocation":"6949:8:13","nodeType":"FunctionDefinition","parameters":{"id":2196,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2195,"mutability":"mutable","name":"_newOwner","nameLocation":"6966:9:13","nodeType":"VariableDeclaration","scope":2225,"src":"6958:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2194,"name":"address","nodeType":"ElementaryTypeName","src":"6958:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6957:19:13"},"returnParameters":{"id":2199,"nodeType":"ParameterList","parameters":[],"src":"6996:0:13"},"scope":5452,"src":"6940:212:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2253,"nodeType":"Block","src":"7214:146:13","statements":[{"expression":{"arguments":[{"baseExpression":{"id":2233,"name":"owners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1892,"src":"7232:6:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":2235,"indexExpression":{"id":2234,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2227,"src":"7239:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7232:14:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f74206f776e6572","id":2236,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7248:11:13","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":2232,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7224:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2237,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7224:36:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2238,"nodeType":"ExpressionStatement","src":"7224:36:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2243,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2240,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2227,"src":"7278:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":2241,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"7288:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2242,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7292:6:13","memberName":"sender","nodeType":"MemberAccess","src":"7288:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7278:20:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"43616e6e6f742072656d6f76652073656c66","id":2244,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7300:20:13","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":2239,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7270:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2245,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7270:51:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2246,"nodeType":"ExpressionStatement","src":"7270:51:13"},{"expression":{"id":2251,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2247,"name":"owners","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1892,"src":"7331:6:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":2249,"indexExpression":{"id":2248,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2227,"src":"7338:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7331:14:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":2250,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7348:5:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"7331:22:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2252,"nodeType":"ExpressionStatement","src":"7331:22:13"}]},"functionSelector":"173825d9","id":2254,"implemented":true,"kind":"function","modifiers":[{"id":2230,"kind":"modifierInvocation","modifierName":{"id":2229,"name":"onlyOwner","nameLocations":["7204:9:13"],"nodeType":"IdentifierPath","referencedDeclaration":2106,"src":"7204:9:13"},"nodeType":"ModifierInvocation","src":"7204:9:13"}],"name":"removeOwner","nameLocation":"7167:11:13","nodeType":"FunctionDefinition","parameters":{"id":2228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2227,"mutability":"mutable","name":"_owner","nameLocation":"7187:6:13","nodeType":"VariableDeclaration","scope":2254,"src":"7179:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2226,"name":"address","nodeType":"ElementaryTypeName","src":"7179:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7178:16:13"},"returnParameters":{"id":2231,"nodeType":"ParameterList","parameters":[],"src":"7214:0:13"},"scope":5452,"src":"7158:202:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2278,"nodeType":"Block","src":"7502:98:13","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2268,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2263,"name":"bot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2257,"src":"7520:3:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2266,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7535:1:13","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":2265,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7527:7:13","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2264,"name":"address","nodeType":"ElementaryTypeName","src":"7527:7:13","typeDescriptions":{}}},"id":2267,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7527:10:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7520:17:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642061646472657373","id":2269,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7539:17:13","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":2262,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"7512:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2270,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7512:45:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2271,"nodeType":"ExpressionStatement","src":"7512:45:13"},{"expression":{"id":2276,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2272,"name":"authorizedBots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1896,"src":"7567:14:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":2274,"indexExpression":{"id":2273,"name":"bot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2257,"src":"7582:3:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7567:19:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":2275,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7589:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"7567:26:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2277,"nodeType":"ExpressionStatement","src":"7567:26:13"}]},"documentation":{"id":2255,"nodeType":"StructuredDocumentation","src":"7366:83:13","text":"@notice Function to add a bot to the list (only callable by the contract owner)"},"functionSelector":"ffecf516","id":2279,"implemented":true,"kind":"function","modifiers":[{"id":2260,"kind":"modifierInvocation","modifierName":{"id":2259,"name":"onlyOwner","nameLocations":["7492:9:13"],"nodeType":"IdentifierPath","referencedDeclaration":2106,"src":"7492:9:13"},"nodeType":"ModifierInvocation","src":"7492:9:13"}],"name":"addBot","nameLocation":"7463:6:13","nodeType":"FunctionDefinition","parameters":{"id":2258,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2257,"mutability":"mutable","name":"bot","nameLocation":"7478:3:13","nodeType":"VariableDeclaration","scope":2279,"src":"7470:11:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2256,"name":"address","nodeType":"ElementaryTypeName","src":"7470:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7469:13:13"},"returnParameters":{"id":2261,"nodeType":"ParameterList","parameters":[],"src":"7502:0:13"},"scope":5452,"src":"7454:146:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2290,"nodeType":"Block","src":"7697:43:13","statements":[{"expression":{"id":2288,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2286,"name":"lockupDuration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1922,"src":"7707:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2287,"name":"_duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2281,"src":"7724:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7707:26:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2289,"nodeType":"ExpressionStatement","src":"7707:26:13"}]},"functionSelector":"c36d03fd","id":2291,"implemented":true,"kind":"function","modifiers":[{"id":2284,"kind":"modifierInvocation","modifierName":{"id":2283,"name":"onlyOwner","nameLocations":["7687:9:13"],"nodeType":"IdentifierPath","referencedDeclaration":2106,"src":"7687:9:13"},"nodeType":"ModifierInvocation","src":"7687:9:13"}],"name":"updateLockupDuration","nameLocation":"7638:20:13","nodeType":"FunctionDefinition","parameters":{"id":2282,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2281,"mutability":"mutable","name":"_duration","nameLocation":"7667:9:13","nodeType":"VariableDeclaration","scope":2291,"src":"7659:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2280,"name":"uint256","nodeType":"ElementaryTypeName","src":"7659:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7658:19:13"},"returnParameters":{"id":2285,"nodeType":"ParameterList","parameters":[],"src":"7697:0:13"},"scope":5452,"src":"7629:111:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2302,"nodeType":"Block","src":"7808:37:13","statements":[{"expression":{"id":2300,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2298,"name":"unlockDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1924,"src":"7818:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2299,"name":"_delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2293,"src":"7832:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7818:20:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2301,"nodeType":"ExpressionStatement","src":"7818:20:13"}]},"functionSelector":"ce13d090","id":2303,"implemented":true,"kind":"function","modifiers":[{"id":2296,"kind":"modifierInvocation","modifierName":{"id":2295,"name":"onlyOwner","nameLocations":["7798:9:13"],"nodeType":"IdentifierPath","referencedDeclaration":2106,"src":"7798:9:13"},"nodeType":"ModifierInvocation","src":"7798:9:13"}],"name":"updateUnlockDelay","nameLocation":"7755:17:13","nodeType":"FunctionDefinition","parameters":{"id":2294,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2293,"mutability":"mutable","name":"_delay","nameLocation":"7781:6:13","nodeType":"VariableDeclaration","scope":2303,"src":"7773:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2292,"name":"uint256","nodeType":"ElementaryTypeName","src":"7773:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7772:16:13"},"returnParameters":{"id":2297,"nodeType":"ParameterList","parameters":[],"src":"7808:0:13"},"scope":5452,"src":"7746:99:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2328,"nodeType":"Block","src":"7936:123:13","statements":[{"expression":{"arguments":[{"expression":{"id":2316,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"7974:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7978:6:13","memberName":"sender","nodeType":"MemberAccess","src":"7974:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2318,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2307,"src":"7986:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":2313,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2305,"src":"7953:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2312,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1216,"src":"7946:6:13","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1216_$","typeString":"type(contract IERC20)"}},"id":2314,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7946:14:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"id":2315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7961:12:13","memberName":"safeTransfer","nodeType":"MemberAccess","referencedDeclaration":1323,"src":"7946:27:13","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$1216_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$1216_$","typeString":"function (contract IERC20,address,uint256)"}},"id":2319,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7946:48:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2320,"nodeType":"ExpressionStatement","src":"7946:48:13"},{"eventCall":{"arguments":[{"expression":{"id":2322,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"8024:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2323,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8028:6:13","memberName":"sender","nodeType":"MemberAccess","src":"8024:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2324,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2305,"src":"8036:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2325,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2307,"src":"8044:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2321,"name":"FundsWithdrawn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2032,"src":"8009:14:13","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2326,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8009:43:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2327,"nodeType":"EmitStatement","src":"8004:48:13"}]},"functionSelector":"3f35e722","id":2329,"implemented":true,"kind":"function","modifiers":[{"id":2310,"kind":"modifierInvocation","modifierName":{"id":2309,"name":"onlyOwner","nameLocations":["7926:9:13"],"nodeType":"IdentifierPath","referencedDeclaration":2106,"src":"7926:9:13"},"nodeType":"ModifierInvocation","src":"7926:9:13"}],"name":"withdrawFromVestingPool","nameLocation":"7860:23:13","nodeType":"FunctionDefinition","parameters":{"id":2308,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2305,"mutability":"mutable","name":"_token","nameLocation":"7892:6:13","nodeType":"VariableDeclaration","scope":2329,"src":"7884:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2304,"name":"address","nodeType":"ElementaryTypeName","src":"7884:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2307,"mutability":"mutable","name":"_amount","nameLocation":"7908:7:13","nodeType":"VariableDeclaration","scope":2329,"src":"7900:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2306,"name":"uint256","nodeType":"ElementaryTypeName","src":"7900:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7883:33:13"},"returnParameters":{"id":2311,"nodeType":"ParameterList","parameters":[],"src":"7936:0:13"},"scope":5452,"src":"7851:208:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2349,"nodeType":"Block","src":"8129:87:13","statements":[{"expression":{"arguments":[{"expression":{"id":2340,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"8174:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8178:6:13","memberName":"sender","nodeType":"MemberAccess","src":"8174:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":2344,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"8194:4:13","typeDescriptions":{"typeIdentifier":"t_contract$_CunaFinanceBsc_$5452","typeString":"contract CunaFinanceBsc"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CunaFinanceBsc_$5452","typeString":"contract CunaFinanceBsc"}],"id":2343,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8186:7:13","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2342,"name":"address","nodeType":"ElementaryTypeName","src":"8186:7:13","typeDescriptions":{}}},"id":2345,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8186:13:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2346,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2331,"src":"8201:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":2337,"name":"BSC_TOKEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1930,"src":"8146:9:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2336,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1216,"src":"8139:6:13","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1216_$","typeString":"type(contract IERC20)"}},"id":2338,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8139:17:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"id":2339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8157:16:13","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":1350,"src":"8139:34:13","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$1216_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$1216_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":2347,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8139:70:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2348,"nodeType":"ExpressionStatement","src":"8139:70:13"}]},"functionSelector":"8bdf67f2","id":2350,"implemented":true,"kind":"function","modifiers":[{"id":2334,"kind":"modifierInvocation","modifierName":{"id":2333,"name":"onlyOwner","nameLocations":["8119:9:13"],"nodeType":"IdentifierPath","referencedDeclaration":2106,"src":"8119:9:13"},"nodeType":"ModifierInvocation","src":"8119:9:13"}],"name":"depositRewards","nameLocation":"8078:14:13","nodeType":"FunctionDefinition","parameters":{"id":2332,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2331,"mutability":"mutable","name":"_amount","nameLocation":"8101:7:13","nodeType":"VariableDeclaration","scope":2350,"src":"8093:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2330,"name":"uint256","nodeType":"ElementaryTypeName","src":"8093:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8092:17:13"},"returnParameters":{"id":2335,"nodeType":"ParameterList","parameters":[],"src":"8129:0:13"},"scope":5452,"src":"8069:147:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2373,"nodeType":"Block","src":"8295:129:13","statements":[{"expression":{"arguments":[{"expression":{"id":2361,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"8336:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8340:6:13","memberName":"sender","nodeType":"MemberAccess","src":"8336:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2363,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2352,"src":"8348:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":2358,"name":"BSC_TOKEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1930,"src":"8312:9:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2357,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1216,"src":"8305:6:13","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1216_$","typeString":"type(contract IERC20)"}},"id":2359,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8305:17:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"id":2360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8323:12:13","memberName":"safeTransfer","nodeType":"MemberAccess","referencedDeclaration":1323,"src":"8305:30:13","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$1216_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$1216_$","typeString":"function (contract IERC20,address,uint256)"}},"id":2364,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8305:51:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2365,"nodeType":"ExpressionStatement","src":"8305:51:13"},{"eventCall":{"arguments":[{"expression":{"id":2367,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"8386:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8390:6:13","memberName":"sender","nodeType":"MemberAccess","src":"8386:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2369,"name":"BSC_TOKEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1930,"src":"8398:9:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2370,"name":"_amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2352,"src":"8409:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2366,"name":"FundsWithdrawn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2032,"src":"8371:14:13","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2371,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8371:46:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2372,"nodeType":"EmitStatement","src":"8366:51:13"}]},"functionSelector":"853e0df2","id":2374,"implemented":true,"kind":"function","modifiers":[{"id":2355,"kind":"modifierInvocation","modifierName":{"id":2354,"name":"onlyOwner","nameLocations":["8285:9:13"],"nodeType":"IdentifierPath","referencedDeclaration":2106,"src":"8285:9:13"},"nodeType":"ModifierInvocation","src":"8285:9:13"}],"name":"withdrawFromStakingPool","nameLocation":"8235:23:13","nodeType":"FunctionDefinition","parameters":{"id":2353,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2352,"mutability":"mutable","name":"_amount","nameLocation":"8267:7:13","nodeType":"VariableDeclaration","scope":2374,"src":"8259:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2351,"name":"uint256","nodeType":"ElementaryTypeName","src":"8259:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8258:17:13"},"returnParameters":{"id":2356,"nodeType":"ParameterList","parameters":[],"src":"8295:0:13"},"scope":5452,"src":"8226:198:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2389,"nodeType":"Block","src":"8506:47:13","statements":[{"expression":{"id":2387,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2383,"name":"priceOracles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1912,"src":"8516:12:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}},"id":2385,"indexExpression":{"id":2384,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2376,"src":"8529:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"8516:20:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2386,"name":"_oracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2378,"src":"8539:7:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8516:30:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2388,"nodeType":"ExpressionStatement","src":"8516:30:13"}]},"functionSelector":"67a74ddc","id":2390,"implemented":true,"kind":"function","modifiers":[{"id":2381,"kind":"modifierInvocation","modifierName":{"id":2380,"name":"onlyOwner","nameLocations":["8496:9:13"],"nodeType":"IdentifierPath","referencedDeclaration":2106,"src":"8496:9:13"},"nodeType":"ModifierInvocation","src":"8496:9:13"}],"name":"setPriceOracle","nameLocation":"8439:14:13","nodeType":"FunctionDefinition","parameters":{"id":2379,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2376,"mutability":"mutable","name":"_token","nameLocation":"8462:6:13","nodeType":"VariableDeclaration","scope":2390,"src":"8454:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2375,"name":"address","nodeType":"ElementaryTypeName","src":"8454:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2378,"mutability":"mutable","name":"_oracle","nameLocation":"8478:7:13","nodeType":"VariableDeclaration","scope":2390,"src":"8470:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2377,"name":"address","nodeType":"ElementaryTypeName","src":"8470:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8453:33:13"},"returnParameters":{"id":2382,"nodeType":"ParameterList","parameters":[],"src":"8506:0:13"},"scope":5452,"src":"8430:123:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2480,"nodeType":"Block","src":"8973:1057:13","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":2408,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2403,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2393,"src":"8991:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":2406,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9009:1:13","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":2405,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9001:7:13","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2404,"name":"address","nodeType":"ElementaryTypeName","src":"9001:7:13","typeDescriptions":{}}},"id":2407,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9001:10:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8991:20:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c696420746f6b656e2061646472657373","id":2409,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9013:23:13","typeDescriptions":{"typeIdentifier":"t_stringliteral_d34df3e6e5f402d3417b1a16a0a8a7541b184d7fb338e177a15236f4037e3743","typeString":"literal_string \"Invalid token address\""},"value":"Invalid token address"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d34df3e6e5f402d3417b1a16a0a8a7541b184d7fb338e177a15236f4037e3743","typeString":"literal_string \"Invalid token address\""}],"id":2402,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"8983:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2410,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8983:54:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2411,"nodeType":"ExpressionStatement","src":"8983:54:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2419,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2415,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2413,"name":"_percentagePerStep","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2397,"src":"9055:18:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2414,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9076:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9055:22:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2418,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2416,"name":"_percentagePerStep","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2397,"src":"9081:18:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"3130303030","id":2417,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9103:5:13","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"9081:27:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9055:53:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642070657263656e74616765","id":2420,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9110:20:13","typeDescriptions":{"typeIdentifier":"t_stringliteral_3aa060f1dfc69ce7f57887a6e23d7fbceead8042b984953c572b9c8fa5af8f04","typeString":"literal_string \"Invalid percentage\""},"value":"Invalid percentage"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3aa060f1dfc69ce7f57887a6e23d7fbceead8042b984953c572b9c8fa5af8f04","typeString":"literal_string \"Invalid percentage\""}],"id":2412,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"9047:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2421,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9047:84:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2422,"nodeType":"ExpressionStatement","src":"9047:84:13"},{"expression":{"id":2426,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"9185:30:13","subExpression":{"baseExpression":{"id":2423,"name":"unlockSchedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1908,"src":"9192:15:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_UnlockStep_$1832_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.UnlockStep storage ref[] storage ref)"}},"id":2425,"indexExpression":{"id":2424,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2393,"src":"9208:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"9192:23:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UnlockStep_$1832_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.UnlockStep storage ref[] storage ref"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2427,"nodeType":"ExpressionStatement","src":"9185:30:13"},{"assignments":[2429],"declarations":[{"constant":false,"id":2429,"mutability":"mutable","name":"totalPercentage","nameLocation":"9242:15:13","nodeType":"VariableDeclaration","scope":2480,"src":"9234:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2428,"name":"uint256","nodeType":"ElementaryTypeName","src":"9234:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2431,"initialValue":{"hexValue":"30","id":2430,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9260:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"9234:27:13"},{"assignments":[2433],"declarations":[{"constant":false,"id":2433,"mutability":"mutable","name":"timeOffset","nameLocation":"9279:10:13","nodeType":"VariableDeclaration","scope":2480,"src":"9271:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2432,"name":"uint256","nodeType":"ElementaryTypeName","src":"9271:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2435,"initialValue":{"id":2434,"name":"_lockTime","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2395,"src":"9292:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9271:30:13"},{"body":{"id":2474,"nodeType":"Block","src":"9403:572:13","statements":[{"assignments":[2440],"declarations":[{"constant":false,"id":2440,"mutability":"mutable","name":"stepPercentage","nameLocation":"9425:14:13","nodeType":"VariableDeclaration","scope":2474,"src":"9417:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2439,"name":"uint256","nodeType":"ElementaryTypeName","src":"9417:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2442,"initialValue":{"id":2441,"name":"_percentagePerStep","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2397,"src":"9442:18:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9417:43:13"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2447,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2443,"name":"totalPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2429,"src":"9545:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":2444,"name":"stepPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2440,"src":"9563:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9545:32:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3130303030","id":2446,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9580:5:13","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"9545:40:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2455,"nodeType":"IfStatement","src":"9541:119:13","trueBody":{"id":2454,"nodeType":"Block","src":"9587:73:13","statements":[{"expression":{"id":2452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2448,"name":"stepPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2440,"src":"9605:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2451,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130303030","id":2449,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9622:5:13","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2450,"name":"totalPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2429,"src":"9630:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9622:23:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9605:40:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2453,"nodeType":"ExpressionStatement","src":"9605:40:13"}]}},{"expression":{"arguments":[{"arguments":[{"id":2461,"name":"timeOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2433,"src":"9756:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2462,"name":"stepPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2440,"src":"9796:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2460,"name":"UnlockStep","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1832,"src":"9715:10:13","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_UnlockStep_$1832_storage_ptr_$","typeString":"type(struct CunaFinanceBsc.UnlockStep storage pointer)"}},"id":2463,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["9744:10:13","9784:10:13"],"names":["timeOffset","percentage"],"nodeType":"FunctionCall","src":"9715:110:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1832_memory_ptr","typeString":"struct CunaFinanceBsc.UnlockStep memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_UnlockStep_$1832_memory_ptr","typeString":"struct CunaFinanceBsc.UnlockStep memory"}],"expression":{"baseExpression":{"id":2456,"name":"unlockSchedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1908,"src":"9686:15:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_UnlockStep_$1832_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.UnlockStep storage ref[] storage ref)"}},"id":2458,"indexExpression":{"id":2457,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2393,"src":"9702:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9686:23:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UnlockStep_$1832_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.UnlockStep storage ref[] storage ref"}},"id":2459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9710:4:13","memberName":"push","nodeType":"MemberAccess","src":"9686:28:13","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_UnlockStep_$1832_storage_$dyn_storage_ptr_$_t_struct$_UnlockStep_$1832_storage_$returns$__$attached_to$_t_array$_t_struct$_UnlockStep_$1832_storage_$dyn_storage_ptr_$","typeString":"function (struct CunaFinanceBsc.UnlockStep storage ref[] storage pointer,struct CunaFinanceBsc.UnlockStep storage ref)"}},"id":2464,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9686:140:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2465,"nodeType":"ExpressionStatement","src":"9686:140:13"},{"expression":{"id":2468,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2466,"name":"totalPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2429,"src":"9853:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":2467,"name":"stepPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2440,"src":"9872:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9853:33:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2469,"nodeType":"ExpressionStatement","src":"9853:33:13"},{"expression":{"id":2472,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2470,"name":"timeOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2433,"src":"9900:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":2471,"name":"_lockTime","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2395,"src":"9914:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9900:23:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2473,"nodeType":"ExpressionStatement","src":"9900:23:13"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2438,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2436,"name":"totalPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2429,"src":"9378:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3130303030","id":2437,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9396:5:13","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"9378:23:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2475,"nodeType":"WhileStatement","src":"9371:604:13"},{"eventCall":{"arguments":[{"id":2477,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2393,"src":"10016:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2476,"name":"UnlockScheduleSet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2024,"src":"9998:17:13","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":2478,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9998:25:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2479,"nodeType":"EmitStatement","src":"9993:30:13"}]},"documentation":{"id":2391,"nodeType":"StructuredDocumentation","src":"8563:284:13","text":"@notice Set unlock schedule for a token using percentage-based steps\n @param _token The token address to set the schedule for\n @param _lockTime The initial lock time in seconds\n @param _percentagePerStep The percentage to unlock at each step (scaled by 10000)"},"functionSelector":"b92a349f","id":2481,"implemented":true,"kind":"function","modifiers":[{"id":2400,"kind":"modifierInvocation","modifierName":{"id":2399,"name":"onlyOwner","nameLocations":["8963:9:13"],"nodeType":"IdentifierPath","referencedDeclaration":2106,"src":"8963:9:13"},"nodeType":"ModifierInvocation","src":"8963:9:13"}],"name":"setUnlockScheduleByPercentage","nameLocation":"8861:29:13","nodeType":"FunctionDefinition","parameters":{"id":2398,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2393,"mutability":"mutable","name":"_token","nameLocation":"8899:6:13","nodeType":"VariableDeclaration","scope":2481,"src":"8891:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2392,"name":"address","nodeType":"ElementaryTypeName","src":"8891:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2395,"mutability":"mutable","name":"_lockTime","nameLocation":"8915:9:13","nodeType":"VariableDeclaration","scope":2481,"src":"8907:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2394,"name":"uint256","nodeType":"ElementaryTypeName","src":"8907:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2397,"mutability":"mutable","name":"_percentagePerStep","nameLocation":"8934:18:13","nodeType":"VariableDeclaration","scope":2481,"src":"8926:26:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2396,"name":"uint256","nodeType":"ElementaryTypeName","src":"8926:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8890:63:13"},"returnParameters":{"id":2401,"nodeType":"ParameterList","parameters":[],"src":"8973:0:13"},"scope":5452,"src":"8852:1178:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2493,"nodeType":"Block","src":"11629:41:13","statements":[{"expression":{"id":2491,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2489,"name":"marketplaceMin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1978,"src":"11639:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2490,"name":"_newMin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2484,"src":"11656:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11639:24:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2492,"nodeType":"ExpressionStatement","src":"11639:24:13"}]},"documentation":{"id":2482,"nodeType":"StructuredDocumentation","src":"11413:145:13","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":2494,"implemented":true,"kind":"function","modifiers":[{"id":2487,"kind":"modifierInvocation","modifierName":{"id":2486,"name":"onlyOwner","nameLocations":["11619:9:13"],"nodeType":"IdentifierPath","referencedDeclaration":2106,"src":"11619:9:13"},"nodeType":"ModifierInvocation","src":"11619:9:13"}],"name":"updateMarketplaceMin","nameLocation":"11572:20:13","nodeType":"FunctionDefinition","parameters":{"id":2485,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2484,"mutability":"mutable","name":"_newMin","nameLocation":"11601:7:13","nodeType":"VariableDeclaration","scope":2494,"src":"11593:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2483,"name":"uint256","nodeType":"ElementaryTypeName","src":"11593:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11592:17:13"},"returnParameters":{"id":2488,"nodeType":"ParameterList","parameters":[],"src":"11629:0:13"},"scope":5452,"src":"11563:107:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2506,"nodeType":"Block","src":"11872:42:13","statements":[{"expression":{"id":2504,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2502,"name":"cancellationFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1980,"src":"11882:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2503,"name":"_newFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2497,"src":"11900:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11882:25:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2505,"nodeType":"ExpressionStatement","src":"11882:25:13"}]},"documentation":{"id":2495,"nodeType":"StructuredDocumentation","src":"11680:120:13","text":"@notice Update cancellation fee percentage\n @param _newFee The fee percentage (scaled by 10000), ex: 500 = 5%"},"functionSelector":"1aefa2d1","id":2507,"implemented":true,"kind":"function","modifiers":[{"id":2500,"kind":"modifierInvocation","modifierName":{"id":2499,"name":"onlyOwner","nameLocations":["11862:9:13"],"nodeType":"IdentifierPath","referencedDeclaration":2106,"src":"11862:9:13"},"nodeType":"ModifierInvocation","src":"11862:9:13"}],"name":"updateCancellationFee","nameLocation":"11814:21:13","nodeType":"FunctionDefinition","parameters":{"id":2498,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2497,"mutability":"mutable","name":"_newFee","nameLocation":"11844:7:13","nodeType":"VariableDeclaration","scope":2507,"src":"11836:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2496,"name":"uint256","nodeType":"ElementaryTypeName","src":"11836:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11835:17:13"},"returnParameters":{"id":2501,"nodeType":"ParameterList","parameters":[],"src":"11872:0:13"},"scope":5452,"src":"11805:109:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2526,"nodeType":"Block","src":"12132:123:13","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2516,"name":"_newPercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2510,"src":"12150:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"3130303030","id":2517,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12165:5:13","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"12150:20:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50657263656e746167652063616e6e6f74206578636565642031303025","id":2519,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12172:31:13","typeDescriptions":{"typeIdentifier":"t_stringliteral_0822d438e7ff02d04e33a3b237e81701c1bd3a6e2907a292cc8ad1069147f0b1","typeString":"literal_string \"Percentage cannot exceed 100%\""},"value":"Percentage cannot exceed 100%"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0822d438e7ff02d04e33a3b237e81701c1bd3a6e2907a292cc8ad1069147f0b1","typeString":"literal_string \"Percentage cannot exceed 100%\""}],"id":2515,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"12142:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2520,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12142:62:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2521,"nodeType":"ExpressionStatement","src":"12142:62:13"},{"expression":{"id":2524,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2522,"name":"instantBuyoutPercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1969,"src":"12214:20:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2523,"name":"_newPercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2510,"src":"12237:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12214:34:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2525,"nodeType":"ExpressionStatement","src":"12214:34:13"}]},"documentation":{"id":2508,"nodeType":"StructuredDocumentation","src":"11924:127:13","text":"@notice Update instant buyout percentage\n @param _newPercent The buyout percentage (scaled by 10000), ex: 8000 = 80%"},"functionSelector":"aaf4b04d","id":2527,"implemented":true,"kind":"function","modifiers":[{"id":2513,"kind":"modifierInvocation","modifierName":{"id":2512,"name":"onlyOwner","nameLocations":["12122:9:13"],"nodeType":"IdentifierPath","referencedDeclaration":2106,"src":"12122:9:13"},"nodeType":"ModifierInvocation","src":"12122:9:13"}],"name":"updateInstantBuyoutPercent","nameLocation":"12065:26:13","nodeType":"FunctionDefinition","parameters":{"id":2511,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2510,"mutability":"mutable","name":"_newPercent","nameLocation":"12100:11:13","nodeType":"VariableDeclaration","scope":2527,"src":"12092:19:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2509,"name":"uint256","nodeType":"ElementaryTypeName","src":"12092:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12091:21:13"},"returnParameters":{"id":2514,"nodeType":"ParameterList","parameters":[],"src":"12132:0:13"},"scope":5452,"src":"12056:199:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2596,"nodeType":"Block","src":"12738:688:13","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2549,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2545,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2543,"name":"lastLiability","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2536,"src":"12761:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2544,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12778:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12761:18:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2546,"name":"currentLiability","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2532,"src":"12783:16:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2547,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12803:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12783:21:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12761:43:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2553,"nodeType":"IfStatement","src":"12757:98:13","trueBody":{"id":2552,"nodeType":"Block","src":"12806:49:13","statements":[{"expression":{"hexValue":"30","id":2550,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12827:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":2542,"id":2551,"nodeType":"Return","src":"12820:8:13"}]}},{"assignments":[2555],"declarations":[{"constant":false,"id":2555,"mutability":"mutable","name":"currentRatio","nameLocation":"12941:12:13","nodeType":"VariableDeclaration","scope":2596,"src":"12933:20:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2554,"name":"uint256","nodeType":"ElementaryTypeName","src":"12933:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2562,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2561,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2558,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2556,"name":"currentTvl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2530,"src":"12957:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3130303030","id":2557,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12970:5:13","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"12957:18:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2559,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12956:20:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":2560,"name":"currentLiability","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2532,"src":"12979:16:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12956:39:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12933:62:13"},{"assignments":[2564],"declarations":[{"constant":false,"id":2564,"mutability":"mutable","name":"lastRatio","nameLocation":"13013:9:13","nodeType":"VariableDeclaration","scope":2596,"src":"13005:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2563,"name":"uint256","nodeType":"ElementaryTypeName","src":"13005:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2571,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2570,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2567,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2565,"name":"lastTvl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2534,"src":"13026:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3130303030","id":2566,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13036:5:13","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"13026:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2568,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13025:17:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":2569,"name":"lastLiability","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2536,"src":"13045:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13025:33:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13005:53:13"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2574,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2572,"name":"currentRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2555,"src":"13081:12:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":2573,"name":"lastRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2564,"src":"13097:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13081:25:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2578,"nodeType":"IfStatement","src":"13077:101:13","trueBody":{"id":2577,"nodeType":"Block","src":"13108:70:13","statements":[{"expression":{"hexValue":"30","id":2575,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13129:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":2542,"id":2576,"nodeType":"Return","src":"13122:8:13"}]}},{"assignments":[2580],"declarations":[{"constant":false,"id":2580,"mutability":"mutable","name":"ratioImprovement","nameLocation":"13254:16:13","nodeType":"VariableDeclaration","scope":2596,"src":"13246:24:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2579,"name":"uint256","nodeType":"ElementaryTypeName","src":"13246:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2584,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2583,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2581,"name":"currentRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2555,"src":"13273:12:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2582,"name":"lastRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2564,"src":"13288:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13273:24:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13246:51:13"},{"assignments":[2586],"declarations":[{"constant":false,"id":2586,"mutability":"mutable","name":"unlockPercentage","nameLocation":"13315:16:13","nodeType":"VariableDeclaration","scope":2596,"src":"13307:24:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2585,"name":"uint256","nodeType":"ElementaryTypeName","src":"13307:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2593,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2592,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2589,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2587,"name":"ratioImprovement","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2580,"src":"13335:16:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":2588,"name":"paybackPercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2538,"src":"13354:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13335:33:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2590,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13334:35:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130303030","id":2591,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13372:5:13","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"13334:43:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13307:70:13"},{"expression":{"id":2594,"name":"unlockPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2586,"src":"13403:16:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2542,"id":2595,"nodeType":"Return","src":"13396:23:13"}]},"documentation":{"id":2528,"nodeType":"StructuredDocumentation","src":"12303:205:13","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":2597,"implemented":true,"kind":"function","modifiers":[],"name":"calculateUnlockPercentage","nameLocation":"12522:25:13","nodeType":"FunctionDefinition","parameters":{"id":2539,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2530,"mutability":"mutable","name":"currentTvl","nameLocation":"12565:10:13","nodeType":"VariableDeclaration","scope":2597,"src":"12557:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2529,"name":"uint256","nodeType":"ElementaryTypeName","src":"12557:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2532,"mutability":"mutable","name":"currentLiability","nameLocation":"12594:16:13","nodeType":"VariableDeclaration","scope":2597,"src":"12586:24:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2531,"name":"uint256","nodeType":"ElementaryTypeName","src":"12586:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2534,"mutability":"mutable","name":"lastTvl","nameLocation":"12628:7:13","nodeType":"VariableDeclaration","scope":2597,"src":"12620:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2533,"name":"uint256","nodeType":"ElementaryTypeName","src":"12620:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2536,"mutability":"mutable","name":"lastLiability","nameLocation":"12654:13:13","nodeType":"VariableDeclaration","scope":2597,"src":"12646:21:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2535,"name":"uint256","nodeType":"ElementaryTypeName","src":"12646:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2538,"mutability":"mutable","name":"paybackPercent","nameLocation":"12685:14:13","nodeType":"VariableDeclaration","scope":2597,"src":"12677:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2537,"name":"uint256","nodeType":"ElementaryTypeName","src":"12677:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12547:158:13"},"returnParameters":{"id":2542,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2541,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2597,"src":"12729:7:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2540,"name":"uint256","nodeType":"ElementaryTypeName","src":"12729:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12728:9:13"},"scope":5452,"src":"12513:913:13","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2662,"nodeType":"Block","src":"13852:935:13","statements":[{"assignments":[2610],"declarations":[{"constant":false,"id":2610,"mutability":"mutable","name":"unlockPercentage","nameLocation":"13870:16:13","nodeType":"VariableDeclaration","scope":2662,"src":"13862:24:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2609,"name":"uint256","nodeType":"ElementaryTypeName","src":"13862:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2612,"initialValue":{"hexValue":"30","id":2611,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13889:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"13862:28:13"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2615,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2613,"name":"currentEpochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1965,"src":"13913:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2614,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13930:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"13913:18:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2638,"nodeType":"IfStatement","src":"13909:414:13","trueBody":{"id":2637,"nodeType":"Block","src":"13933:390:13","statements":[{"assignments":[2618],"declarations":[{"constant":false,"id":2618,"mutability":"mutable","name":"lastEpoch","nameLocation":"14000:9:13","nodeType":"VariableDeclaration","scope":2637,"src":"13986:23:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1852_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch"},"typeName":{"id":2617,"nodeType":"UserDefinedTypeName","pathNode":{"id":2616,"name":"Epoch","nameLocations":["13986:5:13"],"nodeType":"IdentifierPath","referencedDeclaration":1852,"src":"13986:5:13"},"referencedDeclaration":1852,"src":"13986:5:13","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1852_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch"}},"visibility":"internal"}],"id":2624,"initialValue":{"baseExpression":{"id":2619,"name":"epochs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1949,"src":"14012:6:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Epoch_$1852_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.Epoch storage ref)"}},"id":2623,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2622,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2620,"name":"currentEpochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1965,"src":"14019:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":2621,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14036:1:13","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"14019:18:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"14012:26:13","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1852_storage","typeString":"struct CunaFinanceBsc.Epoch storage ref"}},"nodeType":"VariableDeclarationStatement","src":"13986:52:13"},{"expression":{"id":2635,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2625,"name":"unlockPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2610,"src":"14065:16:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":2627,"name":"currentTreasuryTvl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2602,"src":"14127:18:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2628,"name":"totalBigStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1967,"src":"14163:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":2629,"name":"lastEpoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2618,"src":"14195:9:13","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1852_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch storage pointer"}},"id":2630,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14205:18:13","memberName":"currentTreasuryTvl","nodeType":"MemberAccess","referencedDeclaration":1845,"src":"14195:28:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":2631,"name":"lastEpoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2618,"src":"14241:9:13","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1852_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch storage pointer"}},"id":2632,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14251:14:13","memberName":"totalLiability","nodeType":"MemberAccess","referencedDeclaration":1847,"src":"14241:24:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2633,"name":"_paybackPercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2604,"src":"14283:15:13","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":2626,"name":"calculateUnlockPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2597,"src":"14084:25:13","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":2634,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14084:228:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14065:247:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2636,"nodeType":"ExpressionStatement","src":"14065:247:13"}]}},{"expression":{"id":2650,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2639,"name":"epochs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1949,"src":"14375:6:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Epoch_$1852_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.Epoch storage ref)"}},"id":2641,"indexExpression":{"id":2640,"name":"currentEpochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1965,"src":"14382:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"14375:22:13","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1852_storage","typeString":"struct CunaFinanceBsc.Epoch storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":2643,"name":"estDaysRemaining","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2600,"src":"14438:16:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2644,"name":"currentTreasuryTvl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2602,"src":"14488:18:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2645,"name":"totalBigStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1967,"src":"14536:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2646,"name":"unlockPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2610,"src":"14582:16:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":2647,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"14623:5:13","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2648,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14629:9:13","memberName":"timestamp","nodeType":"MemberAccess","src":"14623:15:13","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":2642,"name":"Epoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1852,"src":"14400:5:13","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Epoch_$1852_storage_ptr_$","typeString":"type(struct CunaFinanceBsc.Epoch storage pointer)"}},"id":2649,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["14420:16:13","14468:18:13","14520:14:13","14564:16:13","14612:9:13"],"names":["estDaysRemaining","currentTreasuryTvl","totalLiability","unlockPercentage","timestamp"],"nodeType":"FunctionCall","src":"14400:249:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1852_memory_ptr","typeString":"struct CunaFinanceBsc.Epoch memory"}},"src":"14375:274:13","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1852_storage","typeString":"struct CunaFinanceBsc.Epoch storage ref"}},"id":2651,"nodeType":"ExpressionStatement","src":"14375:274:13"},{"eventCall":{"arguments":[{"id":2653,"name":"currentEpochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1965,"src":"14684:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2654,"name":"currentTreasuryTvl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2602,"src":"14700:18:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2655,"name":"unlockPercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2610,"src":"14720:16:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2656,"name":"_paybackPercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2604,"src":"14738:15:13","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":2652,"name":"EpochEnded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2042,"src":"14673:10:13","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256,uint256)"}},"id":2657,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14673:81:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2658,"nodeType":"EmitStatement","src":"14668:86:13"},{"expression":{"id":2660,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"14764:16:13","subExpression":{"id":2659,"name":"currentEpochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1965,"src":"14764:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2661,"nodeType":"ExpressionStatement","src":"14764:16:13"}]},"documentation":{"id":2598,"nodeType":"StructuredDocumentation","src":"13432:299:13","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":2663,"implemented":true,"kind":"function","modifiers":[{"id":2607,"kind":"modifierInvocation","modifierName":{"id":2606,"name":"onlyOwner","nameLocations":["13842:9:13"],"nodeType":"IdentifierPath","referencedDeclaration":2106,"src":"13842:9:13"},"nodeType":"ModifierInvocation","src":"13842:9:13"}],"name":"endEpoch","nameLocation":"13745:8:13","nodeType":"FunctionDefinition","parameters":{"id":2605,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2600,"mutability":"mutable","name":"estDaysRemaining","nameLocation":"13762:16:13","nodeType":"VariableDeclaration","scope":2663,"src":"13754:24:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2599,"name":"uint256","nodeType":"ElementaryTypeName","src":"13754:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2602,"mutability":"mutable","name":"currentTreasuryTvl","nameLocation":"13788:18:13","nodeType":"VariableDeclaration","scope":2663,"src":"13780:26:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2601,"name":"uint256","nodeType":"ElementaryTypeName","src":"13780:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2604,"mutability":"mutable","name":"_paybackPercent","nameLocation":"13816:15:13","nodeType":"VariableDeclaration","scope":2663,"src":"13808:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2603,"name":"uint256","nodeType":"ElementaryTypeName","src":"13808:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13753:79:13"},"returnParameters":{"id":2608,"nodeType":"ParameterList","parameters":[],"src":"13852:0:13"},"scope":5452,"src":"13736:1051:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2722,"nodeType":"Block","src":"14979:461:13","statements":[{"assignments":[2672],"declarations":[{"constant":false,"id":2672,"mutability":"mutable","name":"remainingStake","nameLocation":"14997:14:13","nodeType":"VariableDeclaration","scope":2722,"src":"14989:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2671,"name":"uint256","nodeType":"ElementaryTypeName","src":"14989:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2676,"initialValue":{"baseExpression":{"id":2673,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"15014:12:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2675,"indexExpression":{"id":2674,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2666,"src":"15027:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15014:18:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"14989:43:13"},{"assignments":[2678],"declarations":[{"constant":false,"id":2678,"mutability":"mutable","name":"startEpoch","nameLocation":"15050:10:13","nodeType":"VariableDeclaration","scope":2722,"src":"15042:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2677,"name":"uint256","nodeType":"ElementaryTypeName","src":"15042:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2682,"initialValue":{"baseExpression":{"id":2679,"name":"userLastClaimedEpoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1957,"src":"15063:20:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2681,"indexExpression":{"id":2680,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2666,"src":"15084:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15063:26:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15042:47:13"},{"body":{"id":2718,"nodeType":"Block","src":"15162:241:13","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2695,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2693,"name":"remainingStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2672,"src":"15180:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2694,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15197:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"15180:18:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2717,"nodeType":"IfStatement","src":"15176:217:13","trueBody":{"id":2716,"nodeType":"Block","src":"15200:193:13","statements":[{"assignments":[2697],"declarations":[{"constant":false,"id":2697,"mutability":"mutable","name":"unlocked","nameLocation":"15226:8:13","nodeType":"VariableDeclaration","scope":2716,"src":"15218:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2696,"name":"uint256","nodeType":"ElementaryTypeName","src":"15218:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2707,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2706,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2698,"name":"remainingStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2672,"src":"15238:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"baseExpression":{"id":2699,"name":"epochs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1949,"src":"15255:6:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Epoch_$1852_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.Epoch storage ref)"}},"id":2701,"indexExpression":{"id":2700,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2684,"src":"15262:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15255:9:13","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1852_storage","typeString":"struct CunaFinanceBsc.Epoch storage ref"}},"id":2702,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15265:16:13","memberName":"unlockPercentage","nodeType":"MemberAccess","referencedDeclaration":1849,"src":"15255:26:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15238:43:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2704,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"15237:45:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130303030","id":2705,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15285:5:13","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"15237:53:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15218:72:13"},{"expression":{"id":2710,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2708,"name":"totalUnclaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2669,"src":"15308:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":2709,"name":"unlocked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2697,"src":"15326:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15308:26:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2711,"nodeType":"ExpressionStatement","src":"15308:26:13"},{"expression":{"id":2714,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2712,"name":"remainingStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2672,"src":"15352:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":2713,"name":"unlocked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2697,"src":"15370:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15352:26:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2715,"nodeType":"ExpressionStatement","src":"15352:26:13"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2689,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2687,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2684,"src":"15137:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":2688,"name":"currentEpochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1965,"src":"15141:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15137:18:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2719,"initializationExpression":{"assignments":[2684],"declarations":[{"constant":false,"id":2684,"mutability":"mutable","name":"i","nameLocation":"15121:1:13","nodeType":"VariableDeclaration","scope":2719,"src":"15113:9:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2683,"name":"uint256","nodeType":"ElementaryTypeName","src":"15113:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2686,"initialValue":{"id":2685,"name":"startEpoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2678,"src":"15125:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15113:22:13"},"loopExpression":{"expression":{"id":2691,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"15157:3:13","subExpression":{"id":2690,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2684,"src":"15157:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2692,"nodeType":"ExpressionStatement","src":"15157:3:13"},"nodeType":"ForStatement","src":"15108:295:13"},{"expression":{"id":2720,"name":"totalUnclaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2669,"src":"15419:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2670,"id":2721,"nodeType":"Return","src":"15412:21:13"}]},"documentation":{"id":2664,"nodeType":"StructuredDocumentation","src":"14793:89:13","text":"@notice Calculate total unclaimed funds for a user across all epochs since last claim"},"functionSelector":"00159da6","id":2723,"implemented":true,"kind":"function","modifiers":[],"name":"calculateUnclaimedFunds","nameLocation":"14896:23:13","nodeType":"FunctionDefinition","parameters":{"id":2667,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2666,"mutability":"mutable","name":"user","nameLocation":"14928:4:13","nodeType":"VariableDeclaration","scope":2723,"src":"14920:12:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2665,"name":"address","nodeType":"ElementaryTypeName","src":"14920:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14919:14:13"},"returnParameters":{"id":2670,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2669,"mutability":"mutable","name":"totalUnclaimed","nameLocation":"14963:14:13","nodeType":"VariableDeclaration","scope":2723,"src":"14955:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2668,"name":"uint256","nodeType":"ElementaryTypeName","src":"14955:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14954:24:13"},"scope":5452,"src":"14887:553:13","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2747,"nodeType":"Block","src":"15582:150:13","statements":[{"assignments":[2732],"declarations":[{"constant":false,"id":2732,"mutability":"mutable","name":"bigStake","nameLocation":"15600:8:13","nodeType":"VariableDeclaration","scope":2747,"src":"15592:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2731,"name":"uint256","nodeType":"ElementaryTypeName","src":"15592:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2736,"initialValue":{"baseExpression":{"id":2733,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"15611:12:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2735,"indexExpression":{"id":2734,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2726,"src":"15624:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15611:18:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15592:37:13"},{"assignments":[2738],"declarations":[{"constant":false,"id":2738,"mutability":"mutable","name":"unclaimed","nameLocation":"15647:9:13","nodeType":"VariableDeclaration","scope":2747,"src":"15639:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2737,"name":"uint256","nodeType":"ElementaryTypeName","src":"15639:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2742,"initialValue":{"arguments":[{"id":2740,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2726,"src":"15683:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2739,"name":"calculateUnclaimedFunds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2723,"src":"15659:23:13","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":2741,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15659:29:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15639:49:13"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2745,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2743,"name":"bigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2732,"src":"15705:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2744,"name":"unclaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2738,"src":"15716:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15705:20:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2730,"id":2746,"nodeType":"Return","src":"15698:27:13"}]},"documentation":{"id":2724,"nodeType":"StructuredDocumentation","src":"15446:66:13","text":"@notice Get user's net stake (big stake minus unclaimed funds)"},"functionSelector":"1eb9e53e","id":2748,"implemented":true,"kind":"function","modifiers":[],"name":"getNetStake","nameLocation":"15526:11:13","nodeType":"FunctionDefinition","parameters":{"id":2727,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2726,"mutability":"mutable","name":"user","nameLocation":"15546:4:13","nodeType":"VariableDeclaration","scope":2748,"src":"15538:12:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2725,"name":"address","nodeType":"ElementaryTypeName","src":"15538:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"15537:14:13"},"returnParameters":{"id":2730,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2729,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2748,"src":"15573:7:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2728,"name":"uint256","nodeType":"ElementaryTypeName","src":"15573:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15572:9:13"},"scope":5452,"src":"15517:215:13","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2777,"nodeType":"Block","src":"16067:266:13","statements":[{"assignments":[2761],"declarations":[{"constant":false,"id":2761,"mutability":"mutable","name":"unclaimed","nameLocation":"16085:9:13","nodeType":"VariableDeclaration","scope":2777,"src":"16077:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2760,"name":"uint256","nodeType":"ElementaryTypeName","src":"16077:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2765,"initialValue":{"arguments":[{"id":2763,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2751,"src":"16121:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2762,"name":"calculateUnclaimedFunds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2723,"src":"16097:23:13","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":2764,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16097:29:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16077:49:13"},{"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2770,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":2766,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"16157:12:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2768,"indexExpression":{"id":2767,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2751,"src":"16170:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16157:18:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2769,"name":"unclaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2761,"src":"16178:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16157:30:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2771,"name":"unclaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2761,"src":"16215:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":2772,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"16273:12:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2774,"indexExpression":{"id":2773,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2751,"src":"16286:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16273:18:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2775,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"16143:183:13","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256,uint256)"}},"functionReturnParameters":2759,"id":2776,"nodeType":"Return","src":"16136:190:13"}]},"documentation":{"id":2749,"nodeType":"StructuredDocumentation","src":"15738:52:13","text":"@notice Get comprehensive user stake information"},"functionSelector":"c32d3ae2","id":2778,"implemented":true,"kind":"function","modifiers":[],"name":"getUserStakeInfo","nameLocation":"15804:16:13","nodeType":"FunctionDefinition","parameters":{"id":2752,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2751,"mutability":"mutable","name":"user","nameLocation":"15829:4:13","nodeType":"VariableDeclaration","scope":2778,"src":"15821:12:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2750,"name":"address","nodeType":"ElementaryTypeName","src":"15821:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"15820:14:13"},"returnParameters":{"id":2759,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2754,"mutability":"mutable","name":"netStake","nameLocation":"15875:8:13","nodeType":"VariableDeclaration","scope":2778,"src":"15867:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2753,"name":"uint256","nodeType":"ElementaryTypeName","src":"15867:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2756,"mutability":"mutable","name":"unclaimedFunds","nameLocation":"15944:14:13","nodeType":"VariableDeclaration","scope":2778,"src":"15936:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2755,"name":"uint256","nodeType":"ElementaryTypeName","src":"15936:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2758,"mutability":"mutable","name":"totalOriginalStake","nameLocation":"16002:18:13","nodeType":"VariableDeclaration","scope":2778,"src":"15994:26:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2757,"name":"uint256","nodeType":"ElementaryTypeName","src":"15994:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15857:209:13"},"scope":5452,"src":"15795:538:13","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":2838,"nodeType":"Block","src":"16459:774:13","statements":[{"assignments":[2785],"declarations":[{"constant":false,"id":2785,"mutability":"mutable","name":"unclaimedAmount","nameLocation":"16477:15:13","nodeType":"VariableDeclaration","scope":2838,"src":"16469:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2784,"name":"uint256","nodeType":"ElementaryTypeName","src":"16469:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2790,"initialValue":{"arguments":[{"expression":{"id":2787,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"16519:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2788,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16523:6:13","memberName":"sender","nodeType":"MemberAccess","src":"16519:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2786,"name":"calculateUnclaimedFunds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2723,"src":"16495:23:13","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":2789,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16495:35:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16469:61:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2794,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2792,"name":"unclaimedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2785,"src":"16548:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2793,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16566:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"16548:19:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f7468696e6720746f20636c61696d","id":2795,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16569:18:13","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":2791,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"16540:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2796,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16540:48:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2797,"nodeType":"ExpressionStatement","src":"16540:48:13"},{"expression":{"id":2803,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2798,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"16660:12:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2801,"indexExpression":{"expression":{"id":2799,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"16673:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2800,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16677:6:13","memberName":"sender","nodeType":"MemberAccess","src":"16673:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"16660:24:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":2802,"name":"unclaimedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2785,"src":"16688:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16660:43:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2804,"nodeType":"ExpressionStatement","src":"16660:43:13"},{"expression":{"id":2807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2805,"name":"totalBigStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1967,"src":"16713:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":2806,"name":"unclaimedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2785,"src":"16731:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16713:33:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2808,"nodeType":"ExpressionStatement","src":"16713:33:13"},{"expression":{"id":2814,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2809,"name":"userLastClaimedEpoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1957,"src":"16818:20:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2812,"indexExpression":{"expression":{"id":2810,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"16839:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16843:6:13","memberName":"sender","nodeType":"MemberAccess","src":"16839:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"16818:32:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2813,"name":"currentEpochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1965,"src":"16853:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16818:49:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2815,"nodeType":"ExpressionStatement","src":"16818:49:13"},{"expression":{"arguments":[{"arguments":[{"expression":{"id":2822,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"17010:5:13","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2823,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17016:9:13","memberName":"timestamp","nodeType":"MemberAccess","src":"17010:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2824,"name":"unclaimedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2785,"src":"17079:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2828,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2825,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"17120:5:13","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2826,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17126:9:13","memberName":"timestamp","nodeType":"MemberAccess","src":"17120:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":2827,"name":"unlockDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1924,"src":"17138:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17120:29:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2821,"name":"WithdrawStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1859,"src":"16973:13:13","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_WithdrawStake_$1859_storage_ptr_$","typeString":"type(struct CunaFinanceBsc.WithdrawStake storage pointer)"}},"id":2829,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["17001:7:13","17071:6:13","17108:10:13"],"names":["stakeId","amount","unlockTime"],"nodeType":"FunctionCall","src":"16973:187:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1859_memory_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_WithdrawStake_$1859_memory_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake memory"}],"expression":{"baseExpression":{"id":2816,"name":"withdrawStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1963,"src":"16941:14:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawStake storage ref[] storage ref)"}},"id":2819,"indexExpression":{"expression":{"id":2817,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"16956:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2818,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16960:6:13","memberName":"sender","nodeType":"MemberAccess","src":"16956:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16941:26:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref[] storage ref"}},"id":2820,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16968:4:13","memberName":"push","nodeType":"MemberAccess","src":"16941:31:13","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_ptr_$_t_struct$_WithdrawStake_$1859_storage_$returns$__$attached_to$_t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_ptr_$","typeString":"function (struct CunaFinanceBsc.WithdrawStake storage ref[] storage pointer,struct CunaFinanceBsc.WithdrawStake storage ref)"}},"id":2830,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16941:220:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2831,"nodeType":"ExpressionStatement","src":"16941:220:13"},{"eventCall":{"arguments":[{"expression":{"id":2833,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"17198:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2834,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17202:6:13","memberName":"sender","nodeType":"MemberAccess","src":"17198:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2835,"name":"unclaimedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2785,"src":"17210:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2832,"name":"FundsClaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2054,"src":"17185:12:13","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2836,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17185:41:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2837,"nodeType":"EmitStatement","src":"17180:46:13"}]},"documentation":{"id":2779,"nodeType":"StructuredDocumentation","src":"16339:63:13","text":"@notice Claim unlocked funds and create withdrawable stakes"},"functionSelector":"0c7d6386","id":2839,"implemented":true,"kind":"function","modifiers":[{"id":2782,"kind":"modifierInvocation","modifierName":{"id":2781,"name":"nonReentrant","nameLocations":["16446:12:13"],"nodeType":"IdentifierPath","referencedDeclaration":336,"src":"16446:12:13"},"nodeType":"ModifierInvocation","src":"16446:12:13"}],"name":"claimUnlockedFunds","nameLocation":"16416:18:13","nodeType":"FunctionDefinition","parameters":{"id":2780,"nodeType":"ParameterList","parameters":[],"src":"16434:2:13"},"returnParameters":{"id":2783,"nodeType":"ParameterList","parameters":[],"src":"16459:0:13"},"scope":5452,"src":"16407:826:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":2937,"nodeType":"Block","src":"17360:840:13","statements":[{"assignments":[2851],"declarations":[{"constant":false,"id":2851,"mutability":"mutable","name":"userStakes","nameLocation":"17394:10:13","nodeType":"VariableDeclaration","scope":2937,"src":"17370:34:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake[]"},"typeName":{"baseType":{"id":2849,"nodeType":"UserDefinedTypeName","pathNode":{"id":2848,"name":"WithdrawStake","nameLocations":["17370:13:13"],"nodeType":"IdentifierPath","referencedDeclaration":1859,"src":"17370:13:13"},"referencedDeclaration":1859,"src":"17370:13:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1859_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake"}},"id":2850,"nodeType":"ArrayTypeName","src":"17370:15:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake[]"}},"visibility":"internal"}],"id":2856,"initialValue":{"baseExpression":{"id":2852,"name":"withdrawStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1963,"src":"17407:14:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawStake storage ref[] storage ref)"}},"id":2855,"indexExpression":{"expression":{"id":2853,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"17422:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2854,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17426:6:13","memberName":"sender","nodeType":"MemberAccess","src":"17422:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17407:26:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref[] storage ref"}},"nodeType":"VariableDeclarationStatement","src":"17370:63:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2858,"name":"userStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2851,"src":"17451:10:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref[] storage pointer"}},"id":2859,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17462:6:13","memberName":"length","nodeType":"MemberAccess","src":"17451:17:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2860,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17471:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17451:21:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f207374616b657320617661696c61626c65","id":2862,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17474:21:13","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":2857,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"17443:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2863,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17443:53:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2864,"nodeType":"ExpressionStatement","src":"17443:53:13"},{"body":{"id":2931,"nodeType":"Block","src":"17563:587:13","statements":[{"assignments":[2878],"declarations":[{"constant":false,"id":2878,"mutability":"mutable","name":"stake","nameLocation":"17599:5:13","nodeType":"VariableDeclaration","scope":2931,"src":"17577:27:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1859_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake"},"typeName":{"id":2877,"nodeType":"UserDefinedTypeName","pathNode":{"id":2876,"name":"WithdrawStake","nameLocations":["17577:13:13"],"nodeType":"IdentifierPath","referencedDeclaration":1859,"src":"17577:13:13"},"referencedDeclaration":1859,"src":"17577:13:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1859_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake"}},"visibility":"internal"}],"id":2882,"initialValue":{"baseExpression":{"id":2879,"name":"userStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2851,"src":"17607:10:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref[] storage pointer"}},"id":2881,"indexExpression":{"id":2880,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2866,"src":"17618:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17607:13:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1859_storage","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref"}},"nodeType":"VariableDeclarationStatement","src":"17577:43:13"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2891,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2886,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2883,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2878,"src":"17638:5:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1859_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake storage pointer"}},"id":2884,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17644:7:13","memberName":"stakeId","nodeType":"MemberAccess","referencedDeclaration":1854,"src":"17638:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2885,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2842,"src":"17655:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17638:24:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2890,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2887,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2878,"src":"17666:5:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1859_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake storage pointer"}},"id":2888,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17672:6:13","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":1856,"src":"17666:12:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2889,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17681:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17666:16:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17638:44:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2930,"nodeType":"IfStatement","src":"17634:506:13","trueBody":{"id":2929,"nodeType":"Block","src":"17684:456:13","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2897,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2893,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"17710:5:13","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2894,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17716:9:13","memberName":"timestamp","nodeType":"MemberAccess","src":"17710:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":2895,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2878,"src":"17729:5:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1859_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake storage pointer"}},"id":2896,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17735:10:13","memberName":"unlockTime","nodeType":"MemberAccess","referencedDeclaration":1858,"src":"17729:16:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17710:35:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5374616b65206c6f636b6564","id":2898,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17747:14:13","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":2892,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"17702:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2899,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17702:60:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2900,"nodeType":"ExpressionStatement","src":"17702:60:13"},{"assignments":[2902],"declarations":[{"constant":false,"id":2902,"mutability":"mutable","name":"amount","nameLocation":"17805:6:13","nodeType":"VariableDeclaration","scope":2929,"src":"17797:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2901,"name":"uint256","nodeType":"ElementaryTypeName","src":"17797:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2905,"initialValue":{"expression":{"id":2903,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2878,"src":"17814:5:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1859_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake storage pointer"}},"id":2904,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17820:6:13","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":1856,"src":"17814:12:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"17797:29:13"},{"expression":{"id":2910,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2906,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2878,"src":"17844:5:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1859_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake storage pointer"}},"id":2908,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"17850:6:13","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":1856,"src":"17844:12:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":2909,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17859:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17844:16:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2911,"nodeType":"ExpressionStatement","src":"17844:16:13"},{"expression":{"arguments":[{"expression":{"id":2916,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"17999:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2917,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18003:6:13","memberName":"sender","nodeType":"MemberAccess","src":"17999:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2918,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2902,"src":"18011:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":2913,"name":"BSC_TOKEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1930,"src":"17975:9:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2912,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1216,"src":"17968:6:13","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1216_$","typeString":"type(contract IERC20)"}},"id":2914,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17968:17:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"id":2915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17986:12:13","memberName":"safeTransfer","nodeType":"MemberAccess","referencedDeclaration":1323,"src":"17968:30:13","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$1216_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$1216_$","typeString":"function (contract IERC20,address,uint256)"}},"id":2919,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17968:50:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2920,"nodeType":"ExpressionStatement","src":"17968:50:13"},{"eventCall":{"arguments":[{"expression":{"id":2922,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"18073:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2923,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18077:6:13","memberName":"sender","nodeType":"MemberAccess","src":"18073:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2924,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2902,"src":"18085:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2925,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2842,"src":"18093:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2921,"name":"StakeWithdrawn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2062,"src":"18058:14:13","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256)"}},"id":2926,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18058:43:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2927,"nodeType":"EmitStatement","src":"18053:48:13"},{"functionReturnParameters":2846,"id":2928,"nodeType":"Return","src":"18119:7:13"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2869,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2866,"src":"17535:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":2870,"name":"userStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2851,"src":"17539:10:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref[] storage pointer"}},"id":2871,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17550:6:13","memberName":"length","nodeType":"MemberAccess","src":"17539:17:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17535:21:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2932,"initializationExpression":{"assignments":[2866],"declarations":[{"constant":false,"id":2866,"mutability":"mutable","name":"i","nameLocation":"17528:1:13","nodeType":"VariableDeclaration","scope":2932,"src":"17520:9:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2865,"name":"uint256","nodeType":"ElementaryTypeName","src":"17520:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2868,"initialValue":{"hexValue":"30","id":2867,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17532:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"17520:13:13"},"loopExpression":{"expression":{"id":2874,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"17558:3:13","subExpression":{"id":2873,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2866,"src":"17558:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2875,"nodeType":"ExpressionStatement","src":"17558:3:13"},"nodeType":"ForStatement","src":"17515:635:13"},{"expression":{"arguments":[{"hexValue":"5374616b65206e6f7420666f756e64","id":2934,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18175:17:13","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":2933,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"18168:6:13","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":2935,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18168:25:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2936,"nodeType":"ExpressionStatement","src":"18168:25:13"}]},"documentation":{"id":2840,"nodeType":"StructuredDocumentation","src":"17239:54:13","text":"@notice Withdraw claimed funds after unlock period"},"functionSelector":"25d5971f","id":2938,"implemented":true,"kind":"function","modifiers":[{"id":2845,"kind":"modifierInvocation","modifierName":{"id":2844,"name":"nonReentrant","nameLocations":["17347:12:13"],"nodeType":"IdentifierPath","referencedDeclaration":336,"src":"17347:12:13"},"nodeType":"ModifierInvocation","src":"17347:12:13"}],"name":"withdrawStake","nameLocation":"17307:13:13","nodeType":"FunctionDefinition","parameters":{"id":2843,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2842,"mutability":"mutable","name":"stakeId","nameLocation":"17329:7:13","nodeType":"VariableDeclaration","scope":2938,"src":"17321:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2841,"name":"uint256","nodeType":"ElementaryTypeName","src":"17321:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17320:17:13"},"returnParameters":{"id":2846,"nodeType":"ParameterList","parameters":[],"src":"17360:0:13"},"scope":5452,"src":"17298:902:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":3018,"nodeType":"Block","src":"18405:880:13","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2949,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2947,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2941,"src":"18423:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2948,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18432:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18423:10:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c696420616d6f756e74","id":2950,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18435:16:13","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":2946,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"18415:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2951,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18415:37:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2952,"nodeType":"ExpressionStatement","src":"18415:37:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2956,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2954,"name":"instantBuyoutPercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1969,"src":"18470:20:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2955,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18493:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18470:24:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4275796f7574206e6f7420617661696c61626c65","id":2957,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18496:22:13","typeDescriptions":{"typeIdentifier":"t_stringliteral_1ac10a5347532b65b65d9d764e2021f8095d5c71891cb82e55f43f42c14f0f65","typeString":"literal_string \"Buyout not available\""},"value":"Buyout not available"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1ac10a5347532b65b65d9d764e2021f8095d5c71891cb82e55f43f42c14f0f65","typeString":"literal_string \"Buyout not available\""}],"id":2953,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"18462:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2958,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18462:57:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2959,"nodeType":"ExpressionStatement","src":"18462:57:13"},{"assignments":[2961],"declarations":[{"constant":false,"id":2961,"mutability":"mutable","name":"netStake","nameLocation":"18594:8:13","nodeType":"VariableDeclaration","scope":3018,"src":"18586:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2960,"name":"uint256","nodeType":"ElementaryTypeName","src":"18586:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2966,"initialValue":{"arguments":[{"expression":{"id":2963,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"18617:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2964,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18621:6:13","memberName":"sender","nodeType":"MemberAccess","src":"18617:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2962,"name":"getNetStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2748,"src":"18605:11:13","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":2965,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18605:23:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18586:42:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2970,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2968,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2941,"src":"18646:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":2969,"name":"netStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2961,"src":"18656:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18646:18:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e73756666696369656e74206e6574207374616b65","id":2971,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18666:24:13","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":2967,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"18638:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2972,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18638:53:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2973,"nodeType":"ExpressionStatement","src":"18638:53:13"},{"assignments":[2975],"declarations":[{"constant":false,"id":2975,"mutability":"mutable","name":"payoutAmount","nameLocation":"18718:12:13","nodeType":"VariableDeclaration","scope":3018,"src":"18710:20:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2974,"name":"uint256","nodeType":"ElementaryTypeName","src":"18710:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2982,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2981,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2978,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2976,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2941,"src":"18734:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":2977,"name":"instantBuyoutPercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1969,"src":"18743:20:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18734:29:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2979,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"18733:31:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130303030","id":2980,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18767:5:13","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"18733:39:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18710:62:13"},{"expression":{"id":2988,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2983,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"18838:12:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2986,"indexExpression":{"expression":{"id":2984,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"18851:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2985,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18855:6:13","memberName":"sender","nodeType":"MemberAccess","src":"18851:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18838:24:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":2987,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2941,"src":"18866:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18838:34:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2989,"nodeType":"ExpressionStatement","src":"18838:34:13"},{"expression":{"id":2992,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2990,"name":"totalBigStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1967,"src":"18882:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":2991,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2941,"src":"18900:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18882:24:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2993,"nodeType":"ExpressionStatement","src":"18882:24:13"},{"expression":{"id":2995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"19006:16:13","subExpression":{"id":2994,"name":"stakeIdCounter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1940,"src":"19006:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2996,"nodeType":"ExpressionStatement","src":"19006:16:13"},{"expression":{"arguments":[{"arguments":[{"id":3003,"name":"stakeIdCounter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1940,"src":"19101:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3004,"name":"payoutAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2975,"src":"19137:12:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3008,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3005,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"19175:5:13","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3006,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19181:9:13","memberName":"timestamp","nodeType":"MemberAccess","src":"19175:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":3007,"name":"unlockDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1924,"src":"19193:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19175:29:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3002,"name":"WithdrawStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1859,"src":"19064:13:13","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_WithdrawStake_$1859_storage_ptr_$","typeString":"type(struct CunaFinanceBsc.WithdrawStake storage pointer)"}},"id":3009,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["19092:7:13","19129:6:13","19163:10:13"],"names":["stakeId","amount","unlockTime"],"nodeType":"FunctionCall","src":"19064:151:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1859_memory_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_WithdrawStake_$1859_memory_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake memory"}],"expression":{"baseExpression":{"id":2997,"name":"withdrawStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1963,"src":"19032:14:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawStake storage ref[] storage ref)"}},"id":3000,"indexExpression":{"expression":{"id":2998,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"19047:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19051:6:13","memberName":"sender","nodeType":"MemberAccess","src":"19047:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19032:26:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref[] storage ref"}},"id":3001,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19059:4:13","memberName":"push","nodeType":"MemberAccess","src":"19032:31:13","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_ptr_$_t_struct$_WithdrawStake_$1859_storage_$returns$__$attached_to$_t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_ptr_$","typeString":"function (struct CunaFinanceBsc.WithdrawStake storage ref[] storage pointer,struct CunaFinanceBsc.WithdrawStake storage ref)"}},"id":3010,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19032:184:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3011,"nodeType":"ExpressionStatement","src":"19032:184:13"},{"eventCall":{"arguments":[{"expression":{"id":3013,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"19253:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3014,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19257:6:13","memberName":"sender","nodeType":"MemberAccess","src":"19253:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3015,"name":"payoutAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2975,"src":"19265:12:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3012,"name":"FundsClaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2054,"src":"19240:12:13","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":3016,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19240:38:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3017,"nodeType":"EmitStatement","src":"19235:43:13"}]},"documentation":{"id":2939,"nodeType":"StructuredDocumentation","src":"18206:133:13","text":"@notice Instantly buy out a portion of user's stake at configured percentage\n @param amount The amount of stake to buy out"},"functionSelector":"9cb6f556","id":3019,"implemented":true,"kind":"function","modifiers":[{"id":2944,"kind":"modifierInvocation","modifierName":{"id":2943,"name":"nonReentrant","nameLocations":["18392:12:13"],"nodeType":"IdentifierPath","referencedDeclaration":336,"src":"18392:12:13"},"nodeType":"ModifierInvocation","src":"18392:12:13"}],"name":"instantBuyout","nameLocation":"18353:13:13","nodeType":"FunctionDefinition","parameters":{"id":2942,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2941,"mutability":"mutable","name":"amount","nameLocation":"18375:6:13","nodeType":"VariableDeclaration","scope":3019,"src":"18367:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2940,"name":"uint256","nodeType":"ElementaryTypeName","src":"18367:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18366:16:13"},"returnParameters":{"id":2945,"nodeType":"ParameterList","parameters":[],"src":"18405:0:13"},"scope":5452,"src":"18344:941:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":3067,"nodeType":"Block","src":"19684:360:13","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3035,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3030,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3022,"src":"19702:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":3033,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19718:1:13","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":3032,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19710:7:13","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3031,"name":"address","nodeType":"ElementaryTypeName","src":"19710:7:13","typeDescriptions":{}}},"id":3034,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19710:10:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"19702:18:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642061646472657373","id":3036,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"19722:17:13","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":3029,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"19694:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3037,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19694:46:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3038,"nodeType":"ExpressionStatement","src":"19694:46:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3042,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3040,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3024,"src":"19758:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3041,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19767:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"19758:10:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c696420616d6f756e74","id":3043,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"19770:16:13","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":3039,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"19750:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3044,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19750:37:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3045,"nodeType":"ExpressionStatement","src":"19750:37:13"},{"expression":{"id":3054,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3046,"name":"totalBigStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1967,"src":"19848:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3053,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3051,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3047,"name":"totalBigStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1967,"src":"19865:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"baseExpression":{"id":3048,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"19882:12:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3050,"indexExpression":{"id":3049,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3022,"src":"19895:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19882:18:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19865:35:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":3052,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3024,"src":"19903:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19865:44:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19848:61:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3055,"nodeType":"ExpressionStatement","src":"19848:61:13"},{"expression":{"id":3060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3056,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"19960:12:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3058,"indexExpression":{"id":3057,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3022,"src":"19973:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"19960:18:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3059,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3024,"src":"19981:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19960:27:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3061,"nodeType":"ExpressionStatement","src":"19960:27:13"},{"eventCall":{"arguments":[{"id":3063,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3022,"src":"20024:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3064,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3024,"src":"20030:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3062,"name":"StakeCreated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2048,"src":"20011:12:13","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":3065,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20011:26:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3066,"nodeType":"EmitStatement","src":"20006:31:13"}]},"documentation":{"id":3020,"nodeType":"StructuredDocumentation","src":"19340:267:13","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":3068,"implemented":true,"kind":"function","modifiers":[{"id":3027,"kind":"modifierInvocation","modifierName":{"id":3026,"name":"onlyBot","nameLocations":["19676:7:13"],"nodeType":"IdentifierPath","referencedDeclaration":2118,"src":"19676:7:13"},"nodeType":"ModifierInvocation","src":"19676:7:13"}],"name":"createUserStake","nameLocation":"19621:15:13","nodeType":"FunctionDefinition","parameters":{"id":3025,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3022,"mutability":"mutable","name":"user","nameLocation":"19645:4:13","nodeType":"VariableDeclaration","scope":3068,"src":"19637:12:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3021,"name":"address","nodeType":"ElementaryTypeName","src":"19637:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3024,"mutability":"mutable","name":"amount","nameLocation":"19659:6:13","nodeType":"VariableDeclaration","scope":3068,"src":"19651:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3023,"name":"uint256","nodeType":"ElementaryTypeName","src":"19651:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19636:30:13"},"returnParameters":{"id":3028,"nodeType":"ParameterList","parameters":[],"src":"19684:0:13"},"scope":5452,"src":"19612:432:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":3172,"nodeType":"Block","src":"20405:727:13","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3085,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3081,"name":"users","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3072,"src":"20423:5:13","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3082,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20429:6:13","memberName":"length","nodeType":"MemberAccess","src":"20423:12:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":3083,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3075,"src":"20439:7:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20447:6:13","memberName":"length","nodeType":"MemberAccess","src":"20439:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20423:30:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4172726179206c656e677468206d69736d61746368","id":3086,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"20455:23:13","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":3080,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"20415:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3087,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20415:64:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3088,"nodeType":"ExpressionStatement","src":"20415:64:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3090,"name":"users","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3072,"src":"20497:5:13","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3091,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20503:6:13","memberName":"length","nodeType":"MemberAccess","src":"20497:12:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3092,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20512:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"20497:16:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"456d70747920617272617973","id":3094,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"20515:14:13","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":3089,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"20489:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3095,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20489:41:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3096,"nodeType":"ExpressionStatement","src":"20489:41:13"},{"assignments":[3098],"declarations":[{"constant":false,"id":3098,"mutability":"mutable","name":"totalAdded","nameLocation":"20557:10:13","nodeType":"VariableDeclaration","scope":3172,"src":"20549:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3097,"name":"uint256","nodeType":"ElementaryTypeName","src":"20549:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3100,"initialValue":{"hexValue":"30","id":3099,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20570:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"20549:22:13"},{"body":{"id":3166,"nodeType":"Block","src":"20633:415:13","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3120,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":3113,"name":"users","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3072,"src":"20655:5:13","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3115,"indexExpression":{"id":3114,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3102,"src":"20661:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"20655:8:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":3118,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20675:1:13","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":3117,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"20667:7:13","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3116,"name":"address","nodeType":"ElementaryTypeName","src":"20667:7:13","typeDescriptions":{}}},"id":3119,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20667:10:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"20655:22:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642061646472657373","id":3121,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"20679:17:13","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":3112,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"20647:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3122,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20647:50:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3123,"nodeType":"ExpressionStatement","src":"20647:50:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3129,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":3125,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3075,"src":"20719:7:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3127,"indexExpression":{"id":3126,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3102,"src":"20727:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"20719:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3128,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20732:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"20719:14:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c696420616d6f756e74","id":3130,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"20735:16:13","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":3124,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"20711:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3131,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20711:41:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3132,"nodeType":"ExpressionStatement","src":"20711:41:13"},{"expression":{"id":3145,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3133,"name":"totalAdded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3098,"src":"20812:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3144,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3134,"name":"totalAdded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3098,"src":"20825:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"baseExpression":{"id":3135,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"20838:12:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3139,"indexExpression":{"baseExpression":{"id":3136,"name":"users","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3072,"src":"20851:5:13","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3138,"indexExpression":{"id":3137,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3102,"src":"20857:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"20851:8:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"20838:22:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20825:35:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"baseExpression":{"id":3141,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3075,"src":"20863:7:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3143,"indexExpression":{"id":3142,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3102,"src":"20871:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"20863:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20825:48:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20812:61:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3146,"nodeType":"ExpressionStatement","src":"20812:61:13"},{"expression":{"id":3155,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3147,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"20936:12:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3151,"indexExpression":{"baseExpression":{"id":3148,"name":"users","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3072,"src":"20949:5:13","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3150,"indexExpression":{"id":3149,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3102,"src":"20955:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"20949:8:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"20936:22:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":3152,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3075,"src":"20961:7:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3154,"indexExpression":{"id":3153,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3102,"src":"20969:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"20961:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20936:35:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3156,"nodeType":"ExpressionStatement","src":"20936:35:13"},{"eventCall":{"arguments":[{"baseExpression":{"id":3158,"name":"users","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3072,"src":"21016:5:13","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3160,"indexExpression":{"id":3159,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3102,"src":"21022:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"21016:8:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":3161,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3075,"src":"21026:7:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":3163,"indexExpression":{"id":3162,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3102,"src":"21034:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"21026:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3157,"name":"StakeCreated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2048,"src":"21003:12:13","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":3164,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21003:34:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3165,"nodeType":"EmitStatement","src":"20998:39:13"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3105,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3102,"src":"20610:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":3106,"name":"users","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3072,"src":"20614:5:13","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":3107,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20620:6:13","memberName":"length","nodeType":"MemberAccess","src":"20614:12:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20610:16:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3167,"initializationExpression":{"assignments":[3102],"declarations":[{"constant":false,"id":3102,"mutability":"mutable","name":"i","nameLocation":"20603:1:13","nodeType":"VariableDeclaration","scope":3167,"src":"20595:9:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3101,"name":"uint256","nodeType":"ElementaryTypeName","src":"20595:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3104,"initialValue":{"hexValue":"30","id":3103,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20607:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"20595:13:13"},"loopExpression":{"expression":{"id":3110,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"20628:3:13","subExpression":{"id":3109,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3102,"src":"20628:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3111,"nodeType":"ExpressionStatement","src":"20628:3:13"},"nodeType":"ForStatement","src":"20590:458:13"},{"expression":{"id":3170,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3168,"name":"totalBigStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1967,"src":"21097:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3169,"name":"totalAdded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3098,"src":"21115:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"21097:28:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3171,"nodeType":"ExpressionStatement","src":"21097:28:13"}]},"documentation":{"id":3069,"nodeType":"StructuredDocumentation","src":"20050:248:13","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":3173,"implemented":true,"kind":"function","modifiers":[{"id":3078,"kind":"modifierInvocation","modifierName":{"id":3077,"name":"onlyBot","nameLocations":["20397:7:13"],"nodeType":"IdentifierPath","referencedDeclaration":2118,"src":"20397:7:13"},"nodeType":"ModifierInvocation","src":"20397:7:13"}],"name":"batchCreateUserStakes","nameLocation":"20312:21:13","nodeType":"FunctionDefinition","parameters":{"id":3076,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3072,"mutability":"mutable","name":"users","nameLocation":"20353:5:13","nodeType":"VariableDeclaration","scope":3173,"src":"20334:24:13","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":3070,"name":"address","nodeType":"ElementaryTypeName","src":"20334:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3071,"nodeType":"ArrayTypeName","src":"20334:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":3075,"mutability":"mutable","name":"amounts","nameLocation":"20379:7:13","nodeType":"VariableDeclaration","scope":3173,"src":"20360:26:13","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":3073,"name":"uint256","nodeType":"ElementaryTypeName","src":"20360:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3074,"nodeType":"ArrayTypeName","src":"20360:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"20333:54:13"},"returnParameters":{"id":3079,"nodeType":"ParameterList","parameters":[],"src":"20405:0:13"},"scope":5452,"src":"20303:829:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":3187,"nodeType":"Block","src":"21314:44:13","statements":[{"expression":{"baseExpression":{"id":3183,"name":"withdrawStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1963,"src":"21331:14:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawStake storage ref[] storage ref)"}},"id":3185,"indexExpression":{"id":3184,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3176,"src":"21346:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"21331:20:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref[] storage ref"}},"functionReturnParameters":3182,"id":3186,"nodeType":"Return","src":"21324:27:13"}]},"documentation":{"id":3174,"nodeType":"StructuredDocumentation","src":"21172:46:13","text":"@notice Get all withdraw stakes for a user"},"functionSelector":"c7b530b0","id":3188,"implemented":true,"kind":"function","modifiers":[],"name":"getAllWithdrawStakes","nameLocation":"21232:20:13","nodeType":"FunctionDefinition","parameters":{"id":3177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3176,"mutability":"mutable","name":"user","nameLocation":"21261:4:13","nodeType":"VariableDeclaration","scope":3188,"src":"21253:12:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3175,"name":"address","nodeType":"ElementaryTypeName","src":"21253:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"21252:14:13"},"returnParameters":{"id":3182,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3181,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3188,"src":"21290:22:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1859_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake[]"},"typeName":{"baseType":{"id":3179,"nodeType":"UserDefinedTypeName","pathNode":{"id":3178,"name":"WithdrawStake","nameLocations":["21290:13:13"],"nodeType":"IdentifierPath","referencedDeclaration":1859,"src":"21290:13:13"},"referencedDeclaration":1859,"src":"21290:13:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1859_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake"}},"id":3180,"nodeType":"ArrayTypeName","src":"21290:15:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake[]"}},"visibility":"internal"}],"src":"21289:24:13"},"scope":5452,"src":"21223:135:13","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":3237,"nodeType":"Block","src":"21521:281:13","statements":[{"assignments":[3203],"declarations":[{"constant":false,"id":3203,"mutability":"mutable","name":"userStakes","nameLocation":"21555:10:13","nodeType":"VariableDeclaration","scope":3237,"src":"21531:34:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake[]"},"typeName":{"baseType":{"id":3201,"nodeType":"UserDefinedTypeName","pathNode":{"id":3200,"name":"WithdrawStake","nameLocations":["21531:13:13"],"nodeType":"IdentifierPath","referencedDeclaration":1859,"src":"21531:13:13"},"referencedDeclaration":1859,"src":"21531:13:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1859_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake"}},"id":3202,"nodeType":"ArrayTypeName","src":"21531:15:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake[]"}},"visibility":"internal"}],"id":3207,"initialValue":{"baseExpression":{"id":3204,"name":"withdrawStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1963,"src":"21568:14:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawStake storage ref[] storage ref)"}},"id":3206,"indexExpression":{"id":3205,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3191,"src":"21583:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"21568:20:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref[] storage ref"}},"nodeType":"VariableDeclarationStatement","src":"21531:57:13"},{"body":{"id":3231,"nodeType":"Block","src":"21646:115:13","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3224,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":3219,"name":"userStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3203,"src":"21664:10:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref[] storage pointer"}},"id":3221,"indexExpression":{"id":3220,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3209,"src":"21675:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"21664:13:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1859_storage","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref"}},"id":3222,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"21678:7:13","memberName":"stakeId","nodeType":"MemberAccess","referencedDeclaration":1854,"src":"21664:21:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":3223,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3193,"src":"21689:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"21664:32:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3230,"nodeType":"IfStatement","src":"21660:91:13","trueBody":{"id":3229,"nodeType":"Block","src":"21698:53:13","statements":[{"expression":{"baseExpression":{"id":3225,"name":"userStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3203,"src":"21723:10:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref[] storage pointer"}},"id":3227,"indexExpression":{"id":3226,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3209,"src":"21734:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"21723:13:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1859_storage","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref"}},"functionReturnParameters":3198,"id":3228,"nodeType":"Return","src":"21716:20:13"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3215,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3212,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3209,"src":"21618:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":3213,"name":"userStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3203,"src":"21622:10:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref[] storage pointer"}},"id":3214,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21633:6:13","memberName":"length","nodeType":"MemberAccess","src":"21622:17:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"21618:21:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3232,"initializationExpression":{"assignments":[3209],"declarations":[{"constant":false,"id":3209,"mutability":"mutable","name":"i","nameLocation":"21611:1:13","nodeType":"VariableDeclaration","scope":3232,"src":"21603:9:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3208,"name":"uint256","nodeType":"ElementaryTypeName","src":"21603:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3211,"initialValue":{"hexValue":"30","id":3210,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21615:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"21603:13:13"},"loopExpression":{"expression":{"id":3217,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"21641:3:13","subExpression":{"id":3216,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3209,"src":"21641:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3218,"nodeType":"ExpressionStatement","src":"21641:3:13"},"nodeType":"ForStatement","src":"21598:163:13"},{"expression":{"arguments":[{"hexValue":"5374616b65206e6f7420666f756e64","id":3234,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"21777:17:13","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":3233,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"21770:6:13","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":3235,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21770:25:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3236,"nodeType":"ExpressionStatement","src":"21770:25:13"}]},"documentation":{"id":3189,"nodeType":"StructuredDocumentation","src":"21364:50:13","text":"@notice Get specific withdraw stake by stakeId"},"functionSelector":"b6c3dc4c","id":3238,"implemented":true,"kind":"function","modifiers":[],"name":"getWithdrawStake","nameLocation":"21428:16:13","nodeType":"FunctionDefinition","parameters":{"id":3194,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3191,"mutability":"mutable","name":"user","nameLocation":"21453:4:13","nodeType":"VariableDeclaration","scope":3238,"src":"21445:12:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3190,"name":"address","nodeType":"ElementaryTypeName","src":"21445:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3193,"mutability":"mutable","name":"stakeId","nameLocation":"21467:7:13","nodeType":"VariableDeclaration","scope":3238,"src":"21459:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3192,"name":"uint256","nodeType":"ElementaryTypeName","src":"21459:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"21444:31:13"},"returnParameters":{"id":3198,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3197,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3238,"src":"21499:20:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1859_memory_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake"},"typeName":{"id":3196,"nodeType":"UserDefinedTypeName","pathNode":{"id":3195,"name":"WithdrawStake","nameLocations":["21499:13:13"],"nodeType":"IdentifierPath","referencedDeclaration":1859,"src":"21499:13:13"},"referencedDeclaration":1859,"src":"21499:13:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1859_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake"}},"visibility":"internal"}],"src":"21498:22:13"},"scope":5452,"src":"21419:383:13","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":3258,"nodeType":"Block","src":"21924:101:13","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3250,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3248,"name":"epochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3241,"src":"21942:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":3249,"name":"currentEpochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1965,"src":"21952:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"21942:24:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45706f6368206e6f7420666f756e64","id":3251,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"21968:17:13","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":3247,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"21934:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3252,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21934:52:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3253,"nodeType":"ExpressionStatement","src":"21934:52:13"},{"expression":{"baseExpression":{"id":3254,"name":"epochs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1949,"src":"22003:6:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Epoch_$1852_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.Epoch storage ref)"}},"id":3256,"indexExpression":{"id":3255,"name":"epochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3241,"src":"22010:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22003:15:13","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1852_storage","typeString":"struct CunaFinanceBsc.Epoch storage ref"}},"functionReturnParameters":3246,"id":3257,"nodeType":"Return","src":"21996:22:13"}]},"documentation":{"id":3239,"nodeType":"StructuredDocumentation","src":"21808:39:13","text":"@notice Get epoch information by ID"},"functionSelector":"bc0bc6ba","id":3259,"implemented":true,"kind":"function","modifiers":[],"name":"getEpoch","nameLocation":"21861:8:13","nodeType":"FunctionDefinition","parameters":{"id":3242,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3241,"mutability":"mutable","name":"epochId","nameLocation":"21878:7:13","nodeType":"VariableDeclaration","scope":3259,"src":"21870:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3240,"name":"uint256","nodeType":"ElementaryTypeName","src":"21870:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"21869:17:13"},"returnParameters":{"id":3246,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3245,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3259,"src":"21910:12:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1852_memory_ptr","typeString":"struct CunaFinanceBsc.Epoch"},"typeName":{"id":3244,"nodeType":"UserDefinedTypeName","pathNode":{"id":3243,"name":"Epoch","nameLocations":["21910:5:13"],"nodeType":"IdentifierPath","referencedDeclaration":1852,"src":"21910:5:13"},"referencedDeclaration":1852,"src":"21910:5:13","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1852_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch"}},"visibility":"internal"}],"src":"21909:14:13"},"scope":5452,"src":"21852:173:13","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":3329,"nodeType":"Block","src":"22170:374:13","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3274,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3272,"name":"startId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3262,"src":"22188:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":3273,"name":"endId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3264,"src":"22199:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22188:16:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642072616e6765","id":3275,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22206:15:13","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":3271,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"22180:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3276,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22180:42:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3277,"nodeType":"ExpressionStatement","src":"22180:42:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3281,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3279,"name":"endId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3264,"src":"22240:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":3280,"name":"currentEpochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1965,"src":"22248:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22240:22:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"456e642065706f6368206e6f7420666f756e64","id":3282,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22264:21:13","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":3278,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"22232:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3283,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22232:54:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3284,"nodeType":"ExpressionStatement","src":"22232:54:13"},{"assignments":[3286],"declarations":[{"constant":false,"id":3286,"mutability":"mutable","name":"length","nameLocation":"22313:6:13","nodeType":"VariableDeclaration","scope":3329,"src":"22305:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3285,"name":"uint256","nodeType":"ElementaryTypeName","src":"22305:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3292,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3291,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3287,"name":"endId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3264,"src":"22322:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":3288,"name":"startId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3262,"src":"22330:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22322:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":3290,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22340:1:13","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22322:19:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"22305:36:13"},{"assignments":[3297],"declarations":[{"constant":false,"id":3297,"mutability":"mutable","name":"result","nameLocation":"22366:6:13","nodeType":"VariableDeclaration","scope":3329,"src":"22351:21:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Epoch_$1852_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.Epoch[]"},"typeName":{"baseType":{"id":3295,"nodeType":"UserDefinedTypeName","pathNode":{"id":3294,"name":"Epoch","nameLocations":["22351:5:13"],"nodeType":"IdentifierPath","referencedDeclaration":1852,"src":"22351:5:13"},"referencedDeclaration":1852,"src":"22351:5:13","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1852_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch"}},"id":3296,"nodeType":"ArrayTypeName","src":"22351:7:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Epoch_$1852_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch[]"}},"visibility":"internal"}],"id":3304,"initialValue":{"arguments":[{"id":3302,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3286,"src":"22387:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3301,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"22375:11:13","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_Epoch_$1852_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct CunaFinanceBsc.Epoch memory[] memory)"},"typeName":{"baseType":{"id":3299,"nodeType":"UserDefinedTypeName","pathNode":{"id":3298,"name":"Epoch","nameLocations":["22379:5:13"],"nodeType":"IdentifierPath","referencedDeclaration":1852,"src":"22379:5:13"},"referencedDeclaration":1852,"src":"22379:5:13","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1852_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch"}},"id":3300,"nodeType":"ArrayTypeName","src":"22379:7:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Epoch_$1852_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch[]"}}},"id":3303,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22375:19:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Epoch_$1852_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.Epoch memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"22351:43:13"},{"body":{"id":3325,"nodeType":"Block","src":"22450:56:13","statements":[{"expression":{"id":3323,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3315,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3297,"src":"22464:6:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Epoch_$1852_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.Epoch memory[] memory"}},"id":3317,"indexExpression":{"id":3316,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3306,"src":"22471:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"22464:9:13","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1852_memory_ptr","typeString":"struct CunaFinanceBsc.Epoch memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":3318,"name":"epochs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1949,"src":"22476:6:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Epoch_$1852_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.Epoch storage ref)"}},"id":3322,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3319,"name":"startId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3262,"src":"22483:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":3320,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3306,"src":"22493:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22483:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22476:19:13","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1852_storage","typeString":"struct CunaFinanceBsc.Epoch storage ref"}},"src":"22464:31:13","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1852_memory_ptr","typeString":"struct CunaFinanceBsc.Epoch memory"}},"id":3324,"nodeType":"ExpressionStatement","src":"22464:31:13"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3311,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3309,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3306,"src":"22433:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":3310,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3286,"src":"22437:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22433:10:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3326,"initializationExpression":{"assignments":[3306],"declarations":[{"constant":false,"id":3306,"mutability":"mutable","name":"i","nameLocation":"22426:1:13","nodeType":"VariableDeclaration","scope":3326,"src":"22418:9:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3305,"name":"uint256","nodeType":"ElementaryTypeName","src":"22418:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3308,"initialValue":{"hexValue":"30","id":3307,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22430:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"22418:13:13"},"loopExpression":{"expression":{"id":3313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"22445:3:13","subExpression":{"id":3312,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3306,"src":"22445:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3314,"nodeType":"ExpressionStatement","src":"22445:3:13"},"nodeType":"ForStatement","src":"22413:93:13"},{"expression":{"id":3327,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3297,"src":"22531:6:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Epoch_$1852_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.Epoch memory[] memory"}},"functionReturnParameters":3270,"id":3328,"nodeType":"Return","src":"22524:13:13"}]},"documentation":{"id":3260,"nodeType":"StructuredDocumentation","src":"22031:44:13","text":"@notice Get multiple epochs for analysis"},"functionSelector":"96fd111a","id":3330,"implemented":true,"kind":"function","modifiers":[],"name":"getEpochs","nameLocation":"22089:9:13","nodeType":"FunctionDefinition","parameters":{"id":3265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3262,"mutability":"mutable","name":"startId","nameLocation":"22107:7:13","nodeType":"VariableDeclaration","scope":3330,"src":"22099:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3261,"name":"uint256","nodeType":"ElementaryTypeName","src":"22099:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3264,"mutability":"mutable","name":"endId","nameLocation":"22124:5:13","nodeType":"VariableDeclaration","scope":3330,"src":"22116:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3263,"name":"uint256","nodeType":"ElementaryTypeName","src":"22116:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"22098:32:13"},"returnParameters":{"id":3270,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3269,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3330,"src":"22154:14:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Epoch_$1852_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.Epoch[]"},"typeName":{"baseType":{"id":3267,"nodeType":"UserDefinedTypeName","pathNode":{"id":3266,"name":"Epoch","nameLocations":["22154:5:13"],"nodeType":"IdentifierPath","referencedDeclaration":1852,"src":"22154:5:13"},"referencedDeclaration":1852,"src":"22154:5:13","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1852_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch"}},"id":3268,"nodeType":"ArrayTypeName","src":"22154:7:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Epoch_$1852_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.Epoch[]"}},"visibility":"internal"}],"src":"22153:16:13"},"scope":5452,"src":"22080:464:13","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":3463,"nodeType":"Block","src":"22794:938:13","statements":[{"assignments":[3345],"declarations":[{"constant":false,"id":3345,"mutability":"mutable","name":"remainingStake","nameLocation":"22812:14:13","nodeType":"VariableDeclaration","scope":3463,"src":"22804:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3344,"name":"uint256","nodeType":"ElementaryTypeName","src":"22804:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3349,"initialValue":{"baseExpression":{"id":3346,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"22829:12:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3348,"indexExpression":{"id":3347,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3333,"src":"22842:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22829:18:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"22804:43:13"},{"assignments":[3351],"declarations":[{"constant":false,"id":3351,"mutability":"mutable","name":"startEpoch","nameLocation":"22865:10:13","nodeType":"VariableDeclaration","scope":3463,"src":"22857:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3350,"name":"uint256","nodeType":"ElementaryTypeName","src":"22857:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3355,"initialValue":{"baseExpression":{"id":3352,"name":"userLastClaimedEpoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1957,"src":"22878:20:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3354,"indexExpression":{"id":3353,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3333,"src":"22899:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22878:26:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"22857:47:13"},{"assignments":[3357],"declarations":[{"constant":false,"id":3357,"mutability":"mutable","name":"epochCount","nameLocation":"22922:10:13","nodeType":"VariableDeclaration","scope":3463,"src":"22914:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3356,"name":"uint256","nodeType":"ElementaryTypeName","src":"22914:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3361,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3358,"name":"currentEpochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1965,"src":"22935:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":3359,"name":"startEpoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3351,"src":"22952:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22935:27:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"22914:48:13"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3362,"name":"epochCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3357,"src":"22985:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":3363,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22999:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"22985:15:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3379,"nodeType":"IfStatement","src":"22981:92:13","trueBody":{"id":3378,"nodeType":"Block","src":"23002:71:13","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":3368,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23038:1:13","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":3367,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"23024:13:13","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":3365,"name":"uint256","nodeType":"ElementaryTypeName","src":"23028:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3366,"nodeType":"ArrayTypeName","src":"23028:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":3369,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23024:16:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"arguments":[{"hexValue":"30","id":3373,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23056:1:13","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":3372,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"23042:13:13","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":3370,"name":"uint256","nodeType":"ElementaryTypeName","src":"23046:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3371,"nodeType":"ArrayTypeName","src":"23046:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":3374,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23042:16:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"hexValue":"30","id":3375,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23060:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":3376,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"23023:39:13","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":3343,"id":3377,"nodeType":"Return","src":"23016:46:13"}]}},{"expression":{"id":3386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3380,"name":"epochIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3337,"src":"23091:8:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":3384,"name":"epochCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3357,"src":"23116:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3383,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"23102:13:13","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":3381,"name":"uint256","nodeType":"ElementaryTypeName","src":"23106:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3382,"nodeType":"ArrayTypeName","src":"23106:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":3385,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23102:25:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"src":"23091:36:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":3387,"nodeType":"ExpressionStatement","src":"23091:36:13"},{"expression":{"id":3394,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3388,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3340,"src":"23137:7:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":3392,"name":"epochCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3357,"src":"23161:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3391,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"23147:13:13","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":3389,"name":"uint256","nodeType":"ElementaryTypeName","src":"23151:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3390,"nodeType":"ArrayTypeName","src":"23151:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":3393,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23147:25:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"src":"23137:35:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":3395,"nodeType":"ExpressionStatement","src":"23137:35:13"},{"body":{"id":3456,"nodeType":"Block","src":"23232:433:13","statements":[{"assignments":[3407],"declarations":[{"constant":false,"id":3407,"mutability":"mutable","name":"epochId","nameLocation":"23254:7:13","nodeType":"VariableDeclaration","scope":3456,"src":"23246:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3406,"name":"uint256","nodeType":"ElementaryTypeName","src":"23246:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3411,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3408,"name":"startEpoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3351,"src":"23264:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":3409,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3397,"src":"23277:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23264:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23246:32:13"},{"expression":{"id":3416,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3412,"name":"epochIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3337,"src":"23292:8:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":3414,"indexExpression":{"id":3413,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3397,"src":"23301:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"23292:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3415,"name":"epochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3407,"src":"23306:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23292:21:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3417,"nodeType":"ExpressionStatement","src":"23292:21:13"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3420,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3418,"name":"remainingStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3345,"src":"23344:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3419,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23361:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"23344:18:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":3454,"nodeType":"Block","src":"23608:47:13","statements":[{"expression":{"id":3452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3448,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3340,"src":"23626:7:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":3450,"indexExpression":{"id":3449,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3397,"src":"23634:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"23626:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":3451,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23639:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"23626:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3453,"nodeType":"ExpressionStatement","src":"23626:14:13"}]},"id":3455,"nodeType":"IfStatement","src":"23340:315:13","trueBody":{"id":3447,"nodeType":"Block","src":"23364:238:13","statements":[{"assignments":[3422],"declarations":[{"constant":false,"id":3422,"mutability":"mutable","name":"unlocked","nameLocation":"23390:8:13","nodeType":"VariableDeclaration","scope":3447,"src":"23382:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3421,"name":"uint256","nodeType":"ElementaryTypeName","src":"23382:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3432,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3431,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3428,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3423,"name":"remainingStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3345,"src":"23402:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"baseExpression":{"id":3424,"name":"epochs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1949,"src":"23419:6:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Epoch_$1852_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.Epoch storage ref)"}},"id":3426,"indexExpression":{"id":3425,"name":"epochId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3407,"src":"23426:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"23419:15:13","typeDescriptions":{"typeIdentifier":"t_struct$_Epoch_$1852_storage","typeString":"struct CunaFinanceBsc.Epoch storage ref"}},"id":3427,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23435:16:13","memberName":"unlockPercentage","nodeType":"MemberAccess","referencedDeclaration":1849,"src":"23419:32:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23402:49:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3429,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"23401:51:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130303030","id":3430,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23455:5:13","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"23401:59:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23382:78:13"},{"expression":{"id":3437,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3433,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3340,"src":"23478:7:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":3435,"indexExpression":{"id":3434,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3397,"src":"23486:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"23478:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3436,"name":"unlocked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3422,"src":"23491:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23478:21:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3438,"nodeType":"ExpressionStatement","src":"23478:21:13"},{"expression":{"id":3441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3439,"name":"totalUnclaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3342,"src":"23517:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3440,"name":"unlocked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3422,"src":"23535:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23517:26:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3442,"nodeType":"ExpressionStatement","src":"23517:26:13"},{"expression":{"id":3445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3443,"name":"remainingStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3345,"src":"23561:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":3444,"name":"unlocked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3422,"src":"23579:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23561:26:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3446,"nodeType":"ExpressionStatement","src":"23561:26:13"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3402,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3400,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3397,"src":"23211:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":3401,"name":"epochCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3357,"src":"23215:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23211:14:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3457,"initializationExpression":{"assignments":[3397],"declarations":[{"constant":false,"id":3397,"mutability":"mutable","name":"i","nameLocation":"23204:1:13","nodeType":"VariableDeclaration","scope":3457,"src":"23196:9:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3396,"name":"uint256","nodeType":"ElementaryTypeName","src":"23196:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3399,"initialValue":{"hexValue":"30","id":3398,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23208:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"23196:13:13"},"loopExpression":{"expression":{"id":3404,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"23227:3:13","subExpression":{"id":3403,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3397,"src":"23227:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3405,"nodeType":"ExpressionStatement","src":"23227:3:13"},"nodeType":"ForStatement","src":"23191:474:13"},{"expression":{"components":[{"id":3458,"name":"epochIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3337,"src":"23691:8:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":3459,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3340,"src":"23701:7:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":3460,"name":"totalUnclaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3342,"src":"23710:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3461,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"23690:35:13","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":3343,"id":3462,"nodeType":"Return","src":"23683:42:13"}]},"documentation":{"id":3331,"nodeType":"StructuredDocumentation","src":"22550:59:13","text":"@notice Get detailed unclaimed funds breakdown by epoch"},"functionSelector":"e88f8e66","id":3464,"implemented":true,"kind":"function","modifiers":[],"name":"getUnclaimedFundsBreakdown","nameLocation":"22623:26:13","nodeType":"FunctionDefinition","parameters":{"id":3334,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3333,"mutability":"mutable","name":"user","nameLocation":"22658:4:13","nodeType":"VariableDeclaration","scope":3464,"src":"22650:12:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3332,"name":"address","nodeType":"ElementaryTypeName","src":"22650:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"22649:14:13"},"returnParameters":{"id":3343,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3337,"mutability":"mutable","name":"epochIds","nameLocation":"22713:8:13","nodeType":"VariableDeclaration","scope":3464,"src":"22696:25:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":3335,"name":"uint256","nodeType":"ElementaryTypeName","src":"22696:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3336,"nodeType":"ArrayTypeName","src":"22696:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":3340,"mutability":"mutable","name":"amounts","nameLocation":"22748:7:13","nodeType":"VariableDeclaration","scope":3464,"src":"22731:24:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":3338,"name":"uint256","nodeType":"ElementaryTypeName","src":"22731:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3339,"nodeType":"ArrayTypeName","src":"22731:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":3342,"mutability":"mutable","name":"totalUnclaimed","nameLocation":"22773:14:13","nodeType":"VariableDeclaration","scope":3464,"src":"22765:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3341,"name":"uint256","nodeType":"ElementaryTypeName","src":"22765:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"22686:107:13"},"scope":5452,"src":"22614:1118:13","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":3572,"nodeType":"Block","src":"24040:1177:13","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3477,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3475,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3467,"src":"24058:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3476,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24066:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"24058:9:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642076616c7565","id":3478,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"24069:15:13","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":3474,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"24050:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3479,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24050:35:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3480,"nodeType":"ExpressionStatement","src":"24050:35:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3484,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3482,"name":"salePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3469,"src":"24103:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3483,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24115:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"24103:13:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642073616c65207072696365","id":3485,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"24118:20:13","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":3481,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"24095:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3486,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24095:44:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3487,"nodeType":"ExpressionStatement","src":"24095:44:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3491,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3489,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3467,"src":"24157:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":3490,"name":"marketplaceMin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1978,"src":"24166:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24157:23:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"56616c75652062656c6f77206d696e696d756d","id":3492,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"24182:21:13","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":3488,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"24149:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24149:55:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3494,"nodeType":"ExpressionStatement","src":"24149:55:13"},{"assignments":[3496],"declarations":[{"constant":false,"id":3496,"mutability":"mutable","name":"netStake","nameLocation":"24298:8:13","nodeType":"VariableDeclaration","scope":3572,"src":"24290:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3495,"name":"uint256","nodeType":"ElementaryTypeName","src":"24290:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3501,"initialValue":{"arguments":[{"expression":{"id":3498,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"24321:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3499,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24325:6:13","memberName":"sender","nodeType":"MemberAccess","src":"24321:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3497,"name":"getNetStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2748,"src":"24309:11:13","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":3500,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24309:23:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"24290:42:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3505,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3503,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3467,"src":"24350:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":3504,"name":"netStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3496,"src":"24359:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24350:17:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e73756666696369656e74206e6574207374616b65","id":3506,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"24369:24:13","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":3502,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"24342:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3507,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24342:52:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3508,"nodeType":"ExpressionStatement","src":"24342:52:13"},{"expression":{"id":3510,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"24462:16:13","subExpression":{"id":3509,"name":"stakeIdCounter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1940,"src":"24462:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3511,"nodeType":"ExpressionStatement","src":"24462:16:13"},{"assignments":[3513],"declarations":[{"constant":false,"id":3513,"mutability":"mutable","name":"stakeId","nameLocation":"24496:7:13","nodeType":"VariableDeclaration","scope":3572,"src":"24488:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3512,"name":"uint256","nodeType":"ElementaryTypeName","src":"24488:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3515,"initialValue":{"id":3514,"name":"stakeIdCounter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1940,"src":"24506:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"24488:32:13"},{"expression":{"id":3521,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3516,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"24597:12:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3519,"indexExpression":{"expression":{"id":3517,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"24610:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24614:6:13","memberName":"sender","nodeType":"MemberAccess","src":"24610:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"24597:24:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":3520,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3467,"src":"24625:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24597:33:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3522,"nodeType":"ExpressionStatement","src":"24597:33:13"},{"expression":{"id":3525,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3523,"name":"totalBigStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1967,"src":"24640:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":3524,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3467,"src":"24658:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24640:23:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3526,"nodeType":"ExpressionStatement","src":"24640:23:13"},{"expression":{"id":3541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":3527,"name":"sellStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1976,"src":"24720:10:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_SellStake_$1868_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref))"}},"id":3531,"indexExpression":{"expression":{"id":3528,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"24731:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3529,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24735:6:13","memberName":"sender","nodeType":"MemberAccess","src":"24731:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"24720:22:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_SellStake_$1868_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref)"}},"id":3532,"indexExpression":{"id":3530,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3513,"src":"24743:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"24720:31:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage","typeString":"struct CunaFinanceBsc.SellStake storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":3534,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3467,"src":"24785:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3535,"name":"salePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3469,"src":"24815:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3536,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"24846:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3537,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24850:6:13","memberName":"sender","nodeType":"MemberAccess","src":"24846:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":3538,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"24880:5:13","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3539,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24886:9:13","memberName":"timestamp","nodeType":"MemberAccess","src":"24880:15:13","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":3533,"name":"SellStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1868,"src":"24754:9:13","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_SellStake_$1868_storage_ptr_$","typeString":"type(struct CunaFinanceBsc.SellStake storage pointer)"}},"id":3540,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["24778:5:13","24804:9:13","24838:6:13","24870:8:13"],"names":["value","salePrice","seller","listTime"],"nodeType":"FunctionCall","src":"24754:152:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_memory_ptr","typeString":"struct CunaFinanceBsc.SellStake memory"}},"src":"24720:186:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage","typeString":"struct CunaFinanceBsc.SellStake storage ref"}},"id":3542,"nodeType":"ExpressionStatement","src":"24720:186:13"},{"expression":{"arguments":[{"arguments":[{"expression":{"id":3547,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"25013:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25017:6:13","memberName":"sender","nodeType":"MemberAccess","src":"25013:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3549,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3513,"src":"25046:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3546,"name":"SellStakeKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1873,"src":"24978:12:13","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_SellStakeKey_$1873_storage_ptr_$","typeString":"type(struct CunaFinanceBsc.SellStakeKey storage pointer)"}},"id":3550,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["25005:6:13","25037:7:13"],"names":["seller","stakeId"],"nodeType":"FunctionCall","src":"24978:86:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_SellStakeKey_$1873_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}],"expression":{"id":3543,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1988,"src":"24959:13:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1873_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":3545,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24973:4:13","memberName":"push","nodeType":"MemberAccess","src":"24959:18:13","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_SellStakeKey_$1873_storage_$dyn_storage_ptr_$_t_struct$_SellStakeKey_$1873_storage_$returns$__$attached_to$_t_array$_t_struct$_SellStakeKey_$1873_storage_$dyn_storage_ptr_$","typeString":"function (struct CunaFinanceBsc.SellStakeKey storage ref[] storage pointer,struct CunaFinanceBsc.SellStakeKey storage ref)"}},"id":3551,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24959:106:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3552,"nodeType":"ExpressionStatement","src":"24959:106:13"},{"expression":{"id":3563,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":3553,"name":"sellStakeKeyIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1994,"src":"25075:17:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"}},"id":3557,"indexExpression":{"expression":{"id":3554,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"25093:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3555,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25097:6:13","memberName":"sender","nodeType":"MemberAccess","src":"25093:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"25075:29:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3558,"indexExpression":{"id":3556,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3513,"src":"25105:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"25075:38:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3562,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3559,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1988,"src":"25116:13:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1873_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":3560,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25130:6:13","memberName":"length","nodeType":"MemberAccess","src":"25116:20:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":3561,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25139:1:13","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"25116:24:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25075:65:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3564,"nodeType":"ExpressionStatement","src":"25075:65:13"},{"eventCall":{"arguments":[{"expression":{"id":3566,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"25179:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3567,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25183:6:13","memberName":"sender","nodeType":"MemberAccess","src":"25179:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3568,"name":"salePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3469,"src":"25191:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3569,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3513,"src":"25202:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3565,"name":"StakeUpForSale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2070,"src":"25164:14:13","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256)"}},"id":3570,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25164:46:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3571,"nodeType":"EmitStatement","src":"25159:51:13"}]},"documentation":{"id":3465,"nodeType":"StructuredDocumentation","src":"23772:188:13","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":3573,"implemented":true,"kind":"function","modifiers":[{"id":3472,"kind":"modifierInvocation","modifierName":{"id":3471,"name":"nonReentrant","nameLocations":["24027:12:13"],"nodeType":"IdentifierPath","referencedDeclaration":336,"src":"24027:12:13"},"nodeType":"ModifierInvocation","src":"24027:12:13"}],"name":"sellStake","nameLocation":"23974:9:13","nodeType":"FunctionDefinition","parameters":{"id":3470,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3467,"mutability":"mutable","name":"value","nameLocation":"23992:5:13","nodeType":"VariableDeclaration","scope":3573,"src":"23984:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3466,"name":"uint256","nodeType":"ElementaryTypeName","src":"23984:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3469,"mutability":"mutable","name":"salePrice","nameLocation":"24007:9:13","nodeType":"VariableDeclaration","scope":3573,"src":"23999:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3468,"name":"uint256","nodeType":"ElementaryTypeName","src":"23999:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23983:34:13"},"returnParameters":{"id":3473,"nodeType":"ParameterList","parameters":[],"src":"24040:0:13"},"scope":5452,"src":"23965:1252:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":3720,"nodeType":"Block","src":"25417:1442:13","statements":[{"assignments":[3581],"declarations":[{"constant":false,"id":3581,"mutability":"mutable","name":"sellStakeEntry","nameLocation":"25445:14:13","nodeType":"VariableDeclaration","scope":3720,"src":"25427:32:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake"},"typeName":{"id":3580,"nodeType":"UserDefinedTypeName","pathNode":{"id":3579,"name":"SellStake","nameLocations":["25427:9:13"],"nodeType":"IdentifierPath","referencedDeclaration":1868,"src":"25427:9:13"},"referencedDeclaration":1868,"src":"25427:9:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake"}},"visibility":"internal"}],"id":3588,"initialValue":{"baseExpression":{"baseExpression":{"id":3582,"name":"sellStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1976,"src":"25462:10:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_SellStake_$1868_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref))"}},"id":3585,"indexExpression":{"expression":{"id":3583,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"25473:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3584,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25477:6:13","memberName":"sender","nodeType":"MemberAccess","src":"25473:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"25462:22:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_SellStake_$1868_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref)"}},"id":3587,"indexExpression":{"id":3586,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3576,"src":"25485:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"25462:31:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage","typeString":"struct CunaFinanceBsc.SellStake storage ref"}},"nodeType":"VariableDeclarationStatement","src":"25427:66:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3593,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3590,"name":"sellStakeEntry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3581,"src":"25511:14:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake storage pointer"}},"id":3591,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25526:5:13","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1861,"src":"25511:20:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3592,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25534:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"25511:24:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4c697374696e67206e6f7420666f756e64","id":3594,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"25537:19:13","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":3589,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"25503:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3595,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25503:54:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3596,"nodeType":"ExpressionStatement","src":"25503:54:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3602,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3598,"name":"sellStakeEntry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3581,"src":"25575:14:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake storage pointer"}},"id":3599,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25590:6:13","memberName":"seller","nodeType":"MemberAccess","referencedDeclaration":1865,"src":"25575:21:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":3600,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"25600:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3601,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25604:6:13","memberName":"sender","nodeType":"MemberAccess","src":"25600:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"25575:35:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f74207468652073656c6c6572","id":3603,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"25612:16:13","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":3597,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"25567:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3604,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25567:62:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3605,"nodeType":"ExpressionStatement","src":"25567:62:13"},{"assignments":[3607],"declarations":[{"constant":false,"id":3607,"mutability":"mutable","name":"value","nameLocation":"25656:5:13","nodeType":"VariableDeclaration","scope":3720,"src":"25648:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3606,"name":"uint256","nodeType":"ElementaryTypeName","src":"25648:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3610,"initialValue":{"expression":{"id":3608,"name":"sellStakeEntry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3581,"src":"25664:14:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake storage pointer"}},"id":3609,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25679:5:13","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1861,"src":"25664:20:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"25648:36:13"},{"assignments":[3612],"declarations":[{"constant":false,"id":3612,"mutability":"mutable","name":"fee","nameLocation":"25749:3:13","nodeType":"VariableDeclaration","scope":3720,"src":"25741:11:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3611,"name":"uint256","nodeType":"ElementaryTypeName","src":"25741:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3619,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3618,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3615,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3613,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3607,"src":"25756:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":3614,"name":"cancellationFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1980,"src":"25764:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25756:23:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3616,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"25755:25:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130303030","id":3617,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25783:5:13","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"25755:33:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"25741:47:13"},{"assignments":[3621],"declarations":[{"constant":false,"id":3621,"mutability":"mutable","name":"valueAfterFee","nameLocation":"25806:13:13","nodeType":"VariableDeclaration","scope":3720,"src":"25798:21:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3620,"name":"uint256","nodeType":"ElementaryTypeName","src":"25798:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3625,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3624,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3622,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3607,"src":"25822:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":3623,"name":"fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3612,"src":"25830:3:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25822:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"25798:35:13"},{"expression":{"id":3631,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3626,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"25907:12:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3629,"indexExpression":{"expression":{"id":3627,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"25920:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3628,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25924:6:13","memberName":"sender","nodeType":"MemberAccess","src":"25920:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"25907:24:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3630,"name":"valueAfterFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3621,"src":"25935:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25907:41:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3632,"nodeType":"ExpressionStatement","src":"25907:41:13"},{"expression":{"id":3635,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3633,"name":"totalBigStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1967,"src":"25958:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3634,"name":"valueAfterFee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3621,"src":"25976:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25958:31:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3636,"nodeType":"ExpressionStatement","src":"25958:31:13"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3639,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3637,"name":"fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3612,"src":"26118:3:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3638,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26124:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"26118:7:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3648,"nodeType":"IfStatement","src":"26114:88:13","trueBody":{"id":3647,"nodeType":"Block","src":"26127:75:13","statements":[{"eventCall":{"arguments":[{"expression":{"id":3641,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"26166:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3642,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26170:6:13","memberName":"sender","nodeType":"MemberAccess","src":"26166:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3643,"name":"fee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3612,"src":"26178:3:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3644,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3576,"src":"26183:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3640,"name":"CancellationFeePaid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2094,"src":"26146:19:13","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256)"}},"id":3645,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26146:45:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3646,"nodeType":"EmitStatement","src":"26141:50:13"}]}},{"expression":{"id":3655,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"26254:38:13","subExpression":{"baseExpression":{"baseExpression":{"id":3649,"name":"sellStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1976,"src":"26261:10:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_SellStake_$1868_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref))"}},"id":3652,"indexExpression":{"expression":{"id":3650,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"26272:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3651,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26276:6:13","memberName":"sender","nodeType":"MemberAccess","src":"26272:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"26261:22:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_SellStake_$1868_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref)"}},"id":3654,"indexExpression":{"id":3653,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3576,"src":"26284:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"26261:31:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage","typeString":"struct CunaFinanceBsc.SellStake storage ref"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3656,"nodeType":"ExpressionStatement","src":"26254:38:13"},{"assignments":[3658],"declarations":[{"constant":false,"id":3658,"mutability":"mutable","name":"index","nameLocation":"26377:5:13","nodeType":"VariableDeclaration","scope":3720,"src":"26369:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3657,"name":"uint256","nodeType":"ElementaryTypeName","src":"26369:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3665,"initialValue":{"baseExpression":{"baseExpression":{"id":3659,"name":"sellStakeKeyIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1994,"src":"26385:17:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"}},"id":3662,"indexExpression":{"expression":{"id":3660,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"26403:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3661,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26407:6:13","memberName":"sender","nodeType":"MemberAccess","src":"26403:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"26385:29:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3664,"indexExpression":{"id":3663,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3576,"src":"26415:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"26385:38:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"26369:54:13"},{"assignments":[3667],"declarations":[{"constant":false,"id":3667,"mutability":"mutable","name":"lastIndex","nameLocation":"26441:9:13","nodeType":"VariableDeclaration","scope":3720,"src":"26433:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3666,"name":"uint256","nodeType":"ElementaryTypeName","src":"26433:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3672,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3671,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3668,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1988,"src":"26453:13:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1873_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":3669,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26467:6:13","memberName":"length","nodeType":"MemberAccess","src":"26453:20:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":3670,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26476:1:13","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"26453:24:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"26433:44:13"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3675,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3673,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3658,"src":"26491:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":3674,"name":"lastIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3667,"src":"26500:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26491:18:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3700,"nodeType":"IfStatement","src":"26487:219:13","trueBody":{"id":3699,"nodeType":"Block","src":"26511:195:13","statements":[{"assignments":[3678],"declarations":[{"constant":false,"id":3678,"mutability":"mutable","name":"lastKey","nameLocation":"26545:7:13","nodeType":"VariableDeclaration","scope":3699,"src":"26525:27:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey"},"typeName":{"id":3677,"nodeType":"UserDefinedTypeName","pathNode":{"id":3676,"name":"SellStakeKey","nameLocations":["26525:12:13"],"nodeType":"IdentifierPath","referencedDeclaration":1873,"src":"26525:12:13"},"referencedDeclaration":1873,"src":"26525:12:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_storage_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey"}},"visibility":"internal"}],"id":3682,"initialValue":{"baseExpression":{"id":3679,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1988,"src":"26555:13:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1873_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":3681,"indexExpression":{"id":3680,"name":"lastIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3667,"src":"26569:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"26555:24:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref"}},"nodeType":"VariableDeclarationStatement","src":"26525:54:13"},{"expression":{"id":3687,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3683,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1988,"src":"26593:13:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1873_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":3685,"indexExpression":{"id":3684,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3658,"src":"26607:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"26593:20:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3686,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3678,"src":"26616:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}},"src":"26593:30:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref"}},"id":3688,"nodeType":"ExpressionStatement","src":"26593:30:13"},{"expression":{"id":3697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":3689,"name":"sellStakeKeyIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1994,"src":"26637:17:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"}},"id":3694,"indexExpression":{"expression":{"id":3690,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3678,"src":"26655:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}},"id":3691,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26663:6:13","memberName":"seller","nodeType":"MemberAccess","referencedDeclaration":1870,"src":"26655:14:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"26637:33:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3695,"indexExpression":{"expression":{"id":3692,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3678,"src":"26671:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}},"id":3693,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26679:7:13","memberName":"stakeId","nodeType":"MemberAccess","referencedDeclaration":1872,"src":"26671:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"26637:50:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3696,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3658,"src":"26690:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26637:58:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3698,"nodeType":"ExpressionStatement","src":"26637:58:13"}]}},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":3701,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1988,"src":"26715:13:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1873_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":3703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26729:3:13","memberName":"pop","nodeType":"MemberAccess","src":"26715:17:13","typeDescriptions":{"typeIdentifier":"t_function_arraypop_nonpayable$_t_array$_t_struct$_SellStakeKey_$1873_storage_$dyn_storage_ptr_$returns$__$attached_to$_t_array$_t_struct$_SellStakeKey_$1873_storage_$dyn_storage_ptr_$","typeString":"function (struct CunaFinanceBsc.SellStakeKey storage ref[] storage pointer)"}},"id":3704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26715:19:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3705,"nodeType":"ExpressionStatement","src":"26715:19:13"},{"expression":{"id":3712,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"26744:45:13","subExpression":{"baseExpression":{"baseExpression":{"id":3706,"name":"sellStakeKeyIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1994,"src":"26751:17:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"}},"id":3709,"indexExpression":{"expression":{"id":3707,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"26769:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3708,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26773:6:13","memberName":"sender","nodeType":"MemberAccess","src":"26769:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"26751:29:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3711,"indexExpression":{"id":3710,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3576,"src":"26781:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"26751:38:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3713,"nodeType":"ExpressionStatement","src":"26744:45:13"},{"eventCall":{"arguments":[{"expression":{"id":3715,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"26832:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26836:6:13","memberName":"sender","nodeType":"MemberAccess","src":"26832:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3717,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3576,"src":"26844:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3714,"name":"StakeSaleCancelled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2076,"src":"26813:18:13","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":3718,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26813:39:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3719,"nodeType":"EmitStatement","src":"26808:44:13"}]},"documentation":{"id":3574,"nodeType":"StructuredDocumentation","src":"25227:134:13","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":3721,"implemented":true,"kind":"function","modifiers":[],"name":"cancelSellStake","nameLocation":"25375:15:13","nodeType":"FunctionDefinition","parameters":{"id":3577,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3576,"mutability":"mutable","name":"stakeId","nameLocation":"25399:7:13","nodeType":"VariableDeclaration","scope":3721,"src":"25391:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3575,"name":"uint256","nodeType":"ElementaryTypeName","src":"25391:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25390:17:13"},"returnParameters":{"id":3578,"nodeType":"ParameterList","parameters":[],"src":"25417:0:13"},"scope":5452,"src":"25366:1493:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":3776,"nodeType":"Block","src":"27086:407:13","statements":[{"assignments":[3731],"declarations":[{"constant":false,"id":3731,"mutability":"mutable","name":"sellStakeEntry","nameLocation":"27114:14:13","nodeType":"VariableDeclaration","scope":3776,"src":"27096:32:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake"},"typeName":{"id":3730,"nodeType":"UserDefinedTypeName","pathNode":{"id":3729,"name":"SellStake","nameLocations":["27096:9:13"],"nodeType":"IdentifierPath","referencedDeclaration":1868,"src":"27096:9:13"},"referencedDeclaration":1868,"src":"27096:9:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake"}},"visibility":"internal"}],"id":3738,"initialValue":{"baseExpression":{"baseExpression":{"id":3732,"name":"sellStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1976,"src":"27131:10:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_SellStake_$1868_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref))"}},"id":3735,"indexExpression":{"expression":{"id":3733,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"27142:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3734,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27146:6:13","memberName":"sender","nodeType":"MemberAccess","src":"27142:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"27131:22:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_SellStake_$1868_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref)"}},"id":3737,"indexExpression":{"id":3736,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3724,"src":"27154:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"27131:31:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage","typeString":"struct CunaFinanceBsc.SellStake storage ref"}},"nodeType":"VariableDeclarationStatement","src":"27096:66:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3743,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3740,"name":"sellStakeEntry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3731,"src":"27180:14:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake storage pointer"}},"id":3741,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27195:5:13","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1861,"src":"27180:20:13","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":"27203:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"27180:24:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4c697374696e67206e6f7420666f756e64","id":3744,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"27206:19:13","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":3739,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"27172:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3745,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27172:54:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3746,"nodeType":"ExpressionStatement","src":"27172:54:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3752,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3748,"name":"sellStakeEntry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3731,"src":"27244:14:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake storage pointer"}},"id":3749,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27259:6:13","memberName":"seller","nodeType":"MemberAccess","referencedDeclaration":1865,"src":"27244:21:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":3750,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"27269:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3751,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27273:6:13","memberName":"sender","nodeType":"MemberAccess","src":"27269:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27244:35:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f74207468652073656c6c6572","id":3753,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"27281:16:13","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":3747,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"27236:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3754,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27236:62:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3755,"nodeType":"ExpressionStatement","src":"27236:62:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3759,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3757,"name":"newSalePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3726,"src":"27316:12:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3758,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27331:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"27316:16:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642073616c65207072696365","id":3760,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"27334:20:13","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":3756,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"27308:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3761,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27308:47:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3762,"nodeType":"ExpressionStatement","src":"27308:47:13"},{"expression":{"id":3767,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3763,"name":"sellStakeEntry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3731,"src":"27374:14:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake storage pointer"}},"id":3765,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"27389:9:13","memberName":"salePrice","nodeType":"MemberAccess","referencedDeclaration":1863,"src":"27374:24:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3766,"name":"newSalePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3726,"src":"27401:12:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27374:39:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3768,"nodeType":"ExpressionStatement","src":"27374:39:13"},{"eventCall":{"arguments":[{"expression":{"id":3770,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"27452:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3771,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27456:6:13","memberName":"sender","nodeType":"MemberAccess","src":"27452:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3772,"name":"newSalePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3726,"src":"27464:12:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3773,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3724,"src":"27478:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3769,"name":"StakeUpForSale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2070,"src":"27437:14:13","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256)"}},"id":3774,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27437:49:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3775,"nodeType":"EmitStatement","src":"27432:54:13"}]},"documentation":{"id":3722,"nodeType":"StructuredDocumentation","src":"26869:139:13","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":3777,"implemented":true,"kind":"function","modifiers":[],"name":"updateSellStake","nameLocation":"27022:15:13","nodeType":"FunctionDefinition","parameters":{"id":3727,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3724,"mutability":"mutable","name":"stakeId","nameLocation":"27046:7:13","nodeType":"VariableDeclaration","scope":3777,"src":"27038:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3723,"name":"uint256","nodeType":"ElementaryTypeName","src":"27038:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3726,"mutability":"mutable","name":"newSalePrice","nameLocation":"27063:12:13","nodeType":"VariableDeclaration","scope":3777,"src":"27055:20:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3725,"name":"uint256","nodeType":"ElementaryTypeName","src":"27055:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"27037:39:13"},"returnParameters":{"id":3728,"nodeType":"ParameterList","parameters":[],"src":"27086:0:13"},"scope":5452,"src":"27013:480:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":3982,"nodeType":"Block","src":"27725:2435:13","statements":[{"assignments":[3789],"declarations":[{"constant":false,"id":3789,"mutability":"mutable","name":"sellStakeEntry","nameLocation":"27753:14:13","nodeType":"VariableDeclaration","scope":3982,"src":"27735:32:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake"},"typeName":{"id":3788,"nodeType":"UserDefinedTypeName","pathNode":{"id":3787,"name":"SellStake","nameLocations":["27735:9:13"],"nodeType":"IdentifierPath","referencedDeclaration":1868,"src":"27735:9:13"},"referencedDeclaration":1868,"src":"27735:9:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake"}},"visibility":"internal"}],"id":3795,"initialValue":{"baseExpression":{"baseExpression":{"id":3790,"name":"sellStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1976,"src":"27770:10:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_SellStake_$1868_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref))"}},"id":3792,"indexExpression":{"id":3791,"name":"seller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3780,"src":"27781:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"27770:18:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_SellStake_$1868_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref)"}},"id":3794,"indexExpression":{"id":3793,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3782,"src":"27789:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"27770:27:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage","typeString":"struct CunaFinanceBsc.SellStake storage ref"}},"nodeType":"VariableDeclarationStatement","src":"27735:62:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3800,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3797,"name":"sellStakeEntry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3789,"src":"27815:14:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake storage pointer"}},"id":3798,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27830:5:13","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1861,"src":"27815:20:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":3799,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27838:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"27815:24:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4c697374696e67206e6f7420666f756e64","id":3801,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"27841:19:13","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":3796,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"27807:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3802,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27807:54:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3803,"nodeType":"ExpressionStatement","src":"27807:54:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3808,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3805,"name":"seller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3780,"src":"27879:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":3806,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"27889:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27893:6:13","memberName":"sender","nodeType":"MemberAccess","src":"27889:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27879:20:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"43616e6e6f7420627579206f776e206c697374696e67","id":3809,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"27901:24:13","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":3804,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"27871:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3810,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27871:55:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3811,"nodeType":"ExpressionStatement","src":"27871:55:13"},{"assignments":[3813],"declarations":[{"constant":false,"id":3813,"mutability":"mutable","name":"value","nameLocation":"27953:5:13","nodeType":"VariableDeclaration","scope":3982,"src":"27945:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3812,"name":"uint256","nodeType":"ElementaryTypeName","src":"27945:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3816,"initialValue":{"expression":{"id":3814,"name":"sellStakeEntry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3789,"src":"27961:14:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake storage pointer"}},"id":3815,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27976:5:13","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1861,"src":"27961:20:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"27945:36:13"},{"assignments":[3818],"declarations":[{"constant":false,"id":3818,"mutability":"mutable","name":"salePrice","nameLocation":"27999:9:13","nodeType":"VariableDeclaration","scope":3982,"src":"27991:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3817,"name":"uint256","nodeType":"ElementaryTypeName","src":"27991:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3821,"initialValue":{"expression":{"id":3819,"name":"sellStakeEntry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3789,"src":"28011:14:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake storage pointer"}},"id":3820,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28026:9:13","memberName":"salePrice","nodeType":"MemberAccess","referencedDeclaration":1863,"src":"28011:24:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"27991:44:13"},{"assignments":[3823],"declarations":[{"constant":false,"id":3823,"mutability":"mutable","name":"listTime","nameLocation":"28053:8:13","nodeType":"VariableDeclaration","scope":3982,"src":"28045:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3822,"name":"uint256","nodeType":"ElementaryTypeName","src":"28045:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3826,"initialValue":{"expression":{"id":3824,"name":"sellStakeEntry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3789,"src":"28064:14:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake storage pointer"}},"id":3825,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28079:8:13","memberName":"listTime","nodeType":"MemberAccess","referencedDeclaration":1867,"src":"28064:23:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28045:42:13"},{"assignments":[3828],"declarations":[{"constant":false,"id":3828,"mutability":"mutable","name":"discount","nameLocation":"28194:8:13","nodeType":"VariableDeclaration","scope":3982,"src":"28186:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3827,"name":"uint256","nodeType":"ElementaryTypeName","src":"28186:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3837,"initialValue":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3831,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3829,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3813,"src":"28205:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":3830,"name":"salePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3818,"src":"28213:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28205:17:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":3835,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28245:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":3836,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"28205:41:13","trueExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3834,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3832,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3813,"src":"28225:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":3833,"name":"salePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3818,"src":"28233:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28225:17:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28186:60:13"},{"assignments":[3839],"declarations":[{"constant":false,"id":3839,"mutability":"mutable","name":"discountPercent","nameLocation":"28264:15:13","nodeType":"VariableDeclaration","scope":3982,"src":"28256:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3838,"name":"uint256","nodeType":"ElementaryTypeName","src":"28256:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3845,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3844,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3842,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3840,"name":"discount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3828,"src":"28282:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3130303030","id":3841,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28293:5:13","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"28282:16:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":3843,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3813,"src":"28301:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28282:24:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28256:50:13"},{"assignments":[3847],"declarations":[{"constant":false,"id":3847,"mutability":"mutable","name":"protocolSharePercent","nameLocation":"28375:20:13","nodeType":"VariableDeclaration","scope":3982,"src":"28367:28:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3846,"name":"uint256","nodeType":"ElementaryTypeName","src":"28367:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3854,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3850,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3848,"name":"discountPercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3839,"src":"28399:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":3849,"name":"discountPercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3839,"src":"28417:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28399:33:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3851,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"28398:35:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130303030","id":3852,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28436:5:13","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"28398:43:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28367:74:13"},{"assignments":[3856],"declarations":[{"constant":false,"id":3856,"mutability":"mutable","name":"protocolShare","nameLocation":"28493:13:13","nodeType":"VariableDeclaration","scope":3982,"src":"28485:21:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3855,"name":"uint256","nodeType":"ElementaryTypeName","src":"28485:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3863,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3859,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3857,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3813,"src":"28510:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":3858,"name":"protocolSharePercent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3847,"src":"28518:20:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28510:28:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3860,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"28509:30:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130303030","id":3861,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28542:5:13","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"28509:38:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28485:62:13"},{"assignments":[3865],"declarations":[{"constant":false,"id":3865,"mutability":"mutable","name":"buyerStake","nameLocation":"28606:10:13","nodeType":"VariableDeclaration","scope":3982,"src":"28598:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3864,"name":"uint256","nodeType":"ElementaryTypeName","src":"28598:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3869,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3868,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3866,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3813,"src":"28619:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":3867,"name":"protocolShare","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3856,"src":"28627:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28619:21:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28598:42:13"},{"expression":{"arguments":[{"expression":{"id":3874,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"28802:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3875,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28806:6:13","memberName":"sender","nodeType":"MemberAccess","src":"28802:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3876,"name":"seller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3780,"src":"28814:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3877,"name":"salePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3818,"src":"28822:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":3871,"name":"BSC_TOKEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1930,"src":"28774:9:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":3870,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1216,"src":"28767:6:13","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1216_$","typeString":"type(contract IERC20)"}},"id":3872,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28767:17:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"id":3873,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28785:16:13","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":1350,"src":"28767:34:13","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$1216_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$1216_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":3878,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28767:65:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3879,"nodeType":"ExpressionStatement","src":"28767:65:13"},{"expression":{"id":3885,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3880,"name":"userBigStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1953,"src":"28923:12:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3883,"indexExpression":{"expression":{"id":3881,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"28936:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3882,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28940:6:13","memberName":"sender","nodeType":"MemberAccess","src":"28936:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"28923:24:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3884,"name":"buyerStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3865,"src":"28951:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28923:38:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3886,"nodeType":"ExpressionStatement","src":"28923:38:13"},{"expression":{"id":3889,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3887,"name":"totalBigStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1967,"src":"28971:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3888,"name":"buyerStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3865,"src":"28989:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28971:28:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3890,"nodeType":"ExpressionStatement","src":"28971:28:13"},{"expression":{"id":3895,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3891,"name":"marketplace_sales","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1984,"src":"29154:17:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":3893,"indexExpression":{"id":3892,"name":"seller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3780,"src":"29172:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"29154:25:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3894,"name":"salePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3818,"src":"29183:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"29154:38:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3896,"nodeType":"ExpressionStatement","src":"29154:38:13"},{"expression":{"arguments":[{"arguments":[{"id":3901,"name":"listTime","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3823,"src":"29322:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":3902,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"29354:5:13","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3903,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29360:9:13","memberName":"timestamp","nodeType":"MemberAccess","src":"29354:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3904,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3813,"src":"29394:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3905,"name":"salePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3818,"src":"29424:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3906,"name":"seller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3780,"src":"29455:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":3907,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"29482:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3908,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29486:6:13","memberName":"sender","nodeType":"MemberAccess","src":"29482:10:13","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":3900,"name":"MarketplaceHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1886,"src":"29279:18:13","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_MarketplaceHistory_$1886_storage_ptr_$","typeString":"type(struct CunaFinanceBsc.MarketplaceHistory storage pointer)"}},"id":3909,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["29312:8:13","29344:8:13","29383:9:13","29413:9:13","29447:6:13","29475:5:13"],"names":["listTime","saleTime","origValue","saleValue","seller","buyer"],"nodeType":"FunctionCall","src":"29279:224:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_MarketplaceHistory_$1886_memory_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_MarketplaceHistory_$1886_memory_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory memory"}],"expression":{"id":3897,"name":"marketplaceHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1998,"src":"29255:18:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1886_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.MarketplaceHistory storage ref[] storage ref"}},"id":3899,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29274:4:13","memberName":"push","nodeType":"MemberAccess","src":"29255:23:13","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_MarketplaceHistory_$1886_storage_$dyn_storage_ptr_$_t_struct$_MarketplaceHistory_$1886_storage_$returns$__$attached_to$_t_array$_t_struct$_MarketplaceHistory_$1886_storage_$dyn_storage_ptr_$","typeString":"function (struct CunaFinanceBsc.MarketplaceHistory storage ref[] storage pointer,struct CunaFinanceBsc.MarketplaceHistory storage ref)"}},"id":3910,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29255:249:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3911,"nodeType":"ExpressionStatement","src":"29255:249:13"},{"expression":{"id":3917,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"29557:34:13","subExpression":{"baseExpression":{"baseExpression":{"id":3912,"name":"sellStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1976,"src":"29564:10:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_SellStake_$1868_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref))"}},"id":3914,"indexExpression":{"id":3913,"name":"seller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3780,"src":"29575:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"29564:18:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_SellStake_$1868_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref)"}},"id":3916,"indexExpression":{"id":3915,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3782,"src":"29583:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"29564:27:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage","typeString":"struct CunaFinanceBsc.SellStake storage ref"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3918,"nodeType":"ExpressionStatement","src":"29557:34:13"},{"assignments":[3920],"declarations":[{"constant":false,"id":3920,"mutability":"mutable","name":"index","nameLocation":"29676:5:13","nodeType":"VariableDeclaration","scope":3982,"src":"29668:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3919,"name":"uint256","nodeType":"ElementaryTypeName","src":"29668:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3926,"initialValue":{"baseExpression":{"baseExpression":{"id":3921,"name":"sellStakeKeyIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1994,"src":"29684:17:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"}},"id":3923,"indexExpression":{"id":3922,"name":"seller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3780,"src":"29702:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"29684:25:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3925,"indexExpression":{"id":3924,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3782,"src":"29710:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"29684:34:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"29668:50:13"},{"assignments":[3928],"declarations":[{"constant":false,"id":3928,"mutability":"mutable","name":"lastIndex","nameLocation":"29736:9:13","nodeType":"VariableDeclaration","scope":3982,"src":"29728:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3927,"name":"uint256","nodeType":"ElementaryTypeName","src":"29728:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3933,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3932,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3929,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1988,"src":"29748:13:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1873_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":3930,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29762:6:13","memberName":"length","nodeType":"MemberAccess","src":"29748:20:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":3931,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29771:1:13","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"29748:24:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"29728:44:13"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3936,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3934,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3920,"src":"29786:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":3935,"name":"lastIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3928,"src":"29795:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"29786:18:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3961,"nodeType":"IfStatement","src":"29782:219:13","trueBody":{"id":3960,"nodeType":"Block","src":"29806:195:13","statements":[{"assignments":[3939],"declarations":[{"constant":false,"id":3939,"mutability":"mutable","name":"lastKey","nameLocation":"29840:7:13","nodeType":"VariableDeclaration","scope":3960,"src":"29820:27:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey"},"typeName":{"id":3938,"nodeType":"UserDefinedTypeName","pathNode":{"id":3937,"name":"SellStakeKey","nameLocations":["29820:12:13"],"nodeType":"IdentifierPath","referencedDeclaration":1873,"src":"29820:12:13"},"referencedDeclaration":1873,"src":"29820:12:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_storage_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey"}},"visibility":"internal"}],"id":3943,"initialValue":{"baseExpression":{"id":3940,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1988,"src":"29850:13:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1873_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":3942,"indexExpression":{"id":3941,"name":"lastIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3928,"src":"29864:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"29850:24:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref"}},"nodeType":"VariableDeclarationStatement","src":"29820:54:13"},{"expression":{"id":3948,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3944,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1988,"src":"29888:13:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1873_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":3946,"indexExpression":{"id":3945,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3920,"src":"29902:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"29888:20:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3947,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3939,"src":"29911:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}},"src":"29888:30:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref"}},"id":3949,"nodeType":"ExpressionStatement","src":"29888:30:13"},{"expression":{"id":3958,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":3950,"name":"sellStakeKeyIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1994,"src":"29932:17:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"}},"id":3955,"indexExpression":{"expression":{"id":3951,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3939,"src":"29950:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}},"id":3952,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"29958:6:13","memberName":"seller","nodeType":"MemberAccess","referencedDeclaration":1870,"src":"29950:14:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"29932:33:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3956,"indexExpression":{"expression":{"id":3953,"name":"lastKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3939,"src":"29966:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}},"id":3954,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"29974:7:13","memberName":"stakeId","nodeType":"MemberAccess","referencedDeclaration":1872,"src":"29966:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"29932:50:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3957,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3920,"src":"29985:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"29932:58:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3959,"nodeType":"ExpressionStatement","src":"29932:58:13"}]}},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":3962,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1988,"src":"30010:13:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1873_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":3964,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30024:3:13","memberName":"pop","nodeType":"MemberAccess","src":"30010:17:13","typeDescriptions":{"typeIdentifier":"t_function_arraypop_nonpayable$_t_array$_t_struct$_SellStakeKey_$1873_storage_$dyn_storage_ptr_$returns$__$attached_to$_t_array$_t_struct$_SellStakeKey_$1873_storage_$dyn_storage_ptr_$","typeString":"function (struct CunaFinanceBsc.SellStakeKey storage ref[] storage pointer)"}},"id":3965,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30010:19:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3966,"nodeType":"ExpressionStatement","src":"30010:19:13"},{"expression":{"id":3972,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"30039:41:13","subExpression":{"baseExpression":{"baseExpression":{"id":3967,"name":"sellStakeKeyIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1994,"src":"30046:17:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint256 => uint256))"}},"id":3969,"indexExpression":{"id":3968,"name":"seller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3780,"src":"30064:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"30046:25:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_uint256_$","typeString":"mapping(uint256 => uint256)"}},"id":3971,"indexExpression":{"id":3970,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3782,"src":"30072:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"30046:34:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3973,"nodeType":"ExpressionStatement","src":"30039:41:13"},{"eventCall":{"arguments":[{"id":3975,"name":"seller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3780,"src":"30114:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":3976,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"30122:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":3977,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30126:6:13","memberName":"sender","nodeType":"MemberAccess","src":"30122:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3978,"name":"salePrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3818,"src":"30134:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3979,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3782,"src":"30145:7:13","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":3974,"name":"StakeSold","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2086,"src":"30104:9:13","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":3980,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30104:49:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3981,"nodeType":"EmitStatement","src":"30099:54:13"}]},"documentation":{"id":3778,"nodeType":"StructuredDocumentation","src":"27503:140:13","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":3983,"implemented":true,"kind":"function","modifiers":[{"id":3785,"kind":"modifierInvocation","modifierName":{"id":3784,"name":"nonReentrant","nameLocations":["27712:12:13"],"nodeType":"IdentifierPath","referencedDeclaration":336,"src":"27712:12:13"},"nodeType":"ModifierInvocation","src":"27712:12:13"}],"name":"buySellStake","nameLocation":"27657:12:13","nodeType":"FunctionDefinition","parameters":{"id":3783,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3780,"mutability":"mutable","name":"seller","nameLocation":"27678:6:13","nodeType":"VariableDeclaration","scope":3983,"src":"27670:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3779,"name":"address","nodeType":"ElementaryTypeName","src":"27670:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3782,"mutability":"mutable","name":"stakeId","nameLocation":"27694:7:13","nodeType":"VariableDeclaration","scope":3983,"src":"27686:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3781,"name":"uint256","nodeType":"ElementaryTypeName","src":"27686:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"27669:33:13"},"returnParameters":{"id":3786,"nodeType":"ParameterList","parameters":[],"src":"27725:0:13"},"scope":5452,"src":"27648:2512:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":4082,"nodeType":"Block","src":"30451:748:13","statements":[{"body":{"id":4080,"nodeType":"Block","src":"30513:680:13","statements":[{"assignments":[4006],"declarations":[{"constant":false,"id":4006,"mutability":"mutable","name":"vesting","nameLocation":"30543:7:13","nodeType":"VariableDeclaration","scope":4080,"src":"30527:23:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"},"typeName":{"id":4005,"nodeType":"UserDefinedTypeName","pathNode":{"id":4004,"name":"Vesting","nameLocations":["30527:7:13"],"nodeType":"IdentifierPath","referencedDeclaration":1827,"src":"30527:7:13"},"referencedDeclaration":1827,"src":"30527:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"}},"visibility":"internal"}],"id":4012,"initialValue":{"baseExpression":{"baseExpression":{"id":4007,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1902,"src":"30553:8:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":4009,"indexExpression":{"id":4008,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3986,"src":"30562:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"30553:14:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"id":4011,"indexExpression":{"id":4010,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3992,"src":"30568:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"30553:17:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref"}},"nodeType":"VariableDeclarationStatement","src":"30527:43:13"},{"condition":{"id":4015,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"30663:17:13","subExpression":{"expression":{"id":4013,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4006,"src":"30664:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4014,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30672:8:13","memberName":"complete","nodeType":"MemberAccess","referencedDeclaration":1824,"src":"30664:16:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4049,"nodeType":"IfStatement","src":"30659:334:13","trueBody":{"id":4048,"nodeType":"Block","src":"30682:311:13","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4021,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":4016,"name":"dollarsVested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1916,"src":"30704:13:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4018,"indexExpression":{"id":4017,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3986,"src":"30718:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"30704:19:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":4019,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4006,"src":"30727:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4020,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30735:9:13","memberName":"usdAmount","nodeType":"MemberAccess","referencedDeclaration":1826,"src":"30727:17:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30704:40:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4030,"nodeType":"IfStatement","src":"30700:127:13","trueBody":{"id":4029,"nodeType":"Block","src":"30746:81:13","statements":[{"expression":{"id":4027,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4022,"name":"dollarsVested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1916,"src":"30768:13:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4024,"indexExpression":{"id":4023,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3986,"src":"30782:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"30768:19:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"expression":{"id":4025,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4006,"src":"30791:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4026,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30799:9:13","memberName":"usdAmount","nodeType":"MemberAccess","referencedDeclaration":1826,"src":"30791:17:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30768:40:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4028,"nodeType":"ExpressionStatement","src":"30768:40:13"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":4031,"name":"vestedTotal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1920,"src":"30848:11:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4034,"indexExpression":{"expression":{"id":4032,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4006,"src":"30860:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4033,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30868:5:13","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":1822,"src":"30860:13:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"30848:26:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":4035,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4006,"src":"30878:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4036,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30886:6:13","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":1808,"src":"30878:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30848:44:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4047,"nodeType":"IfStatement","src":"30844:135:13","trueBody":{"id":4046,"nodeType":"Block","src":"30894:85:13","statements":[{"expression":{"id":4044,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4038,"name":"vestedTotal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1920,"src":"30916:11:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4041,"indexExpression":{"expression":{"id":4039,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4006,"src":"30928:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4040,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30936:5:13","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":1822,"src":"30928:13:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"30916:26:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"expression":{"id":4042,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4006,"src":"30946:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4043,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30954:6:13","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":1808,"src":"30946:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30916:44:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4045,"nodeType":"ExpressionStatement","src":"30916:44:13"}]}}]}},{"expression":{"id":4054,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":4050,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4006,"src":"31019:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4052,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"31027:6:13","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":1808,"src":"31019:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":4053,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31036:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"31019:18:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4055,"nodeType":"ExpressionStatement","src":"31019:18:13"},{"expression":{"id":4060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":4056,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4006,"src":"31051:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4058,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"31059:5:13","memberName":"bonus","nodeType":"MemberAccess","referencedDeclaration":1810,"src":"31051:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":4059,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31067:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"31051:17:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4061,"nodeType":"ExpressionStatement","src":"31051:17:13"},{"expression":{"id":4066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":4062,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4006,"src":"31082:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4064,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"31090:13:13","memberName":"claimedAmount","nodeType":"MemberAccess","referencedDeclaration":1814,"src":"31082:21:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":4065,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31106:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"31082:25:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4067,"nodeType":"ExpressionStatement","src":"31082:25:13"},{"expression":{"id":4072,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":4068,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4006,"src":"31121:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4070,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"31129:12:13","memberName":"claimedBonus","nodeType":"MemberAccess","referencedDeclaration":1816,"src":"31121:20:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":4071,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31144:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"31121:24:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4073,"nodeType":"ExpressionStatement","src":"31121:24:13"},{"expression":{"id":4078,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":4074,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4006,"src":"31159:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4076,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"31167:8:13","memberName":"complete","nodeType":"MemberAccess","referencedDeclaration":1824,"src":"31159:16:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":4077,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"31178:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"31159:23:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4079,"nodeType":"ExpressionStatement","src":"31159:23:13"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4000,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3995,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3992,"src":"30481:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"baseExpression":{"id":3996,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1902,"src":"30485:8:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":3998,"indexExpression":{"id":3997,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3986,"src":"30494:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"30485:14:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"id":3999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30500:6:13","memberName":"length","nodeType":"MemberAccess","src":"30485:21:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30481:25:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4081,"initializationExpression":{"assignments":[3992],"declarations":[{"constant":false,"id":3992,"mutability":"mutable","name":"i","nameLocation":"30474:1:13","nodeType":"VariableDeclaration","scope":4081,"src":"30466:9:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3991,"name":"uint256","nodeType":"ElementaryTypeName","src":"30466:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3994,"initialValue":{"hexValue":"30","id":3993,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30478:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"30466:13:13"},"loopExpression":{"expression":{"id":4002,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"30508:3:13","subExpression":{"id":4001,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3992,"src":"30510:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4003,"nodeType":"ExpressionStatement","src":"30508:3:13"},"nodeType":"ForStatement","src":"30461:732:13"}]},"documentation":{"id":3984,"nodeType":"StructuredDocumentation","src":"30212:181:13","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":4083,"implemented":true,"kind":"function","modifiers":[{"id":3989,"kind":"modifierInvocation","modifierName":{"id":3988,"name":"onlyBot","nameLocations":["30443:7:13"],"nodeType":"IdentifierPath","referencedDeclaration":2118,"src":"30443:7:13"},"nodeType":"ModifierInvocation","src":"30443:7:13"}],"name":"clearVesting","nameLocation":"30407:12:13","nodeType":"FunctionDefinition","parameters":{"id":3987,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3986,"mutability":"mutable","name":"user","nameLocation":"30428:4:13","nodeType":"VariableDeclaration","scope":4083,"src":"30420:12:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3985,"name":"address","nodeType":"ElementaryTypeName","src":"30420:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"30419:14:13"},"returnParameters":{"id":3990,"nodeType":"ParameterList","parameters":[],"src":"30451:0:13"},"scope":5452,"src":"30398:801:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":4114,"nodeType":"Block","src":"31800:116:13","statements":[{"expression":{"arguments":[{"id":4102,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4086,"src":"31824:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4103,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4088,"src":"31830:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4104,"name":"bonus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4090,"src":"31838:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4105,"name":"lockedUntil","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4092,"src":"31845:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4106,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4094,"src":"31858:5:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4107,"name":"usdAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4096,"src":"31865:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":4108,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"31876:5:13","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":4109,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31882:9:13","memberName":"timestamp","nodeType":"MemberAccess","src":"31876:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":4110,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"31893:5:13","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":4111,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31899:9:13","memberName":"timestamp","nodeType":"MemberAccess","src":"31893:15:13","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":4101,"name":"createVesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4167,"src":"31810:13:13","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":4112,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31810:99:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4113,"nodeType":"ExpressionStatement","src":"31810:99:13"}]},"documentation":{"id":4084,"nodeType":"StructuredDocumentation","src":"31205:450:13","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":4115,"implemented":true,"kind":"function","modifiers":[{"id":4099,"kind":"modifierInvocation","modifierName":{"id":4098,"name":"onlyBot","nameLocations":["31792:7:13"],"nodeType":"IdentifierPath","referencedDeclaration":2118,"src":"31792:7:13"},"nodeType":"ModifierInvocation","src":"31792:7:13"}],"name":"createVesting","nameLocation":"31669:13:13","nodeType":"FunctionDefinition","parameters":{"id":4097,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4086,"mutability":"mutable","name":"user","nameLocation":"31691:4:13","nodeType":"VariableDeclaration","scope":4115,"src":"31683:12:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4085,"name":"address","nodeType":"ElementaryTypeName","src":"31683:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4088,"mutability":"mutable","name":"amount","nameLocation":"31705:6:13","nodeType":"VariableDeclaration","scope":4115,"src":"31697:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4087,"name":"uint256","nodeType":"ElementaryTypeName","src":"31697:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4090,"mutability":"mutable","name":"bonus","nameLocation":"31721:5:13","nodeType":"VariableDeclaration","scope":4115,"src":"31713:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4089,"name":"uint256","nodeType":"ElementaryTypeName","src":"31713:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4092,"mutability":"mutable","name":"lockedUntil","nameLocation":"31736:11:13","nodeType":"VariableDeclaration","scope":4115,"src":"31728:19:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4091,"name":"uint256","nodeType":"ElementaryTypeName","src":"31728:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4094,"mutability":"mutable","name":"token","nameLocation":"31757:5:13","nodeType":"VariableDeclaration","scope":4115,"src":"31749:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4093,"name":"address","nodeType":"ElementaryTypeName","src":"31749:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4096,"mutability":"mutable","name":"usdAmount","nameLocation":"31772:9:13","nodeType":"VariableDeclaration","scope":4115,"src":"31764:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4095,"name":"uint256","nodeType":"ElementaryTypeName","src":"31764:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31682:100:13"},"returnParameters":{"id":4100,"nodeType":"ParameterList","parameters":[],"src":"31800:0:13"},"scope":5452,"src":"31660:256:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":4166,"nodeType":"Block","src":"32100:458:13","statements":[{"expression":{"arguments":[{"arguments":[{"id":4141,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4119,"src":"32160:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4142,"name":"bonus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4121,"src":"32187:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4143,"name":"lockedUntil","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4123,"src":"32219:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"30","id":4144,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32259:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":4145,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32288:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":4146,"name":"lastClaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4129,"src":"32316:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4147,"name":"createdAt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4131,"src":"32352:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4148,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4125,"src":"32382:5:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"66616c7365","id":4149,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"32411:5:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"id":4150,"name":"usdAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4127,"src":"32441:9:13","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":4140,"name":"Vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1827,"src":"32130:7:13","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Vesting_$1827_storage_ptr_$","typeString":"type(struct CunaFinanceBsc.Vesting storage pointer)"}},"id":4151,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["32152:6:13","32180:5:13","32206:11:13","32244:13:13","32274:12:13","32303:11:13","32341:9:13","32375:5:13","32401:8:13","32430:9:13"],"names":["amount","bonus","lockedUntil","claimedAmount","claimedBonus","lastClaimed","createdAt","token","complete","usdAmount"],"nodeType":"FunctionCall","src":"32130:331:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_memory_ptr","typeString":"struct CunaFinanceBsc.Vesting memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Vesting_$1827_memory_ptr","typeString":"struct CunaFinanceBsc.Vesting memory"}],"expression":{"baseExpression":{"id":4136,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1902,"src":"32110:8:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":4138,"indexExpression":{"id":4137,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4117,"src":"32119:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"32110:14:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"id":4139,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"32125:4:13","memberName":"push","nodeType":"MemberAccess","src":"32110:19:13","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage_ptr_$_t_struct$_Vesting_$1827_storage_$returns$__$attached_to$_t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage_ptr_$","typeString":"function (struct CunaFinanceBsc.Vesting storage ref[] storage pointer,struct CunaFinanceBsc.Vesting storage ref)"}},"id":4152,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32110:352:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4153,"nodeType":"ExpressionStatement","src":"32110:352:13"},{"expression":{"id":4158,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4154,"name":"dollarsVested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1916,"src":"32481:13:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4156,"indexExpression":{"id":4155,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4117,"src":"32495:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"32481:19:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":4157,"name":"usdAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4127,"src":"32504:9:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"32481:32:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4159,"nodeType":"ExpressionStatement","src":"32481:32:13"},{"expression":{"id":4164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4160,"name":"vestedTotal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1920,"src":"32523:11:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4162,"indexExpression":{"id":4161,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4125,"src":"32535:5:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"32523:18:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":4163,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4119,"src":"32545:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"32523:28:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4165,"nodeType":"ExpressionStatement","src":"32523:28:13"}]},"functionSelector":"74d1c8e3","id":4167,"implemented":true,"kind":"function","modifiers":[{"id":4134,"kind":"modifierInvocation","modifierName":{"id":4133,"name":"onlyBot","nameLocations":["32092:7:13"],"nodeType":"IdentifierPath","referencedDeclaration":2118,"src":"32092:7:13"},"nodeType":"ModifierInvocation","src":"32092:7:13"}],"name":"createVesting","nameLocation":"31931:13:13","nodeType":"FunctionDefinition","parameters":{"id":4132,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4117,"mutability":"mutable","name":"user","nameLocation":"31953:4:13","nodeType":"VariableDeclaration","scope":4167,"src":"31945:12:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4116,"name":"address","nodeType":"ElementaryTypeName","src":"31945:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4119,"mutability":"mutable","name":"amount","nameLocation":"31967:6:13","nodeType":"VariableDeclaration","scope":4167,"src":"31959:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4118,"name":"uint256","nodeType":"ElementaryTypeName","src":"31959:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4121,"mutability":"mutable","name":"bonus","nameLocation":"31983:5:13","nodeType":"VariableDeclaration","scope":4167,"src":"31975:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4120,"name":"uint256","nodeType":"ElementaryTypeName","src":"31975:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4123,"mutability":"mutable","name":"lockedUntil","nameLocation":"31998:11:13","nodeType":"VariableDeclaration","scope":4167,"src":"31990:19:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4122,"name":"uint256","nodeType":"ElementaryTypeName","src":"31990:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4125,"mutability":"mutable","name":"token","nameLocation":"32019:5:13","nodeType":"VariableDeclaration","scope":4167,"src":"32011:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4124,"name":"address","nodeType":"ElementaryTypeName","src":"32011:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4127,"mutability":"mutable","name":"usdAmount","nameLocation":"32034:9:13","nodeType":"VariableDeclaration","scope":4167,"src":"32026:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4126,"name":"uint256","nodeType":"ElementaryTypeName","src":"32026:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4129,"mutability":"mutable","name":"lastClaimed","nameLocation":"32053:11:13","nodeType":"VariableDeclaration","scope":4167,"src":"32045:19:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4128,"name":"uint256","nodeType":"ElementaryTypeName","src":"32045:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4131,"mutability":"mutable","name":"createdAt","nameLocation":"32074:9:13","nodeType":"VariableDeclaration","scope":4167,"src":"32066:17:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4130,"name":"uint256","nodeType":"ElementaryTypeName","src":"32066:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31944:140:13"},"returnParameters":{"id":4135,"nodeType":"ParameterList","parameters":[],"src":"32100:0:13"},"scope":5452,"src":"31922:636:13","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":4256,"nodeType":"Block","src":"34871:641:13","statements":[{"assignments":[4178],"declarations":[{"constant":false,"id":4178,"mutability":"mutable","name":"vesting","nameLocation":"34897:7:13","nodeType":"VariableDeclaration","scope":4256,"src":"34881:23:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"},"typeName":{"id":4177,"nodeType":"UserDefinedTypeName","pathNode":{"id":4176,"name":"Vesting","nameLocations":["34881:7:13"],"nodeType":"IdentifierPath","referencedDeclaration":1827,"src":"34881:7:13"},"referencedDeclaration":1827,"src":"34881:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"}},"visibility":"internal"}],"id":4184,"initialValue":{"baseExpression":{"baseExpression":{"id":4179,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1902,"src":"34907:8:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":4181,"indexExpression":{"id":4180,"name":"_user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4169,"src":"34916:5:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"34907:15:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"id":4183,"indexExpression":{"id":4182,"name":"_vestingIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4171,"src":"34923:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"34907:30:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref"}},"nodeType":"VariableDeclarationStatement","src":"34881:56:13"},{"assignments":[4186],"declarations":[{"constant":false,"id":4186,"mutability":"mutable","name":"timeElapsed","nameLocation":"34955:11:13","nodeType":"VariableDeclaration","scope":4256,"src":"34947:19:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4185,"name":"uint256","nodeType":"ElementaryTypeName","src":"34947:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4192,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4191,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4187,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"34969:5:13","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":4188,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"34975:9:13","memberName":"timestamp","nodeType":"MemberAccess","src":"34969:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":4189,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4178,"src":"34987:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4190,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34995:9:13","memberName":"createdAt","nodeType":"MemberAccess","referencedDeclaration":1820,"src":"34987:17:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"34969:35:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"34947:57:13"},{"assignments":[4194],"declarations":[{"constant":false,"id":4194,"mutability":"mutable","name":"token","nameLocation":"35022:5:13","nodeType":"VariableDeclaration","scope":4256,"src":"35014:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4193,"name":"address","nodeType":"ElementaryTypeName","src":"35014:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":4197,"initialValue":{"expression":{"id":4195,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4178,"src":"35030:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4196,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"35038:5:13","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":1822,"src":"35030:13:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"35014:29:13"},{"assignments":[4199],"declarations":[{"constant":false,"id":4199,"mutability":"mutable","name":"unlockedAmount","nameLocation":"35062:14:13","nodeType":"VariableDeclaration","scope":4256,"src":"35054:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4198,"name":"uint256","nodeType":"ElementaryTypeName","src":"35054:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4201,"initialValue":{"hexValue":"30","id":4200,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"35079:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"35054:26:13"},{"body":{"id":4252,"nodeType":"Block","src":"35151:323:13","statements":[{"assignments":[4217],"declarations":[{"constant":false,"id":4217,"mutability":"mutable","name":"step","nameLocation":"35184:4:13","nodeType":"VariableDeclaration","scope":4252,"src":"35165:23:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1832_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep"},"typeName":{"id":4216,"nodeType":"UserDefinedTypeName","pathNode":{"id":4215,"name":"UnlockStep","nameLocations":["35165:10:13"],"nodeType":"IdentifierPath","referencedDeclaration":1832,"src":"35165:10:13"},"referencedDeclaration":1832,"src":"35165:10:13","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1832_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep"}},"visibility":"internal"}],"id":4223,"initialValue":{"baseExpression":{"baseExpression":{"id":4218,"name":"unlockSchedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1908,"src":"35191:15:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_UnlockStep_$1832_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.UnlockStep storage ref[] storage ref)"}},"id":4220,"indexExpression":{"id":4219,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4194,"src":"35207:5:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"35191:22:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UnlockStep_$1832_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.UnlockStep storage ref[] storage ref"}},"id":4222,"indexExpression":{"id":4221,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4203,"src":"35214:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"35191:25:13","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1832_storage","typeString":"struct CunaFinanceBsc.UnlockStep storage ref"}},"nodeType":"VariableDeclarationStatement","src":"35165:51:13"},{"assignments":[4225],"declarations":[{"constant":false,"id":4225,"mutability":"mutable","name":"timeTier","nameLocation":"35238:8:13","nodeType":"VariableDeclaration","scope":4252,"src":"35230:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4224,"name":"uint256","nodeType":"ElementaryTypeName","src":"35230:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4228,"initialValue":{"expression":{"id":4226,"name":"step","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4217,"src":"35249:4:13","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1832_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep storage pointer"}},"id":4227,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"35254:10:13","memberName":"timeOffset","nodeType":"MemberAccess","referencedDeclaration":1829,"src":"35249:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"35230:34:13"},{"assignments":[4230],"declarations":[{"constant":false,"id":4230,"mutability":"mutable","name":"percentage","nameLocation":"35286:10:13","nodeType":"VariableDeclaration","scope":4252,"src":"35278:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4229,"name":"uint256","nodeType":"ElementaryTypeName","src":"35278:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4233,"initialValue":{"expression":{"id":4231,"name":"step","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4217,"src":"35299:4:13","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1832_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep storage pointer"}},"id":4232,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"35304:10:13","memberName":"percentage","nodeType":"MemberAccess","referencedDeclaration":1831,"src":"35299:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"35278:36:13"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4234,"name":"timeElapsed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4186,"src":"35333:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":4235,"name":"timeTier","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4225,"src":"35348:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"35333:23:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4251,"nodeType":"IfStatement","src":"35329:135:13","trueBody":{"id":4250,"nodeType":"Block","src":"35358:106:13","statements":[{"expression":{"id":4248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4237,"name":"unlockedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4199,"src":"35376:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4247,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4238,"name":"unlockedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4199,"src":"35393:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4245,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4242,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4239,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4178,"src":"35412:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4240,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"35420:6:13","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":1808,"src":"35412:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4241,"name":"percentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4230,"src":"35429:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"35412:27:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4243,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"35411:29:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130303030","id":4244,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"35443:5:13","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"35411:37:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4246,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"35410:39:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"35393:56:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"35376:73:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4249,"nodeType":"ExpressionStatement","src":"35376:73:13"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4211,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4206,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4203,"src":"35111:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"baseExpression":{"id":4207,"name":"unlockSchedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1908,"src":"35115:15:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_UnlockStep_$1832_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.UnlockStep storage ref[] storage ref)"}},"id":4209,"indexExpression":{"id":4208,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4194,"src":"35131:5:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"35115:22:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UnlockStep_$1832_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.UnlockStep storage ref[] storage ref"}},"id":4210,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35138:6:13","memberName":"length","nodeType":"MemberAccess","src":"35115:29:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"35111:33:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4253,"initializationExpression":{"assignments":[4203],"declarations":[{"constant":false,"id":4203,"mutability":"mutable","name":"i","nameLocation":"35104:1:13","nodeType":"VariableDeclaration","scope":4253,"src":"35096:9:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4202,"name":"uint256","nodeType":"ElementaryTypeName","src":"35096:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4205,"initialValue":{"hexValue":"30","id":4204,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"35108:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"35096:13:13"},"loopExpression":{"expression":{"id":4213,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"35146:3:13","subExpression":{"id":4212,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4203,"src":"35148:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4214,"nodeType":"ExpressionStatement","src":"35146:3:13"},"nodeType":"ForStatement","src":"35091:383:13"},{"expression":{"id":4254,"name":"unlockedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4199,"src":"35491:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4175,"id":4255,"nodeType":"Return","src":"35484:21:13"}]},"functionSelector":"80ca0ecf","id":4257,"implemented":true,"kind":"function","modifiers":[],"name":"getUnlockedVesting","nameLocation":"34784:18:13","nodeType":"FunctionDefinition","parameters":{"id":4172,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4169,"mutability":"mutable","name":"_user","nameLocation":"34811:5:13","nodeType":"VariableDeclaration","scope":4257,"src":"34803:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4168,"name":"address","nodeType":"ElementaryTypeName","src":"34803:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4171,"mutability":"mutable","name":"_vestingIndex","nameLocation":"34826:13:13","nodeType":"VariableDeclaration","scope":4257,"src":"34818:21:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4170,"name":"uint256","nodeType":"ElementaryTypeName","src":"34818:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34802:38:13"},"returnParameters":{"id":4175,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4174,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4257,"src":"34862:7:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4173,"name":"uint256","nodeType":"ElementaryTypeName","src":"34862:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34861:9:13"},"scope":5452,"src":"34775:737:13","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":4355,"nodeType":"Block","src":"35641:755:13","statements":[{"assignments":[4272],"declarations":[{"constant":false,"id":4272,"mutability":"mutable","name":"vesting","nameLocation":"35667:7:13","nodeType":"VariableDeclaration","scope":4355,"src":"35651:23:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"},"typeName":{"id":4271,"nodeType":"UserDefinedTypeName","pathNode":{"id":4270,"name":"Vesting","nameLocations":["35651:7:13"],"nodeType":"IdentifierPath","referencedDeclaration":1827,"src":"35651:7:13"},"referencedDeclaration":1827,"src":"35651:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"}},"visibility":"internal"}],"id":4278,"initialValue":{"baseExpression":{"baseExpression":{"id":4273,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1902,"src":"35677:8:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":4275,"indexExpression":{"id":4274,"name":"_user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4259,"src":"35686:5:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"35677:15:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"id":4277,"indexExpression":{"id":4276,"name":"_vestingIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4261,"src":"35693:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"35677:30:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref"}},"nodeType":"VariableDeclarationStatement","src":"35651:56:13"},{"assignments":[4280],"declarations":[{"constant":false,"id":4280,"mutability":"mutable","name":"token","nameLocation":"35725:5:13","nodeType":"VariableDeclaration","scope":4355,"src":"35717:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4279,"name":"address","nodeType":"ElementaryTypeName","src":"35717:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":4283,"initialValue":{"expression":{"id":4281,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4272,"src":"35733:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4282,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"35741:5:13","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":1822,"src":"35733:13:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"35717:29:13"},{"assignments":[4285],"declarations":[{"constant":false,"id":4285,"mutability":"mutable","name":"scheduleLength","nameLocation":"35765:14:13","nodeType":"VariableDeclaration","scope":4355,"src":"35757:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4284,"name":"uint256","nodeType":"ElementaryTypeName","src":"35757:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4290,"initialValue":{"expression":{"baseExpression":{"id":4286,"name":"unlockSchedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1908,"src":"35782:15:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_UnlockStep_$1832_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.UnlockStep storage ref[] storage ref)"}},"id":4288,"indexExpression":{"id":4287,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4280,"src":"35798:5:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"35782:22:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UnlockStep_$1832_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.UnlockStep storage ref[] storage ref"}},"id":4289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35805:6:13","memberName":"length","nodeType":"MemberAccess","src":"35782:29:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"35757:54:13"},{"assignments":[4295],"declarations":[{"constant":false,"id":4295,"mutability":"mutable","name":"unlockTimestamps","nameLocation":"35838:16:13","nodeType":"VariableDeclaration","scope":4355,"src":"35821:33:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4293,"name":"uint256","nodeType":"ElementaryTypeName","src":"35821:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4294,"nodeType":"ArrayTypeName","src":"35821:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"id":4301,"initialValue":{"arguments":[{"id":4299,"name":"scheduleLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4285,"src":"35871:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4298,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"35857:13:13","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":4296,"name":"uint256","nodeType":"ElementaryTypeName","src":"35861:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4297,"nodeType":"ArrayTypeName","src":"35861:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":4300,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35857:29:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"VariableDeclarationStatement","src":"35821:65:13"},{"assignments":[4306],"declarations":[{"constant":false,"id":4306,"mutability":"mutable","name":"unlockPercentages","nameLocation":"35913:17:13","nodeType":"VariableDeclaration","scope":4355,"src":"35896:34:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4304,"name":"uint256","nodeType":"ElementaryTypeName","src":"35896:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4305,"nodeType":"ArrayTypeName","src":"35896:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"id":4312,"initialValue":{"arguments":[{"id":4310,"name":"scheduleLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4285,"src":"35947:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4309,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"35933:13:13","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":4307,"name":"uint256","nodeType":"ElementaryTypeName","src":"35937:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4308,"nodeType":"ArrayTypeName","src":"35937:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":4311,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35933:29:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"VariableDeclarationStatement","src":"35896:66:13"},{"body":{"id":4349,"nodeType":"Block","src":"36018:317:13","statements":[{"assignments":[4325],"declarations":[{"constant":false,"id":4325,"mutability":"mutable","name":"step","nameLocation":"36051:4:13","nodeType":"VariableDeclaration","scope":4349,"src":"36032:23:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1832_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep"},"typeName":{"id":4324,"nodeType":"UserDefinedTypeName","pathNode":{"id":4323,"name":"UnlockStep","nameLocations":["36032:10:13"],"nodeType":"IdentifierPath","referencedDeclaration":1832,"src":"36032:10:13"},"referencedDeclaration":1832,"src":"36032:10:13","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1832_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep"}},"visibility":"internal"}],"id":4331,"initialValue":{"baseExpression":{"baseExpression":{"id":4326,"name":"unlockSchedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1908,"src":"36058:15:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_UnlockStep_$1832_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.UnlockStep storage ref[] storage ref)"}},"id":4328,"indexExpression":{"id":4327,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4280,"src":"36074:5:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"36058:22:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UnlockStep_$1832_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.UnlockStep storage ref[] storage ref"}},"id":4330,"indexExpression":{"id":4329,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4314,"src":"36081:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"36058:25:13","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1832_storage","typeString":"struct CunaFinanceBsc.UnlockStep storage ref"}},"nodeType":"VariableDeclarationStatement","src":"36032:51:13"},{"expression":{"id":4340,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4332,"name":"unlockTimestamps","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4295,"src":"36153:16:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":4334,"indexExpression":{"id":4333,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4314,"src":"36170:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"36153:19:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4335,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4272,"src":"36175:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4336,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"36183:9:13","memberName":"createdAt","nodeType":"MemberAccess","referencedDeclaration":1820,"src":"36175:17:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":4337,"name":"step","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4325,"src":"36195:4:13","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1832_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep storage pointer"}},"id":4338,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"36200:10:13","memberName":"timeOffset","nodeType":"MemberAccess","referencedDeclaration":1829,"src":"36195:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"36175:35:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"36153:57:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4341,"nodeType":"ExpressionStatement","src":"36153:57:13"},{"expression":{"id":4347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4342,"name":"unlockPercentages","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4306,"src":"36224:17:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":4344,"indexExpression":{"id":4343,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4314,"src":"36242:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"36224:20:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":4345,"name":"step","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4325,"src":"36247:4:13","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1832_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep storage pointer"}},"id":4346,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"36252:10:13","memberName":"percentage","nodeType":"MemberAccess","referencedDeclaration":1831,"src":"36247:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"36224:38:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4348,"nodeType":"ExpressionStatement","src":"36224:38:13"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4319,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4317,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4314,"src":"35993:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":4318,"name":"scheduleLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4285,"src":"35997:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"35993:18:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4350,"initializationExpression":{"assignments":[4314],"declarations":[{"constant":false,"id":4314,"mutability":"mutable","name":"i","nameLocation":"35986:1:13","nodeType":"VariableDeclaration","scope":4350,"src":"35978:9:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4313,"name":"uint256","nodeType":"ElementaryTypeName","src":"35978:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4316,"initialValue":{"hexValue":"30","id":4315,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"35990:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"35978:13:13"},"loopExpression":{"expression":{"id":4321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"36013:3:13","subExpression":{"id":4320,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4314,"src":"36015:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4322,"nodeType":"ExpressionStatement","src":"36013:3:13"},"nodeType":"ForStatement","src":"35973:362:13"},{"expression":{"components":[{"id":4351,"name":"unlockTimestamps","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4295,"src":"36353:16:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":4352,"name":"unlockPercentages","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4306,"src":"36371:17:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}}],"id":4353,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"36352:37:13","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":4269,"id":4354,"nodeType":"Return","src":"36345:44:13"}]},"functionSelector":"bed9757e","id":4356,"implemented":true,"kind":"function","modifiers":[],"name":"getVestingSchedule","nameLocation":"35527:18:13","nodeType":"FunctionDefinition","parameters":{"id":4262,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4259,"mutability":"mutable","name":"_user","nameLocation":"35554:5:13","nodeType":"VariableDeclaration","scope":4356,"src":"35546:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4258,"name":"address","nodeType":"ElementaryTypeName","src":"35546:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4261,"mutability":"mutable","name":"_vestingIndex","nameLocation":"35569:13:13","nodeType":"VariableDeclaration","scope":4356,"src":"35561:21:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4260,"name":"uint256","nodeType":"ElementaryTypeName","src":"35561:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"35545:38:13"},"returnParameters":{"id":4269,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4265,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4356,"src":"35605:16:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4263,"name":"uint256","nodeType":"ElementaryTypeName","src":"35605:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4264,"nodeType":"ArrayTypeName","src":"35605:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":4268,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4356,"src":"35623:16:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4266,"name":"uint256","nodeType":"ElementaryTypeName","src":"35623:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4267,"nodeType":"ArrayTypeName","src":"35623:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"35604:36:13"},"scope":5452,"src":"35518:878:13","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":4454,"nodeType":"Block","src":"36503:724:13","statements":[{"assignments":[4367],"declarations":[{"constant":false,"id":4367,"mutability":"mutable","name":"vesting","nameLocation":"36529:7:13","nodeType":"VariableDeclaration","scope":4454,"src":"36513:23:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"},"typeName":{"id":4366,"nodeType":"UserDefinedTypeName","pathNode":{"id":4365,"name":"Vesting","nameLocations":["36513:7:13"],"nodeType":"IdentifierPath","referencedDeclaration":1827,"src":"36513:7:13"},"referencedDeclaration":1827,"src":"36513:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"}},"visibility":"internal"}],"id":4373,"initialValue":{"baseExpression":{"baseExpression":{"id":4368,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1902,"src":"36539:8:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":4370,"indexExpression":{"id":4369,"name":"_user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4358,"src":"36548:5:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"36539:15:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"id":4372,"indexExpression":{"id":4371,"name":"_vestingIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4360,"src":"36555:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"36539:30:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref"}},"nodeType":"VariableDeclarationStatement","src":"36513:56:13"},{"assignments":[4375],"declarations":[{"constant":false,"id":4375,"mutability":"mutable","name":"timeElapsed","nameLocation":"36587:11:13","nodeType":"VariableDeclaration","scope":4454,"src":"36579:19:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4374,"name":"uint256","nodeType":"ElementaryTypeName","src":"36579:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4381,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4380,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4376,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"36601:5:13","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":4377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"36607:9:13","memberName":"timestamp","nodeType":"MemberAccess","src":"36601:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":4378,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4367,"src":"36619:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4379,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"36627:9:13","memberName":"createdAt","nodeType":"MemberAccess","referencedDeclaration":1820,"src":"36619:17:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"36601:35:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"36579:57:13"},{"assignments":[4383],"declarations":[{"constant":false,"id":4383,"mutability":"mutable","name":"token","nameLocation":"36654:5:13","nodeType":"VariableDeclaration","scope":4454,"src":"36646:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4382,"name":"address","nodeType":"ElementaryTypeName","src":"36646:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":4386,"initialValue":{"expression":{"id":4384,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4367,"src":"36662:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4385,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"36670:5:13","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":1822,"src":"36662:13:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"36646:29:13"},{"assignments":[4388],"declarations":[{"constant":false,"id":4388,"mutability":"mutable","name":"unlockedAmount","nameLocation":"36694:14:13","nodeType":"VariableDeclaration","scope":4454,"src":"36686:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4387,"name":"uint256","nodeType":"ElementaryTypeName","src":"36686:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4390,"initialValue":{"hexValue":"30","id":4389,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"36711:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"36686:26:13"},{"body":{"id":4450,"nodeType":"Block","src":"36783:406:13","statements":[{"assignments":[4406],"declarations":[{"constant":false,"id":4406,"mutability":"mutable","name":"step","nameLocation":"36816:4:13","nodeType":"VariableDeclaration","scope":4450,"src":"36797:23:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1832_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep"},"typeName":{"id":4405,"nodeType":"UserDefinedTypeName","pathNode":{"id":4404,"name":"UnlockStep","nameLocations":["36797:10:13"],"nodeType":"IdentifierPath","referencedDeclaration":1832,"src":"36797:10:13"},"referencedDeclaration":1832,"src":"36797:10:13","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1832_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep"}},"visibility":"internal"}],"id":4412,"initialValue":{"baseExpression":{"baseExpression":{"id":4407,"name":"unlockSchedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1908,"src":"36823:15:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_UnlockStep_$1832_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.UnlockStep storage ref[] storage ref)"}},"id":4409,"indexExpression":{"id":4408,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4383,"src":"36839:5:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"36823:22:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UnlockStep_$1832_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.UnlockStep storage ref[] storage ref"}},"id":4411,"indexExpression":{"id":4410,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4392,"src":"36846:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"36823:25:13","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1832_storage","typeString":"struct CunaFinanceBsc.UnlockStep storage ref"}},"nodeType":"VariableDeclarationStatement","src":"36797:51:13"},{"assignments":[4414],"declarations":[{"constant":false,"id":4414,"mutability":"mutable","name":"timeTier","nameLocation":"36870:8:13","nodeType":"VariableDeclaration","scope":4450,"src":"36862:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4413,"name":"uint256","nodeType":"ElementaryTypeName","src":"36862:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4417,"initialValue":{"expression":{"id":4415,"name":"step","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4406,"src":"36881:4:13","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1832_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep storage pointer"}},"id":4416,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"36886:10:13","memberName":"timeOffset","nodeType":"MemberAccess","referencedDeclaration":1829,"src":"36881:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"36862:34:13"},{"assignments":[4419],"declarations":[{"constant":false,"id":4419,"mutability":"mutable","name":"percentage","nameLocation":"36918:10:13","nodeType":"VariableDeclaration","scope":4450,"src":"36910:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4418,"name":"uint256","nodeType":"ElementaryTypeName","src":"36910:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4422,"initialValue":{"expression":{"id":4420,"name":"step","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4406,"src":"36931:4:13","typeDescriptions":{"typeIdentifier":"t_struct$_UnlockStep_$1832_storage_ptr","typeString":"struct CunaFinanceBsc.UnlockStep storage pointer"}},"id":4421,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"36936:10:13","memberName":"percentage","nodeType":"MemberAccess","referencedDeclaration":1831,"src":"36931:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"36910:36:13"},{"assignments":[4424],"declarations":[{"constant":false,"id":4424,"mutability":"mutable","name":"maxBonusAmount","nameLocation":"36968:14:13","nodeType":"VariableDeclaration","scope":4450,"src":"36960:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4423,"name":"uint256","nodeType":"ElementaryTypeName","src":"36960:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4432,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4431,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4428,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4425,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4367,"src":"36986:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4426,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"36994:9:13","memberName":"usdAmount","nodeType":"MemberAccess","referencedDeclaration":1826,"src":"36986:17:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4427,"name":"BONUS_PERCENTAGE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1927,"src":"37006:16:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"36986:36:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4429,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"36985:38:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"313030","id":4430,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"37026:3:13","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"36985:44:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"36960:69:13"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4433,"name":"timeElapsed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4375,"src":"37048:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":4434,"name":"timeTier","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4414,"src":"37063:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"37048:23:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4449,"nodeType":"IfStatement","src":"37044:135:13","trueBody":{"id":4448,"nodeType":"Block","src":"37073:106:13","statements":[{"expression":{"id":4446,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4436,"name":"unlockedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4388,"src":"37091:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4437,"name":"unlockedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4388,"src":"37108:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4443,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4440,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4438,"name":"maxBonusAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4424,"src":"37127:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4439,"name":"percentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4419,"src":"37144:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"37127:27:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4441,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"37126:29:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130303030","id":4442,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"37158:5:13","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"37126:37:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4444,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"37125:39:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"37108:56:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"37091:73:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4447,"nodeType":"ExpressionStatement","src":"37091:73:13"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4400,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4395,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4392,"src":"36743:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"baseExpression":{"id":4396,"name":"unlockSchedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1908,"src":"36747:15:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_UnlockStep_$1832_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.UnlockStep storage ref[] storage ref)"}},"id":4398,"indexExpression":{"id":4397,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4383,"src":"36763:5:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"36747:22:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UnlockStep_$1832_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.UnlockStep storage ref[] storage ref"}},"id":4399,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"36770:6:13","memberName":"length","nodeType":"MemberAccess","src":"36747:29:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"36743:33:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4451,"initializationExpression":{"assignments":[4392],"declarations":[{"constant":false,"id":4392,"mutability":"mutable","name":"i","nameLocation":"36736:1:13","nodeType":"VariableDeclaration","scope":4451,"src":"36728:9:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4391,"name":"uint256","nodeType":"ElementaryTypeName","src":"36728:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4394,"initialValue":{"hexValue":"30","id":4393,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"36740:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"36728:13:13"},"loopExpression":{"expression":{"id":4402,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"36778:3:13","subExpression":{"id":4401,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4392,"src":"36780:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4403,"nodeType":"ExpressionStatement","src":"36778:3:13"},"nodeType":"ForStatement","src":"36723:466:13"},{"expression":{"id":4452,"name":"unlockedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4388,"src":"37206:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4364,"id":4453,"nodeType":"Return","src":"37199:21:13"}]},"functionSelector":"0a84096a","id":4455,"implemented":true,"kind":"function","modifiers":[],"name":"getUnlockedVestingBonus","nameLocation":"36411:23:13","nodeType":"FunctionDefinition","parameters":{"id":4361,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4358,"mutability":"mutable","name":"_user","nameLocation":"36443:5:13","nodeType":"VariableDeclaration","scope":4455,"src":"36435:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4357,"name":"address","nodeType":"ElementaryTypeName","src":"36435:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4360,"mutability":"mutable","name":"_vestingIndex","nameLocation":"36458:13:13","nodeType":"VariableDeclaration","scope":4455,"src":"36450:21:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4359,"name":"uint256","nodeType":"ElementaryTypeName","src":"36450:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"36434:38:13"},"returnParameters":{"id":4364,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4363,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4455,"src":"36494:7:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4362,"name":"uint256","nodeType":"ElementaryTypeName","src":"36494:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"36493:9:13"},"scope":5452,"src":"36402:825:13","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":4469,"nodeType":"Block","src":"37382:38:13","statements":[{"expression":{"baseExpression":{"id":4465,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1902,"src":"37399:8:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":4467,"indexExpression":{"id":4466,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4458,"src":"37408:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"37399:14:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"functionReturnParameters":4464,"id":4468,"nodeType":"Return","src":"37392:21:13"}]},"documentation":{"id":4456,"nodeType":"StructuredDocumentation","src":"37233:68:13","text":"@notice View function to get all vestings for a specific address"},"functionSelector":"7a0c6dc0","id":4470,"implemented":true,"kind":"function","modifiers":[],"name":"getVestings","nameLocation":"37315:11:13","nodeType":"FunctionDefinition","parameters":{"id":4459,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4458,"mutability":"mutable","name":"user","nameLocation":"37335:4:13","nodeType":"VariableDeclaration","scope":4470,"src":"37327:12:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4457,"name":"address","nodeType":"ElementaryTypeName","src":"37327:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"37326:14:13"},"returnParameters":{"id":4464,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4463,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4470,"src":"37364:16:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1827_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.Vesting[]"},"typeName":{"baseType":{"id":4461,"nodeType":"UserDefinedTypeName","pathNode":{"id":4460,"name":"Vesting","nameLocations":["37364:7:13"],"nodeType":"IdentifierPath","referencedDeclaration":1827,"src":"37364:7:13"},"referencedDeclaration":1827,"src":"37364:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"}},"id":4462,"nodeType":"ArrayTypeName","src":"37364:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting[]"}},"visibility":"internal"}],"src":"37363:18:13"},"scope":5452,"src":"37306:114:13","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":4571,"nodeType":"Block","src":"38036:915:13","statements":[{"assignments":[4486],"declarations":[{"constant":false,"id":4486,"mutability":"mutable","name":"length","nameLocation":"38054:6:13","nodeType":"VariableDeclaration","scope":4571,"src":"38046:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4485,"name":"uint256","nodeType":"ElementaryTypeName","src":"38046:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4489,"initialValue":{"expression":{"id":4487,"name":"_tokens","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4474,"src":"38063:7:13","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":4488,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"38071:6:13","memberName":"length","nodeType":"MemberAccess","src":"38063:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"38046:31:13"},{"expression":{"id":4496,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4490,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4478,"src":"38087:7:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4494,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4486,"src":"38111:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4493,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"38097:13:13","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":4491,"name":"uint256","nodeType":"ElementaryTypeName","src":"38101:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4492,"nodeType":"ArrayTypeName","src":"38101:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":4495,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38097:21:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"src":"38087:31:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":4497,"nodeType":"ExpressionStatement","src":"38087:31:13"},{"expression":{"id":4504,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4498,"name":"usdValues","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4481,"src":"38128:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4502,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4486,"src":"38154:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4501,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"38140:13:13","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":4499,"name":"uint256","nodeType":"ElementaryTypeName","src":"38144:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4500,"nodeType":"ArrayTypeName","src":"38144:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":4503,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38140:21:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"src":"38128:33:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":4505,"nodeType":"ExpressionStatement","src":"38128:33:13"},{"body":{"id":4564,"nodeType":"Block","src":"38209:688:13","statements":[{"assignments":[4517],"declarations":[{"constant":false,"id":4517,"mutability":"mutable","name":"token","nameLocation":"38231:5:13","nodeType":"VariableDeclaration","scope":4564,"src":"38223:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4516,"name":"address","nodeType":"ElementaryTypeName","src":"38223:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":4521,"initialValue":{"baseExpression":{"id":4518,"name":"_tokens","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4474,"src":"38239:7:13","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":4520,"indexExpression":{"id":4519,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4507,"src":"38247:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"38239:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"38223:26:13"},{"assignments":[4523],"declarations":[{"constant":false,"id":4523,"mutability":"mutable","name":"tokenAmount","nameLocation":"38334:11:13","nodeType":"VariableDeclaration","scope":4564,"src":"38326:19:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4522,"name":"uint256","nodeType":"ElementaryTypeName","src":"38326:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4527,"initialValue":{"baseExpression":{"id":4524,"name":"vestedTotal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1920,"src":"38348:11:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4526,"indexExpression":{"id":4525,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4517,"src":"38360:5:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"38348:18:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"38326:40:13"},{"expression":{"id":4532,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4528,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4478,"src":"38380:7:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":4530,"indexExpression":{"id":4529,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4507,"src":"38388:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"38380:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4531,"name":"tokenAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4523,"src":"38393:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"38380:24:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4533,"nodeType":"ExpressionStatement","src":"38380:24:13"},{"assignments":[4535],"declarations":[{"constant":false,"id":4535,"mutability":"mutable","name":"price","nameLocation":"38559:5:13","nodeType":"VariableDeclaration","scope":4564,"src":"38551:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4534,"name":"uint256","nodeType":"ElementaryTypeName","src":"38551:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4544,"initialValue":{"arguments":[{"id":4542,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4517,"src":"38616:5:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"baseExpression":{"id":4537,"name":"priceOracles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1912,"src":"38580:12:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}},"id":4539,"indexExpression":{"id":4538,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4517,"src":"38593:5:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"38580:19:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4536,"name":"iPriceOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1798,"src":"38567:12:13","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_iPriceOracle_$1798_$","typeString":"type(contract iPriceOracle)"}},"id":4540,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38567:33:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_iPriceOracle_$1798","typeString":"contract iPriceOracle"}},"id":4541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"38601:14:13","memberName":"getLatestPrice","nodeType":"MemberAccess","referencedDeclaration":1797,"src":"38567:48:13","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":4543,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38567:55:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"38551:71:13"},{"assignments":[4546],"declarations":[{"constant":false,"id":4546,"mutability":"mutable","name":"valueInUsd","nameLocation":"38719:10:13","nodeType":"VariableDeclaration","scope":4564,"src":"38711:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4545,"name":"uint256","nodeType":"ElementaryTypeName","src":"38711:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4553,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4549,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4547,"name":"price","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4535,"src":"38733:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4548,"name":"tokenAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4523,"src":"38741:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"38733:19:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4550,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"38732:21:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"31653138","id":4551,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"38756:4:13","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"src":"38732:28:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"38711:49:13"},{"expression":{"id":4558,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4554,"name":"usdValues","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4481,"src":"38774:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":4556,"indexExpression":{"id":4555,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4507,"src":"38784:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"38774:12:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4557,"name":"valueInUsd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4546,"src":"38789:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"38774:25:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4559,"nodeType":"ExpressionStatement","src":"38774:25:13"},{"expression":{"id":4562,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4560,"name":"totalUsd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4483,"src":"38864:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":4561,"name":"valueInUsd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4546,"src":"38876:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"38864:22:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4563,"nodeType":"ExpressionStatement","src":"38864:22:13"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4510,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4507,"src":"38192:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":4511,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4486,"src":"38196:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"38192:10:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4565,"initializationExpression":{"assignments":[4507],"declarations":[{"constant":false,"id":4507,"mutability":"mutable","name":"i","nameLocation":"38185:1:13","nodeType":"VariableDeclaration","scope":4565,"src":"38177:9:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4506,"name":"uint256","nodeType":"ElementaryTypeName","src":"38177:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4509,"initialValue":{"hexValue":"30","id":4508,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"38189:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"38177:13:13"},"loopExpression":{"expression":{"id":4514,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"38204:3:13","subExpression":{"id":4513,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4507,"src":"38204:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4515,"nodeType":"ExpressionStatement","src":"38204:3:13"},"nodeType":"ForStatement","src":"38172:725:13"},{"expression":{"components":[{"id":4566,"name":"amounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4478,"src":"38915:7:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":4567,"name":"usdValues","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4481,"src":"38924:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":4568,"name":"totalUsd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4483,"src":"38935:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4569,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"38914:30:13","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":4484,"id":4570,"nodeType":"Return","src":"38907:37:13"}]},"documentation":{"id":4471,"nodeType":"StructuredDocumentation","src":"37426:383:13","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":4572,"implemented":true,"kind":"function","modifiers":[],"name":"getVestedTotals","nameLocation":"37823:15:13","nodeType":"FunctionDefinition","parameters":{"id":4475,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4474,"mutability":"mutable","name":"_tokens","nameLocation":"37858:7:13","nodeType":"VariableDeclaration","scope":4572,"src":"37839:26:13","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":4472,"name":"address","nodeType":"ElementaryTypeName","src":"37839:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4473,"nodeType":"ArrayTypeName","src":"37839:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"}],"src":"37838:28:13"},"returnParameters":{"id":4484,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4478,"mutability":"mutable","name":"amounts","nameLocation":"37944:7:13","nodeType":"VariableDeclaration","scope":4572,"src":"37927:24:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4476,"name":"uint256","nodeType":"ElementaryTypeName","src":"37927:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4477,"nodeType":"ArrayTypeName","src":"37927:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":4481,"mutability":"mutable","name":"usdValues","nameLocation":"37982:9:13","nodeType":"VariableDeclaration","scope":4572,"src":"37965:26:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4479,"name":"uint256","nodeType":"ElementaryTypeName","src":"37965:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4480,"nodeType":"ArrayTypeName","src":"37965:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":4483,"mutability":"mutable","name":"totalUsd","nameLocation":"38013:8:13","nodeType":"VariableDeclaration","scope":4572,"src":"38005:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4482,"name":"uint256","nodeType":"ElementaryTypeName","src":"38005:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"37913:118:13"},"scope":5452,"src":"37814:1137:13","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":4649,"nodeType":"Block","src":"39277:626:13","statements":[{"assignments":[4581],"declarations":[{"constant":false,"id":4581,"mutability":"mutable","name":"length","nameLocation":"39295:6:13","nodeType":"VariableDeclaration","scope":4649,"src":"39287:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4580,"name":"uint256","nodeType":"ElementaryTypeName","src":"39287:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4586,"initialValue":{"expression":{"baseExpression":{"id":4582,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1902,"src":"39304:8:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":4584,"indexExpression":{"id":4583,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4575,"src":"39313:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"39304:14:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"id":4585,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"39319:6:13","memberName":"length","nodeType":"MemberAccess","src":"39304:21:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"39287:38:13"},{"body":{"id":4645,"nodeType":"Block","src":"39372:500:13","statements":[{"assignments":[4599],"declarations":[{"constant":false,"id":4599,"mutability":"mutable","name":"v","nameLocation":"39401:1:13","nodeType":"VariableDeclaration","scope":4645,"src":"39386:16:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_memory_ptr","typeString":"struct CunaFinanceBsc.Vesting"},"typeName":{"id":4598,"nodeType":"UserDefinedTypeName","pathNode":{"id":4597,"name":"Vesting","nameLocations":["39386:7:13"],"nodeType":"IdentifierPath","referencedDeclaration":1827,"src":"39386:7:13"},"referencedDeclaration":1827,"src":"39386:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"}},"visibility":"internal"}],"id":4605,"initialValue":{"baseExpression":{"baseExpression":{"id":4600,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1902,"src":"39405:8:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":4602,"indexExpression":{"id":4601,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4575,"src":"39414:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"39405:14:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"id":4604,"indexExpression":{"id":4603,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4588,"src":"39420:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"39405:17:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref"}},"nodeType":"VariableDeclarationStatement","src":"39386:36:13"},{"condition":{"id":4608,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"39440:11:13","subExpression":{"expression":{"id":4606,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4599,"src":"39441:1:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_memory_ptr","typeString":"struct CunaFinanceBsc.Vesting memory"}},"id":4607,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"39443:8:13","memberName":"complete","nodeType":"MemberAccess","referencedDeclaration":1824,"src":"39441:10:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4644,"nodeType":"IfStatement","src":"39436:426:13","trueBody":{"id":4643,"nodeType":"Block","src":"39453:409:13","statements":[{"assignments":[4610],"declarations":[{"constant":false,"id":4610,"mutability":"mutable","name":"tokenPrice","nameLocation":"39479:10:13","nodeType":"VariableDeclaration","scope":4643,"src":"39471:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4609,"name":"uint256","nodeType":"ElementaryTypeName","src":"39471:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4621,"initialValue":{"arguments":[{"expression":{"id":4618,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4599,"src":"39543:1:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_memory_ptr","typeString":"struct CunaFinanceBsc.Vesting memory"}},"id":4619,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"39545:5:13","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":1822,"src":"39543:7:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"baseExpression":{"id":4612,"name":"priceOracles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1912,"src":"39505:12:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}},"id":4615,"indexExpression":{"expression":{"id":4613,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4599,"src":"39518:1:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_memory_ptr","typeString":"struct CunaFinanceBsc.Vesting memory"}},"id":4614,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"39520:5:13","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":1822,"src":"39518:7:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"39505:21:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4611,"name":"iPriceOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1798,"src":"39492:12:13","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_iPriceOracle_$1798_$","typeString":"type(contract iPriceOracle)"}},"id":4616,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39492:35:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_iPriceOracle_$1798","typeString":"contract iPriceOracle"}},"id":4617,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"39528:14:13","memberName":"getLatestPrice","nodeType":"MemberAccess","referencedDeclaration":1797,"src":"39492:50:13","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":4620,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39492:59:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"39471:80:13"},{"assignments":[4623],"declarations":[{"constant":false,"id":4623,"mutability":"mutable","name":"unclaimedAmount","nameLocation":"39632:15:13","nodeType":"VariableDeclaration","scope":4643,"src":"39624:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4622,"name":"uint256","nodeType":"ElementaryTypeName","src":"39624:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4629,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4628,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4624,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4599,"src":"39650:1:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_memory_ptr","typeString":"struct CunaFinanceBsc.Vesting memory"}},"id":4625,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"39652:6:13","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":1808,"src":"39650:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":4626,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4599,"src":"39661:1:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_memory_ptr","typeString":"struct CunaFinanceBsc.Vesting memory"}},"id":4627,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"39663:13:13","memberName":"claimedAmount","nodeType":"MemberAccess","referencedDeclaration":1814,"src":"39661:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"39650:26:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"39624:52:13"},{"assignments":[4631],"declarations":[{"constant":false,"id":4631,"mutability":"mutable","name":"stakeUsd","nameLocation":"39760:8:13","nodeType":"VariableDeclaration","scope":4643,"src":"39752:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4630,"name":"uint256","nodeType":"ElementaryTypeName","src":"39752:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4638,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4637,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4634,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4632,"name":"tokenPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4610,"src":"39772:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4633,"name":"unclaimedAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4623,"src":"39785:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"39772:28:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4635,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"39771:30:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"31653138","id":4636,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39804:4:13","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"src":"39771:37:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"39752:56:13"},{"expression":{"id":4641,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4639,"name":"totalUsd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4578,"src":"39827:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":4640,"name":"stakeUsd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4631,"src":"39839:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"39827:20:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4642,"nodeType":"ExpressionStatement","src":"39827:20:13"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4593,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4591,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4588,"src":"39355:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":4592,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4581,"src":"39359:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"39355:10:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4646,"initializationExpression":{"assignments":[4588],"declarations":[{"constant":false,"id":4588,"mutability":"mutable","name":"i","nameLocation":"39348:1:13","nodeType":"VariableDeclaration","scope":4646,"src":"39340:9:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4587,"name":"uint256","nodeType":"ElementaryTypeName","src":"39340:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4590,"initialValue":{"hexValue":"30","id":4589,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39352:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"39340:13:13"},"loopExpression":{"expression":{"id":4595,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"39367:3:13","subExpression":{"id":4594,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4588,"src":"39367:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4596,"nodeType":"ExpressionStatement","src":"39367:3:13"},"nodeType":"ForStatement","src":"39335:537:13"},{"expression":{"id":4647,"name":"totalUsd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4578,"src":"39888:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4579,"id":4648,"nodeType":"Return","src":"39881:15:13"}]},"documentation":{"id":4573,"nodeType":"StructuredDocumentation","src":"38957:221:13","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":4650,"implemented":true,"kind":"function","modifiers":[],"name":"getUserTotalUnclaimedUsdValue","nameLocation":"39192:29:13","nodeType":"FunctionDefinition","parameters":{"id":4576,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4575,"mutability":"mutable","name":"user","nameLocation":"39230:4:13","nodeType":"VariableDeclaration","scope":4650,"src":"39222:12:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4574,"name":"address","nodeType":"ElementaryTypeName","src":"39222:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"39221:14:13"},"returnParameters":{"id":4579,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4578,"mutability":"mutable","name":"totalUsd","nameLocation":"39267:8:13","nodeType":"VariableDeclaration","scope":4650,"src":"39259:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4577,"name":"uint256","nodeType":"ElementaryTypeName","src":"39259:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"39258:18:13"},"scope":5452,"src":"39183:720:13","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":4823,"nodeType":"Block","src":"40113:1665:13","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4665,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4659,"name":"_vestingIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4653,"src":"40131:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"baseExpression":{"id":4660,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1902,"src":"40147:8:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":4663,"indexExpression":{"expression":{"id":4661,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"40156:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4662,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"40160:6:13","memberName":"sender","nodeType":"MemberAccess","src":"40156:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"40147:20:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"id":4664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"40168:6:13","memberName":"length","nodeType":"MemberAccess","src":"40147:27:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"40131:43:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642076657374696e6720696e646578","id":4666,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"40176:23:13","typeDescriptions":{"typeIdentifier":"t_stringliteral_958bf679397ff3f7b38ad9e6e0d68fc1f329d27b4d75f8a328d52e3e6926cc04","typeString":"literal_string \"Invalid vesting index\""},"value":"Invalid vesting index"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_958bf679397ff3f7b38ad9e6e0d68fc1f329d27b4d75f8a328d52e3e6926cc04","typeString":"literal_string \"Invalid vesting index\""}],"id":4658,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"40123:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4667,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40123:77:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4668,"nodeType":"ExpressionStatement","src":"40123:77:13"},{"assignments":[4671],"declarations":[{"constant":false,"id":4671,"mutability":"mutable","name":"vesting","nameLocation":"40235:7:13","nodeType":"VariableDeclaration","scope":4823,"src":"40219:23:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"},"typeName":{"id":4670,"nodeType":"UserDefinedTypeName","pathNode":{"id":4669,"name":"Vesting","nameLocations":["40219:7:13"],"nodeType":"IdentifierPath","referencedDeclaration":1827,"src":"40219:7:13"},"referencedDeclaration":1827,"src":"40219:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"}},"visibility":"internal"}],"id":4678,"initialValue":{"baseExpression":{"baseExpression":{"id":4672,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1902,"src":"40245:8:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":4675,"indexExpression":{"expression":{"id":4673,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"40254:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4674,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"40258:6:13","memberName":"sender","nodeType":"MemberAccess","src":"40254:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"40245:20:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"id":4677,"indexExpression":{"id":4676,"name":"_vestingIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4653,"src":"40266:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"40245:35:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref"}},"nodeType":"VariableDeclarationStatement","src":"40219:61:13"},{"expression":{"arguments":[{"id":4682,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"40298:17:13","subExpression":{"expression":{"id":4680,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4671,"src":"40299:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4681,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"40307:8:13","memberName":"complete","nodeType":"MemberAccess","referencedDeclaration":1824,"src":"40299:16:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"56657374696e6720636f6d706c657465","id":4683,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"40317:18:13","typeDescriptions":{"typeIdentifier":"t_stringliteral_74917fd6fcb4f5c0476024ca107dba39ccfc7e6e33632969cffe0341aefd3ea4","typeString":"literal_string \"Vesting complete\""},"value":"Vesting complete"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_74917fd6fcb4f5c0476024ca107dba39ccfc7e6e33632969cffe0341aefd3ea4","typeString":"literal_string \"Vesting complete\""}],"id":4679,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"40290:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4684,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40290:46:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4685,"nodeType":"ExpressionStatement","src":"40290:46:13"},{"assignments":[4687],"declarations":[{"constant":false,"id":4687,"mutability":"mutable","name":"maxClaim","nameLocation":"40363:8:13","nodeType":"VariableDeclaration","scope":4823,"src":"40355:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4686,"name":"uint256","nodeType":"ElementaryTypeName","src":"40355:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4693,"initialValue":{"arguments":[{"expression":{"id":4689,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"40393:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4690,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"40397:6:13","memberName":"sender","nodeType":"MemberAccess","src":"40393:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4691,"name":"_vestingIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4653,"src":"40405:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4688,"name":"getUnlockedVesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4257,"src":"40374:18:13","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,uint256) view returns (uint256)"}},"id":4692,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40374:45:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"40355:64:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4698,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4695,"name":"maxClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4687,"src":"40437:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":4696,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4671,"src":"40449:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4697,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"40457:13:13","memberName":"claimedAmount","nodeType":"MemberAccess","referencedDeclaration":1814,"src":"40449:21:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"40437:33:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c696420636c61696d20616d6f756e74","id":4699,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"40472:22:13","typeDescriptions":{"typeIdentifier":"t_stringliteral_a2174c1737f7cb6c21957e39702561f246cc9bd66d84735975199b1061c55180","typeString":"literal_string \"Invalid claim amount\""},"value":"Invalid claim amount"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a2174c1737f7cb6c21957e39702561f246cc9bd66d84735975199b1061c55180","typeString":"literal_string \"Invalid claim amount\""}],"id":4694,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"40429:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4700,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40429:66:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4701,"nodeType":"ExpressionStatement","src":"40429:66:13"},{"assignments":[4703],"declarations":[{"constant":false,"id":4703,"mutability":"mutable","name":"amountToClaim","nameLocation":"40522:13:13","nodeType":"VariableDeclaration","scope":4823,"src":"40514:21:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4702,"name":"uint256","nodeType":"ElementaryTypeName","src":"40514:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4708,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4707,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4704,"name":"maxClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4687,"src":"40538:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":4705,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4671,"src":"40549:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4706,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"40557:13:13","memberName":"claimedAmount","nodeType":"MemberAccess","referencedDeclaration":1814,"src":"40549:21:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"40538:32:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"40514:56:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4712,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4710,"name":"amountToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4703,"src":"40588:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4711,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"40604:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"40588:17:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f7468696e6720746f20636c61696d","id":4713,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"40607:18:13","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":4709,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"40580:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4714,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40580:46:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4715,"nodeType":"ExpressionStatement","src":"40580:46:13"},{"expression":{"id":4720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":4716,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4671,"src":"40637:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4718,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"40645:13:13","memberName":"claimedAmount","nodeType":"MemberAccess","referencedDeclaration":1814,"src":"40637:21:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":4719,"name":"amountToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4703,"src":"40662:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"40637:38:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4721,"nodeType":"ExpressionStatement","src":"40637:38:13"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4726,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4722,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4671,"src":"40689:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4723,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"40697:13:13","memberName":"claimedAmount","nodeType":"MemberAccess","referencedDeclaration":1814,"src":"40689:21:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":4724,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4671,"src":"40714:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4725,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"40722:6:13","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":1808,"src":"40714:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"40689:39:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4734,"nodeType":"IfStatement","src":"40685:93:13","trueBody":{"id":4733,"nodeType":"Block","src":"40730:48:13","statements":[{"expression":{"id":4731,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":4727,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4671,"src":"40744:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4729,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"40752:8:13","memberName":"complete","nodeType":"MemberAccess","referencedDeclaration":1824,"src":"40744:16:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":4730,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"40763:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"40744:23:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4732,"nodeType":"ExpressionStatement","src":"40744:23:13"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4740,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":4735,"name":"dollarsVested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1916,"src":"40839:13:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4738,"indexExpression":{"expression":{"id":4736,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"40853:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4737,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"40857:6:13","memberName":"sender","nodeType":"MemberAccess","src":"40853:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"40839:25:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4739,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"40867:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"40839:29:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4783,"nodeType":"IfStatement","src":"40835:369:13","trueBody":{"id":4782,"nodeType":"Block","src":"40870:334:13","statements":[{"assignments":[4742],"declarations":[{"constant":false,"id":4742,"mutability":"mutable","name":"usdPrice","nameLocation":"40892:8:13","nodeType":"VariableDeclaration","scope":4782,"src":"40884:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4741,"name":"uint256","nodeType":"ElementaryTypeName","src":"40884:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4758,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4757,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4754,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":4750,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4671,"src":"40961:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4751,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"40969:5:13","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":1822,"src":"40961:13:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"baseExpression":{"id":4744,"name":"priceOracles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1912,"src":"40917:12:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}},"id":4747,"indexExpression":{"expression":{"id":4745,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4671,"src":"40930:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4746,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"40938:5:13","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":1822,"src":"40930:13:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"40917:27:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4743,"name":"iPriceOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1798,"src":"40904:12:13","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_iPriceOracle_$1798_$","typeString":"type(contract iPriceOracle)"}},"id":4748,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40904:41:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_iPriceOracle_$1798","typeString":"contract iPriceOracle"}},"id":4749,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"40946:14:13","memberName":"getLatestPrice","nodeType":"MemberAccess","referencedDeclaration":1797,"src":"40904:56:13","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":4752,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40904:71:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4753,"name":"amountToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4703,"src":"40978:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"40904:87:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4755,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"40903:89:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"31653138","id":4756,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"40995:4:13","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"src":"40903:96:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"40884:115:13"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4764,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4759,"name":"usdPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4742,"src":"41017:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"baseExpression":{"id":4760,"name":"dollarsVested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1916,"src":"41029:13:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4763,"indexExpression":{"expression":{"id":4761,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"41043:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4762,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"41047:6:13","memberName":"sender","nodeType":"MemberAccess","src":"41043:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"41029:25:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"41017:37:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":4780,"nodeType":"Block","src":"41124:70:13","statements":[{"expression":{"id":4778,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4773,"name":"dollarsVested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1916,"src":"41142:13:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4776,"indexExpression":{"expression":{"id":4774,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"41156:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"41160:6:13","memberName":"sender","nodeType":"MemberAccess","src":"41156:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"41142:25:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":4777,"name":"usdPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4742,"src":"41171:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"41142:37:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4779,"nodeType":"ExpressionStatement","src":"41142:37:13"}]},"id":4781,"nodeType":"IfStatement","src":"41013:181:13","trueBody":{"id":4772,"nodeType":"Block","src":"41056:62:13","statements":[{"expression":{"id":4770,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4765,"name":"dollarsVested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1916,"src":"41074:13:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4768,"indexExpression":{"expression":{"id":4766,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"41088:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4767,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"41092:6:13","memberName":"sender","nodeType":"MemberAccess","src":"41088:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"41074:25:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":4769,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"41102:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"41074:29:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4771,"nodeType":"ExpressionStatement","src":"41074:29:13"}]}}]}},{"expression":{"id":4789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4784,"name":"vestedTotal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1920,"src":"41213:11:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4787,"indexExpression":{"expression":{"id":4785,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4671,"src":"41225:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4786,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"41233:5:13","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":1822,"src":"41225:13:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"41213:26:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":4788,"name":"amountToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4703,"src":"41243:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"41213:43:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4790,"nodeType":"ExpressionStatement","src":"41213:43:13"},{"expression":{"arguments":[{"arguments":[{"id":4798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"41403:30:13","subExpression":{"id":4797,"name":"withdrawVestingCounterActual","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1938,"src":"41403:28:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4799,"name":"amountToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4703,"src":"41455:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4803,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4800,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"41494:5:13","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":4801,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"41500:9:13","memberName":"timestamp","nodeType":"MemberAccess","src":"41494:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":4802,"name":"unlockDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1924,"src":"41512:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"41494:29:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":4804,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4671,"src":"41544:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4805,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"41552:5:13","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":1822,"src":"41544:13:13","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_address","typeString":"address"}],"id":4796,"name":"WithdrawVesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1841,"src":"41362:15:13","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_WithdrawVesting_$1841_storage_ptr_$","typeString":"type(struct CunaFinanceBsc.WithdrawVesting storage pointer)"}},"id":4806,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["41392:9:13","41447:6:13","41482:10:13","41537:5:13"],"names":["vestingId","amount","unlockTime","token"],"nodeType":"FunctionCall","src":"41362:206:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawVesting_$1841_memory_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_WithdrawVesting_$1841_memory_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting memory"}],"expression":{"baseExpression":{"id":4791,"name":"withdrawVestingActual","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1936,"src":"41323:21:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawVesting_$1841_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawVesting storage ref[] storage ref)"}},"id":4794,"indexExpression":{"expression":{"id":4792,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"41345:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4793,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"41349:6:13","memberName":"sender","nodeType":"MemberAccess","src":"41345:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"41323:33:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1841_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.WithdrawVesting storage ref[] storage ref"}},"id":4795,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"41357:4:13","memberName":"push","nodeType":"MemberAccess","src":"41323:38:13","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_WithdrawVesting_$1841_storage_$dyn_storage_ptr_$_t_struct$_WithdrawVesting_$1841_storage_$returns$__$attached_to$_t_array$_t_struct$_WithdrawVesting_$1841_storage_$dyn_storage_ptr_$","typeString":"function (struct CunaFinanceBsc.WithdrawVesting storage ref[] storage pointer,struct CunaFinanceBsc.WithdrawVesting storage ref)"}},"id":4807,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41323:246:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4808,"nodeType":"ExpressionStatement","src":"41323:246:13"},{"expression":{"id":4814,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4809,"name":"withdrawVestingLiabilities","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1944,"src":"41653:26:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4812,"indexExpression":{"expression":{"id":4810,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4671,"src":"41680:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4811,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"41688:5:13","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":1822,"src":"41680:13:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"41653:41:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":4813,"name":"amountToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4703,"src":"41698:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"41653:58:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4815,"nodeType":"ExpressionStatement","src":"41653:58:13"},{"eventCall":{"arguments":[{"expression":{"id":4817,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"41742:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4818,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"41746:6:13","memberName":"sender","nodeType":"MemberAccess","src":"41742:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4819,"name":"amountToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4703,"src":"41754:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"30","id":4820,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"41769:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":4816,"name":"VestingClaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2014,"src":"41727:14:13","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256)"}},"id":4821,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41727:44:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4822,"nodeType":"EmitStatement","src":"41722:49:13"}]},"documentation":{"id":4651,"nodeType":"StructuredDocumentation","src":"39909:132:13","text":"@notice Claim unlocked vesting tokens for a specific vesting\n @param _vestingIndex The index of the vesting to claim from"},"functionSelector":"ac97b417","id":4824,"implemented":true,"kind":"function","modifiers":[{"id":4656,"kind":"modifierInvocation","modifierName":{"id":4655,"name":"nonReentrant","nameLocations":["40100:12:13"],"nodeType":"IdentifierPath","referencedDeclaration":336,"src":"40100:12:13"},"nodeType":"ModifierInvocation","src":"40100:12:13"}],"name":"claimVesting","nameLocation":"40055:12:13","nodeType":"FunctionDefinition","parameters":{"id":4654,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4653,"mutability":"mutable","name":"_vestingIndex","nameLocation":"40076:13:13","nodeType":"VariableDeclaration","scope":4824,"src":"40068:21:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4652,"name":"uint256","nodeType":"ElementaryTypeName","src":"40068:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"40067:23:13"},"returnParameters":{"id":4657,"nodeType":"ParameterList","parameters":[],"src":"40113:0:13"},"scope":5452,"src":"40046:1732:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":5006,"nodeType":"Block","src":"41991:1771:13","statements":[{"assignments":[4833],"declarations":[{"constant":false,"id":4833,"mutability":"mutable","name":"totalReward","nameLocation":"42009:11:13","nodeType":"VariableDeclaration","scope":5006,"src":"42001:19:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4832,"name":"uint256","nodeType":"ElementaryTypeName","src":"42001:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4835,"initialValue":{"hexValue":"30","id":4834,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"42023:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"42001:23:13"},{"body":{"id":4914,"nodeType":"Block","src":"42101:643:13","statements":[{"assignments":[4852],"declarations":[{"constant":false,"id":4852,"mutability":"mutable","name":"vesting","nameLocation":"42131:7:13","nodeType":"VariableDeclaration","scope":4914,"src":"42115:23:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"},"typeName":{"id":4851,"nodeType":"UserDefinedTypeName","pathNode":{"id":4850,"name":"Vesting","nameLocations":["42115:7:13"],"nodeType":"IdentifierPath","referencedDeclaration":1827,"src":"42115:7:13"},"referencedDeclaration":1827,"src":"42115:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"}},"visibility":"internal"}],"id":4859,"initialValue":{"baseExpression":{"baseExpression":{"id":4853,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1902,"src":"42141:8:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":4856,"indexExpression":{"expression":{"id":4854,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"42150:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4855,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"42154:6:13","memberName":"sender","nodeType":"MemberAccess","src":"42150:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"42141:20:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"id":4858,"indexExpression":{"id":4857,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4837,"src":"42162:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"42141:23:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref"}},"nodeType":"VariableDeclarationStatement","src":"42115:49:13"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4867,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":4863,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4860,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4852,"src":"42182:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4861,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"42190:5:13","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":1822,"src":"42182:13:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4862,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4827,"src":"42199:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"42182:23:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":4866,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"42209:17:13","subExpression":{"expression":{"id":4864,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4852,"src":"42210:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4865,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"42218:8:13","memberName":"complete","nodeType":"MemberAccess","referencedDeclaration":1824,"src":"42210:16:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"42182:44:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4913,"nodeType":"IfStatement","src":"42178:556:13","trueBody":{"id":4912,"nodeType":"Block","src":"42228:506:13","statements":[{"assignments":[4869],"declarations":[{"constant":false,"id":4869,"mutability":"mutable","name":"maxClaim","nameLocation":"42254:8:13","nodeType":"VariableDeclaration","scope":4912,"src":"42246:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4868,"name":"uint256","nodeType":"ElementaryTypeName","src":"42246:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4875,"initialValue":{"arguments":[{"expression":{"id":4871,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"42284:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"42288:6:13","memberName":"sender","nodeType":"MemberAccess","src":"42284:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4873,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4837,"src":"42296:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4870,"name":"getUnlockedVesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4257,"src":"42265:18:13","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,uint256) view returns (uint256)"}},"id":4874,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42265:33:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"42246:52:13"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4876,"name":"maxClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4869,"src":"42320:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":4877,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4852,"src":"42331:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4878,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"42339:13:13","memberName":"claimedAmount","nodeType":"MemberAccess","referencedDeclaration":1814,"src":"42331:21:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"42320:32:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4911,"nodeType":"IfStatement","src":"42316:404:13","trueBody":{"id":4910,"nodeType":"Block","src":"42354:366:13","statements":[{"assignments":[4881],"declarations":[{"constant":false,"id":4881,"mutability":"mutable","name":"amountToClaim","nameLocation":"42384:13:13","nodeType":"VariableDeclaration","scope":4910,"src":"42376:21:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4880,"name":"uint256","nodeType":"ElementaryTypeName","src":"42376:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4886,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4885,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4882,"name":"maxClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4869,"src":"42400:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":4883,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4852,"src":"42411:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4884,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"42419:13:13","memberName":"claimedAmount","nodeType":"MemberAccess","referencedDeclaration":1814,"src":"42411:21:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"42400:32:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"42376:56:13"},{"expression":{"id":4889,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4887,"name":"totalReward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4833,"src":"42454:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":4888,"name":"amountToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4881,"src":"42469:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"42454:28:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4890,"nodeType":"ExpressionStatement","src":"42454:28:13"},{"expression":{"id":4895,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":4891,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4852,"src":"42525:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4893,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"42533:13:13","memberName":"claimedAmount","nodeType":"MemberAccess","referencedDeclaration":1814,"src":"42525:21:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":4894,"name":"amountToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4881,"src":"42550:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"42525:38:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4896,"nodeType":"ExpressionStatement","src":"42525:38:13"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4901,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4897,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4852,"src":"42589:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4898,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"42597:13:13","memberName":"claimedAmount","nodeType":"MemberAccess","referencedDeclaration":1814,"src":"42589:21:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":4899,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4852,"src":"42614:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4900,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"42622:6:13","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":1808,"src":"42614:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"42589:39:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4909,"nodeType":"IfStatement","src":"42585:117:13","trueBody":{"id":4908,"nodeType":"Block","src":"42630:72:13","statements":[{"expression":{"id":4906,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":4902,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4852,"src":"42656:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":4904,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"42664:8:13","memberName":"complete","nodeType":"MemberAccess","referencedDeclaration":1824,"src":"42656:16:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":4905,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"42675:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"42656:23:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4907,"nodeType":"ExpressionStatement","src":"42656:23:13"}]}}]}}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4846,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4840,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4837,"src":"42063:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"baseExpression":{"id":4841,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1902,"src":"42067:8:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":4844,"indexExpression":{"expression":{"id":4842,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"42076:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4843,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"42080:6:13","memberName":"sender","nodeType":"MemberAccess","src":"42076:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"42067:20:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"id":4845,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"42088:6:13","memberName":"length","nodeType":"MemberAccess","src":"42067:27:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"42063:31:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4915,"initializationExpression":{"assignments":[4837],"declarations":[{"constant":false,"id":4837,"mutability":"mutable","name":"i","nameLocation":"42056:1:13","nodeType":"VariableDeclaration","scope":4915,"src":"42048:9:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4836,"name":"uint256","nodeType":"ElementaryTypeName","src":"42048:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4839,"initialValue":{"hexValue":"30","id":4838,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"42060:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"42048:13:13"},"loopExpression":{"expression":{"id":4848,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"42096:3:13","subExpression":{"id":4847,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4837,"src":"42096:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4849,"nodeType":"ExpressionStatement","src":"42096:3:13"},"nodeType":"ForStatement","src":"42043:701:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4919,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4917,"name":"totalReward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4833,"src":"42770:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4918,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"42784:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"42770:15:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f7468696e6720746f20636c61696d","id":4920,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"42787:18:13","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":4916,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"42762:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4921,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42762:44:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4922,"nodeType":"ExpressionStatement","src":"42762:44:13"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4928,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":4923,"name":"dollarsVested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1916,"src":"42868:13:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4926,"indexExpression":{"expression":{"id":4924,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"42882:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4925,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"42886:6:13","memberName":"sender","nodeType":"MemberAccess","src":"42882:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"42868:25:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4927,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"42896:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"42868:29:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4969,"nodeType":"IfStatement","src":"42864:353:13","trueBody":{"id":4968,"nodeType":"Block","src":"42899:318:13","statements":[{"assignments":[4930],"declarations":[{"constant":false,"id":4930,"mutability":"mutable","name":"usdPrice","nameLocation":"42921:8:13","nodeType":"VariableDeclaration","scope":4968,"src":"42913:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4929,"name":"uint256","nodeType":"ElementaryTypeName","src":"42913:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4944,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4943,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4940,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":4937,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4827,"src":"42983:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"baseExpression":{"id":4932,"name":"priceOracles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1912,"src":"42946:12:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}},"id":4934,"indexExpression":{"id":4933,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4827,"src":"42959:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"42946:20:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4931,"name":"iPriceOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1798,"src":"42933:12:13","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_iPriceOracle_$1798_$","typeString":"type(contract iPriceOracle)"}},"id":4935,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42933:34:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_iPriceOracle_$1798","typeString":"contract iPriceOracle"}},"id":4936,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"42968:14:13","memberName":"getLatestPrice","nodeType":"MemberAccess","referencedDeclaration":1797,"src":"42933:49:13","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":4938,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42933:57:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4939,"name":"totalReward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4833,"src":"42993:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"42933:71:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4941,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"42932:73:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"31653138","id":4942,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"43008:4:13","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"src":"42932:80:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"42913:99:13"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4950,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4945,"name":"usdPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4930,"src":"43030:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"baseExpression":{"id":4946,"name":"dollarsVested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1916,"src":"43042:13:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4949,"indexExpression":{"expression":{"id":4947,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"43056:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4948,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"43060:6:13","memberName":"sender","nodeType":"MemberAccess","src":"43056:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"43042:25:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"43030:37:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":4966,"nodeType":"Block","src":"43137:70:13","statements":[{"expression":{"id":4964,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4959,"name":"dollarsVested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1916,"src":"43155:13:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4962,"indexExpression":{"expression":{"id":4960,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"43169:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4961,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"43173:6:13","memberName":"sender","nodeType":"MemberAccess","src":"43169:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"43155:25:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":4963,"name":"usdPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4930,"src":"43184:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"43155:37:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4965,"nodeType":"ExpressionStatement","src":"43155:37:13"}]},"id":4967,"nodeType":"IfStatement","src":"43026:181:13","trueBody":{"id":4958,"nodeType":"Block","src":"43069:62:13","statements":[{"expression":{"id":4956,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4951,"name":"dollarsVested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1916,"src":"43087:13:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4954,"indexExpression":{"expression":{"id":4952,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"43101:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4953,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"43105:6:13","memberName":"sender","nodeType":"MemberAccess","src":"43101:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"43087:25:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":4955,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"43115:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"43087:29:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4957,"nodeType":"ExpressionStatement","src":"43087:29:13"}]}}]}},{"expression":{"id":4974,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4970,"name":"vestedTotal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1920,"src":"43226:11:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4972,"indexExpression":{"id":4971,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4827,"src":"43238:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"43226:19:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":4973,"name":"totalReward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4833,"src":"43249:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"43226:34:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4975,"nodeType":"ExpressionStatement","src":"43226:34:13"},{"expression":{"arguments":[{"arguments":[{"id":4983,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"43407:30:13","subExpression":{"id":4982,"name":"withdrawVestingCounterActual","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1938,"src":"43407:28:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4984,"name":"totalReward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4833,"src":"43459:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4988,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4985,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"43496:5:13","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":4986,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"43502:9:13","memberName":"timestamp","nodeType":"MemberAccess","src":"43496:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":4987,"name":"unlockDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1924,"src":"43514:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"43496:29:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4989,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4827,"src":"43546:6:13","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_address","typeString":"address"}],"id":4981,"name":"WithdrawVesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1841,"src":"43366:15:13","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_WithdrawVesting_$1841_storage_ptr_$","typeString":"type(struct CunaFinanceBsc.WithdrawVesting storage pointer)"}},"id":4990,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["43396:9:13","43451:6:13","43484:10:13","43539:5:13"],"names":["vestingId","amount","unlockTime","token"],"nodeType":"FunctionCall","src":"43366:197:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawVesting_$1841_memory_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_WithdrawVesting_$1841_memory_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting memory"}],"expression":{"baseExpression":{"id":4976,"name":"withdrawVestingActual","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1936,"src":"43327:21:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawVesting_$1841_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawVesting storage ref[] storage ref)"}},"id":4979,"indexExpression":{"expression":{"id":4977,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"43349:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4978,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"43353:6:13","memberName":"sender","nodeType":"MemberAccess","src":"43349:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"43327:33:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1841_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.WithdrawVesting storage ref[] storage ref"}},"id":4980,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"43361:4:13","memberName":"push","nodeType":"MemberAccess","src":"43327:38:13","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_WithdrawVesting_$1841_storage_$dyn_storage_ptr_$_t_struct$_WithdrawVesting_$1841_storage_$returns$__$attached_to$_t_array$_t_struct$_WithdrawVesting_$1841_storage_$dyn_storage_ptr_$","typeString":"function (struct CunaFinanceBsc.WithdrawVesting storage ref[] storage pointer,struct CunaFinanceBsc.WithdrawVesting storage ref)"}},"id":4991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"43327:237:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4992,"nodeType":"ExpressionStatement","src":"43327:237:13"},{"expression":{"id":4997,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4993,"name":"withdrawVestingLiabilities","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1944,"src":"43648:26:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4995,"indexExpression":{"id":4994,"name":"_token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4827,"src":"43675:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"43648:34:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":4996,"name":"totalReward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4833,"src":"43686:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"43648:49:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4998,"nodeType":"ExpressionStatement","src":"43648:49:13"},{"eventCall":{"arguments":[{"expression":{"id":5000,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"43728:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5001,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"43732:6:13","memberName":"sender","nodeType":"MemberAccess","src":"43728:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5002,"name":"totalReward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4833,"src":"43740:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"30","id":5003,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"43753:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":4999,"name":"VestingClaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2014,"src":"43713:14:13","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256)"}},"id":5004,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"43713:42:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5005,"nodeType":"EmitStatement","src":"43708:47:13"}]},"documentation":{"id":4825,"nodeType":"StructuredDocumentation","src":"41784:132:13","text":"@notice Claim all unlocked vesting tokens for a specific token\n @param _token The token address to claim all vestings for"},"functionSelector":"43c7c011","id":5007,"implemented":true,"kind":"function","modifiers":[{"id":4830,"kind":"modifierInvocation","modifierName":{"id":4829,"name":"nonReentrant","nameLocations":["41978:12:13"],"nodeType":"IdentifierPath","referencedDeclaration":336,"src":"41978:12:13"},"nodeType":"ModifierInvocation","src":"41978:12:13"}],"name":"claimAllVestingByToken","nameLocation":"41930:22:13","nodeType":"FunctionDefinition","parameters":{"id":4828,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4827,"mutability":"mutable","name":"_token","nameLocation":"41961:6:13","nodeType":"VariableDeclaration","scope":5007,"src":"41953:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4826,"name":"address","nodeType":"ElementaryTypeName","src":"41953:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"41952:16:13"},"returnParameters":{"id":4831,"nodeType":"ParameterList","parameters":[],"src":"41991:0:13"},"scope":5452,"src":"41921:1841:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":5095,"nodeType":"Block","src":"43975:848:13","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5022,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5016,"name":"_vestingIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5010,"src":"43993:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"baseExpression":{"id":5017,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1902,"src":"44009:8:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":5020,"indexExpression":{"expression":{"id":5018,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"44018:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5019,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"44022:6:13","memberName":"sender","nodeType":"MemberAccess","src":"44018:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"44009:20:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"id":5021,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"44030:6:13","memberName":"length","nodeType":"MemberAccess","src":"44009:27:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"43993:43:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c69642076657374696e6720696e646578","id":5023,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"44038:23:13","typeDescriptions":{"typeIdentifier":"t_stringliteral_958bf679397ff3f7b38ad9e6e0d68fc1f329d27b4d75f8a328d52e3e6926cc04","typeString":"literal_string \"Invalid vesting index\""},"value":"Invalid vesting index"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_958bf679397ff3f7b38ad9e6e0d68fc1f329d27b4d75f8a328d52e3e6926cc04","typeString":"literal_string \"Invalid vesting index\""}],"id":5015,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"43985:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5024,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"43985:77:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5025,"nodeType":"ExpressionStatement","src":"43985:77:13"},{"assignments":[5028],"declarations":[{"constant":false,"id":5028,"mutability":"mutable","name":"vesting","nameLocation":"44097:7:13","nodeType":"VariableDeclaration","scope":5095,"src":"44081:23:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"},"typeName":{"id":5027,"nodeType":"UserDefinedTypeName","pathNode":{"id":5026,"name":"Vesting","nameLocations":["44081:7:13"],"nodeType":"IdentifierPath","referencedDeclaration":1827,"src":"44081:7:13"},"referencedDeclaration":1827,"src":"44081:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting"}},"visibility":"internal"}],"id":5035,"initialValue":{"baseExpression":{"baseExpression":{"id":5029,"name":"vestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1902,"src":"44107:8:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.Vesting storage ref[] storage ref)"}},"id":5032,"indexExpression":{"expression":{"id":5030,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"44116:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5031,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"44120:6:13","memberName":"sender","nodeType":"MemberAccess","src":"44116:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"44107:20:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_Vesting_$1827_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref[] storage ref"}},"id":5034,"indexExpression":{"id":5033,"name":"_vestingIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5010,"src":"44128:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"44107:35:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage","typeString":"struct CunaFinanceBsc.Vesting storage ref"}},"nodeType":"VariableDeclarationStatement","src":"44081:61:13"},{"assignments":[5037],"declarations":[{"constant":false,"id":5037,"mutability":"mutable","name":"maxBonus","nameLocation":"44160:8:13","nodeType":"VariableDeclaration","scope":5095,"src":"44152:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5036,"name":"uint256","nodeType":"ElementaryTypeName","src":"44152:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5043,"initialValue":{"arguments":[{"expression":{"id":5039,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"44195:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5040,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"44199:6:13","memberName":"sender","nodeType":"MemberAccess","src":"44195:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5041,"name":"_vestingIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5010,"src":"44207:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5038,"name":"getUnlockedVestingBonus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4455,"src":"44171:23:13","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,uint256) view returns (uint256)"}},"id":5042,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"44171:50:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"44152:69:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5048,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5045,"name":"maxBonus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5037,"src":"44240:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":5046,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5028,"src":"44252:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":5047,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"44260:12:13","memberName":"claimedBonus","nodeType":"MemberAccess","referencedDeclaration":1816,"src":"44252:20:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"44240:32:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c696420636c61696d20616d6f756e74","id":5049,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"44274:22:13","typeDescriptions":{"typeIdentifier":"t_stringliteral_a2174c1737f7cb6c21957e39702561f246cc9bd66d84735975199b1061c55180","typeString":"literal_string \"Invalid claim amount\""},"value":"Invalid claim amount"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a2174c1737f7cb6c21957e39702561f246cc9bd66d84735975199b1061c55180","typeString":"literal_string \"Invalid claim amount\""}],"id":5044,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"44232:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5050,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"44232:65:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5051,"nodeType":"ExpressionStatement","src":"44232:65:13"},{"assignments":[5053],"declarations":[{"constant":false,"id":5053,"mutability":"mutable","name":"bonusToClaim","nameLocation":"44315:12:13","nodeType":"VariableDeclaration","scope":5095,"src":"44307:20:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5052,"name":"uint256","nodeType":"ElementaryTypeName","src":"44307:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5058,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5057,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5054,"name":"maxBonus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5037,"src":"44330:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":5055,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5028,"src":"44341:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":5056,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"44349:12:13","memberName":"claimedBonus","nodeType":"MemberAccess","referencedDeclaration":1816,"src":"44341:20:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"44330:31:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"44307:54:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5062,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5060,"name":"bonusToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5053,"src":"44379:12:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":5061,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"44394:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"44379:16:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f7468696e6720746f20636c61696d","id":5063,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"44397:18:13","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":5059,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"44371:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5064,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"44371:45:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5065,"nodeType":"ExpressionStatement","src":"44371:45:13"},{"expression":{"id":5070,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":5066,"name":"vesting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5028,"src":"44427:7:13","typeDescriptions":{"typeIdentifier":"t_struct$_Vesting_$1827_storage_ptr","typeString":"struct CunaFinanceBsc.Vesting storage pointer"}},"id":5068,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"44435:12:13","memberName":"claimedBonus","nodeType":"MemberAccess","referencedDeclaration":1816,"src":"44427:20:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":5069,"name":"bonusToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5053,"src":"44451:12:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"44427:36:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5071,"nodeType":"ExpressionStatement","src":"44427:36:13"},{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5080,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5078,"name":"_vestingIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5010,"src":"44642:13:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"316536","id":5079,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"44658:3:13","typeDescriptions":{"typeIdentifier":"t_rational_1000000_by_1","typeString":"int_const 1000000"},"value":"1e6"},"src":"44642:19:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5081,"name":"bonusToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5053,"src":"44683:12:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5085,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5082,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"44721:5:13","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":5083,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"44727:9:13","memberName":"timestamp","nodeType":"MemberAccess","src":"44721:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":5084,"name":"unlockDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1924,"src":"44739:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"44721:29:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5077,"name":"WithdrawStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1859,"src":"44605:13:13","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_WithdrawStake_$1859_storage_ptr_$","typeString":"type(struct CunaFinanceBsc.WithdrawStake storage pointer)"}},"id":5086,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["44633:7:13","44675:6:13","44709:10:13"],"names":["stakeId","amount","unlockTime"],"nodeType":"FunctionCall","src":"44605:156:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawStake_$1859_memory_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_WithdrawStake_$1859_memory_ptr","typeString":"struct CunaFinanceBsc.WithdrawStake memory"}],"expression":{"baseExpression":{"id":5072,"name":"withdrawStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1963,"src":"44573:14:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawStake storage ref[] storage ref)"}},"id":5075,"indexExpression":{"expression":{"id":5073,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"44588:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5074,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"44592:6:13","memberName":"sender","nodeType":"MemberAccess","src":"44588:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"44573:26:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.WithdrawStake storage ref[] storage ref"}},"id":5076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"44600:4:13","memberName":"push","nodeType":"MemberAccess","src":"44573:31:13","typeDescriptions":{"typeIdentifier":"t_function_arraypush_nonpayable$_t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_ptr_$_t_struct$_WithdrawStake_$1859_storage_$returns$__$attached_to$_t_array$_t_struct$_WithdrawStake_$1859_storage_$dyn_storage_ptr_$","typeString":"function (struct CunaFinanceBsc.WithdrawStake storage ref[] storage pointer,struct CunaFinanceBsc.WithdrawStake storage ref)"}},"id":5087,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"44573:189:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5088,"nodeType":"ExpressionStatement","src":"44573:189:13"},{"eventCall":{"arguments":[{"expression":{"id":5090,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"44791:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5091,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"44795:6:13","memberName":"sender","nodeType":"MemberAccess","src":"44791:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5092,"name":"bonusToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5053,"src":"44803:12:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5089,"name":"BonusClaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2020,"src":"44778:12:13","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":5093,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"44778:38:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5094,"nodeType":"EmitStatement","src":"44773:43:13"}]},"documentation":{"id":5008,"nodeType":"StructuredDocumentation","src":"43768:137:13","text":"@notice Claim unlocked bonus tokens from a specific vesting\n @param _vestingIndex The index of the vesting to claim bonus from"},"functionSelector":"d9193025","id":5096,"implemented":true,"kind":"function","modifiers":[{"id":5013,"kind":"modifierInvocation","modifierName":{"id":5012,"name":"nonReentrant","nameLocations":["43962:12:13"],"nodeType":"IdentifierPath","referencedDeclaration":336,"src":"43962:12:13"},"nodeType":"ModifierInvocation","src":"43962:12:13"}],"name":"claimBonus","nameLocation":"43919:10:13","nodeType":"FunctionDefinition","parameters":{"id":5011,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5010,"mutability":"mutable","name":"_vestingIndex","nameLocation":"43938:13:13","nodeType":"VariableDeclaration","scope":5096,"src":"43930:21:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5009,"name":"uint256","nodeType":"ElementaryTypeName","src":"43930:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"43929:23:13"},"returnParameters":{"id":5014,"nodeType":"ParameterList","parameters":[],"src":"43975:0:13"},"scope":5452,"src":"43910:913:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":5110,"nodeType":"Block","src":"45116:51:13","statements":[{"expression":{"baseExpression":{"id":5106,"name":"withdrawVestingActual","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1936,"src":"45133:21:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawVesting_$1841_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawVesting storage ref[] storage ref)"}},"id":5108,"indexExpression":{"id":5107,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5099,"src":"45155:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"45133:27:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1841_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.WithdrawVesting storage ref[] storage ref"}},"functionReturnParameters":5105,"id":5109,"nodeType":"Return","src":"45126:34:13"}]},"documentation":{"id":5097,"nodeType":"StructuredDocumentation","src":"44829:187:13","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":5111,"implemented":true,"kind":"function","modifiers":[],"name":"getAllWithdrawVestings","nameLocation":"45030:22:13","nodeType":"FunctionDefinition","parameters":{"id":5100,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5099,"mutability":"mutable","name":"user","nameLocation":"45061:4:13","nodeType":"VariableDeclaration","scope":5111,"src":"45053:12:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5098,"name":"address","nodeType":"ElementaryTypeName","src":"45053:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"45052:14:13"},"returnParameters":{"id":5105,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5104,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5111,"src":"45090:24:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1841_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting[]"},"typeName":{"baseType":{"id":5102,"nodeType":"UserDefinedTypeName","pathNode":{"id":5101,"name":"WithdrawVesting","nameLocations":["45090:15:13"],"nodeType":"IdentifierPath","referencedDeclaration":1841,"src":"45090:15:13"},"referencedDeclaration":1841,"src":"45090:15:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawVesting_$1841_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting"}},"id":5103,"nodeType":"ArrayTypeName","src":"45090:17:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1841_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting[]"}},"visibility":"internal"}],"src":"45089:26:13"},"scope":5452,"src":"45021:146:13","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":5119,"nodeType":"Block","src":"45382:52:13","statements":[{"expression":{"id":5117,"name":"withdrawVestingCounterActual","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1938,"src":"45399:28:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5116,"id":5118,"nodeType":"Return","src":"45392:35:13"}]},"documentation":{"id":5112,"nodeType":"StructuredDocumentation","src":"45173:135:13","text":"@notice Returns the current withdraw vesting counter value\n @return Current counter value for tracking unique withdrawal IDs"},"functionSelector":"e079fd91","id":5120,"implemented":true,"kind":"function","modifiers":[],"name":"getWithdrawVestingCounter","nameLocation":"45322:25:13","nodeType":"FunctionDefinition","parameters":{"id":5113,"nodeType":"ParameterList","parameters":[],"src":"45347:2:13"},"returnParameters":{"id":5116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5115,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5120,"src":"45373:7:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5114,"name":"uint256","nodeType":"ElementaryTypeName","src":"45373:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"45372:9:13"},"scope":5452,"src":"45313:121:13","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":5229,"nodeType":"Block","src":"45628:1134:13","statements":[{"assignments":[5132],"declarations":[{"constant":false,"id":5132,"mutability":"mutable","name":"userVestings","nameLocation":"45664:12:13","nodeType":"VariableDeclaration","scope":5229,"src":"45638:38:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1841_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting[]"},"typeName":{"baseType":{"id":5130,"nodeType":"UserDefinedTypeName","pathNode":{"id":5129,"name":"WithdrawVesting","nameLocations":["45638:15:13"],"nodeType":"IdentifierPath","referencedDeclaration":1841,"src":"45638:15:13"},"referencedDeclaration":1841,"src":"45638:15:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawVesting_$1841_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting"}},"id":5131,"nodeType":"ArrayTypeName","src":"45638:17:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1841_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting[]"}},"visibility":"internal"}],"id":5137,"initialValue":{"baseExpression":{"id":5133,"name":"withdrawVestingActual","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1936,"src":"45679:21:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_array$_t_struct$_WithdrawVesting_$1841_storage_$dyn_storage_$","typeString":"mapping(address => struct CunaFinanceBsc.WithdrawVesting storage ref[] storage ref)"}},"id":5136,"indexExpression":{"expression":{"id":5134,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"45701:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5135,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"45705:6:13","memberName":"sender","nodeType":"MemberAccess","src":"45701:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"45679:33:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1841_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.WithdrawVesting storage ref[] storage ref"}},"nodeType":"VariableDeclarationStatement","src":"45638:74:13"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5142,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5139,"name":"userVestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5132,"src":"45730:12:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1841_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting storage ref[] storage pointer"}},"id":5140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"45743:6:13","memberName":"length","nodeType":"MemberAccess","src":"45730:19:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":5141,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"45752:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"45730:23:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f2076657374696e677320617661696c61626c65","id":5143,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"45755:23:13","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":5138,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"45722:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5144,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45722:57:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5145,"nodeType":"ExpressionStatement","src":"45722:57:13"},{"body":{"id":5223,"nodeType":"Block","src":"45848:862:13","statements":[{"assignments":[5159],"declarations":[{"constant":false,"id":5159,"mutability":"mutable","name":"vestingWithdraw","nameLocation":"45886:15:13","nodeType":"VariableDeclaration","scope":5223,"src":"45862:39:13","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawVesting_$1841_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting"},"typeName":{"id":5158,"nodeType":"UserDefinedTypeName","pathNode":{"id":5157,"name":"WithdrawVesting","nameLocations":["45862:15:13"],"nodeType":"IdentifierPath","referencedDeclaration":1841,"src":"45862:15:13"},"referencedDeclaration":1841,"src":"45862:15:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawVesting_$1841_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting"}},"visibility":"internal"}],"id":5163,"initialValue":{"baseExpression":{"id":5160,"name":"userVestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5132,"src":"45904:12:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1841_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting storage ref[] storage pointer"}},"id":5162,"indexExpression":{"id":5161,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5147,"src":"45917:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"45904:15:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawVesting_$1841_storage","typeString":"struct CunaFinanceBsc.WithdrawVesting storage ref"}},"nodeType":"VariableDeclarationStatement","src":"45862:57:13"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5164,"name":"vestingWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5159,"src":"45937:15:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawVesting_$1841_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting storage pointer"}},"id":5165,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"45953:9:13","memberName":"vestingId","nodeType":"MemberAccess","referencedDeclaration":1834,"src":"45937:25:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":5166,"name":"_vestingId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5123,"src":"45966:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"45937:39:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5168,"name":"vestingWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5159,"src":"45980:15:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawVesting_$1841_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting storage pointer"}},"id":5169,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"45996:6:13","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":1836,"src":"45980:22:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":5170,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"46005:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"45980:26:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"45937:69:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5222,"nodeType":"IfStatement","src":"45933:767:13","trueBody":{"id":5221,"nodeType":"Block","src":"46008:692:13","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5178,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5174,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"46034:5:13","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":5175,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"46040:9:13","memberName":"timestamp","nodeType":"MemberAccess","src":"46034:15:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":5176,"name":"vestingWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5159,"src":"46053:15:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawVesting_$1841_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting storage pointer"}},"id":5177,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"46069:10:13","memberName":"unlockTime","nodeType":"MemberAccess","referencedDeclaration":1838,"src":"46053:26:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"46034:45:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"56657374696e67206c6f636b6564","id":5179,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"46081:16:13","typeDescriptions":{"typeIdentifier":"t_stringliteral_9dede7b2029e0fe80e0defc5cd4aff28fc7482f6ec721698e1cde7e28b94a259","typeString":"literal_string \"Vesting locked\""},"value":"Vesting locked"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9dede7b2029e0fe80e0defc5cd4aff28fc7482f6ec721698e1cde7e28b94a259","typeString":"literal_string \"Vesting locked\""}],"id":5173,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"46026:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5180,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46026:72:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5181,"nodeType":"ExpressionStatement","src":"46026:72:13"},{"assignments":[5183],"declarations":[{"constant":false,"id":5183,"mutability":"mutable","name":"amount","nameLocation":"46141:6:13","nodeType":"VariableDeclaration","scope":5221,"src":"46133:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5182,"name":"uint256","nodeType":"ElementaryTypeName","src":"46133:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5186,"initialValue":{"expression":{"id":5184,"name":"vestingWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5159,"src":"46150:15:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawVesting_$1841_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting storage pointer"}},"id":5185,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"46166:6:13","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":1836,"src":"46150:22:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"46133:39:13"},{"assignments":[5188],"declarations":[{"constant":false,"id":5188,"mutability":"mutable","name":"token","nameLocation":"46198:5:13","nodeType":"VariableDeclaration","scope":5221,"src":"46190:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5187,"name":"address","nodeType":"ElementaryTypeName","src":"46190:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":5191,"initialValue":{"expression":{"id":5189,"name":"vestingWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5159,"src":"46206:15:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawVesting_$1841_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting storage pointer"}},"id":5190,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"46222:5:13","memberName":"token","nodeType":"MemberAccess","referencedDeclaration":1840,"src":"46206:21:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"46190:37:13"},{"expression":{"id":5196,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":5192,"name":"vestingWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5159,"src":"46299:15:13","typeDescriptions":{"typeIdentifier":"t_struct$_WithdrawVesting_$1841_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting storage pointer"}},"id":5194,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"46315:6:13","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":1836,"src":"46299:22:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":5195,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"46324:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"46299:26:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5197,"nodeType":"ExpressionStatement","src":"46299:26:13"},{"expression":{"id":5202,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5198,"name":"withdrawVestingLiabilities","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1944,"src":"46433:26:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5200,"indexExpression":{"id":5199,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5188,"src":"46460:5:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"46433:33:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":5201,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5183,"src":"46470:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"46433:43:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5203,"nodeType":"ExpressionStatement","src":"46433:43:13"},{"expression":{"arguments":[{"expression":{"id":5208,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"46573:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5209,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"46577:6:13","memberName":"sender","nodeType":"MemberAccess","src":"46573:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5210,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5183,"src":"46585:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":5205,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5188,"src":"46553:5:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5204,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1216,"src":"46546:6:13","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$1216_$","typeString":"type(contract IERC20)"}},"id":5206,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46546:13:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$1216","typeString":"contract IERC20"}},"id":5207,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"46560:12:13","memberName":"safeTransfer","nodeType":"MemberAccess","referencedDeclaration":1323,"src":"46546:26:13","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$1216_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$1216_$","typeString":"function (contract IERC20,address,uint256)"}},"id":5211,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46546:46:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5212,"nodeType":"ExpressionStatement","src":"46546:46:13"},{"eventCall":{"arguments":[{"expression":{"id":5214,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"46630:3:13","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5215,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"46634:6:13","memberName":"sender","nodeType":"MemberAccess","src":"46630:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5216,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5183,"src":"46642:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5217,"name":"_vestingId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5123,"src":"46650:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5213,"name":"StakeWithdrawn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2062,"src":"46615:14:13","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256)"}},"id":5218,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46615:46:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5219,"nodeType":"EmitStatement","src":"46610:51:13"},{"functionReturnParameters":5127,"id":5220,"nodeType":"Return","src":"46679:7:13"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5150,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5147,"src":"45818:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":5151,"name":"userVestings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5132,"src":"45822:12:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_WithdrawVesting_$1841_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.WithdrawVesting storage ref[] storage pointer"}},"id":5152,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"45835:6:13","memberName":"length","nodeType":"MemberAccess","src":"45822:19:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"45818:23:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5224,"initializationExpression":{"assignments":[5147],"declarations":[{"constant":false,"id":5147,"mutability":"mutable","name":"i","nameLocation":"45811:1:13","nodeType":"VariableDeclaration","scope":5224,"src":"45803:9:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5146,"name":"uint256","nodeType":"ElementaryTypeName","src":"45803:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5149,"initialValue":{"hexValue":"30","id":5148,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"45815:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"45803:13:13"},"loopExpression":{"expression":{"id":5155,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"45843:3:13","subExpression":{"id":5154,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5147,"src":"45843:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5156,"nodeType":"ExpressionStatement","src":"45843:3:13"},"nodeType":"ForStatement","src":"45798:912:13"},{"expression":{"arguments":[{"hexValue":"56657374696e67206e6f7420666f756e64","id":5226,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"46735:19:13","typeDescriptions":{"typeIdentifier":"t_stringliteral_2d19b9974516f8ce8c5e173466515fe8707bb9662afc415a22d19104b8441caa","typeString":"literal_string \"Vesting not found\""},"value":"Vesting not found"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_2d19b9974516f8ce8c5e173466515fe8707bb9662afc415a22d19104b8441caa","typeString":"literal_string \"Vesting not found\""}],"id":5225,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"46728:6:13","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":5227,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46728:27:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5228,"nodeType":"ExpressionStatement","src":"46728:27:13"}]},"documentation":{"id":5121,"nodeType":"StructuredDocumentation","src":"45440:111:13","text":"@notice Withdraws vesting tokens after cooldown period\n @param _vestingId The vesting ID to withdraw"},"functionSelector":"f7e4444c","id":5230,"implemented":true,"kind":"function","modifiers":[{"id":5126,"kind":"modifierInvocation","modifierName":{"id":5125,"name":"nonReentrant","nameLocations":["45615:12:13"],"nodeType":"IdentifierPath","referencedDeclaration":336,"src":"45615:12:13"},"nodeType":"ModifierInvocation","src":"45615:12:13"}],"name":"withdrawVestingToken","nameLocation":"45565:20:13","nodeType":"FunctionDefinition","parameters":{"id":5124,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5123,"mutability":"mutable","name":"_vestingId","nameLocation":"45594:10:13","nodeType":"VariableDeclaration","scope":5230,"src":"45586:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5122,"name":"uint256","nodeType":"ElementaryTypeName","src":"45586:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"45585:20:13"},"returnParameters":{"id":5127,"nodeType":"ParameterList","parameters":[],"src":"45628:0:13"},"scope":5452,"src":"45556:1206:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":5324,"nodeType":"Block","src":"47178:521:13","statements":[{"assignments":[5245],"declarations":[{"constant":false,"id":5245,"mutability":"mutable","name":"length","nameLocation":"47196:6:13","nodeType":"VariableDeclaration","scope":5324,"src":"47188:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5244,"name":"uint256","nodeType":"ElementaryTypeName","src":"47188:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5248,"initialValue":{"expression":{"id":5246,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1988,"src":"47205:13:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1873_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":5247,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"47219:6:13","memberName":"length","nodeType":"MemberAccess","src":"47205:20:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"47188:37:13"},{"expression":{"id":5255,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5249,"name":"sellers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5235,"src":"47244:7:13","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":5253,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5245,"src":"47268:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5252,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"47254:13:13","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":5250,"name":"address","nodeType":"ElementaryTypeName","src":"47258:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":5251,"nodeType":"ArrayTypeName","src":"47258:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}}},"id":5254,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"47254:21:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"src":"47244:31:13","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":5256,"nodeType":"ExpressionStatement","src":"47244:31:13"},{"expression":{"id":5263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5257,"name":"stakeIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5238,"src":"47285:8:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":5261,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5245,"src":"47310:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5260,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"47296:13:13","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":5258,"name":"uint256","nodeType":"ElementaryTypeName","src":"47300:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5259,"nodeType":"ArrayTypeName","src":"47300:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":5262,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"47296:21:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"src":"47285:32:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":5264,"nodeType":"ExpressionStatement","src":"47285:32:13"},{"expression":{"id":5272,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5265,"name":"sellStakeData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5242,"src":"47327:13:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStake_$1868_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.SellStake memory[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":5270,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5245,"src":"47359:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5269,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"47343:15:13","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_SellStake_$1868_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct CunaFinanceBsc.SellStake memory[] memory)"},"typeName":{"baseType":{"id":5267,"nodeType":"UserDefinedTypeName","pathNode":{"id":5266,"name":"SellStake","nameLocations":["47347:9:13"],"nodeType":"IdentifierPath","referencedDeclaration":1868,"src":"47347:9:13"},"referencedDeclaration":1868,"src":"47347:9:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake"}},"id":5268,"nodeType":"ArrayTypeName","src":"47347:11:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStake_$1868_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake[]"}}},"id":5271,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"47343:23:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStake_$1868_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.SellStake memory[] memory"}},"src":"47327:39:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStake_$1868_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.SellStake memory[] memory"}},"id":5273,"nodeType":"ExpressionStatement","src":"47327:39:13"},{"body":{"id":5317,"nodeType":"Block","src":"47422:211:13","statements":[{"assignments":[5286],"declarations":[{"constant":false,"id":5286,"mutability":"mutable","name":"key","nameLocation":"47456:3:13","nodeType":"VariableDeclaration","scope":5317,"src":"47436:23:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey"},"typeName":{"id":5285,"nodeType":"UserDefinedTypeName","pathNode":{"id":5284,"name":"SellStakeKey","nameLocations":["47436:12:13"],"nodeType":"IdentifierPath","referencedDeclaration":1873,"src":"47436:12:13"},"referencedDeclaration":1873,"src":"47436:12:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_storage_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey"}},"visibility":"internal"}],"id":5290,"initialValue":{"baseExpression":{"id":5287,"name":"sellStakeKeys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1988,"src":"47462:13:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStakeKey_$1873_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref[] storage ref"}},"id":5289,"indexExpression":{"id":5288,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5275,"src":"47476:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"47462:16:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_storage","typeString":"struct CunaFinanceBsc.SellStakeKey storage ref"}},"nodeType":"VariableDeclarationStatement","src":"47436:42:13"},{"expression":{"id":5296,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5291,"name":"sellers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5235,"src":"47492:7:13","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":5293,"indexExpression":{"id":5292,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5275,"src":"47500:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"47492:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":5294,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5286,"src":"47505:3:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}},"id":5295,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"47509:6:13","memberName":"seller","nodeType":"MemberAccess","referencedDeclaration":1870,"src":"47505:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"47492:23:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":5297,"nodeType":"ExpressionStatement","src":"47492:23:13"},{"expression":{"id":5303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5298,"name":"stakeIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5238,"src":"47529:8:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},"id":5300,"indexExpression":{"id":5299,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5275,"src":"47538:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"47529:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":5301,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5286,"src":"47543:3:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}},"id":5302,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"47547:7:13","memberName":"stakeId","nodeType":"MemberAccess","referencedDeclaration":1872,"src":"47543:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"47529:25:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5304,"nodeType":"ExpressionStatement","src":"47529:25:13"},{"expression":{"id":5315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5305,"name":"sellStakeData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5242,"src":"47568:13:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStake_$1868_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.SellStake memory[] memory"}},"id":5307,"indexExpression":{"id":5306,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5275,"src":"47582:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"47568:16:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_memory_ptr","typeString":"struct CunaFinanceBsc.SellStake memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"baseExpression":{"id":5308,"name":"sellStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1976,"src":"47587:10:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_SellStake_$1868_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref))"}},"id":5311,"indexExpression":{"expression":{"id":5309,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5286,"src":"47598:3:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}},"id":5310,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"47602:6:13","memberName":"seller","nodeType":"MemberAccess","referencedDeclaration":1870,"src":"47598:10:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"47587:22:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_SellStake_$1868_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref)"}},"id":5314,"indexExpression":{"expression":{"id":5312,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5286,"src":"47610:3:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStakeKey_$1873_memory_ptr","typeString":"struct CunaFinanceBsc.SellStakeKey memory"}},"id":5313,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"47614:7:13","memberName":"stakeId","nodeType":"MemberAccess","referencedDeclaration":1872,"src":"47610:11:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"47587:35:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage","typeString":"struct CunaFinanceBsc.SellStake storage ref"}},"src":"47568:54:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_memory_ptr","typeString":"struct CunaFinanceBsc.SellStake memory"}},"id":5316,"nodeType":"ExpressionStatement","src":"47568:54:13"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5278,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5275,"src":"47405:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":5279,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5245,"src":"47409:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"47405:10:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5318,"initializationExpression":{"assignments":[5275],"declarations":[{"constant":false,"id":5275,"mutability":"mutable","name":"i","nameLocation":"47398:1:13","nodeType":"VariableDeclaration","scope":5318,"src":"47390:9:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5274,"name":"uint256","nodeType":"ElementaryTypeName","src":"47390:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5277,"initialValue":{"hexValue":"30","id":5276,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"47402:1:13","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"47390:13:13"},"loopExpression":{"expression":{"id":5282,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"47417:3:13","subExpression":{"id":5281,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5275,"src":"47417:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5283,"nodeType":"ExpressionStatement","src":"47417:3:13"},"nodeType":"ForStatement","src":"47385:248:13"},{"expression":{"components":[{"id":5319,"name":"sellers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5235,"src":"47659:7:13","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},{"id":5320,"name":"stakeIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5238,"src":"47668:8:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}},{"id":5321,"name":"sellStakeData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5242,"src":"47678:13:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStake_$1868_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.SellStake memory[] memory"}}],"id":5322,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"47658:34:13","typeDescriptions":{"typeIdentifier":"t_tuple$_t_array$_t_address_$dyn_memory_ptr_$_t_array$_t_uint256_$dyn_memory_ptr_$_t_array$_t_struct$_SellStake_$1868_memory_ptr_$dyn_memory_ptr_$","typeString":"tuple(address[] memory,uint256[] memory,struct CunaFinanceBsc.SellStake memory[] memory)"}},"functionReturnParameters":5243,"id":5323,"nodeType":"Return","src":"47651:41:13"}]},"documentation":{"id":5231,"nodeType":"StructuredDocumentation","src":"46807:198:13","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":5325,"implemented":true,"kind":"function","modifiers":[],"name":"getAllSellStakes","nameLocation":"47019:16:13","nodeType":"FunctionDefinition","parameters":{"id":5232,"nodeType":"ParameterList","parameters":[],"src":"47035:2:13"},"returnParameters":{"id":5243,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5235,"mutability":"mutable","name":"sellers","nameLocation":"47087:7:13","nodeType":"VariableDeclaration","scope":5325,"src":"47070:24:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":5233,"name":"address","nodeType":"ElementaryTypeName","src":"47070:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":5234,"nodeType":"ArrayTypeName","src":"47070:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":5238,"mutability":"mutable","name":"stakeIds","nameLocation":"47121:8:13","nodeType":"VariableDeclaration","scope":5325,"src":"47104:25:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":5236,"name":"uint256","nodeType":"ElementaryTypeName","src":"47104:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5237,"nodeType":"ArrayTypeName","src":"47104:9:13","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":5242,"mutability":"mutable","name":"sellStakeData","nameLocation":"47158:13:13","nodeType":"VariableDeclaration","scope":5325,"src":"47139:32:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStake_$1868_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.SellStake[]"},"typeName":{"baseType":{"id":5240,"nodeType":"UserDefinedTypeName","pathNode":{"id":5239,"name":"SellStake","nameLocations":["47139:9:13"],"nodeType":"IdentifierPath","referencedDeclaration":1868,"src":"47139:9:13"},"referencedDeclaration":1868,"src":"47139:9:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake"}},"id":5241,"nodeType":"ArrayTypeName","src":"47139:11:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_SellStake_$1868_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake[]"}},"visibility":"internal"}],"src":"47060:117:13"},"scope":5452,"src":"47010:689:13","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":5342,"nodeType":"Block","src":"47970:51:13","statements":[{"expression":{"baseExpression":{"baseExpression":{"id":5336,"name":"sellStakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1976,"src":"47987:10:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_SellStake_$1868_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref))"}},"id":5338,"indexExpression":{"id":5337,"name":"seller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5328,"src":"47998:6:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"47987:18:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_SellStake_$1868_storage_$","typeString":"mapping(uint256 => struct CunaFinanceBsc.SellStake storage ref)"}},"id":5340,"indexExpression":{"id":5339,"name":"stakeId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5330,"src":"48006:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"47987:27:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage","typeString":"struct CunaFinanceBsc.SellStake storage ref"}},"functionReturnParameters":5335,"id":5341,"nodeType":"Return","src":"47980:34:13"}]},"documentation":{"id":5326,"nodeType":"StructuredDocumentation","src":"47709:160:13","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":5343,"implemented":true,"kind":"function","modifiers":[],"name":"getSellStake","nameLocation":"47883:12:13","nodeType":"FunctionDefinition","parameters":{"id":5331,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5328,"mutability":"mutable","name":"seller","nameLocation":"47904:6:13","nodeType":"VariableDeclaration","scope":5343,"src":"47896:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5327,"name":"address","nodeType":"ElementaryTypeName","src":"47896:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5330,"mutability":"mutable","name":"stakeId","nameLocation":"47920:7:13","nodeType":"VariableDeclaration","scope":5343,"src":"47912:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5329,"name":"uint256","nodeType":"ElementaryTypeName","src":"47912:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"47895:33:13"},"returnParameters":{"id":5335,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5334,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5343,"src":"47952:16:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_memory_ptr","typeString":"struct CunaFinanceBsc.SellStake"},"typeName":{"id":5333,"nodeType":"UserDefinedTypeName","pathNode":{"id":5332,"name":"SellStake","nameLocations":["47952:9:13"],"nodeType":"IdentifierPath","referencedDeclaration":1868,"src":"47952:9:13"},"referencedDeclaration":1868,"src":"47952:9:13","typeDescriptions":{"typeIdentifier":"t_struct$_SellStake_$1868_storage_ptr","typeString":"struct CunaFinanceBsc.SellStake"}},"visibility":"internal"}],"src":"47951:18:13"},"scope":5452,"src":"47874:147:13","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":5418,"nodeType":"Block","src":"48359:525:13","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5356,"name":"startIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5346,"src":"48377:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":5357,"name":"marketplaceHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1998,"src":"48390:18:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1886_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.MarketplaceHistory storage ref[] storage ref"}},"id":5358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"48409:6:13","memberName":"length","nodeType":"MemberAccess","src":"48390:25:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"48377:38:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"537461727420696e646578206f7574206f6620626f756e6473","id":5360,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"48417:27:13","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":5355,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18],"referencedDeclaration":-18,"src":"48369:7:13","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5361,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"48369:76:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5362,"nodeType":"ExpressionStatement","src":"48369:76:13"},{"assignments":[5364],"declarations":[{"constant":false,"id":5364,"mutability":"mutable","name":"endIndex","nameLocation":"48472:8:13","nodeType":"VariableDeclaration","scope":5418,"src":"48464:16:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5363,"name":"uint256","nodeType":"ElementaryTypeName","src":"48464:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5368,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5365,"name":"startIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5346,"src":"48483:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":5366,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5348,"src":"48496:6:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"48483:19:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"48464:38:13"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5372,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5369,"name":"endIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5364,"src":"48516:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":5370,"name":"marketplaceHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1998,"src":"48527:18:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1886_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.MarketplaceHistory storage ref[] storage ref"}},"id":5371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"48546:6:13","memberName":"length","nodeType":"MemberAccess","src":"48527:25:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"48516:36:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5379,"nodeType":"IfStatement","src":"48512:103:13","trueBody":{"id":5378,"nodeType":"Block","src":"48554:61:13","statements":[{"expression":{"id":5376,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5373,"name":"endIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5364,"src":"48568:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":5374,"name":"marketplaceHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1998,"src":"48579:18:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1886_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.MarketplaceHistory storage ref[] storage ref"}},"id":5375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"48598:6:13","memberName":"length","nodeType":"MemberAccess","src":"48579:25:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"48568:36:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5377,"nodeType":"ExpressionStatement","src":"48568:36:13"}]}},{"assignments":[5384],"declarations":[{"constant":false,"id":5384,"mutability":"mutable","name":"result","nameLocation":"48661:6:13","nodeType":"VariableDeclaration","scope":5418,"src":"48633:34:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1886_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory[]"},"typeName":{"baseType":{"id":5382,"nodeType":"UserDefinedTypeName","pathNode":{"id":5381,"name":"MarketplaceHistory","nameLocations":["48633:18:13"],"nodeType":"IdentifierPath","referencedDeclaration":1886,"src":"48633:18:13"},"referencedDeclaration":1886,"src":"48633:18:13","typeDescriptions":{"typeIdentifier":"t_struct$_MarketplaceHistory_$1886_storage_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory"}},"id":5383,"nodeType":"ArrayTypeName","src":"48633:20:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1886_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory[]"}},"visibility":"internal"}],"id":5393,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5391,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5389,"name":"endIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5364,"src":"48695:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":5390,"name":"startIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5346,"src":"48706:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"48695:21:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5388,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"48670:24:13","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_MarketplaceHistory_$1886_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct CunaFinanceBsc.MarketplaceHistory memory[] memory)"},"typeName":{"baseType":{"id":5386,"nodeType":"UserDefinedTypeName","pathNode":{"id":5385,"name":"MarketplaceHistory","nameLocations":["48674:18:13"],"nodeType":"IdentifierPath","referencedDeclaration":1886,"src":"48674:18:13"},"referencedDeclaration":1886,"src":"48674:18:13","typeDescriptions":{"typeIdentifier":"t_struct$_MarketplaceHistory_$1886_storage_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory"}},"id":5387,"nodeType":"ArrayTypeName","src":"48674:20:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1886_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory[]"}}},"id":5392,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"48670:47:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1886_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"48633:84:13"},{"body":{"id":5414,"nodeType":"Block","src":"48775:71:13","statements":[{"expression":{"id":5412,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5404,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5384,"src":"48789:6:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1886_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory memory[] memory"}},"id":5408,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5407,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5405,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5395,"src":"48796:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":5406,"name":"startIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5346,"src":"48800:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"48796:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"48789:22:13","typeDescriptions":{"typeIdentifier":"t_struct$_MarketplaceHistory_$1886_memory_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":5409,"name":"marketplaceHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1998,"src":"48814:18:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1886_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.MarketplaceHistory storage ref[] storage ref"}},"id":5411,"indexExpression":{"id":5410,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5395,"src":"48833:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"48814:21:13","typeDescriptions":{"typeIdentifier":"t_struct$_MarketplaceHistory_$1886_storage","typeString":"struct CunaFinanceBsc.MarketplaceHistory storage ref"}},"src":"48789:46:13","typeDescriptions":{"typeIdentifier":"t_struct$_MarketplaceHistory_$1886_memory_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory memory"}},"id":5413,"nodeType":"ExpressionStatement","src":"48789:46:13"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5400,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5398,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5395,"src":"48756:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":5399,"name":"endIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5364,"src":"48760:8:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"48756:12:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5415,"initializationExpression":{"assignments":[5395],"declarations":[{"constant":false,"id":5395,"mutability":"mutable","name":"i","nameLocation":"48740:1:13","nodeType":"VariableDeclaration","scope":5415,"src":"48732:9:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5394,"name":"uint256","nodeType":"ElementaryTypeName","src":"48732:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5397,"initialValue":{"id":5396,"name":"startIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5346,"src":"48744:10:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"48732:22:13"},"loopExpression":{"expression":{"id":5402,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"48770:3:13","subExpression":{"id":5401,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5395,"src":"48770:1:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5403,"nodeType":"ExpressionStatement","src":"48770:3:13"},"nodeType":"ForStatement","src":"48727:119:13"},{"expression":{"id":5416,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5384,"src":"48871:6:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1886_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory memory[] memory"}},"functionReturnParameters":5354,"id":5417,"nodeType":"Return","src":"48864:13:13"}]},"documentation":{"id":5344,"nodeType":"StructuredDocumentation","src":"48031:195:13","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":5419,"implemented":true,"kind":"function","modifiers":[],"name":"getMarketplaceHistory","nameLocation":"48240:21:13","nodeType":"FunctionDefinition","parameters":{"id":5349,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5346,"mutability":"mutable","name":"startIndex","nameLocation":"48270:10:13","nodeType":"VariableDeclaration","scope":5419,"src":"48262:18:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5345,"name":"uint256","nodeType":"ElementaryTypeName","src":"48262:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5348,"mutability":"mutable","name":"length","nameLocation":"48290:6:13","nodeType":"VariableDeclaration","scope":5419,"src":"48282:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5347,"name":"uint256","nodeType":"ElementaryTypeName","src":"48282:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"48261:36:13"},"returnParameters":{"id":5354,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5353,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5419,"src":"48330:27:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1886_memory_ptr_$dyn_memory_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory[]"},"typeName":{"baseType":{"id":5351,"nodeType":"UserDefinedTypeName","pathNode":{"id":5350,"name":"MarketplaceHistory","nameLocations":["48330:18:13"],"nodeType":"IdentifierPath","referencedDeclaration":1886,"src":"48330:18:13"},"referencedDeclaration":1886,"src":"48330:18:13","typeDescriptions":{"typeIdentifier":"t_struct$_MarketplaceHistory_$1886_storage_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory"}},"id":5352,"nodeType":"ArrayTypeName","src":"48330:20:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1886_storage_$dyn_storage_ptr","typeString":"struct CunaFinanceBsc.MarketplaceHistory[]"}},"visibility":"internal"}],"src":"48329:29:13"},"scope":5452,"src":"48231:653:13","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":5428,"nodeType":"Block","src":"49073:49:13","statements":[{"expression":{"expression":{"id":5425,"name":"marketplaceHistory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1998,"src":"49090:18:13","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_MarketplaceHistory_$1886_storage_$dyn_storage","typeString":"struct CunaFinanceBsc.MarketplaceHistory storage ref[] storage ref"}},"id":5426,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"49109:6:13","memberName":"length","nodeType":"MemberAccess","src":"49090:25:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5424,"id":5427,"nodeType":"Return","src":"49083:32:13"}]},"documentation":{"id":5420,"nodeType":"StructuredDocumentation","src":"48894:104:13","text":"@notice Get total marketplace history count\n @return Total number of marketplace transactions"},"functionSelector":"61d1080b","id":5429,"implemented":true,"kind":"function","modifiers":[],"name":"getMarketplaceHistoryCount","nameLocation":"49012:26:13","nodeType":"FunctionDefinition","parameters":{"id":5421,"nodeType":"ParameterList","parameters":[],"src":"49038:2:13"},"returnParameters":{"id":5424,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5423,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5429,"src":"49064:7:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5422,"name":"uint256","nodeType":"ElementaryTypeName","src":"49064:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"49063:9:13"},"scope":5452,"src":"49003:119:13","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":5441,"nodeType":"Block","src":"49347:47:13","statements":[{"expression":{"baseExpression":{"id":5437,"name":"marketplace_sales","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1984,"src":"49364:17:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5439,"indexExpression":{"id":5438,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5432,"src":"49382:4:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"49364:23:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5436,"id":5440,"nodeType":"Return","src":"49357:30:13"}]},"documentation":{"id":5430,"nodeType":"StructuredDocumentation","src":"49132:131:13","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":5442,"implemented":true,"kind":"function","modifiers":[],"name":"getUserMarketplaceSales","nameLocation":"49277:23:13","nodeType":"FunctionDefinition","parameters":{"id":5433,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5432,"mutability":"mutable","name":"user","nameLocation":"49309:4:13","nodeType":"VariableDeclaration","scope":5442,"src":"49301:12:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5431,"name":"address","nodeType":"ElementaryTypeName","src":"49301:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"49300:14:13"},"returnParameters":{"id":5436,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5435,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5442,"src":"49338:7:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5434,"name":"uint256","nodeType":"ElementaryTypeName","src":"49338:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"49337:9:13"},"scope":5452,"src":"49268:126:13","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":5450,"nodeType":"Block","src":"49584:85:13","statements":[{"expression":{"hexValue":"393939","id":5448,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"49601:3:13","typeDescriptions":{"typeIdentifier":"t_rational_999_by_1","typeString":"int_const 999"},"value":"999"},"functionReturnParameters":5447,"id":5449,"nodeType":"Return","src":"49594:10:13"}]},"documentation":{"id":5443,"nodeType":"StructuredDocumentation","src":"49400:116:13","text":"@notice Test function for upgrade verification\n @return Returns a constant value to verify upgrade worked"},"functionSelector":"c2676603","id":5451,"implemented":true,"kind":"function","modifiers":[],"name":"testUpgradeFunction","nameLocation":"49530:19:13","nodeType":"FunctionDefinition","parameters":{"id":5444,"nodeType":"ParameterList","parameters":[],"src":"49549:2:13"},"returnParameters":{"id":5447,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5446,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5451,"src":"49575:7:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5445,"name":"uint256","nodeType":"ElementaryTypeName","src":"49575:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"49574:9:13"},"scope":5452,"src":"49521:148:13","stateMutability":"pure","virtual":false,"visibility":"external"}],"scope":5453,"src":"513:49159:13","usedErrors":[16,19,298,1290],"usedEvents":[24,2006,2014,2020,2024,2032,2042,2048,2054,2062,2070,2076,2086,2094]}],"src":"32:49640:13"},"id":13},"contracts/mocks/MockERC20.sol":{"ast":{"absolutePath":"contracts/mocks/MockERC20.sol","exportedSymbols":{"Context":[1772],"ERC20":[1138],"IERC20":[1216],"IERC20Errors":[528],"IERC20Metadata":[1242],"MockERC20":[5491]},"id":5492,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5454,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"32:24:14"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"@openzeppelin/contracts/token/ERC20/ERC20.sol","id":5455,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5492,"sourceUnit":1139,"src":"58:55:14","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":5456,"name":"ERC20","nameLocations":["137:5:14"],"nodeType":"IdentifierPath","referencedDeclaration":1138,"src":"137:5:14"},"id":5457,"nodeType":"InheritanceSpecifier","src":"137:5:14"}],"canonicalName":"MockERC20","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":5491,"linearizedBaseContracts":[5491,1138,528,1242,1216,1772],"name":"MockERC20","nameLocation":"124:9:14","nodeType":"ContractDefinition","nodes":[{"body":{"id":5476,"nodeType":"Block","src":"276:49:14","statements":[{"expression":{"arguments":[{"expression":{"id":5471,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"292:3:14","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5472,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"296:6:14","memberName":"sender","nodeType":"MemberAccess","src":"292:10:14","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5473,"name":"initialSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5463,"src":"304:13:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5470,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":978,"src":"286:5:14","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":5474,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"286:32:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5475,"nodeType":"ExpressionStatement","src":"286:32:14"}]},"id":5477,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":5466,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5459,"src":"262:4:14","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":5467,"name":"symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5461,"src":"268:6:14","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":5468,"kind":"baseConstructorSpecifier","modifierName":{"id":5465,"name":"ERC20","nameLocations":["256:5:14"],"nodeType":"IdentifierPath","referencedDeclaration":1138,"src":"256:5:14"},"nodeType":"ModifierInvocation","src":"256:19:14"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":5464,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5459,"mutability":"mutable","name":"name","nameLocation":"184:4:14","nodeType":"VariableDeclaration","scope":5477,"src":"170:18:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5458,"name":"string","nodeType":"ElementaryTypeName","src":"170:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":5461,"mutability":"mutable","name":"symbol","nameLocation":"212:6:14","nodeType":"VariableDeclaration","scope":5477,"src":"198:20:14","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":5460,"name":"string","nodeType":"ElementaryTypeName","src":"198:6:14","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":5463,"mutability":"mutable","name":"initialSupply","nameLocation":"236:13:14","nodeType":"VariableDeclaration","scope":5477,"src":"228:21:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5462,"name":"uint256","nodeType":"ElementaryTypeName","src":"228:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"160:95:14"},"returnParameters":{"id":5469,"nodeType":"ParameterList","parameters":[],"src":"276:0:14"},"scope":5491,"src":"149:176:14","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":5489,"nodeType":"Block","src":"386:34:14","statements":[{"expression":{"arguments":[{"id":5485,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5479,"src":"402:2:14","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5486,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5481,"src":"406:6:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5484,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":978,"src":"396:5:14","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":5487,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"396:17:14","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5488,"nodeType":"ExpressionStatement","src":"396:17:14"}]},"functionSelector":"40c10f19","id":5490,"implemented":true,"kind":"function","modifiers":[],"name":"mint","nameLocation":"344:4:14","nodeType":"FunctionDefinition","parameters":{"id":5482,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5479,"mutability":"mutable","name":"to","nameLocation":"357:2:14","nodeType":"VariableDeclaration","scope":5490,"src":"349:10:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5478,"name":"address","nodeType":"ElementaryTypeName","src":"349:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5481,"mutability":"mutable","name":"amount","nameLocation":"369:6:14","nodeType":"VariableDeclaration","scope":5490,"src":"361:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5480,"name":"uint256","nodeType":"ElementaryTypeName","src":"361:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"348:28:14"},"returnParameters":{"id":5483,"nodeType":"ParameterList","parameters":[],"src":"386:0:14"},"scope":5491,"src":"335:85:14","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":5492,"src":"115:307:14","usedErrors":[498,503,508,517,522,527],"usedEvents":[1150,1159]}],"src":"32:390:14"},"id":14},"contracts/mocks/MockPriceOracle.sol":{"ast":{"absolutePath":"contracts/mocks/MockPriceOracle.sol","exportedSymbols":{"MockPriceOracle":[5546]},"id":5547,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5493,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"32:24:15"},{"abstract":false,"baseContracts":[],"canonicalName":"MockPriceOracle","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":5546,"linearizedBaseContracts":[5546],"name":"MockPriceOracle","nameLocation":"67:15:15","nodeType":"ContractDefinition","nodes":[{"constant":false,"functionSelector":"cfed246b","id":5497,"mutability":"mutable","name":"prices","nameLocation":"124:6:15","nodeType":"VariableDeclaration","scope":5546,"src":"89:41:15","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":5496,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":5494,"name":"address","nodeType":"ElementaryTypeName","src":"97:7:15","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"89:27:15","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5495,"name":"uint256","nodeType":"ElementaryTypeName","src":"108:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"public"},{"constant":false,"id":5500,"mutability":"mutable","name":"defaultPrice","nameLocation":"152:12:15","nodeType":"VariableDeclaration","scope":5546,"src":"136:35:15","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5498,"name":"uint256","nodeType":"ElementaryTypeName","src":"136:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31653138","id":5499,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"167:4:15","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"visibility":"private"},{"body":{"id":5513,"nodeType":"Block","src":"262:38:15","statements":[{"expression":{"id":5511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5507,"name":"prices","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5497,"src":"272:6:15","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5509,"indexExpression":{"id":5508,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5502,"src":"279:5:15","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"272:13:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5510,"name":"price","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5504,"src":"288:5:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"272:21:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5512,"nodeType":"ExpressionStatement","src":"272:21:15"}]},"functionSelector":"00e4768b","id":5514,"implemented":true,"kind":"function","modifiers":[],"name":"setPrice","nameLocation":"214:8:15","nodeType":"FunctionDefinition","parameters":{"id":5505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5502,"mutability":"mutable","name":"token","nameLocation":"231:5:15","nodeType":"VariableDeclaration","scope":5514,"src":"223:13:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5501,"name":"address","nodeType":"ElementaryTypeName","src":"223:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5504,"mutability":"mutable","name":"price","nameLocation":"246:5:15","nodeType":"VariableDeclaration","scope":5514,"src":"238:13:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5503,"name":"uint256","nodeType":"ElementaryTypeName","src":"238:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"222:30:15"},"returnParameters":{"id":5506,"nodeType":"ParameterList","parameters":[],"src":"262:0:15"},"scope":5546,"src":"205:95:15","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":5534,"nodeType":"Block","src":"381:96:15","statements":[{"assignments":[5522],"declarations":[{"constant":false,"id":5522,"mutability":"mutable","name":"price","nameLocation":"399:5:15","nodeType":"VariableDeclaration","scope":5534,"src":"391:13:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5521,"name":"uint256","nodeType":"ElementaryTypeName","src":"391:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5526,"initialValue":{"baseExpression":{"id":5523,"name":"prices","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5497,"src":"407:6:15","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5525,"indexExpression":{"id":5524,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5516,"src":"414:5:15","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"407:13:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"391:29:15"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5529,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5527,"name":"price","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5522,"src":"437:5:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":5528,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"446:1:15","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"437:10:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":5531,"name":"price","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5522,"src":"465:5:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5532,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"437:33:15","trueExpression":{"id":5530,"name":"defaultPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5500,"src":"450:12:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5520,"id":5533,"nodeType":"Return","src":"430:40:15"}]},"functionSelector":"16345f18","id":5535,"implemented":true,"kind":"function","modifiers":[],"name":"getLatestPrice","nameLocation":"319:14:15","nodeType":"FunctionDefinition","parameters":{"id":5517,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5516,"mutability":"mutable","name":"token","nameLocation":"342:5:15","nodeType":"VariableDeclaration","scope":5535,"src":"334:13:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5515,"name":"address","nodeType":"ElementaryTypeName","src":"334:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"333:15:15"},"returnParameters":{"id":5520,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5519,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5535,"src":"372:7:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5518,"name":"uint256","nodeType":"ElementaryTypeName","src":"372:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"371:9:15"},"scope":5546,"src":"310:167:15","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":5544,"nodeType":"Block","src":"536:37:15","statements":[{"expression":{"id":5542,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5540,"name":"defaultPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5500,"src":"546:12:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5541,"name":"price","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5537,"src":"561:5:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"546:20:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5543,"nodeType":"ExpressionStatement","src":"546:20:15"}]},"functionSelector":"6d3c7ec5","id":5545,"implemented":true,"kind":"function","modifiers":[],"name":"setDefaultPrice","nameLocation":"496:15:15","nodeType":"FunctionDefinition","parameters":{"id":5538,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5537,"mutability":"mutable","name":"price","nameLocation":"520:5:15","nodeType":"VariableDeclaration","scope":5545,"src":"512:13:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5536,"name":"uint256","nodeType":"ElementaryTypeName","src":"512:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"511:15:15"},"returnParameters":{"id":5539,"nodeType":"ParameterList","parameters":[],"src":"536:0:15"},"scope":5546,"src":"487:86:15","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":5547,"src":"58:517:15","usedErrors":[],"usedEvents":[]}],"src":"32:543:15"},"id":15}},"contracts":{"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol":{"Initializable":{"abi":[{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"}],"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\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"}],\"devdoc\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor constructor() { _disableInitializers(); } ``` ====\",\"details\":\"This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. The initialization functions use a version number. Once a version number is used, it is consumed and cannot be reused. This mechanism prevents re-execution of each \\\"step\\\" but allows the creation of new initialization steps in case an upgrade adds a module that needs to be initialized. For example: [.hljs-theme-light.nopadding] ```solidity contract MyToken is ERC20Upgradeable { function initialize() initializer public { __ERC20_init(\\\"MyToken\\\", \\\"MTK\\\"); } } contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { function initializeV2() reinitializer(2) public { __ERC20Permit_init(\\\"MyToken\\\"); } } ``` TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. [CAUTION] ==== Avoid leaving a contract uninitialized. An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: [.hljs-theme-light.nopadding] ```\",\"errors\":{\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":\"Initializable\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.sol":{"ReentrancyGuardUpgradeable":{"abi":[{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"}],"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\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ReentrancyGuardReentrantCall\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"}],\"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\":{\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"ReentrancyGuardReentrantCall()\":[{\"details\":\"Unauthorized reentrant call.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.sol\":\"ReentrancyGuardUpgradeable\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.sol\":{\"keccak256\":\"0x361126a17677994081cd9cb69c3f50cffff6e920d25cb7e428acdb1ae41d1866\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://19ae787a7dd001269cd60a394b1a5261b78925a0fc3a6f927beb2986a9aa56cf\",\"dweb:/ipfs/QmYLfXiuKmcRgTDBEDXMMjXU8t6JxsspUmjxYzqWS55oEv\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@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}","storageLayout":{"storage":[],"types":null}}},"@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}","storageLayout":{"storage":[],"types":null}},"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}","storageLayout":{"storage":[],"types":null}},"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}","storageLayout":{"storage":[],"types":null}}},"@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}","storageLayout":{"storage":[{"astId":646,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_balances","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":652,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_allowances","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_address,t_uint256))"},{"astId":654,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_totalSupply","offset":0,"slot":"2","type":"t_uint256"},{"astId":656,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_name","offset":0,"slot":"3","type":"t_string_storage"},{"astId":658,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_symbol","offset":0,"slot":"4","type":"t_string_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_mapping(t_address,t_mapping(t_address,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(address => uint256))","numberOfBytes":"32","value":"t_mapping(t_address,t_uint256)"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_string_storage":{"encoding":"bytes","label":"string","numberOfBytes":"32"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"@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}","storageLayout":{"storage":[],"types":null}}},"@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}","storageLayout":{"storage":[],"types":null}}},"@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}","storageLayout":{"storage":[],"types":null}}},"@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:10:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;698:9376:10;;;;;;;;;;;;;;;;;"},"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:10:-: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}","storageLayout":{"storage":[],"types":null}}},"@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}","storageLayout":{"storage":[],"types":null}}},"@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}","storageLayout":{"storage":[],"types":null}}},"contracts/CunaFinanceBsc.sol":{"CunaFinanceBsc":{"abi":[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"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":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","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":[{"internalType":"address","name":"_token","type":"address"}],"name":"claimAllVestingByToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_vestingIndex","type":"uint256"}],"name":"claimBonus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimUnlockedFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_vestingIndex","type":"uint256"}],"name":"claimVesting","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":"uint256","name":"_amount","type":"uint256"}],"name":"depositRewards","outputs":[],"stateMutability":"nonpayable","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":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"instantBuyout","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"instantBuyoutPercent","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":[],"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":[{"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":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_lockTime","type":"uint256"},{"internalType":"uint256","name":"_percentagePerStep","type":"uint256"}],"name":"setUnlockScheduleByPercentage","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":"_newPercent","type":"uint256"}],"name":"updateInstantBuyoutPercent","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":"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":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawFromStakingPool","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[{"internalType":"uint256","name":"_vestingId","type":"uint256"}],"name":"withdrawVestingToken","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_2126":{"entryPoint":null,"id":2126,"parameterSlots":0,"returnSlots":0},"@_disableInitializers_221":{"entryPoint":34,"id":221,"parameterSlots":0,"returnSlots":0},"@_getInitializableStorage_266":{"entryPoint":null,"id":266,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_252":{"entryPoint":null,"id":252,"parameterSlots":0,"returnSlots":1},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:216:16","statements":[{"nodeType":"YulBlock","src":"6:3:16","statements":[]},{"body":{"nodeType":"YulBlock","src":"113:101:16","statements":[{"nodeType":"YulAssignment","src":"123:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"135:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"146:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"131:3:16"},"nodeType":"YulFunctionCall","src":"131:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"123:4:16"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"165:9:16"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"180:6:16"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"196:2:16","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"200:1:16","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"192:3:16"},"nodeType":"YulFunctionCall","src":"192:10:16"},{"kind":"number","nodeType":"YulLiteral","src":"204:1:16","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"188:3:16"},"nodeType":"YulFunctionCall","src":"188:18:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"176:3:16"},"nodeType":"YulFunctionCall","src":"176:31:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"158:6:16"},"nodeType":"YulFunctionCall","src":"158:50:16"},"nodeType":"YulExpressionStatement","src":"158:50:16"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"82:9:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"93:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"104:4:16","type":""}],"src":"14:200:16"}]},"contents":"{\n { }\n function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, and(value0, sub(shl(64, 1), 1)))\n }\n}","id":16,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60806040523480156200001157600080fd5b506200001c62000022565b620000d6565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000735760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000d35780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615d1f80620000e66000396000f3fe608060405234801561001057600080fd5b506004361061045e5760003560e01c80638129fc1c1161024c578063bed9757e11610146578063da1b4364116100c3578063f109208f11610087578063f109208f14610c3f578063f2bb563014610c52578063f7e4444c14610c65578063fe2f50d014610c78578063ffecf51614610c8157600080fd5b8063da1b436414610be8578063e079fd9114610c08578063e88f8e6614610c10578063eacdc5ff14610c23578063eb44e0a314610c2c57600080fd5b8063c7b530b01161010a578063c7b530b014610b6f578063cc573a9114610b8f578063ce13d09014610ba2578063cfcf331914610bb5578063d919302514610bd557600080fd5b8063bed9757e14610aa0578063c267660314610ac1578063c32d3ae214610ac9578063c36d03fd14610af7578063c6b61e4c14610b0a57600080fd5b806396fd111a116101d4578063ac97b41711610198578063ac97b417146109d2578063b6c3dc4c146109e5578063b92a349f14610a05578063bc0bc6ba14610a18578063bd84477d14610a3857600080fd5b806396fd111a146109205780639cb6f556146109405780639f3a676c14610953578063a0d467581461099f578063aaf4b04d146109bf57600080fd5b80638bdf67f21161021b5780638bdf67f2146108b45780638da5cb5b146108c75780638f82818f146108da5780639437e32e146108fa578063953d16bf1461090d57600080fd5b80638129fc1c14610866578063853e0df21461086e57806387b4b105146108815780638851ec0f146108a157600080fd5b806343c7c0111161035d57806362cd6a09116102e55780637a0c6dc0116102a95780637a0c6dc0146107d75780637bc221ac146107f75780637d08af971461080a5780637e6d99261461082a57806380ca0ecf1461085357600080fd5b806362cd6a091461077e57806367a74ddc146107955780636ef569a5146107a85780637065cb48146107b157806374d1c8e3146107c457600080fd5b806351f6cf2f1161032c57806351f6cf2f14610708578063549e61d3146107305780635811622714610743578063592d1dd11461075657806361d1080b1461077657600080fd5b806343c7c0111461069d578063441a4175146106b057806348ea286d146106e257806351e62472146106f557600080fd5b8063173825d9116103eb5780632ded58aa116103af5780632ded58aa146105c15780633ba8396e146105ca5780633c92f98d146105ed5780633f35e7221461060f57806343a32f891461062257600080fd5b8063173825d91461056c5780631ada70a81461057f5780631aefa2d1146105885780631eb9e53e1461059b57806325d5971f146105ae57600080fd5b8063092c761011610432578063092c7610146105065780630a84096a146105265780630a910a6d146105395780630c7d63861461054257806313baee5b1461054c57600080fd5b8062159da6146104635780630137451814610489578063022914a7146104ca5780630519da32146104fd575b600080fd5b610476610471366004615402565b610c94565b6040519081526020015b60405180910390f35b6104b2610497366004615402565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b039091168152602001610480565b6104ed6104d8366004615402565b60016020526000908152604090205460ff1681565b6040519015158152602001610480565b61047660095481565b610476610514366004615402565b60076020526000908152604090205481565b610476610534366004615424565b610d2a565b61047660145481565b61054a610e62565b005b61047661055a366004615402565b600f6020526000908152604090205481565b61054a61057a366004615402565b610fa4565b61047660085481565b61054a61059636600461544e565b611095565b6104766105a9366004615402565b6110c9565b61054a6105bc36600461544e565b611100565b61047660135481565b6104ed6105d8366004615402565b60026020526000908152604090205460ff1681565b6106006105fb3660046154ab565b6112c0565b60405161048093929190615527565b61054a61061d366004615424565b6114ae565b61066e610630366004615424565b60156020908152600092835260408084209091529082529020805460018201546002830154600390930154919290916001600160a01b039091169084565b604051610480949392919093845260208401929092526001600160a01b03166040830152606082015260800190565b61054a6106ab366004615402565b611535565b6106c36106be36600461544e565b6118bb565b604080516001600160a01b039093168352602083019190915201610480565b61054a6106f0366004615402565b6118f3565b61054a61070336600461544e565b611a87565b61071b610716366004615424565b611abb565b60408051928352602083019190915201610480565b61054a61073e36600461555d565b611af7565b61054a6107513660046155c8565b611dc0565b610476610764366004615402565b60066020526000908152604090205481565b601b54610476565b6107866120b0565b604051610480939291906155ea565b61054a6107a33660046156b3565b612303565b61047660175481565b61054a6107bf366004615402565b612360565b61054a6107d23660046156e6565b612435565b6107ea6107e5366004615402565b612618565b6040516104809190615751565b610476610805366004615402565b6126ff565b61081d610818366004615402565b6128d2565b60405161048091906157ff565b610476610838366004615402565b6001600160a01b031660009081526018602052604090205490565b610476610861366004615424565b612967565b61054a612a73565b61054a61087c36600461544e565b612ca9565b61047661088f366004615402565b600d6020526000908152604090205481565b61054a6108af36600461585f565b612d45565b61054a6108c236600461544e565b612e78565b6000546104b2906001600160a01b031681565b6104766108e8366004615402565b60186020526000908152604090205481565b61054a61090836600461588b565b612ec7565b61054a61091b36600461544e565b612f0e565b61093361092e3660046155c8565b6131f8565b60405161048091906158e3565b61054a61094e36600461544e565b6133b7565b61096661096136600461544e565b6135a9565b6040805196875260208701959095529385019290925260608401526001600160a01b0390811660808401521660a082015260c001610480565b6109b26109ad366004615424565b6135fc565b604051610480919061595c565b61054a6109cd36600461544e565b61368c565b61054a6109e036600461544e565b613712565b6109f86109f3366004615424565b613b23565b6040516104809190615990565b61054a610a133660046159b1565b613bf8565b610a2b610a2636600461544e565b613dc1565b60405161048091906159e4565b610a4b610a46366004615424565b613e85565b604080519a8b5260208b0199909952978901969096526060880194909452608087019290925260a086015260c08501526001600160a01b031660e0840152151561010083015261012082015261014001610480565b610ab3610aae366004615424565b613f03565b604051610480929190615a1d565b6103e7610476565b610adc610ad7366004615402565b6140a9565b60408051938452602084019290925290820152606001610480565b61054a610b0536600461544e565b614108565b610b47610b1836600461544e565b600e60205260009081526040902080546001820154600283015460038401546004909401549293919290919085565b604080519586526020860194909452928401919091526060830152608082015260a001610480565b610b82610b7d366004615402565b61413c565b6040516104809190615a42565b610adc610b9d366004615424565b6141c4565b61054a610bb036600461544e565b614206565b610bc8610bc33660046155c8565b61423a565b6040516104809190615a98565b61054a610be336600461544e565b614407565b610476610bf6366004615402565b60106020526000908152604090205481565b600b54610476565b610600610c1e366004615402565b6145e1565b61047660125481565b61054a610c3a366004615424565b6147bb565b61054a610c4d366004615424565b614ccf565b61054a610c603660046155c8565b614dd1565b61054a610c7336600461544e565b614ee2565b61047660165481565b61054a610c8f366004615402565b6150b9565b6001600160a01b0381166000908152600f60209081526040808320546010909252822054805b601254811015610d22578215610d10576000818152600e602052604081206003015461271090610cea9086615b28565b610cf49190615b3f565b9050610d008186615b61565b9450610d0c8185615b74565b9350505b80610d1a81615b87565b915050610cba565b505050919050565b6001600160a01b0382166000908152600360205260408120805482919084908110610d5757610d57615ba0565b906000526020600020906009020190506000816006015442610d799190615b74565b60078301549091506001600160a01b03166000805b6001600160a01b038316600090815260046020526040902054811015610e55576001600160a01b0383166000908152600460205260408120805483908110610dd857610dd8615ba0565b6000918252602082206002909102018054600182015460088a015492945090929091606490610e0990600a90615b28565b610e139190615b3f565b9050828810610e4057612710610e298383615b28565b610e339190615b3f565b610e3d9087615b61565b95505b5050505080610e4e90615b87565b9050610d8e565b5093505050505b92915050565b610e6a615132565b6000610e7533610c94565b905060008111610ea05760405162461bcd60e51b8152600401610e9790615bb6565b60405180910390fd5b336000908152600f602052604081208054839290610ebf908490615b74565b925050819055508060136000828254610ed89190615b74565b90915550506012543360009081526010602090815260408083209390935560118152908290208251606081018452428082529281018590526009549193909290830191610f2491615b61565b90528154600180820184556000938452602093849020835160039093020191825582840151908201556040918201516002909101555182815233917fa65a8b4f7f65a1063243d7f7e9e4da00ff767599acf21549ef2548a45d1695ae910160405180910390a250610fa26001600080516020615cca83398151915255565b565b3360009081526001602052604090205460ff16610fd35760405162461bcd60e51b8152600401610e9790615be0565b6001600160a01b03811660009081526001602052604090205460ff166110275760405162461bcd60e51b81526020600482015260096024820152682737ba1037bbb732b960b91b6044820152606401610e97565b336001600160a01b038216036110745760405162461bcd60e51b815260206004820152601260248201527121b0b73737ba103932b6b7bb329039b2b63360711b6044820152606401610e97565b6001600160a01b03166000908152600160205260409020805460ff19169055565b3360009081526001602052604090205460ff166110c45760405162461bcd60e51b8152600401610e9790615be0565b601755565b6001600160a01b0381166000908152600f6020526040812054816110ec84610c94565b90506110f88183615b74565b949350505050565b611108615132565b336000908152601160205260409020805461115b5760405162461bcd60e51b81526020600482015260136024820152724e6f207374616b657320617661696c61626c6560681b6044820152606401610e97565b60005b815481101561126b57600082828154811061117b5761117b615ba0565b906000526020600020906003020190508381600001541480156111a2575060008160010154115b156112585780600201544210156111ea5760405162461bcd60e51b815260206004820152600c60248201526b14dd185ad9481b1bd8dad95960a21b6044820152606401610e97565b60018101805460009091556112147355d398326f99059ff775485246999027b3197955338361517e565b604080518281526020810187905233917f933735aa8de6d7547d0126171b2f31b9c34dd00f3ecd4be85a0ba047db4fafef910160405180910390a2505050506112a6565b508061126381615b87565b91505061115e565b5060405162461bcd60e51b815260206004820152600f60248201526e14dd185ad9481b9bdd08199bdd5b99608a1b6044820152606401610e97565b6112bd6001600080516020615cca83398151915255565b50565b606080600083806001600160401b038111156112de576112de615c08565b604051908082528060200260200182016040528015611307578160200160208202803683370190505b509350806001600160401b0381111561132257611322615c08565b60405190808252806020026020018201604052801561134b578160200160208202803683370190505b50925060005b818110156114a557600087878381811061136d5761136d615ba0565b90506020020160208101906113829190615402565b6001600160a01b03811660009081526007602052604090205487519192509081908890859081106113b5576113b5615ba0565b6020908102919091018101919091526001600160a01b038381166000818152600590935260408084205490516302c68be360e31b81526004810192909252909116906316345f1890602401602060405180830381865afa15801561141d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114419190615c1e565b90506000670de0b6b3a76400006114588484615b28565b6114629190615b3f565b90508088868151811061147757611477615ba0565b602090810291909101015261148c8188615b61565b965050505050808061149d90615b87565b915050611351565b50509250925092565b3360009081526001602052604090205460ff166114dd5760405162461bcd60e51b8152600401610e9790615be0565b6114f16001600160a01b038316338361517e565b6040518181526001600160a01b0383169033907fa92ff919b850e4909ab2261d907ef955f11bc1716733a6cbece38d163a69af8a9060200160405180910390a35050565b61153d615132565b6000805b336000908152600360205260409020548110156116485733600090815260036020526040812080548390811061157957611579615ba0565b6000918252602090912060099091020160078101549091506001600160a01b0385811691161480156115b757506007810154600160a01b900460ff16155b156116355760006115c83384612967565b905081600301548111156116335760008260030154826115e89190615b74565b90506115f48186615b61565b94508083600301600082825461160a9190615b61565b909155505082546003840154106116315760078301805460ff60a01b1916600160a01b1790555b505b505b508061164081615b87565b915050611541565b50600081116116695760405162461bcd60e51b8152600401610e9790615bb6565b3360009081526006602052604090205415611772576001600160a01b038281166000818152600560205260408082205490516302c68be360e31b815260048101939093529092670de0b6b3a7640000928592909116906316345f1890602401602060405180830381865afa1580156116e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117099190615c1e565b6117139190615b28565b61171d9190615b3f565b33600090815260066020526040902054909150811061174b5733600090815260066020526040812055611770565b336000908152600660205260408120805483929061176a908490615b74565b90915550505b505b6001600160a01b0382166000908152600760205260408120805483929061179a908490615b74565b9091555050336000908152600a6020526040808220815160808101909252600b80549193839291906117cb83615b87565b919050558152602001838152602001600954426117e89190615b61565b81526001600160a01b0385811660209283018190528454600180820187556000968752848720865160049093020191825585850151908201556040808601516002830155606090950151600390910180546001600160a01b03191691909316179091558352600d905281208054839290611863908490615b61565b9091555050604080518281526000602082015233917f4a94c2c356e29a6583071e731bdacf2ca56565ba5efebcff6936eb7923b51721910160405180910390a2506112bd6001600080516020615cca83398151915255565b601981815481106118cb57600080fd5b6000918252602090912060029091020180546001909101546001600160a01b03909116915082565b3360009081526002602052604090205460ff166119225760405162461bcd60e51b8152600401610e9790615be0565b60005b6001600160a01b038216600090815260036020526040902054811015611a83576001600160a01b038216600090815260036020526040812080548390811061196f5761196f615ba0565b906000526020600020906009020190508060070160149054906101000a900460ff16611a475760088101546001600160a01b038416600090815260066020526040902054106119eb5760088101546001600160a01b038416600090815260066020526040812080549091906119e5908490615b74565b90915550505b80546007808301546001600160a01b03166000908152602091909152604090205410611a475780546007808301546001600160a01b03166000908152602091909152604081208054909190611a41908490615b74565b90915550505b600080825560018201819055600382018190556004820155600701805460ff60a01b1916600160a01b179055611a7c81615b87565b9050611925565b5050565b3360009081526001602052604090205460ff16611ab65760405162461bcd60e51b8152600401610e9790615be0565b601655565b60046020528160005260406000208181548110611ad757600080fd5b600091825260209091206002909102018054600190910154909250905082565b3360009081526002602052604090205460ff16611b265760405162461bcd60e51b8152600401610e9790615be0565b828114611b6d5760405162461bcd60e51b8152602060048201526015602482015274082e4e4c2f240d8cadccee8d040dad2e6dac2e8c6d605b1b6044820152606401610e97565b82611ba95760405162461bcd60e51b815260206004820152600c60248201526b456d7074792061727261797360a01b6044820152606401610e97565b6000805b84811015611da1576000868683818110611bc957611bc9615ba0565b9050602002016020810190611bde9190615402565b6001600160a01b031603611c045760405162461bcd60e51b8152600401610e9790615c37565b6000848483818110611c1857611c18615ba0565b9050602002013511611c3c5760405162461bcd60e51b8152600401610e9790615c60565b838382818110611c4e57611c4e615ba0565b90506020020135600f6000888885818110611c6b57611c6b615ba0565b9050602002016020810190611c809190615402565b6001600160a01b03168152602081019190915260400160002054611ca49084615b74565b611cae9190615b61565b9150838382818110611cc257611cc2615ba0565b90506020020135600f6000888885818110611cdf57611cdf615ba0565b9050602002016020810190611cf49190615402565b6001600160a01b03168152602081019190915260400160002055858582818110611d2057611d20615ba0565b9050602002016020810190611d359190615402565b6001600160a01b03167fec7e3594982826a1f90c8fc76513357b83a691b7f4e38b8be04f3d40f9b15839858584818110611d7157611d71615ba0565b90506020020135604051611d8791815260200190565b60405180910390a280611d9981615b87565b915050611bad565b508060136000828254611db49190615b61565b90915550505050505050565b611dc8615132565b60008211611e085760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642076616c756560981b6044820152606401610e97565b60008111611e4d5760405162461bcd60e51b8152602060048201526012602482015271496e76616c69642073616c6520707269636560701b6044820152606401610e97565b601654821015611e955760405162461bcd60e51b815260206004820152601360248201527256616c75652062656c6f77206d696e696d756d60681b6044820152606401610e97565b6000611ea0336110c9565b905080831115611eeb5760405162461bcd60e51b8152602060048201526016602482015275496e73756666696369656e74206e6574207374616b6560501b6044820152606401610e97565b600c8054906000611efb83615b87565b9091555050600c54336000908152600f602052604081208054869290611f22908490615b74565b925050819055508360136000828254611f3b9190615b74565b909155505060408051608081018252858152602080820186815233838501818152426060860190815260008381526015865287812089825286528781209651875593516001808801919091559151600280880180546001600160a01b039384166001600160a01b03199182161790915592516003909801979097558751808901909852928752938601878152601980548084018255948190529651939095027f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c969581018054949093169390941692909217905591517f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c96969091015590546120409190615b74565b336000818152601a6020908152604080832086845282529182902093909355805186815292830184905290917f8e79b7ba8dab5ebfa59b9c6af1743c3ef14863680b3cc5ac837f8d636f76031c910160405180910390a25050611a836001600080516020615cca83398151915255565b60195460609081908190806001600160401b038111156120d2576120d2615c08565b6040519080825280602002602001820160405280156120fb578160200160208202803683370190505b509350806001600160401b0381111561211657612116615c08565b60405190808252806020026020018201604052801561213f578160200160208202803683370190505b509250806001600160401b0381111561215a5761215a615c08565b6040519080825280602002602001820160405280156121bf57816020015b6121ac6040518060800160405280600081526020016000815260200160006001600160a01b03168152602001600081525090565b8152602001906001900390816121785790505b50915060005b818110156122fc576000601982815481106121e2576121e2615ba0565b60009182526020918290206040805180820190915260029092020180546001600160a01b031680835260019091015492820192909252875190925087908490811061222f5761222f615ba0565b60200260200101906001600160a01b031690816001600160a01b031681525050806020015185838151811061226657612266615ba0565b60209081029190910181019190915281516001600160a01b03908116600090815260158352604080822085850151835284529081902081516080810183528154815260018201549481019490945260028101549092169083015260030154606082015284518590849081106122dd576122dd615ba0565b60200260200101819052505080806122f490615b87565b9150506121c5565b5050909192565b3360009081526001602052604090205460ff166123325760405162461bcd60e51b8152600401610e9790615be0565b6001600160a01b03918216600090815260056020526040902080546001600160a01b03191691909216179055565b3360009081526001602052604090205460ff1661238f5760405162461bcd60e51b8152600401610e9790615be0565b6001600160a01b0381166123b55760405162461bcd60e51b8152600401610e9790615c37565b6001600160a01b03811660009081526001602052604090205460ff161561240e5760405162461bcd60e51b815260206004820152600d60248201526c20b63932b0b23c9037bbb732b960991b6044820152606401610e97565b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b3360009081526002602052604090205460ff166124645760405162461bcd60e51b8152600401610e9790615be0565b60036000896001600160a01b03166001600160a01b031681526020019081526020016000206040518061014001604052808981526020018881526020018781526020016000815260200160008152602001848152602001838152602001866001600160a01b03168152602001600015158152602001858152509080600181540180825580915050600190039060005260206000209060090201600090919091909150600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e08201518160070160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506101008201518160070160146101000a81548160ff0219169083151502179055506101208201518160080155505082600660008a6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546125dc9190615b61565b90915550506001600160a01b03841660009081526007602052604081208054899290612609908490615b61565b90915550505050505050505050565b6001600160a01b0381166000908152600360209081526040808320805482518185028101850190935280835260609492939192909184015b828210156126f457600084815260209081902060408051610140810182526009860290920180548352600180820154848601526002820154928401929092526003810154606084015260048101546080840152600581015460a0840152600681015460c084015260078101546001600160a01b03811660e0850152600160a01b900460ff161515610100840152600801546101208301529083529092019101612650565b505050509050919050565b6001600160a01b038116600090815260036020526040812054815b818110156128cb576001600160a01b038416600090815260036020526040812080548390811061274c5761274c615ba0565b600091825260209182902060408051610140810182526009909302909101805483526001810154938301939093526002830154908201526003820154606082015260048201546080820152600582015460a0820152600682015460c082015260078201546001600160a01b03811660e083015260ff600160a01b909104161515610100820181905260089092015461012082015291506128b85760e0810180516001600160a01b0390811660009081526005602052604080822054935190516302c68be360e31b815290831660048201529092909116906316345f1890602401602060405180830381865afa158015612849573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061286d9190615c1e565b90506000826060015183600001516128859190615b74565b90506000670de0b6b3a764000061289c8385615b28565b6128a69190615b3f565b90506128b28188615b61565b96505050505b50806128c381615b87565b91505061271a565b5050919050565b6001600160a01b0381166000908152600a60209081526040808320805482518185028101850190935280835260609492939192909184015b828210156126f457600084815260209081902060408051608081018252600486029092018054835260018082015484860152600282015492840192909252600301546001600160a01b03166060830152908352909201910161290a565b6001600160a01b038216600090815260036020526040812080548291908490811061299457612994615ba0565b9060005260206000209060090201905060008160060154426129b69190615b74565b60078301549091506001600160a01b03166000805b6001600160a01b038316600090815260046020526040902054811015610e55576001600160a01b0383166000908152600460205260408120805483908110612a1557612a15615ba0565b600091825260209091206002909102018054600182015491925090818710612a5f57875461271090612a48908390615b28565b612a529190615b3f565b612a5c9086615b61565b94505b50505080612a6c90615b87565b90506129cb565b6000612a7d6151e2565b805490915060ff600160401b82041615906001600160401b0316600081158015612aa45750825b90506000826001600160401b03166001148015612ac05750303b155b905081158015612ace575080155b15612aec5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612b1657845460ff60401b1916600160401b1785555b612b1e61520b565b600080546001600160a01b03191633908117825581526001602081815260408320805460ff1990811684179091557f968a1791ad31618c63b086103baa804af57c3ca0efa33a191010fbb7741579fc80548216841790557f62cf4150b20d3255eba0565c087b9107980561f805ca8d8f9daa6ef061b5102180548216841790557f07c745cf21e9841960aca585c508e8b656ab26f500f65e063e363f1e5431cb338054821684179055738a9281ecece9b599c2f42d829c3d0d8e74b7083e84527f3951584e4df0c05d84015a72c4987ad1375f6f18e35cb23b25e1962d5cdc88b68054909116909217909155600f905269021e19e0c9bab24000007f49b20f23a4c98683b2444d4fceacc6fea988f6ff51924040a449ec627e73e8368190556013805491929091612c50908490615b61565b90915550506201fa406009558315612ca257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b3360009081526001602052604090205460ff16612cd85760405162461bcd60e51b8152600401610e9790615be0565b612cf77355d398326f99059ff775485246999027b3197955338361517e565b6040518181527355d398326f99059ff775485246999027b31979559033907fa92ff919b850e4909ab2261d907ef955f11bc1716733a6cbece38d163a69af8a9060200160405180910390a350565b3360009081526001602052604090205460ff16612d745760405162461bcd60e51b8152600401610e9790615be0565b60125460009015612dbf576000600e60006001601254612d949190615b74565b81526020019081526020016000209050612dbb84601354836001015484600201548761521b565b9150505b6040805160a081018252858152602080820186815260135483850190815260608085018781524260808701908152601280546000908152600e885289902097518855945160018801559251600287015551600386015590516004909401939093555483518781529182018590529281018590527feadbedb993dfca23e4c79bf4fa5fe531c2e0e926258fabb8445e8bc5c472780f910160405180910390a260128054906000612e6d83615b87565b919050555050505050565b3360009081526001602052604090205460ff16612ea75760405162461bcd60e51b8152600401610e9790615be0565b6112bd7355d398326f99059ff775485246999027b31979553330846152b4565b3360009081526002602052604090205460ff16612ef65760405162461bcd60e51b8152600401610e9790615be0565b612f068686868686864242612435565b505050505050565b33600090815260156020908152604080832084845290915290208054612f465760405162461bcd60e51b8152600401610e9790615c88565b60028101546001600160a01b03163314612f935760405162461bcd60e51b815260206004820152600e60248201526d2737ba103a34329039b2b63632b960911b6044820152606401610e97565b805460175460009061271090612fa99084615b28565b612fb39190615b3f565b90506000612fc18284615b74565b336000908152600f6020526040812080549293508392909190612fe5908490615b61565b925050819055508060136000828254612ffe9190615b61565b9091555050811561304557604080518381526020810187905233917f4725a4d4de9bff212d0885095e27515072f73f427df55e52f37f241321ef88f9910160405180910390a25b336000818152601560209081526040808320898452825280832083815560018082018590556002820180546001600160a01b03191690556003909101849055938352601a825280832089845290915281205460195490926130a591615b74565b9050808214613166576000601982815481106130c3576130c3615ba0565b60009182526020918290206040805180820190915260029092020180546001600160a01b0316825260010154918101919091526019805491925082918590811061310f5761310f615ba0565b6000918252602080832084516002939093020180546001600160a01b0319166001600160a01b03938416178155938101516001909401939093558351168152601a8252604080822093830151825292909152208290555b601980548061317757613177615cb3565b600082815260208082206002600019949094019384020180546001600160a01b03191681556001018290559190925533808352601a825260408084208b855283528084209390935591518981527f73d12dec3eb3b445b6c9feb2fd559ba7c852c525bc1e59d8f7ff760c55df041d910160405180910390a250505050505050565b60608183111561323a5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642072616e676560981b6044820152606401610e97565b60125482106132815760405162461bcd60e51b8152602060048201526013602482015272115b9908195c1bd8da081b9bdd08199bdd5b99606a1b6044820152606401610e97565b600061328d8484615b74565b613298906001615b61565b90506000816001600160401b038111156132b4576132b4615c08565b60405190808252806020026020018201604052801561331757816020015b6133046040518060a0016040528060008152602001600081526020016000815260200160008152602001600081525090565b8152602001906001900390816132d25790505b50905060005b828110156133ae57600e60006133338389615b61565b81526020019081526020016000206040518060a00160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152505082828151811061339057613390615ba0565b602002602001018190525080806133a690615b87565b91505061331d565b50949350505050565b6133bf615132565b600081116133df5760405162461bcd60e51b8152600401610e9790615c60565b6000601454116134285760405162461bcd60e51b81526020600482015260146024820152734275796f7574206e6f7420617661696c61626c6560601b6044820152606401610e97565b6000613433336110c9565b90508082111561347e5760405162461bcd60e51b8152602060048201526016602482015275496e73756666696369656e74206e6574207374616b6560501b6044820152606401610e97565b6000612710601454846134919190615b28565b61349b9190615b3f565b336000908152600f60205260408120805492935085929091906134bf908490615b74565b9250508190555082601360008282546134d89190615b74565b9091555050600c80549060006134ed83615b87565b9091555050336000908152601160209081526040918290208251606081018452600c548152918201849052600954909282019061352a9042615b61565b90528154600180820184556000938452602093849020835160039093020191825582840151908201556040918201516002909101555182815233917fa65a8b4f7f65a1063243d7f7e9e4da00ff767599acf21549ef2548a45d1695ae910160405180910390a250506112bd6001600080516020615cca83398151915255565b601b81815481106135b957600080fd5b6000918252602090912060069091020180546001820154600283015460038401546004850154600590950154939550919390926001600160a01b03918216911686565b6136306040518060800160405280600081526020016000815260200160006001600160a01b03168152602001600081525090565b506001600160a01b03918216600090815260156020908152604080832093835292815290829020825160808101845281548152600182015492810192909252600281015490931691810191909152600390910154606082015290565b3360009081526001602052604090205460ff166136bb5760405162461bcd60e51b8152600401610e9790615be0565b61271081111561370d5760405162461bcd60e51b815260206004820152601d60248201527f50657263656e746167652063616e6e6f742065786365656420313030250000006044820152606401610e97565b601455565b61371a615132565b3360009081526003602052604090205481106137705760405162461bcd60e51b8152602060048201526015602482015274092dcecc2d8d2c840eccae6e8d2dcce40d2dcc8caf605b1b6044820152606401610e97565b33600090815260036020526040812080548390811061379157613791615ba0565b906000526020600020906009020190508060070160149054906101000a900460ff16156137f35760405162461bcd60e51b815260206004820152601060248201526f56657374696e6720636f6d706c65746560801b6044820152606401610e97565b60006137ff3384612967565b9050816003015481101561384c5760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a590818db185a5b48185b5bdd5b9d60621b6044820152606401610e97565b600082600301548261385e9190615b74565b9050600081116138805760405162461bcd60e51b8152600401610e9790615bb6565b808360030160008282546138949190615b61565b909155505082546003840154106138bb5760078301805460ff60a01b1916600160a01b1790555b33600090815260066020526040902054156139c95760078301546001600160a01b039081166000818152600560205260408082205490516302c68be360e31b815260048101939093529092670de0b6b3a7640000928592909116906316345f1890602401602060405180830381865afa15801561393c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139609190615c1e565b61396a9190615b28565b6139749190615b3f565b3360009081526006602052604090205490915081106139a257336000908152600660205260408120556139c7565b33600090815260066020526040812080548392906139c1908490615b74565b90915550505b505b6007838101546001600160a01b031660009081526020919091526040812080548392906139f7908490615b74565b9091555050336000908152600a6020526040808220815160808101909252600b8054919383929190613a2883615b87565b91905055815260200183815260200160095442613a459190615b61565b81526007860180546001600160a01b039081166020938401528454600180820187556000968752848720865160049093020191825585850151908201556040808601516002830155606090950151600390910180546001600160a01b0319169183169190911790559054168352600d905281208054839290613ac8908490615b61565b9091555050604080518281526000602082015233917f4a94c2c356e29a6583071e731bdacf2ca56565ba5efebcff6936eb7923b5172191015b60405180910390a25050506112bd6001600080516020615cca83398151915255565b613b4760405180606001604052806000815260200160008152602001600081525090565b6001600160a01b0383166000908152601160205260408120905b815481101561126b5783828281548110613b7d57613b7d615ba0565b90600052602060002090600302016000015403613be657818181548110613ba657613ba6615ba0565b9060005260206000209060030201604051806060016040529081600082015481526020016001820154815260200160028201548152505092505050610e5c565b80613bf081615b87565b915050613b61565b3360009081526001602052604090205460ff16613c275760405162461bcd60e51b8152600401610e9790615be0565b6001600160a01b038316613c755760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420746f6b656e206164647265737360581b6044820152606401610e97565b600081118015613c8757506127108111155b613cc85760405162461bcd60e51b8152602060048201526012602482015271496e76616c69642070657263656e7461676560701b6044820152606401610e97565b6001600160a01b0383166000908152600460205260408120613ce9916153ab565b6000825b612710821015613d865782612710613d058285615b61565b1115613d1a57613d1783612710615b74565b90505b6001600160a01b0386166000908152600460209081526040808320815180830190925285825281830185815281546001818101845592865293909420915160029093029091019182559151910155613d728184615b61565b9250613d7e8583615b61565b915050613ced565b6040516001600160a01b038616907fde4b6ccc38b84f88129403b65a309f9b1c41d4c316bc2118d7614e449b9d4c4590600090a25050505050565b613df36040518060a0016040528060008152602001600081526020016000815260200160008152602001600081525090565b6012548210613e365760405162461bcd60e51b815260206004820152600f60248201526e115c1bd8da081b9bdd08199bdd5b99608a1b6044820152606401610e97565b506000908152600e6020908152604091829020825160a0810184528154815260018201549281019290925260028101549282019290925260038201546060820152600490910154608082015290565b60036020528160005260406000208181548110613ea157600080fd5b6000918252602090912060099091020180546001820154600283015460038401546004850154600586015460068701546007880154600890980154969950949750929591949093916001600160a01b03811691600160a01b90910460ff16908a565b6001600160a01b038216600090815260036020526040812080546060928392909185908110613f3457613f34615ba0565b600091825260208083206007600990930201918201546001600160a01b03168084526004909152604083205491935091816001600160401b03811115613f7c57613f7c615c08565b604051908082528060200260200182016040528015613fa5578160200160208202803683370190505b5090506000826001600160401b03811115613fc257613fc2615c08565b604051908082528060200260200182016040528015613feb578160200160208202803683370190505b50905060005b83811015614098576001600160a01b038516600090815260046020526040812080548390811061402357614023615ba0565b90600052602060002090600202019050806000015487600601546140479190615b61565b84838151811061405957614059615ba0565b602002602001018181525050806001015483838151811061407c5761407c615ba0565b60209081029190910101525061409181615b87565b9050613ff1565b5090955093505050505b9250929050565b6000806000806140b885610c94565b6001600160a01b0386166000908152600f60205260409020549091506140df908290615b74565b6001600160a01b0386166000908152600f602052604090205490945090925090505b9193909250565b3360009081526001602052604090205460ff166141375760405162461bcd60e51b8152600401610e9790615be0565b600855565b6001600160a01b0381166000908152601160209081526040808320805482518185028101850190935280835260609492939192909184015b828210156126f45783829060005260206000209060030201604051806060016040529081600082015481526020016001820154815260200160028201548152505081526020019060010190614174565b601160205281600052604060002081815481106141e057600080fd5b600091825260209091206003909102018054600182015460029092015490935090915083565b3360009081526001602052604090205460ff166142355760405162461bcd60e51b8152600401610e9790615be0565b600955565b601b54606090831061428e5760405162461bcd60e51b815260206004820152601960248201527f537461727420696e646578206f7574206f6620626f756e6473000000000000006044820152606401610e97565b600061429a8385615b61565b601b549091508111156142ac5750601b545b60006142b88583615b74565b6001600160401b038111156142cf576142cf615c08565b60405190808252806020026020018201604052801561434b57816020015b6143386040518060c001604052806000815260200160008152602001600081526020016000815260200160006001600160a01b0316815260200160006001600160a01b031681525090565b8152602001906001900390816142ed5790505b509050845b828110156133ae57601b818154811061436b5761436b615ba0565b60009182526020918290206040805160c0810182526006909302909101805483526001810154938301939093526002830154908201526003820154606082015260048201546001600160a01b03908116608083015260059092015490911660a0820152826143d98884615b74565b815181106143e9576143e9615ba0565b602002602001018190525080806143ff90615b87565b915050614350565b61440f615132565b3360009081526003602052604090205481106144655760405162461bcd60e51b8152602060048201526015602482015274092dcecc2d8d2c840eccae6e8d2dcce40d2dcc8caf605b1b6044820152606401610e97565b33600090815260036020526040812080548390811061448657614486615ba0565b9060005260206000209060090201905060006144a23384610d2a565b905081600401548110156144ef5760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a590818db185a5b48185b5bdd5b9d60621b6044820152606401610e97565b60008260040154826145019190615b74565b9050600081116145235760405162461bcd60e51b8152600401610e9790615bb6565b808360040160008282546145379190615b61565b90915550503360009081526011602052604090819020815160608101909252908061456587620f4240615b61565b81526020018381526020016009544261457e9190615b61565b90528154600180820184556000938452602093849020835160039093020191825582840151908201556040918201516002909101555182815233917f4e69fdc49495bcab2b4375781457ba16653a90eb4ffb6588351bdc39071433e29101613b01565b6001600160a01b0381166000908152600f60209081526040808320546010909252822054601254606093849390929091839061461e908390615b74565b90508060000361464f5750506040805160008082526020820181815282840190935290955090935091506141019050565b806001600160401b0381111561466757614667615c08565b604051908082528060200260200182016040528015614690578160200160208202803683370190505b509550806001600160401b038111156146ab576146ab615c08565b6040519080825280602002602001820160405280156146d4578160200160208202803683370190505b50945060005b818110156147b05760006146ee8285615b61565b90508088838151811061470357614703615ba0565b6020908102919091010152841561477c576000818152600e6020526040812060030154612710906147349088615b28565b61473e9190615b3f565b90508088848151811061475357614753615ba0565b60209081029190910101526147688188615b61565b96506147748187615b74565b95505061479d565b600087838151811061479057614790615ba0565b6020026020010181815250505b50806147a881615b87565b9150506146da565b505050509193909250565b6147c3615132565b6001600160a01b0382166000908152601560209081526040808320848452909152902080546148045760405162461bcd60e51b8152600401610e9790615c88565b336001600160a01b038416036148555760405162461bcd60e51b815260206004820152601660248201527543616e6e6f7420627579206f776e206c697374696e6760501b6044820152606401610e97565b805460018201546003830154600082841161487157600061487b565b61487b8385615b74565b905060008461488c83612710615b28565b6148969190615b3f565b905060006127106148a78380615b28565b6148b19190615b3f565b905060006127106148c28389615b28565b6148cc9190615b3f565b905060006148da8289615b74565b90506148fc7355d398326f99059ff775485246999027b3197955338d8a6152b4565b336000908152600f60205260408120805483929061491b908490615b61565b9250508190555080601360008282546149349190615b61565b90915550506001600160a01b038b1660009081526018602052604081208054899290614961908490615b61565b92505081905550601b6040518060c001604052808881526020014281526020018a81526020018981526020018d6001600160a01b03168152602001336001600160a01b031681525090806001815401808255809150506001900390600052602060002090600602016000909190919091506000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060a08201518160050160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505050601560008c6001600160a01b03166001600160a01b0316815260200190815260200160002060008b815260200190815260200160002060008082016000905560018201600090556002820160006101000a8154906001600160a01b030219169055600382016000905550506000601a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002060008c815260200190815260200160002054905060006001601980549050614b109190615b74565b9050808214614bd157600060198281548110614b2e57614b2e615ba0565b60009182526020918290206040805180820190915260029092020180546001600160a01b03168252600101549181019190915260198054919250829185908110614b7a57614b7a615ba0565b6000918252602080832084516002939093020180546001600160a01b0319166001600160a01b03938416178155938101516001909401939093558351168152601a8252604080822093830151825292909152208290555b6019805480614be257614be2615cb3565b6001900381819060005260206000209060020201600080820160006101000a8154906001600160a01b030219169055600182016000905550509055601a60008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d815260200190815260200160002060009055336001600160a01b03168d6001600160a01b03167f7bb39d095b04a9986ed34adf14d74c33294d0a9e807f02bf634d532507422eba8b8f604051614ca5929190918252602082015260400190565b60405180910390a35050505050505050505050611a836001600080516020615cca83398151915255565b3360009081526002602052604090205460ff16614cfe5760405162461bcd60e51b8152600401610e9790615be0565b6001600160a01b038216614d245760405162461bcd60e51b8152600401610e9790615c37565b60008111614d445760405162461bcd60e51b8152600401610e9790615c60565b6001600160a01b0382166000908152600f60205260409020546013548291614d6b91615b74565b614d759190615b61565b6013556001600160a01b0382166000818152600f602052604090819020839055517fec7e3594982826a1f90c8fc76513357b83a691b7f4e38b8be04f3d40f9b1583990614dc59084815260200190565b60405180910390a25050565b33600090815260156020908152604080832085845290915290208054614e095760405162461bcd60e51b8152600401610e9790615c88565b60028101546001600160a01b03163314614e565760405162461bcd60e51b815260206004820152600e60248201526d2737ba103a34329039b2b63632b960911b6044820152606401610e97565b60008211614e9b5760405162461bcd60e51b8152602060048201526012602482015271496e76616c69642073616c6520707269636560701b6044820152606401610e97565b60018101829055604080518381526020810185905233917f8e79b7ba8dab5ebfa59b9c6af1743c3ef14863680b3cc5ac837f8d636f76031c910160405180910390a2505050565b614eea615132565b336000908152600a602052604090208054614f3f5760405162461bcd60e51b81526020600482015260156024820152744e6f2076657374696e677320617661696c61626c6560581b6044820152606401610e97565b60005b815481101561507c576000828281548110614f5f57614f5f615ba0565b90600052602060002090600402019050838160000154148015614f86575060008160010154115b15615069578060020154421015614fd05760405162461bcd60e51b815260206004820152600e60248201526d15995cdd1a5b99c81b1bd8dad95960921b6044820152606401610e97565b60018101805460038301546000928390556001600160a01b0316808352600d6020526040832080549293919284929061500a908490615b74565b9091555061502490506001600160a01b038216338461517e565b604080518381526020810188905233917f933735aa8de6d7547d0126171b2f31b9c34dd00f3ecd4be85a0ba047db4fafef910160405180910390a250505050506112a6565b508061507481615b87565b915050614f42565b5060405162461bcd60e51b815260206004820152601160248201527015995cdd1a5b99c81b9bdd08199bdd5b99607a1b6044820152606401610e97565b3360009081526001602052604090205460ff166150e85760405162461bcd60e51b8152600401610e9790615be0565b6001600160a01b03811661510e5760405162461bcd60e51b8152600401610e9790615c37565b6001600160a01b03166000908152600260205260409020805460ff19166001179055565b600080516020615cca83398151915280546001190161516457604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b6001600080516020615cca83398151915255565b6040516001600160a01b038381166024830152604482018390526151dd91859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050506152f3565b505050565b6000807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610e5c565b615213615364565b610fa2615389565b6000821580615228575084155b15615235575060006152ab565b60008561524488612710615b28565b61524e9190615b3f565b905060008461525f87612710615b28565b6152699190615b3f565b905080821161527d576000925050506152ab565b60006152898284615b74565b9050600061271061529a8784615b28565b6152a49190615b3f565b9450505050505b95945050505050565b6040516001600160a01b0384811660248301528381166044830152606482018390526152ed9186918216906323b872dd906084016151ab565b50505050565b600080602060008451602086016000885af180615316576040513d6000823e3d81fd5b50506000513d9150811561532e57806001141561533b565b6001600160a01b0384163b155b156152ed57604051635274afe760e01b81526001600160a01b0385166004820152602401610e97565b61536c615391565b610fa257604051631afcd79f60e31b815260040160405180910390fd5b61516a615364565b600061539b6151e2565b54600160401b900460ff16919050565b50805460008255600202906000526020600020908101906112bd91905b808211156153e257600080825560018201556002016153c8565b5090565b80356001600160a01b03811681146153fd57600080fd5b919050565b60006020828403121561541457600080fd5b61541d826153e6565b9392505050565b6000806040838503121561543757600080fd5b615440836153e6565b946020939093013593505050565b60006020828403121561546057600080fd5b5035919050565b60008083601f84011261547957600080fd5b5081356001600160401b0381111561549057600080fd5b6020830191508360208260051b85010111156140a257600080fd5b600080602083850312156154be57600080fd5b82356001600160401b038111156154d457600080fd5b6154e085828601615467565b90969095509350505050565b600081518084526020808501945080840160005b8381101561551c57815187529582019590820190600101615500565b509495945050505050565b60608152600061553a60608301866154ec565b828103602084015261554c81866154ec565b915050826040830152949350505050565b6000806000806040858703121561557357600080fd5b84356001600160401b038082111561558a57600080fd5b61559688838901615467565b909650945060208701359150808211156155af57600080fd5b506155bc87828801615467565b95989497509550505050565b600080604083850312156155db57600080fd5b50508035926020909101359150565b60608082528451908201819052600090608090818401906020808901855b8381101561562d5781516001600160a01b031685529382019390820190600101615608565b50508583038187015261564083896154ec565b868103604088015287518082528289019450908201925060005b818110156156a45761569484865180518252602080820151908301526040808201516001600160a01b031690830152606090810151910152565b938201939285019260010161565a565b50919998505050505050505050565b600080604083850312156156c657600080fd5b6156cf836153e6565b91506156dd602084016153e6565b90509250929050565b600080600080600080600080610100898b03121561570357600080fd5b61570c896153e6565b975060208901359650604089013595506060890135945061572f60808a016153e6565b979a969950949793969560a0850135955060c08501359460e001359350915050565b602080825282518282018190526000919060409081850190868401855b828110156157f25781518051855286810151878601528581015186860152606080820151908601526080808201519086015260a0808201519086015260c0808201519086015260e0808201516001600160a01b031690860152610100808201511515908601526101209081015190850152610140909301929085019060010161576e565b5091979650505050505050565b602080825282518282018190526000919060409081850190868401855b828110156157f257815180518552868101518786015285810151868601526060908101516001600160a01b0316908501526080909301929085019060010161581c565b60008060006060848603121561587457600080fd5b505081359360208301359350604090920135919050565b60008060008060008060c087890312156158a457600080fd5b6158ad876153e6565b95506020870135945060408701359350606087013592506158d0608088016153e6565b915060a087013590509295509295509295565b6020808252825182820181905260009190848201906040850190845b818110156159505761593d83855180518252602081015160208301526040810151604083015260608101516060830152608081015160808301525050565b9284019260a092909201916001016158ff565b50909695505050505050565b81518152602080830151908201526040808301516001600160a01b0316908201526060808301519082015260808101610e5c565b81518152602080830151908201526040808301519082015260608101610e5c565b6000806000606084860312156159c657600080fd5b6159cf846153e6565b95602085013595506040909401359392505050565b60a08101610e5c828480518252602081015160208301526040810151604083015260608101516060830152608081015160808301525050565b604081526000615a3060408301856154ec565b82810360208401526152ab81856154ec565b6020808252825182820181905260009190848201906040850190845b8181101561595057615a858385518051825260208082015190830152604090810151910152565b9284019260609290920191600101615a5e565b602080825282518282018190526000919060409081850190868401855b828110156157f25781518051855286810151878601528581015186860152606080820151908601526080808201516001600160a01b039081169187019190915260a091820151169085015260c09093019290850190600101615ab5565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610e5c57610e5c615b12565b600082615b5c57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610e5c57610e5c615b12565b81810381811115610e5c57610e5c615b12565b600060018201615b9957615b99615b12565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60208082526010908201526f4e6f7468696e6720746f20636c61696d60801b604082015260600190565b6020808252600e908201526d139bdd08185d5d1a1bdc9a5e995960921b604082015260600190565b634e487b7160e01b600052604160045260246000fd5b600060208284031215615c3057600080fd5b5051919050565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b6020808252600e908201526d125b9d985b1a5908185b5bdd5b9d60921b604082015260600190565b602080825260119082015270131a5cdd1a5b99c81b9bdd08199bdd5b99607a1b604082015260600190565b634e487b7160e01b600052603160045260246000fdfe9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00a2646970667358221220f6c9687424e98a5eedc2ebd97c79e0c5a0cde5c699d22518c725ae3ffacddc4764736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x1C PUSH3 0x22 JUMP JUMPDEST PUSH3 0xD6 JUMP JUMPDEST PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 DUP1 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH3 0x73 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND EQ PUSH3 0xD3 JUMPI DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 OR DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH2 0x5D1F DUP1 PUSH3 0xE6 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 0x45E JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8129FC1C GT PUSH2 0x24C JUMPI DUP1 PUSH4 0xBED9757E GT PUSH2 0x146 JUMPI DUP1 PUSH4 0xDA1B4364 GT PUSH2 0xC3 JUMPI DUP1 PUSH4 0xF109208F GT PUSH2 0x87 JUMPI DUP1 PUSH4 0xF109208F EQ PUSH2 0xC3F JUMPI DUP1 PUSH4 0xF2BB5630 EQ PUSH2 0xC52 JUMPI DUP1 PUSH4 0xF7E4444C EQ PUSH2 0xC65 JUMPI DUP1 PUSH4 0xFE2F50D0 EQ PUSH2 0xC78 JUMPI DUP1 PUSH4 0xFFECF516 EQ PUSH2 0xC81 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xDA1B4364 EQ PUSH2 0xBE8 JUMPI DUP1 PUSH4 0xE079FD91 EQ PUSH2 0xC08 JUMPI DUP1 PUSH4 0xE88F8E66 EQ PUSH2 0xC10 JUMPI DUP1 PUSH4 0xEACDC5FF EQ PUSH2 0xC23 JUMPI DUP1 PUSH4 0xEB44E0A3 EQ PUSH2 0xC2C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xC7B530B0 GT PUSH2 0x10A JUMPI DUP1 PUSH4 0xC7B530B0 EQ PUSH2 0xB6F JUMPI DUP1 PUSH4 0xCC573A91 EQ PUSH2 0xB8F JUMPI DUP1 PUSH4 0xCE13D090 EQ PUSH2 0xBA2 JUMPI DUP1 PUSH4 0xCFCF3319 EQ PUSH2 0xBB5 JUMPI DUP1 PUSH4 0xD9193025 EQ PUSH2 0xBD5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xBED9757E EQ PUSH2 0xAA0 JUMPI DUP1 PUSH4 0xC2676603 EQ PUSH2 0xAC1 JUMPI DUP1 PUSH4 0xC32D3AE2 EQ PUSH2 0xAC9 JUMPI DUP1 PUSH4 0xC36D03FD EQ PUSH2 0xAF7 JUMPI DUP1 PUSH4 0xC6B61E4C EQ PUSH2 0xB0A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x96FD111A GT PUSH2 0x1D4 JUMPI DUP1 PUSH4 0xAC97B417 GT PUSH2 0x198 JUMPI DUP1 PUSH4 0xAC97B417 EQ PUSH2 0x9D2 JUMPI DUP1 PUSH4 0xB6C3DC4C EQ PUSH2 0x9E5 JUMPI DUP1 PUSH4 0xB92A349F EQ PUSH2 0xA05 JUMPI DUP1 PUSH4 0xBC0BC6BA EQ PUSH2 0xA18 JUMPI DUP1 PUSH4 0xBD84477D EQ PUSH2 0xA38 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x96FD111A EQ PUSH2 0x920 JUMPI DUP1 PUSH4 0x9CB6F556 EQ PUSH2 0x940 JUMPI DUP1 PUSH4 0x9F3A676C EQ PUSH2 0x953 JUMPI DUP1 PUSH4 0xA0D46758 EQ PUSH2 0x99F JUMPI DUP1 PUSH4 0xAAF4B04D EQ PUSH2 0x9BF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8BDF67F2 GT PUSH2 0x21B JUMPI DUP1 PUSH4 0x8BDF67F2 EQ PUSH2 0x8B4 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x8C7 JUMPI DUP1 PUSH4 0x8F82818F EQ PUSH2 0x8DA JUMPI DUP1 PUSH4 0x9437E32E EQ PUSH2 0x8FA JUMPI DUP1 PUSH4 0x953D16BF EQ PUSH2 0x90D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8129FC1C EQ PUSH2 0x866 JUMPI DUP1 PUSH4 0x853E0DF2 EQ PUSH2 0x86E JUMPI DUP1 PUSH4 0x87B4B105 EQ PUSH2 0x881 JUMPI DUP1 PUSH4 0x8851EC0F EQ PUSH2 0x8A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x43C7C011 GT PUSH2 0x35D JUMPI DUP1 PUSH4 0x62CD6A09 GT PUSH2 0x2E5 JUMPI DUP1 PUSH4 0x7A0C6DC0 GT PUSH2 0x2A9 JUMPI DUP1 PUSH4 0x7A0C6DC0 EQ PUSH2 0x7D7 JUMPI DUP1 PUSH4 0x7BC221AC EQ PUSH2 0x7F7 JUMPI DUP1 PUSH4 0x7D08AF97 EQ PUSH2 0x80A JUMPI DUP1 PUSH4 0x7E6D9926 EQ PUSH2 0x82A JUMPI DUP1 PUSH4 0x80CA0ECF EQ PUSH2 0x853 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x62CD6A09 EQ PUSH2 0x77E JUMPI DUP1 PUSH4 0x67A74DDC EQ PUSH2 0x795 JUMPI DUP1 PUSH4 0x6EF569A5 EQ PUSH2 0x7A8 JUMPI DUP1 PUSH4 0x7065CB48 EQ PUSH2 0x7B1 JUMPI DUP1 PUSH4 0x74D1C8E3 EQ PUSH2 0x7C4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x51F6CF2F GT PUSH2 0x32C JUMPI DUP1 PUSH4 0x51F6CF2F EQ PUSH2 0x708 JUMPI DUP1 PUSH4 0x549E61D3 EQ PUSH2 0x730 JUMPI DUP1 PUSH4 0x58116227 EQ PUSH2 0x743 JUMPI DUP1 PUSH4 0x592D1DD1 EQ PUSH2 0x756 JUMPI DUP1 PUSH4 0x61D1080B EQ PUSH2 0x776 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x43C7C011 EQ PUSH2 0x69D JUMPI DUP1 PUSH4 0x441A4175 EQ PUSH2 0x6B0 JUMPI DUP1 PUSH4 0x48EA286D EQ PUSH2 0x6E2 JUMPI DUP1 PUSH4 0x51E62472 EQ PUSH2 0x6F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x173825D9 GT PUSH2 0x3EB JUMPI DUP1 PUSH4 0x2DED58AA GT PUSH2 0x3AF JUMPI DUP1 PUSH4 0x2DED58AA EQ PUSH2 0x5C1 JUMPI DUP1 PUSH4 0x3BA8396E EQ PUSH2 0x5CA JUMPI DUP1 PUSH4 0x3C92F98D EQ PUSH2 0x5ED JUMPI DUP1 PUSH4 0x3F35E722 EQ PUSH2 0x60F JUMPI DUP1 PUSH4 0x43A32F89 EQ PUSH2 0x622 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x173825D9 EQ PUSH2 0x56C JUMPI DUP1 PUSH4 0x1ADA70A8 EQ PUSH2 0x57F JUMPI DUP1 PUSH4 0x1AEFA2D1 EQ PUSH2 0x588 JUMPI DUP1 PUSH4 0x1EB9E53E EQ PUSH2 0x59B JUMPI DUP1 PUSH4 0x25D5971F EQ PUSH2 0x5AE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x92C7610 GT PUSH2 0x432 JUMPI DUP1 PUSH4 0x92C7610 EQ PUSH2 0x506 JUMPI DUP1 PUSH4 0xA84096A EQ PUSH2 0x526 JUMPI DUP1 PUSH4 0xA910A6D EQ PUSH2 0x539 JUMPI DUP1 PUSH4 0xC7D6386 EQ PUSH2 0x542 JUMPI DUP1 PUSH4 0x13BAEE5B EQ PUSH2 0x54C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH3 0x159DA6 EQ PUSH2 0x463 JUMPI DUP1 PUSH4 0x1374518 EQ PUSH2 0x489 JUMPI DUP1 PUSH4 0x22914A7 EQ PUSH2 0x4CA JUMPI DUP1 PUSH4 0x519DA32 EQ PUSH2 0x4FD JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x476 PUSH2 0x471 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0xC94 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4B2 PUSH2 0x497 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0x5 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 0x480 JUMP JUMPDEST PUSH2 0x4ED PUSH2 0x4D8 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0x1 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 0x480 JUMP JUMPDEST PUSH2 0x476 PUSH1 0x9 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x476 PUSH2 0x514 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x476 PUSH2 0x534 CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 JUMP JUMPDEST PUSH2 0xD2A JUMP JUMPDEST PUSH2 0x476 PUSH1 0x14 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x54A PUSH2 0xE62 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x476 PUSH2 0x55A CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x57A CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0xFA4 JUMP JUMPDEST PUSH2 0x476 PUSH1 0x8 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x596 CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x1095 JUMP JUMPDEST PUSH2 0x476 PUSH2 0x5A9 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0x10C9 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x5BC CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x1100 JUMP JUMPDEST PUSH2 0x476 PUSH1 0x13 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4ED PUSH2 0x5D8 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x600 PUSH2 0x5FB CALLDATASIZE PUSH1 0x4 PUSH2 0x54AB JUMP JUMPDEST PUSH2 0x12C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x5527 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x61D CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 JUMP JUMPDEST PUSH2 0x14AE JUMP JUMPDEST PUSH2 0x66E PUSH2 0x630 CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 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 0x480 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 0x54A PUSH2 0x6AB CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0x1535 JUMP JUMPDEST PUSH2 0x6C3 PUSH2 0x6BE CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x18BB 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 0x480 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x6F0 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0x18F3 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x703 CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x1A87 JUMP JUMPDEST PUSH2 0x71B PUSH2 0x716 CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 JUMP JUMPDEST PUSH2 0x1ABB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x480 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x73E CALLDATASIZE PUSH1 0x4 PUSH2 0x555D JUMP JUMPDEST PUSH2 0x1AF7 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x751 CALLDATASIZE PUSH1 0x4 PUSH2 0x55C8 JUMP JUMPDEST PUSH2 0x1DC0 JUMP JUMPDEST PUSH2 0x476 PUSH2 0x764 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1B SLOAD PUSH2 0x476 JUMP JUMPDEST PUSH2 0x786 PUSH2 0x20B0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x55EA JUMP JUMPDEST PUSH2 0x54A PUSH2 0x7A3 CALLDATASIZE PUSH1 0x4 PUSH2 0x56B3 JUMP JUMPDEST PUSH2 0x2303 JUMP JUMPDEST PUSH2 0x476 PUSH1 0x17 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x7BF CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0x2360 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x7D2 CALLDATASIZE PUSH1 0x4 PUSH2 0x56E6 JUMP JUMPDEST PUSH2 0x2435 JUMP JUMPDEST PUSH2 0x7EA PUSH2 0x7E5 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0x2618 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP2 SWAP1 PUSH2 0x5751 JUMP JUMPDEST PUSH2 0x476 PUSH2 0x805 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0x26FF JUMP JUMPDEST PUSH2 0x81D PUSH2 0x818 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0x28D2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP2 SWAP1 PUSH2 0x57FF JUMP JUMPDEST PUSH2 0x476 PUSH2 0x838 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 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 0x476 PUSH2 0x861 CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 JUMP JUMPDEST PUSH2 0x2967 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x2A73 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x87C CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x2CA9 JUMP JUMPDEST PUSH2 0x476 PUSH2 0x88F CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0xD PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x8AF CALLDATASIZE PUSH1 0x4 PUSH2 0x585F JUMP JUMPDEST PUSH2 0x2D45 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x8C2 CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x2E78 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH2 0x4B2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH2 0x476 PUSH2 0x8E8 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x908 CALLDATASIZE PUSH1 0x4 PUSH2 0x588B JUMP JUMPDEST PUSH2 0x2EC7 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x91B CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x2F0E JUMP JUMPDEST PUSH2 0x933 PUSH2 0x92E CALLDATASIZE PUSH1 0x4 PUSH2 0x55C8 JUMP JUMPDEST PUSH2 0x31F8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP2 SWAP1 PUSH2 0x58E3 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x94E CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x33B7 JUMP JUMPDEST PUSH2 0x966 PUSH2 0x961 CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x35A9 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 0x480 JUMP JUMPDEST PUSH2 0x9B2 PUSH2 0x9AD CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 JUMP JUMPDEST PUSH2 0x35FC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP2 SWAP1 PUSH2 0x595C JUMP JUMPDEST PUSH2 0x54A PUSH2 0x9CD CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x368C JUMP JUMPDEST PUSH2 0x54A PUSH2 0x9E0 CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x3712 JUMP JUMPDEST PUSH2 0x9F8 PUSH2 0x9F3 CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 JUMP JUMPDEST PUSH2 0x3B23 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP2 SWAP1 PUSH2 0x5990 JUMP JUMPDEST PUSH2 0x54A PUSH2 0xA13 CALLDATASIZE PUSH1 0x4 PUSH2 0x59B1 JUMP JUMPDEST PUSH2 0x3BF8 JUMP JUMPDEST PUSH2 0xA2B PUSH2 0xA26 CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x3DC1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP2 SWAP1 PUSH2 0x59E4 JUMP JUMPDEST PUSH2 0xA4B PUSH2 0xA46 CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 JUMP JUMPDEST PUSH2 0x3E85 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 0x480 JUMP JUMPDEST PUSH2 0xAB3 PUSH2 0xAAE CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 JUMP JUMPDEST PUSH2 0x3F03 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP3 SWAP2 SWAP1 PUSH2 0x5A1D JUMP JUMPDEST PUSH2 0x3E7 PUSH2 0x476 JUMP JUMPDEST PUSH2 0xADC PUSH2 0xAD7 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0x40A9 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 0x480 JUMP JUMPDEST PUSH2 0x54A PUSH2 0xB05 CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x4108 JUMP JUMPDEST PUSH2 0xB47 PUSH2 0xB18 CALLDATASIZE PUSH1 0x4 PUSH2 0x544E 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 0x480 JUMP JUMPDEST PUSH2 0xB82 PUSH2 0xB7D CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0x413C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP2 SWAP1 PUSH2 0x5A42 JUMP JUMPDEST PUSH2 0xADC PUSH2 0xB9D CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 JUMP JUMPDEST PUSH2 0x41C4 JUMP JUMPDEST PUSH2 0x54A PUSH2 0xBB0 CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x4206 JUMP JUMPDEST PUSH2 0xBC8 PUSH2 0xBC3 CALLDATASIZE PUSH1 0x4 PUSH2 0x55C8 JUMP JUMPDEST PUSH2 0x423A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP2 SWAP1 PUSH2 0x5A98 JUMP JUMPDEST PUSH2 0x54A PUSH2 0xBE3 CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x4407 JUMP JUMPDEST PUSH2 0x476 PUSH2 0xBF6 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0x10 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH1 0xB SLOAD PUSH2 0x476 JUMP JUMPDEST PUSH2 0x600 PUSH2 0xC1E CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0x45E1 JUMP JUMPDEST PUSH2 0x476 PUSH1 0x12 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x54A PUSH2 0xC3A CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 JUMP JUMPDEST PUSH2 0x47BB JUMP JUMPDEST PUSH2 0x54A PUSH2 0xC4D CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 JUMP JUMPDEST PUSH2 0x4CCF JUMP JUMPDEST PUSH2 0x54A PUSH2 0xC60 CALLDATASIZE PUSH1 0x4 PUSH2 0x55C8 JUMP JUMPDEST PUSH2 0x4DD1 JUMP JUMPDEST PUSH2 0x54A PUSH2 0xC73 CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x4EE2 JUMP JUMPDEST PUSH2 0x476 PUSH1 0x16 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x54A PUSH2 0xC8F CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0x50B9 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 0xD22 JUMPI DUP3 ISZERO PUSH2 0xD10 JUMPI PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x3 ADD SLOAD PUSH2 0x2710 SWAP1 PUSH2 0xCEA SWAP1 DUP7 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0xCF4 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP1 POP PUSH2 0xD00 DUP2 DUP7 PUSH2 0x5B61 JUMP JUMPDEST SWAP5 POP PUSH2 0xD0C DUP2 DUP6 PUSH2 0x5B74 JUMP JUMPDEST SWAP4 POP POP JUMPDEST DUP1 PUSH2 0xD1A DUP2 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xCBA 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 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP3 SWAP2 SWAP1 DUP5 SWAP1 DUP2 LT PUSH2 0xD57 JUMPI PUSH2 0xD57 PUSH2 0x5BA0 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 0xD79 SWAP2 SWAP1 PUSH2 0x5B74 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 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 LT ISZERO PUSH2 0xE55 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0xDD8 JUMPI PUSH2 0xDD8 PUSH2 0x5BA0 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 0xE09 SWAP1 PUSH1 0xA SWAP1 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0xE13 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP1 POP DUP3 DUP9 LT PUSH2 0xE40 JUMPI PUSH2 0x2710 PUSH2 0xE29 DUP4 DUP4 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0xE33 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST PUSH2 0xE3D SWAP1 DUP8 PUSH2 0x5B61 JUMP JUMPDEST SWAP6 POP JUMPDEST POP POP POP POP DUP1 PUSH2 0xE4E SWAP1 PUSH2 0x5B87 JUMP JUMPDEST SWAP1 POP PUSH2 0xD8E JUMP JUMPDEST POP SWAP4 POP POP POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xE6A PUSH2 0x5132 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE75 CALLER PUSH2 0xC94 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 GT PUSH2 0xEA0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BB6 JUMP 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 0xEBF SWAP1 DUP5 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x13 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xED8 SWAP2 SWAP1 PUSH2 0x5B74 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 0x9 SLOAD SWAP2 SWAP4 SWAP1 SWAP3 SWAP1 DUP4 ADD SWAP2 PUSH2 0xF24 SWAP2 PUSH2 0x5B61 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 0xFA2 PUSH1 0x1 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5CCA DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SSTORE JUMP JUMPDEST JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0xFD3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x1027 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 0xE97 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SUB PUSH2 0x1074 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 0xE97 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x10C4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 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 0x10EC DUP5 PUSH2 0xC94 JUMP JUMPDEST SWAP1 POP PUSH2 0x10F8 DUP2 DUP4 PUSH2 0x5B74 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x1108 PUSH2 0x5132 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH2 0x115B 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 0xE97 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 SLOAD DUP2 LT ISZERO PUSH2 0x126B JUMPI PUSH1 0x0 DUP3 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x117B JUMPI PUSH2 0x117B PUSH2 0x5BA0 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 0x11A2 JUMPI POP PUSH1 0x0 DUP2 PUSH1 0x1 ADD SLOAD GT JUMPDEST ISZERO PUSH2 0x1258 JUMPI DUP1 PUSH1 0x2 ADD SLOAD TIMESTAMP LT ISZERO PUSH2 0x11EA 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 0xE97 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD DUP1 SLOAD PUSH1 0x0 SWAP1 SWAP2 SSTORE PUSH2 0x1214 PUSH20 0x55D398326F99059FF775485246999027B3197955 CALLER DUP4 PUSH2 0x517E JUMP JUMPDEST 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 0x12A6 JUMP JUMPDEST POP DUP1 PUSH2 0x1263 DUP2 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x115E 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 0xE97 JUMP JUMPDEST PUSH2 0x12BD PUSH1 0x1 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5CCA DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SSTORE JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 DUP4 DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x12DE JUMPI PUSH2 0x12DE PUSH2 0x5C08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1307 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 0x1322 JUMPI PUSH2 0x1322 PUSH2 0x5C08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x134B 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 0x14A5 JUMPI PUSH1 0x0 DUP8 DUP8 DUP4 DUP2 DUP2 LT PUSH2 0x136D JUMPI PUSH2 0x136D PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1382 SWAP2 SWAP1 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP8 MLOAD SWAP2 SWAP3 POP SWAP1 DUP2 SWAP1 DUP9 SWAP1 DUP6 SWAP1 DUP2 LT PUSH2 0x13B5 JUMPI PUSH2 0x13B5 PUSH2 0x5BA0 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 0x5 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 0x141D 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 0x1441 SWAP2 SWAP1 PUSH2 0x5C1E JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1458 DUP5 DUP5 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x1462 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP1 POP DUP1 DUP9 DUP7 DUP2 MLOAD DUP2 LT PUSH2 0x1477 JUMPI PUSH2 0x1477 PUSH2 0x5BA0 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH2 0x148C DUP2 DUP9 PUSH2 0x5B61 JUMP JUMPDEST SWAP7 POP POP POP POP POP DUP1 DUP1 PUSH2 0x149D SWAP1 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1351 JUMP JUMPDEST POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x14DD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH2 0x14F1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND CALLER DUP4 PUSH2 0x517E 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 PUSH2 0x153D PUSH2 0x5132 JUMP JUMPDEST PUSH1 0x0 DUP1 JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 LT ISZERO PUSH2 0x1648 JUMPI CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0x1579 JUMPI PUSH2 0x1579 PUSH2 0x5BA0 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 PUSH1 0x9 SWAP1 SWAP2 MUL ADD PUSH1 0x7 DUP2 ADD SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 AND EQ DUP1 ISZERO PUSH2 0x15B7 JUMPI POP PUSH1 0x7 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO JUMPDEST ISZERO PUSH2 0x1635 JUMPI PUSH1 0x0 PUSH2 0x15C8 CALLER DUP5 PUSH2 0x2967 JUMP JUMPDEST SWAP1 POP DUP2 PUSH1 0x3 ADD SLOAD DUP2 GT ISZERO PUSH2 0x1633 JUMPI PUSH1 0x0 DUP3 PUSH1 0x3 ADD SLOAD DUP3 PUSH2 0x15E8 SWAP2 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 POP PUSH2 0x15F4 DUP2 DUP7 PUSH2 0x5B61 JUMP JUMPDEST SWAP5 POP DUP1 DUP4 PUSH1 0x3 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x160A SWAP2 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP DUP3 SLOAD PUSH1 0x3 DUP5 ADD SLOAD LT PUSH2 0x1631 JUMPI PUSH1 0x7 DUP4 ADD DUP1 SLOAD PUSH1 0xFF PUSH1 0xA0 SHL NOT AND PUSH1 0x1 PUSH1 0xA0 SHL OR SWAP1 SSTORE JUMPDEST POP JUMPDEST POP JUMPDEST POP DUP1 PUSH2 0x1640 DUP2 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1541 JUMP JUMPDEST POP PUSH1 0x0 DUP2 GT PUSH2 0x1669 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BB6 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD ISZERO PUSH2 0x1772 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SLOAD SWAP1 MLOAD PUSH4 0x2C68BE3 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE SWAP1 SWAP3 PUSH8 0xDE0B6B3A7640000 SWAP3 DUP6 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 0x16E5 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 0x1709 SWAP2 SWAP1 PUSH2 0x5C1E JUMP JUMPDEST PUSH2 0x1713 SWAP2 SWAP1 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x171D SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 SWAP2 POP DUP2 LT PUSH2 0x174B JUMPI CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SSTORE PUSH2 0x1770 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x176A SWAP1 DUP5 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP JUMPDEST POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x179A SWAP1 DUP5 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xA PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP2 MLOAD PUSH1 0x80 DUP2 ADD SWAP1 SWAP3 MSTORE PUSH1 0xB DUP1 SLOAD SWAP2 SWAP4 DUP4 SWAP3 SWAP2 SWAP1 PUSH2 0x17CB DUP4 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x9 SLOAD TIMESTAMP PUSH2 0x17E8 SWAP2 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x20 SWAP3 DUP4 ADD DUP2 SWAP1 MSTORE DUP5 SLOAD PUSH1 0x1 DUP1 DUP3 ADD DUP8 SSTORE PUSH1 0x0 SWAP7 DUP8 MSTORE DUP5 DUP8 KECCAK256 DUP7 MLOAD PUSH1 0x4 SWAP1 SWAP4 MUL ADD SWAP2 DUP3 SSTORE DUP6 DUP6 ADD MLOAD SWAP1 DUP3 ADD SSTORE PUSH1 0x40 DUP1 DUP7 ADD MLOAD PUSH1 0x2 DUP4 ADD SSTORE PUSH1 0x60 SWAP1 SWAP6 ADD MLOAD PUSH1 0x3 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP2 SWAP1 SWAP4 AND OR SWAP1 SWAP2 SSTORE DUP4 MSTORE PUSH1 0xD SWAP1 MSTORE DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x1863 SWAP1 DUP5 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 DUP1 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 PUSH1 0x20 DUP3 ADD MSTORE CALLER SWAP2 PUSH32 0x4A94C2C356E29A6583071E731BDACF2CA56565BA5EFEBCFF6936EB7923B51721 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH2 0x12BD PUSH1 0x1 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5CCA DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SSTORE JUMP JUMPDEST PUSH1 0x19 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x18CB 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 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x1922 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 LT ISZERO PUSH2 0x1A83 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0x196F JUMPI PUSH2 0x196F PUSH2 0x5BA0 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 0x1A47 JUMPI PUSH1 0x8 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD LT PUSH2 0x19EB JUMPI PUSH1 0x8 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP1 SWAP2 SWAP1 PUSH2 0x19E5 SWAP1 DUP5 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP JUMPDEST DUP1 SLOAD PUSH1 0x7 DUP1 DUP4 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD LT PUSH2 0x1A47 JUMPI DUP1 SLOAD PUSH1 0x7 DUP1 DUP4 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP1 SWAP2 SWAP1 PUSH2 0x1A41 SWAP1 DUP5 SWAP1 PUSH2 0x5B74 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 0x1A7C DUP2 PUSH2 0x5B87 JUMP JUMPDEST SWAP1 POP PUSH2 0x1925 JUMP JUMPDEST POP POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x1AB6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x16 SSTORE JUMP JUMPDEST PUSH1 0x4 PUSH1 0x20 MSTORE DUP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1AD7 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 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x1B26 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST DUP3 DUP2 EQ PUSH2 0x1B6D 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 0xE97 JUMP JUMPDEST DUP3 PUSH2 0x1BA9 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 0xE97 JUMP JUMPDEST PUSH1 0x0 DUP1 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x1DA1 JUMPI PUSH1 0x0 DUP7 DUP7 DUP4 DUP2 DUP2 LT PUSH2 0x1BC9 JUMPI PUSH2 0x1BC9 PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1BDE SWAP2 SWAP1 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x1C04 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5C37 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 DUP4 DUP2 DUP2 LT PUSH2 0x1C18 JUMPI PUSH2 0x1C18 PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD GT PUSH2 0x1C3C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5C60 JUMP JUMPDEST DUP4 DUP4 DUP3 DUP2 DUP2 LT PUSH2 0x1C4E JUMPI PUSH2 0x1C4E PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD PUSH1 0xF PUSH1 0x0 DUP9 DUP9 DUP6 DUP2 DUP2 LT PUSH2 0x1C6B JUMPI PUSH2 0x1C6B PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1C80 SWAP2 SWAP1 PUSH2 0x5402 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 0x1CA4 SWAP1 DUP5 PUSH2 0x5B74 JUMP JUMPDEST PUSH2 0x1CAE SWAP2 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP2 POP DUP4 DUP4 DUP3 DUP2 DUP2 LT PUSH2 0x1CC2 JUMPI PUSH2 0x1CC2 PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD PUSH1 0xF PUSH1 0x0 DUP9 DUP9 DUP6 DUP2 DUP2 LT PUSH2 0x1CDF JUMPI PUSH2 0x1CDF PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1CF4 SWAP2 SWAP1 PUSH2 0x5402 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 0x1D20 JUMPI PUSH2 0x1D20 PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1D35 SWAP2 SWAP1 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xEC7E3594982826A1F90C8FC76513357B83A691B7F4E38B8BE04F3D40F9B15839 DUP6 DUP6 DUP5 DUP2 DUP2 LT PUSH2 0x1D71 JUMPI PUSH2 0x1D71 PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD PUSH1 0x40 MLOAD PUSH2 0x1D87 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP1 PUSH2 0x1D99 DUP2 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1BAD JUMP JUMPDEST POP DUP1 PUSH1 0x13 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1DB4 SWAP2 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1DC8 PUSH2 0x5132 JUMP JUMPDEST PUSH1 0x0 DUP3 GT PUSH2 0x1E08 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 0xE97 JUMP JUMPDEST PUSH1 0x0 DUP2 GT PUSH2 0x1E4D 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 0xE97 JUMP JUMPDEST PUSH1 0x16 SLOAD DUP3 LT ISZERO PUSH2 0x1E95 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 0xE97 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1EA0 CALLER PUSH2 0x10C9 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 GT ISZERO PUSH2 0x1EEB 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 0xE97 JUMP JUMPDEST PUSH1 0xC DUP1 SLOAD SWAP1 PUSH1 0x0 PUSH2 0x1EFB DUP4 PUSH2 0x5B87 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0xC SLOAD CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP7 SWAP3 SWAP1 PUSH2 0x1F22 SWAP1 DUP5 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP4 PUSH1 0x13 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1F3B SWAP2 SWAP1 PUSH2 0x5B74 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 0x2040 SWAP2 SWAP1 PUSH2 0x5B74 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 0x1A83 PUSH1 0x1 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5CCA DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE 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 0x20D2 JUMPI PUSH2 0x20D2 PUSH2 0x5C08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x20FB 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 0x2116 JUMPI PUSH2 0x2116 PUSH2 0x5C08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x213F 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 0x215A JUMPI PUSH2 0x215A PUSH2 0x5C08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x21BF JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x21AC 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 0x2178 JUMPI SWAP1 POP JUMPDEST POP SWAP2 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x22FC JUMPI PUSH1 0x0 PUSH1 0x19 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x21E2 JUMPI PUSH2 0x21E2 PUSH2 0x5BA0 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 0x222F JUMPI PUSH2 0x222F PUSH2 0x5BA0 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 0x2266 JUMPI PUSH2 0x2266 PUSH2 0x5BA0 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 0x22DD JUMPI PUSH2 0x22DD PUSH2 0x5BA0 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP POP DUP1 DUP1 PUSH2 0x22F4 SWAP1 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x21C5 JUMP JUMPDEST POP POP SWAP1 SWAP2 SWAP3 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x2332 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 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 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x238F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x23B5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5C37 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND ISZERO PUSH2 0x240E 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 0xE97 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SWAP2 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 0x2464 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x3 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 0x6 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 0x25DC SWAP2 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP 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 DUP10 SWAP3 SWAP1 PUSH2 0x2609 SWAP1 DUP5 SWAP1 PUSH2 0x5B61 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 0x3 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 0x26F4 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 0x2650 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x28CB JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0x274C JUMPI PUSH2 0x274C PUSH2 0x5BA0 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 0x28B8 JUMPI PUSH1 0xE0 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 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 0x2849 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 0x286D SWAP2 SWAP1 PUSH2 0x5C1E JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP3 PUSH1 0x60 ADD MLOAD DUP4 PUSH1 0x0 ADD MLOAD PUSH2 0x2885 SWAP2 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 PUSH2 0x289C DUP4 DUP6 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x28A6 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP1 POP PUSH2 0x28B2 DUP2 DUP9 PUSH2 0x5B61 JUMP JUMPDEST SWAP7 POP POP POP POP JUMPDEST POP DUP1 PUSH2 0x28C3 DUP2 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x271A 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 0xA 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 0x26F4 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 0x290A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP3 SWAP2 SWAP1 DUP5 SWAP1 DUP2 LT PUSH2 0x2994 JUMPI PUSH2 0x2994 PUSH2 0x5BA0 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 0x29B6 SWAP2 SWAP1 PUSH2 0x5B74 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 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 LT ISZERO PUSH2 0xE55 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0x2A15 JUMPI PUSH2 0x2A15 PUSH2 0x5BA0 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 0x2A5F JUMPI DUP8 SLOAD PUSH2 0x2710 SWAP1 PUSH2 0x2A48 SWAP1 DUP4 SWAP1 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x2A52 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST PUSH2 0x2A5C SWAP1 DUP7 PUSH2 0x5B61 JUMP JUMPDEST SWAP5 POP JUMPDEST POP POP POP DUP1 PUSH2 0x2A6C SWAP1 PUSH2 0x5B87 JUMP JUMPDEST SWAP1 POP PUSH2 0x29CB JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A7D PUSH2 0x51E2 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x2AA4 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH1 0x0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x2AC0 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x2ACE JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x2AEC JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x2B16 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0x2B1E PUSH2 0x520B JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND CALLER SWAP1 DUP2 OR DUP3 SSTORE DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT SWAP1 DUP2 AND DUP5 OR SWAP1 SWAP2 SSTORE PUSH32 0x968A1791AD31618C63B086103BAA804AF57C3CA0EFA33A191010FBB7741579FC DUP1 SLOAD DUP3 AND DUP5 OR SWAP1 SSTORE PUSH32 0x62CF4150B20D3255EBA0565C087B9107980561F805CA8D8F9DAA6EF061B51021 DUP1 SLOAD DUP3 AND DUP5 OR SWAP1 SSTORE PUSH32 0x7C745CF21E9841960ACA585C508E8B656AB26F500F65E063E363F1E5431CB33 DUP1 SLOAD DUP3 AND DUP5 OR SWAP1 SSTORE PUSH20 0x8A9281ECECE9B599C2F42D829C3D0D8E74B7083E DUP5 MSTORE PUSH32 0x3951584E4DF0C05D84015A72C4987AD1375F6F18E35CB23B25E1962D5CDC88B6 DUP1 SLOAD SWAP1 SWAP2 AND SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE PUSH1 0xF SWAP1 MSTORE PUSH10 0x21E19E0C9BAB2400000 PUSH32 0x49B20F23A4C98683B2444D4FCEACC6FEA988F6FF51924040A449EC627E73E836 DUP2 SWAP1 SSTORE PUSH1 0x13 DUP1 SLOAD SWAP2 SWAP3 SWAP1 SWAP2 PUSH2 0x2C50 SWAP1 DUP5 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH3 0x1FA40 PUSH1 0x9 SSTORE DUP4 ISZERO PUSH2 0x2CA2 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x2CD8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH2 0x2CF7 PUSH20 0x55D398326F99059FF775485246999027B3197955 CALLER DUP4 PUSH2 0x517E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH20 0x55D398326F99059FF775485246999027B3197955 SWAP1 CALLER SWAP1 PUSH32 0xA92FF919B850E4909AB2261D907EF955F11BC1716733A6CBECE38D163A69AF8A SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x2D74 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x12 SLOAD PUSH1 0x0 SWAP1 ISZERO PUSH2 0x2DBF JUMPI PUSH1 0x0 PUSH1 0xE PUSH1 0x0 PUSH1 0x1 PUSH1 0x12 SLOAD PUSH2 0x2D94 SWAP2 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH2 0x2DBB DUP5 PUSH1 0x13 SLOAD DUP4 PUSH1 0x1 ADD SLOAD DUP5 PUSH1 0x2 ADD SLOAD DUP8 PUSH2 0x521B 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 0x2E6D DUP4 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x2EA7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH2 0x12BD PUSH20 0x55D398326F99059FF775485246999027B3197955 CALLER ADDRESS DUP5 PUSH2 0x52B4 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x2EF6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH2 0x2F06 DUP7 DUP7 DUP7 DUP7 DUP7 DUP7 TIMESTAMP TIMESTAMP PUSH2 0x2435 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 0x2F46 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5C88 JUMP JUMPDEST PUSH1 0x2 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x2F93 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 0xE97 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x17 SLOAD PUSH1 0x0 SWAP1 PUSH2 0x2710 SWAP1 PUSH2 0x2FA9 SWAP1 DUP5 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x2FB3 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2FC1 DUP3 DUP5 PUSH2 0x5B74 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 0x2FE5 SWAP1 DUP5 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x13 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2FFE SWAP2 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP DUP2 ISZERO PUSH2 0x3045 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 0x30A5 SWAP2 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 POP DUP1 DUP3 EQ PUSH2 0x3166 JUMPI PUSH1 0x0 PUSH1 0x19 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x30C3 JUMPI PUSH2 0x30C3 PUSH2 0x5BA0 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 0x310F JUMPI PUSH2 0x310F PUSH2 0x5BA0 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 0x3177 JUMPI PUSH2 0x3177 PUSH2 0x5CB3 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 0x323A 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 0xE97 JUMP JUMPDEST PUSH1 0x12 SLOAD DUP3 LT PUSH2 0x3281 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 0xE97 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x328D DUP5 DUP5 PUSH2 0x5B74 JUMP JUMPDEST PUSH2 0x3298 SWAP1 PUSH1 0x1 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x32B4 JUMPI PUSH2 0x32B4 PUSH2 0x5C08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3317 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x3304 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 0x32D2 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x33AE JUMPI PUSH1 0xE PUSH1 0x0 PUSH2 0x3333 DUP4 DUP10 PUSH2 0x5B61 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 0x3390 JUMPI PUSH2 0x3390 PUSH2 0x5BA0 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x33A6 SWAP1 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x331D JUMP JUMPDEST POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x33BF PUSH2 0x5132 JUMP JUMPDEST PUSH1 0x0 DUP2 GT PUSH2 0x33DF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5C60 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x14 SLOAD GT PUSH2 0x3428 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x4275796F7574206E6F7420617661696C61626C65 PUSH1 0x60 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xE97 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3433 CALLER PUSH2 0x10C9 JUMP JUMPDEST SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x347E 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 0xE97 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2710 PUSH1 0x14 SLOAD DUP5 PUSH2 0x3491 SWAP2 SWAP1 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x349B SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP3 SWAP4 POP DUP6 SWAP3 SWAP1 SWAP2 SWAP1 PUSH2 0x34BF SWAP1 DUP5 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x13 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x34D8 SWAP2 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0xC DUP1 SLOAD SWAP1 PUSH1 0x0 PUSH2 0x34ED DUP4 PUSH2 0x5B87 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0x60 DUP2 ADD DUP5 MSTORE PUSH1 0xC SLOAD DUP2 MSTORE SWAP2 DUP3 ADD DUP5 SWAP1 MSTORE PUSH1 0x9 SLOAD SWAP1 SWAP3 DUP3 ADD SWAP1 PUSH2 0x352A SWAP1 TIMESTAMP PUSH2 0x5B61 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 POP PUSH2 0x12BD PUSH1 0x1 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5CCA DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SSTORE JUMP JUMPDEST PUSH1 0x1B DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x35B9 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 0x3630 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 CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x36BB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH2 0x2710 DUP2 GT ISZERO PUSH2 0x370D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x50657263656E746167652063616E6E6F74206578636565642031303025000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xE97 JUMP JUMPDEST PUSH1 0x14 SSTORE JUMP JUMPDEST PUSH2 0x371A PUSH2 0x5132 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 LT PUSH2 0x3770 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 0x92DCECC2D8D2C840ECCAE6E8D2DCCE40D2DCC8CAF PUSH1 0x5B SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xE97 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0x3791 JUMPI PUSH2 0x3791 PUSH2 0x5BA0 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 ISZERO PUSH2 0x37F3 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 0x56657374696E6720636F6D706C657465 PUSH1 0x80 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xE97 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x37FF CALLER DUP5 PUSH2 0x2967 JUMP JUMPDEST SWAP1 POP DUP2 PUSH1 0x3 ADD SLOAD DUP2 LT ISZERO PUSH2 0x384C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x125B9D985B1A590818DB185A5B48185B5BDD5B9D PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xE97 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x3 ADD SLOAD DUP3 PUSH2 0x385E SWAP2 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 GT PUSH2 0x3880 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BB6 JUMP JUMPDEST DUP1 DUP4 PUSH1 0x3 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x3894 SWAP2 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP DUP3 SLOAD PUSH1 0x3 DUP5 ADD SLOAD LT PUSH2 0x38BB JUMPI PUSH1 0x7 DUP4 ADD DUP1 SLOAD PUSH1 0xFF PUSH1 0xA0 SHL NOT AND PUSH1 0x1 PUSH1 0xA0 SHL OR SWAP1 SSTORE JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD ISZERO PUSH2 0x39C9 JUMPI PUSH1 0x7 DUP4 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SLOAD SWAP1 MLOAD PUSH4 0x2C68BE3 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE SWAP1 SWAP3 PUSH8 0xDE0B6B3A7640000 SWAP3 DUP6 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 0x393C 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 0x3960 SWAP2 SWAP1 PUSH2 0x5C1E JUMP JUMPDEST PUSH2 0x396A SWAP2 SWAP1 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x3974 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 SWAP2 POP DUP2 LT PUSH2 0x39A2 JUMPI CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SSTORE PUSH2 0x39C7 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x39C1 SWAP1 DUP5 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP JUMPDEST POP JUMPDEST PUSH1 0x7 DUP4 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x39F7 SWAP1 DUP5 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xA PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP2 MLOAD PUSH1 0x80 DUP2 ADD SWAP1 SWAP3 MSTORE PUSH1 0xB DUP1 SLOAD SWAP2 SWAP4 DUP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3A28 DUP4 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x9 SLOAD TIMESTAMP PUSH2 0x3A45 SWAP2 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x7 DUP7 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x20 SWAP4 DUP5 ADD MSTORE DUP5 SLOAD PUSH1 0x1 DUP1 DUP3 ADD DUP8 SSTORE PUSH1 0x0 SWAP7 DUP8 MSTORE DUP5 DUP8 KECCAK256 DUP7 MLOAD PUSH1 0x4 SWAP1 SWAP4 MUL ADD SWAP2 DUP3 SSTORE DUP6 DUP6 ADD MLOAD SWAP1 DUP3 ADD SSTORE PUSH1 0x40 DUP1 DUP7 ADD MLOAD PUSH1 0x2 DUP4 ADD SSTORE PUSH1 0x60 SWAP1 SWAP6 ADD MLOAD PUSH1 0x3 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP2 DUP4 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE SWAP1 SLOAD AND DUP4 MSTORE PUSH1 0xD SWAP1 MSTORE DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x3AC8 SWAP1 DUP5 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 DUP1 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 PUSH1 0x20 DUP3 ADD MSTORE CALLER SWAP2 PUSH32 0x4A94C2C356E29A6583071E731BDACF2CA56565BA5EFEBCFF6936EB7923B51721 SWAP2 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP PUSH2 0x12BD PUSH1 0x1 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5CCA DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SSTORE JUMP JUMPDEST PUSH2 0x3B47 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 0x126B JUMPI DUP4 DUP3 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x3B7D JUMPI PUSH2 0x3B7D PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 ADD SLOAD SUB PUSH2 0x3BE6 JUMPI DUP2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x3BA6 JUMPI PUSH2 0x3BA6 PUSH2 0x5BA0 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 0xE5C JUMP JUMPDEST DUP1 PUSH2 0x3BF0 DUP2 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3B61 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x3C27 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3C75 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 0x496E76616C696420746F6B656E2061646472657373 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xE97 JUMP JUMPDEST PUSH1 0x0 DUP2 GT DUP1 ISZERO PUSH2 0x3C87 JUMPI POP PUSH2 0x2710 DUP2 GT ISZERO JUMPDEST PUSH2 0x3CC8 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 0x496E76616C69642070657263656E74616765 PUSH1 0x70 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xE97 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 PUSH2 0x3CE9 SWAP2 PUSH2 0x53AB JUMP JUMPDEST PUSH1 0x0 DUP3 JUMPDEST PUSH2 0x2710 DUP3 LT ISZERO PUSH2 0x3D86 JUMPI DUP3 PUSH2 0x2710 PUSH2 0x3D05 DUP3 DUP6 PUSH2 0x5B61 JUMP JUMPDEST GT ISZERO PUSH2 0x3D1A JUMPI PUSH2 0x3D17 DUP4 PUSH2 0x2710 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP2 MLOAD DUP1 DUP4 ADD SWAP1 SWAP3 MSTORE DUP6 DUP3 MSTORE DUP2 DUP4 ADD DUP6 DUP2 MSTORE DUP2 SLOAD PUSH1 0x1 DUP2 DUP2 ADD DUP5 SSTORE SWAP3 DUP7 MSTORE SWAP4 SWAP1 SWAP5 KECCAK256 SWAP2 MLOAD PUSH1 0x2 SWAP1 SWAP4 MUL SWAP1 SWAP2 ADD SWAP2 DUP3 SSTORE SWAP2 MLOAD SWAP2 ADD SSTORE PUSH2 0x3D72 DUP2 DUP5 PUSH2 0x5B61 JUMP JUMPDEST SWAP3 POP PUSH2 0x3D7E DUP6 DUP4 PUSH2 0x5B61 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3CED JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 PUSH32 0xDE4B6CCC38B84F88129403B65A309F9B1C41D4C316BC2118D7614E449B9D4C45 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x3DF3 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 0x3E36 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 0xE97 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 0x3 PUSH1 0x20 MSTORE DUP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x3EA1 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 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x60 SWAP3 DUP4 SWAP3 SWAP1 SWAP2 DUP6 SWAP1 DUP2 LT PUSH2 0x3F34 JUMPI PUSH2 0x3F34 PUSH2 0x5BA0 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 0x4 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 0x3F7C JUMPI PUSH2 0x3F7C PUSH2 0x5C08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3FA5 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 0x3FC2 JUMPI PUSH2 0x3FC2 PUSH2 0x5C08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3FEB 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 0x4098 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0x4023 JUMPI PUSH2 0x4023 PUSH2 0x5BA0 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 0x4047 SWAP2 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x4059 JUMPI PUSH2 0x4059 PUSH2 0x5BA0 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 0x407C JUMPI PUSH2 0x407C PUSH2 0x5BA0 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE POP PUSH2 0x4091 DUP2 PUSH2 0x5B87 JUMP JUMPDEST SWAP1 POP PUSH2 0x3FF1 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 0x40B8 DUP6 PUSH2 0xC94 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 0x40DF SWAP1 DUP3 SWAP1 PUSH2 0x5B74 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 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x4137 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x8 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 0x26F4 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 0x4174 JUMP JUMPDEST PUSH1 0x11 PUSH1 0x20 MSTORE DUP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x41E0 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 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x4235 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x9 SSTORE JUMP JUMPDEST PUSH1 0x1B SLOAD PUSH1 0x60 SWAP1 DUP4 LT PUSH2 0x428E 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 0xE97 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x429A DUP4 DUP6 PUSH2 0x5B61 JUMP JUMPDEST PUSH1 0x1B SLOAD SWAP1 SWAP2 POP DUP2 GT ISZERO PUSH2 0x42AC JUMPI POP PUSH1 0x1B SLOAD JUMPDEST PUSH1 0x0 PUSH2 0x42B8 DUP6 DUP4 PUSH2 0x5B74 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x42CF JUMPI PUSH2 0x42CF PUSH2 0x5C08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x434B JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x4338 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 0x42ED JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP DUP5 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x33AE JUMPI PUSH1 0x1B DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x436B JUMPI PUSH2 0x436B PUSH2 0x5BA0 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 0x43D9 DUP9 DUP5 PUSH2 0x5B74 JUMP JUMPDEST DUP2 MLOAD DUP2 LT PUSH2 0x43E9 JUMPI PUSH2 0x43E9 PUSH2 0x5BA0 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x43FF SWAP1 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x4350 JUMP JUMPDEST PUSH2 0x440F PUSH2 0x5132 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 LT PUSH2 0x4465 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 0x92DCECC2D8D2C840ECCAE6E8D2DCCE40D2DCC8CAF PUSH1 0x5B SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xE97 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0x4486 JUMPI PUSH2 0x4486 PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x9 MUL ADD SWAP1 POP PUSH1 0x0 PUSH2 0x44A2 CALLER DUP5 PUSH2 0xD2A JUMP JUMPDEST SWAP1 POP DUP2 PUSH1 0x4 ADD SLOAD DUP2 LT ISZERO PUSH2 0x44EF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x125B9D985B1A590818DB185A5B48185B5BDD5B9D PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xE97 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x4 ADD SLOAD DUP3 PUSH2 0x4501 SWAP2 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 GT PUSH2 0x4523 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BB6 JUMP JUMPDEST DUP1 DUP4 PUSH1 0x4 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x4537 SWAP2 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP2 MLOAD PUSH1 0x60 DUP2 ADD SWAP1 SWAP3 MSTORE SWAP1 DUP1 PUSH2 0x4565 DUP8 PUSH3 0xF4240 PUSH2 0x5B61 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x9 SLOAD TIMESTAMP PUSH2 0x457E SWAP2 SWAP1 PUSH2 0x5B61 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 0x4E69FDC49495BCAB2B4375781457BA16653A90EB4FFB6588351BDC39071433E2 SWAP2 ADD PUSH2 0x3B01 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 0x461E SWAP1 DUP4 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 SUB PUSH2 0x464F 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 0x4101 SWAP1 POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4667 JUMPI PUSH2 0x4667 PUSH2 0x5C08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x4690 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 0x46AB JUMPI PUSH2 0x46AB PUSH2 0x5C08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x46D4 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP5 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x47B0 JUMPI PUSH1 0x0 PUSH2 0x46EE DUP3 DUP6 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 POP DUP1 DUP9 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x4703 JUMPI PUSH2 0x4703 PUSH2 0x5BA0 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP5 ISZERO PUSH2 0x477C JUMPI PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x3 ADD SLOAD PUSH2 0x2710 SWAP1 PUSH2 0x4734 SWAP1 DUP9 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x473E SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP1 POP DUP1 DUP9 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x4753 JUMPI PUSH2 0x4753 PUSH2 0x5BA0 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH2 0x4768 DUP2 DUP9 PUSH2 0x5B61 JUMP JUMPDEST SWAP7 POP PUSH2 0x4774 DUP2 DUP8 PUSH2 0x5B74 JUMP JUMPDEST SWAP6 POP POP PUSH2 0x479D JUMP JUMPDEST PUSH1 0x0 DUP8 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x4790 JUMPI PUSH2 0x4790 PUSH2 0x5BA0 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST POP DUP1 PUSH2 0x47A8 DUP2 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x46DA JUMP JUMPDEST POP POP POP POP SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH2 0x47C3 PUSH2 0x5132 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 0x4804 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5C88 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SUB PUSH2 0x4855 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 0xE97 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 DUP3 ADD SLOAD PUSH1 0x3 DUP4 ADD SLOAD PUSH1 0x0 DUP3 DUP5 GT PUSH2 0x4871 JUMPI PUSH1 0x0 PUSH2 0x487B JUMP JUMPDEST PUSH2 0x487B DUP4 DUP6 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP5 PUSH2 0x488C DUP4 PUSH2 0x2710 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x4896 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2710 PUSH2 0x48A7 DUP4 DUP1 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x48B1 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2710 PUSH2 0x48C2 DUP4 DUP10 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x48CC SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x48DA DUP3 DUP10 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 POP PUSH2 0x48FC PUSH20 0x55D398326F99059FF775485246999027B3197955 CALLER DUP14 DUP11 PUSH2 0x52B4 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x491B SWAP1 DUP5 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x13 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x4934 SWAP2 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP10 SWAP3 SWAP1 PUSH2 0x4961 SWAP1 DUP5 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1B PUSH1 0x40 MLOAD DUP1 PUSH1 0xC0 ADD PUSH1 0x40 MSTORE DUP1 DUP9 DUP2 MSTORE PUSH1 0x20 ADD TIMESTAMP DUP2 MSTORE PUSH1 0x20 ADD DUP11 DUP2 MSTORE PUSH1 0x20 ADD DUP10 DUP2 MSTORE PUSH1 0x20 ADD DUP14 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 DUP13 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 DUP12 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 DUP14 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 DUP13 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 0x4B10 SWAP2 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 POP DUP1 DUP3 EQ PUSH2 0x4BD1 JUMPI PUSH1 0x0 PUSH1 0x19 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x4B2E JUMPI PUSH2 0x4B2E PUSH2 0x5BA0 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 0x4B7A JUMPI PUSH2 0x4B7A PUSH2 0x5BA0 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 0x4BE2 JUMPI PUSH2 0x4BE2 PUSH2 0x5CB3 JUMP JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 DUP1 DUP3 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 SSTORE PUSH1 0x1 DUP3 ADD PUSH1 0x0 SWAP1 SSTORE POP POP SWAP1 SSTORE PUSH1 0x1A PUSH1 0x0 DUP15 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 DUP14 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP14 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x7BB39D095B04A9986ED34ADF14D74C33294D0A9E807F02BF634D532507422EBA DUP12 DUP16 PUSH1 0x40 MLOAD PUSH2 0x4CA5 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP POP POP POP POP POP PUSH2 0x1A83 PUSH1 0x1 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5CCA DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SSTORE JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x4CFE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x4D24 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5C37 JUMP JUMPDEST PUSH1 0x0 DUP2 GT PUSH2 0x4D44 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5C60 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 0x4D6B SWAP2 PUSH2 0x5B74 JUMP JUMPDEST PUSH2 0x4D75 SWAP2 SWAP1 PUSH2 0x5B61 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 0x4DC5 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 0x4E09 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5C88 JUMP JUMPDEST PUSH1 0x2 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x4E56 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 0xE97 JUMP JUMPDEST PUSH1 0x0 DUP3 GT PUSH2 0x4E9B 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 0xE97 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 PUSH2 0x4EEA PUSH2 0x5132 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xA PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH2 0x4F3F 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 0xE97 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 SLOAD DUP2 LT ISZERO PUSH2 0x507C JUMPI PUSH1 0x0 DUP3 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x4F5F JUMPI PUSH2 0x4F5F PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x4 MUL ADD SWAP1 POP DUP4 DUP2 PUSH1 0x0 ADD SLOAD EQ DUP1 ISZERO PUSH2 0x4F86 JUMPI POP PUSH1 0x0 DUP2 PUSH1 0x1 ADD SLOAD GT JUMPDEST ISZERO PUSH2 0x5069 JUMPI DUP1 PUSH1 0x2 ADD SLOAD TIMESTAMP LT ISZERO PUSH2 0x4FD0 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 0x15995CDD1A5B99C81B1BD8DAD959 PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xE97 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD DUP1 SLOAD PUSH1 0x3 DUP4 ADD SLOAD PUSH1 0x0 SWAP3 DUP4 SWAP1 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 DUP4 MSTORE PUSH1 0xD PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP1 SLOAD SWAP3 SWAP4 SWAP2 SWAP3 DUP5 SWAP3 SWAP1 PUSH2 0x500A SWAP1 DUP5 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x5024 SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND CALLER DUP5 PUSH2 0x517E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP9 SWAP1 MSTORE CALLER SWAP2 PUSH32 0x933735AA8DE6D7547D0126171B2F31B9C34DD00F3ECD4BE85A0BA047DB4FAFEF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP PUSH2 0x12A6 JUMP JUMPDEST POP DUP1 PUSH2 0x5074 DUP2 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x4F42 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x15995CDD1A5B99C81B9BDD08199BDD5B99 PUSH1 0x7A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xE97 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x50E8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x510E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5C37 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 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5CCA DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP1 SLOAD PUSH1 0x1 NOT ADD PUSH2 0x5164 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 SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5CCA DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x44 DUP3 ADD DUP4 SWAP1 MSTORE PUSH2 0x51DD SWAP2 DUP6 SWAP2 DUP3 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP PUSH2 0x52F3 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0xE5C JUMP JUMPDEST PUSH2 0x5213 PUSH2 0x5364 JUMP JUMPDEST PUSH2 0xFA2 PUSH2 0x5389 JUMP JUMPDEST PUSH1 0x0 DUP3 ISZERO DUP1 PUSH2 0x5228 JUMPI POP DUP5 ISZERO JUMPDEST ISZERO PUSH2 0x5235 JUMPI POP PUSH1 0x0 PUSH2 0x52AB JUMP JUMPDEST PUSH1 0x0 DUP6 PUSH2 0x5244 DUP9 PUSH2 0x2710 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x524E SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP5 PUSH2 0x525F DUP8 PUSH2 0x2710 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x5269 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP1 POP DUP1 DUP3 GT PUSH2 0x527D JUMPI PUSH1 0x0 SWAP3 POP POP POP PUSH2 0x52AB JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5289 DUP3 DUP5 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2710 PUSH2 0x529A DUP8 DUP5 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x52A4 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP5 POP POP POP POP POP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 DUP2 AND PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD DUP4 SWAP1 MSTORE PUSH2 0x52ED SWAP2 DUP7 SWAP2 DUP3 AND SWAP1 PUSH4 0x23B872DD SWAP1 PUSH1 0x84 ADD PUSH2 0x51AB JUMP JUMPDEST 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 0x5316 JUMPI PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST POP POP PUSH1 0x0 MLOAD RETURNDATASIZE SWAP2 POP DUP2 ISZERO PUSH2 0x532E JUMPI DUP1 PUSH1 0x1 EQ ISZERO PUSH2 0x533B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0x52ED 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 0xE97 JUMP JUMPDEST PUSH2 0x536C PUSH2 0x5391 JUMP JUMPDEST PUSH2 0xFA2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x516A PUSH2 0x5364 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x539B PUSH2 0x51E2 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST POP DUP1 SLOAD PUSH1 0x0 DUP3 SSTORE PUSH1 0x2 MUL SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x12BD SWAP2 SWAP1 JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x53E2 JUMPI PUSH1 0x0 DUP1 DUP3 SSTORE PUSH1 0x1 DUP3 ADD SSTORE PUSH1 0x2 ADD PUSH2 0x53C8 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x53FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5414 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x541D DUP3 PUSH2 0x53E6 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5437 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x5440 DUP4 PUSH2 0x53E6 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 0x5460 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x5479 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5490 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 0x40A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x54BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x54D4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x54E0 DUP6 DUP3 DUP7 ADD PUSH2 0x5467 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 0x551C JUMPI DUP2 MLOAD DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x5500 JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x0 PUSH2 0x553A PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0x54EC JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x554C DUP2 DUP7 PUSH2 0x54EC 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 0x5573 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH2 0x558A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x5596 DUP9 DUP4 DUP10 ADD PUSH2 0x5467 JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x55AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x55BC DUP8 DUP3 DUP9 ADD PUSH2 0x5467 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 0x55DB 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 0x562D 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 0x5608 JUMP JUMPDEST POP POP DUP6 DUP4 SUB DUP2 DUP8 ADD MSTORE PUSH2 0x5640 DUP4 DUP10 PUSH2 0x54EC 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 0x56A4 JUMPI PUSH2 0x5694 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 0x565A 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 0x56C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x56CF DUP4 PUSH2 0x53E6 JUMP JUMPDEST SWAP2 POP PUSH2 0x56DD PUSH1 0x20 DUP5 ADD PUSH2 0x53E6 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 0x5703 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x570C DUP10 PUSH2 0x53E6 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 0x572F PUSH1 0x80 DUP11 ADD PUSH2 0x53E6 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 0x57F2 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 0x576E 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 0x57F2 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 0x581C JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5874 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 0x58A4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x58AD DUP8 PUSH2 0x53E6 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 0x58D0 PUSH1 0x80 DUP9 ADD PUSH2 0x53E6 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 0x5950 JUMPI PUSH2 0x593D 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 0x58FF 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 0xE5C 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 0xE5C JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x59C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x59CF DUP5 PUSH2 0x53E6 JUMP JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD PUSH2 0xE5C 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 0x5A30 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x54EC JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x52AB DUP2 DUP6 PUSH2 0x54EC 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 0x5950 JUMPI PUSH2 0x5A85 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 0x5A5E 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 0x57F2 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 0x5AB5 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 0xE5C JUMPI PUSH2 0xE5C PUSH2 0x5B12 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x5B5C 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 0xE5C JUMPI PUSH2 0xE5C PUSH2 0x5B12 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0xE5C JUMPI PUSH2 0xE5C PUSH2 0x5B12 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP3 ADD PUSH2 0x5B99 JUMPI PUSH2 0x5B99 PUSH2 0x5B12 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 0x10 SWAP1 DUP3 ADD MSTORE PUSH16 0x4E6F7468696E6720746F20636C61696D PUSH1 0x80 SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP 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 0x5C30 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 0xE SWAP1 DUP3 ADD MSTORE PUSH14 0x125B9D985B1A5908185B5BDD5B9D PUSH1 0x92 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 SWAP12 PUSH24 0x9B17422D0DF92223018B32B4D1FA46E071723D6817E2486D STOP EXTCODESIZE 0xEC 0xC5 PUSH0 STOP LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF6 0xC9 PUSH9 0x7424E98A5EEDC2EBD9 PUSH29 0x79E0C5A0CDE5C699D22518C725AE3FFACDDC4764736F6C634300081400 CALLER ","sourceMap":"513:49159:13:-:0;;;6193:53;;;;;;;;;-1:-1:-1;6217:22:13;:20;:22::i;:::-;513:49159;;7709:422:0;3147:66;7898:15;;;;;;;7894:76;;;7936:23;;-1:-1:-1;;;7936:23:0;;;;;;;;;;;7894:76;7983:14;;-1:-1:-1;;;;;7983:14:0;;;:34;7979:146;;8033:33;;-1:-1:-1;;;;;;8033:33:0;-1:-1:-1;;;;;8033:33:0;;;;;8085:29;;158:50:16;;;8085:29:0;;146:2:16;131:18;8085:29:0;;;;;;;7979:146;7758:373;7709:422::o;14:200:16:-;513:49159:13;;;;;;"},"deployedBytecode":{"functionDebugData":{"@__ReentrancyGuard_init_307":{"entryPoint":21003,"id":307,"parameterSlots":0,"returnSlots":0},"@__ReentrancyGuard_init_unchained_325":{"entryPoint":21385,"id":325,"parameterSlots":0,"returnSlots":0},"@_callOptionalReturn_1700":{"entryPoint":21235,"id":1700,"parameterSlots":2,"returnSlots":0},"@_checkInitializing_175":{"entryPoint":21348,"id":175,"parameterSlots":0,"returnSlots":0},"@_getInitializableStorage_266":{"entryPoint":20962,"id":266,"parameterSlots":0,"returnSlots":1},"@_getReentrancyGuardStorage_295":{"entryPoint":null,"id":295,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_252":{"entryPoint":null,"id":252,"parameterSlots":0,"returnSlots":1},"@_isInitializing_243":{"entryPoint":21393,"id":243,"parameterSlots":0,"returnSlots":1},"@_nonReentrantAfter_377":{"entryPoint":20842,"id":377,"parameterSlots":0,"returnSlots":0},"@_nonReentrantBefore_361":{"entryPoint":20786,"id":361,"parameterSlots":0,"returnSlots":0},"@addBot_2279":{"entryPoint":20665,"id":2279,"parameterSlots":1,"returnSlots":0},"@addOwner_2225":{"entryPoint":9056,"id":2225,"parameterSlots":1,"returnSlots":0},"@authorizedBots_1896":{"entryPoint":null,"id":1896,"parameterSlots":0,"returnSlots":0},"@batchCreateUserStakes_3173":{"entryPoint":6903,"id":3173,"parameterSlots":4,"returnSlots":0},"@buySellStake_3983":{"entryPoint":18363,"id":3983,"parameterSlots":2,"returnSlots":0},"@calculateUnclaimedFunds_2723":{"entryPoint":3220,"id":2723,"parameterSlots":1,"returnSlots":1},"@calculateUnlockPercentage_2597":{"entryPoint":21019,"id":2597,"parameterSlots":5,"returnSlots":1},"@cancelSellStake_3721":{"entryPoint":12046,"id":3721,"parameterSlots":1,"returnSlots":0},"@cancellationFee_1980":{"entryPoint":null,"id":1980,"parameterSlots":0,"returnSlots":0},"@claimAllVestingByToken_5007":{"entryPoint":5429,"id":5007,"parameterSlots":1,"returnSlots":0},"@claimBonus_5096":{"entryPoint":17415,"id":5096,"parameterSlots":1,"returnSlots":0},"@claimUnlockedFunds_2839":{"entryPoint":3682,"id":2839,"parameterSlots":0,"returnSlots":0},"@claimVesting_4824":{"entryPoint":14098,"id":4824,"parameterSlots":1,"returnSlots":0},"@clearVesting_4083":{"entryPoint":6387,"id":4083,"parameterSlots":1,"returnSlots":0},"@createUserStake_3068":{"entryPoint":19663,"id":3068,"parameterSlots":2,"returnSlots":0},"@createVesting_4115":{"entryPoint":11975,"id":4115,"parameterSlots":6,"returnSlots":0},"@createVesting_4167":{"entryPoint":9269,"id":4167,"parameterSlots":8,"returnSlots":0},"@currentEpochId_1965":{"entryPoint":null,"id":1965,"parameterSlots":0,"returnSlots":0},"@depositRewards_2350":{"entryPoint":11896,"id":2350,"parameterSlots":1,"returnSlots":0},"@dollarsVested_1916":{"entryPoint":null,"id":1916,"parameterSlots":0,"returnSlots":0},"@endEpoch_2663":{"entryPoint":11589,"id":2663,"parameterSlots":3,"returnSlots":0},"@epochs_1949":{"entryPoint":null,"id":1949,"parameterSlots":0,"returnSlots":0},"@getAllSellStakes_5325":{"entryPoint":8368,"id":5325,"parameterSlots":0,"returnSlots":3},"@getAllWithdrawStakes_3188":{"entryPoint":16700,"id":3188,"parameterSlots":1,"returnSlots":1},"@getAllWithdrawVestings_5111":{"entryPoint":10450,"id":5111,"parameterSlots":1,"returnSlots":1},"@getEpoch_3259":{"entryPoint":15809,"id":3259,"parameterSlots":1,"returnSlots":1},"@getEpochs_3330":{"entryPoint":12792,"id":3330,"parameterSlots":2,"returnSlots":1},"@getMarketplaceHistoryCount_5429":{"entryPoint":null,"id":5429,"parameterSlots":0,"returnSlots":1},"@getMarketplaceHistory_5419":{"entryPoint":16954,"id":5419,"parameterSlots":2,"returnSlots":1},"@getNetStake_2748":{"entryPoint":4297,"id":2748,"parameterSlots":1,"returnSlots":1},"@getSellStake_5343":{"entryPoint":13820,"id":5343,"parameterSlots":2,"returnSlots":1},"@getUnclaimedFundsBreakdown_3464":{"entryPoint":17889,"id":3464,"parameterSlots":1,"returnSlots":3},"@getUnlockedVestingBonus_4455":{"entryPoint":3370,"id":4455,"parameterSlots":2,"returnSlots":1},"@getUnlockedVesting_4257":{"entryPoint":10599,"id":4257,"parameterSlots":2,"returnSlots":1},"@getUserMarketplaceSales_5442":{"entryPoint":null,"id":5442,"parameterSlots":1,"returnSlots":1},"@getUserStakeInfo_2778":{"entryPoint":16553,"id":2778,"parameterSlots":1,"returnSlots":3},"@getUserTotalUnclaimedUsdValue_4650":{"entryPoint":9983,"id":4650,"parameterSlots":1,"returnSlots":1},"@getVestedTotals_4572":{"entryPoint":4800,"id":4572,"parameterSlots":2,"returnSlots":3},"@getVestingSchedule_4356":{"entryPoint":16131,"id":4356,"parameterSlots":2,"returnSlots":2},"@getVestings_4470":{"entryPoint":9752,"id":4470,"parameterSlots":1,"returnSlots":1},"@getWithdrawStake_3238":{"entryPoint":15139,"id":3238,"parameterSlots":2,"returnSlots":1},"@getWithdrawVestingCounter_5120":{"entryPoint":null,"id":5120,"parameterSlots":0,"returnSlots":1},"@initialize_2193":{"entryPoint":10867,"id":2193,"parameterSlots":0,"returnSlots":0},"@instantBuyoutPercent_1969":{"entryPoint":null,"id":1969,"parameterSlots":0,"returnSlots":0},"@instantBuyout_3019":{"entryPoint":13239,"id":3019,"parameterSlots":1,"returnSlots":0},"@lockupDuration_1922":{"entryPoint":null,"id":1922,"parameterSlots":0,"returnSlots":0},"@marketplaceHistory_1998":{"entryPoint":13737,"id":1998,"parameterSlots":0,"returnSlots":0},"@marketplaceMin_1978":{"entryPoint":null,"id":1978,"parameterSlots":0,"returnSlots":0},"@marketplace_sales_1984":{"entryPoint":null,"id":1984,"parameterSlots":0,"returnSlots":0},"@owner_1888":{"entryPoint":null,"id":1888,"parameterSlots":0,"returnSlots":0},"@owners_1892":{"entryPoint":null,"id":1892,"parameterSlots":0,"returnSlots":0},"@priceOracles_1912":{"entryPoint":null,"id":1912,"parameterSlots":0,"returnSlots":0},"@removeOwner_2254":{"entryPoint":4004,"id":2254,"parameterSlots":1,"returnSlots":0},"@safeTransferFrom_1350":{"entryPoint":21172,"id":1350,"parameterSlots":4,"returnSlots":0},"@safeTransfer_1323":{"entryPoint":20862,"id":1323,"parameterSlots":3,"returnSlots":0},"@sellStakeKeys_1988":{"entryPoint":6331,"id":1988,"parameterSlots":0,"returnSlots":0},"@sellStake_3573":{"entryPoint":7616,"id":3573,"parameterSlots":2,"returnSlots":0},"@sellStakes_1976":{"entryPoint":null,"id":1976,"parameterSlots":0,"returnSlots":0},"@setPriceOracle_2390":{"entryPoint":8963,"id":2390,"parameterSlots":2,"returnSlots":0},"@setUnlockScheduleByPercentage_2481":{"entryPoint":15352,"id":2481,"parameterSlots":3,"returnSlots":0},"@testUpgradeFunction_5451":{"entryPoint":null,"id":5451,"parameterSlots":0,"returnSlots":1},"@totalBigStakes_1967":{"entryPoint":null,"id":1967,"parameterSlots":0,"returnSlots":0},"@unlockDelay_1924":{"entryPoint":null,"id":1924,"parameterSlots":0,"returnSlots":0},"@unlockSchedules_1908":{"entryPoint":6843,"id":1908,"parameterSlots":0,"returnSlots":0},"@updateCancellationFee_2507":{"entryPoint":4245,"id":2507,"parameterSlots":1,"returnSlots":0},"@updateInstantBuyoutPercent_2527":{"entryPoint":13964,"id":2527,"parameterSlots":1,"returnSlots":0},"@updateLockupDuration_2291":{"entryPoint":16648,"id":2291,"parameterSlots":1,"returnSlots":0},"@updateMarketplaceMin_2494":{"entryPoint":6791,"id":2494,"parameterSlots":1,"returnSlots":0},"@updateSellStake_3777":{"entryPoint":19921,"id":3777,"parameterSlots":2,"returnSlots":0},"@updateUnlockDelay_2303":{"entryPoint":16902,"id":2303,"parameterSlots":1,"returnSlots":0},"@userBigStake_1953":{"entryPoint":null,"id":1953,"parameterSlots":0,"returnSlots":0},"@userLastClaimedEpoch_1957":{"entryPoint":null,"id":1957,"parameterSlots":0,"returnSlots":0},"@vestedTotal_1920":{"entryPoint":null,"id":1920,"parameterSlots":0,"returnSlots":0},"@vestings_1902":{"entryPoint":16005,"id":1902,"parameterSlots":0,"returnSlots":0},"@withdrawFromStakingPool_2374":{"entryPoint":11433,"id":2374,"parameterSlots":1,"returnSlots":0},"@withdrawFromVestingPool_2329":{"entryPoint":5294,"id":2329,"parameterSlots":2,"returnSlots":0},"@withdrawStake_2938":{"entryPoint":4352,"id":2938,"parameterSlots":1,"returnSlots":0},"@withdrawStakes_1963":{"entryPoint":16836,"id":1963,"parameterSlots":0,"returnSlots":0},"@withdrawVestingLiabilities_1944":{"entryPoint":null,"id":1944,"parameterSlots":0,"returnSlots":0},"@withdrawVestingToken_5230":{"entryPoint":20194,"id":5230,"parameterSlots":1,"returnSlots":0},"abi_decode_address":{"entryPoint":21478,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_array_address_dyn_calldata":{"entryPoint":21607,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_address":{"entryPoint":21506,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":22195,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":21540,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256t_uint256":{"entryPoint":22961,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_addresst_uint256":{"entryPoint":22667,"id":null,"parameterSlots":2,"returnSlots":6},"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_addresst_uint256t_uint256t_uint256":{"entryPoint":22246,"id":null,"parameterSlots":2,"returnSlots":8},"abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptr":{"entryPoint":21675,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptrt_array$_t_uint256_$dyn_calldata_ptr":{"entryPoint":21853,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_uint256":{"entryPoint":21582,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":23582,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_uint256":{"entryPoint":21960,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256t_uint256t_uint256":{"entryPoint":22623,"id":null,"parameterSlots":2,"returnSlots":3},"abi_encode_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_array_uint256_dyn":{"entryPoint":21740,"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_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_array$_t_address_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_struct$_SellStake_$1868_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_$1868_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":21994,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_array$_t_struct$_Epoch_$1852_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Epoch_$1852_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":22755,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_array$_t_struct$_MarketplaceHistory_$1886_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_MarketplaceHistory_$1886_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":23192,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_array$_t_struct$_Vesting_$1827_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Vesting_$1827_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":22353,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_array$_t_struct$_WithdrawStake_$1859_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_WithdrawStake_$1859_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":23106,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_array$_t_struct$_WithdrawVesting_$1841_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_WithdrawVesting_$1841_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":22527,"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":23069,"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":21799,"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_rational_1_by_1__to_t_uint64__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_0822d438e7ff02d04e33a3b237e81701c1bd3a6e2907a292cc8ad1069147f0b1__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":23607,"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_1ac10a5347532b65b65d9d764e2021f8095d5c71891cb82e55f43f42c14f0f65__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":23478,"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_2d19b9974516f8ce8c5e173466515fe8707bb9662afc415a22d19104b8441caa__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":23648,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3aa060f1dfc69ce7f57887a6e23d7fbceead8042b984953c572b9c8fa5af8f04__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_74917fd6fcb4f5c0476024ca107dba39ccfc7e6e33632969cffe0341aefd3ea4__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_958bf679397ff3f7b38ad9e6e0d68fc1f329d27b4d75f8a328d52e3e6926cc04__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9dede7b2029e0fe80e0defc5cd4aff28fc7482f6ec721698e1cde7e28b94a259__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_a2174c1737f7cb6c21957e39702561f246cc9bd66d84735975199b1061c55180__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_d34df3e6e5f402d3417b1a16a0a8a7541b184d7fb338e177a15236f4037e3743__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":23688,"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":23520,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_struct$_Epoch_$1852_memory_ptr__to_t_struct$_Epoch_$1852_memory_ptr__fromStack_reversed":{"entryPoint":23012,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_SellStake_$1868_memory_ptr__to_t_struct$_SellStake_$1868_memory_ptr__fromStack_reversed":{"entryPoint":22876,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_WithdrawStake_$1859_memory_ptr__to_t_struct$_WithdrawStake_$1859_memory_ptr__fromStack_reversed":{"entryPoint":22928,"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_rational_0_by_1__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"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":23393,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":23359,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":23336,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":23412,"id":null,"parameterSlots":2,"returnSlots":1},"increment_t_uint256":{"entryPoint":23431,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":23314,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x31":{"entryPoint":23731,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":23456,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":23560,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nodeType":"YulBlock","src":"0:32277:16","statements":[{"nodeType":"YulBlock","src":"6:3:16","statements":[]},{"body":{"nodeType":"YulBlock","src":"63:124:16","statements":[{"nodeType":"YulAssignment","src":"73:29:16","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"95:6:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"82:12:16"},"nodeType":"YulFunctionCall","src":"82:20:16"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"73:5:16"}]},{"body":{"nodeType":"YulBlock","src":"165:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"174:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"177:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"167:6:16"},"nodeType":"YulFunctionCall","src":"167:12:16"},"nodeType":"YulExpressionStatement","src":"167:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"124:5:16"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"135:5:16"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"150:3:16","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"155:1:16","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"146:3:16"},"nodeType":"YulFunctionCall","src":"146:11:16"},{"kind":"number","nodeType":"YulLiteral","src":"159:1:16","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"142:3:16"},"nodeType":"YulFunctionCall","src":"142:19:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"131:3:16"},"nodeType":"YulFunctionCall","src":"131:31:16"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"121:2:16"},"nodeType":"YulFunctionCall","src":"121:42:16"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"114:6:16"},"nodeType":"YulFunctionCall","src":"114:50:16"},"nodeType":"YulIf","src":"111:70:16"}]},"name":"abi_decode_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"42:6:16","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"53:5:16","type":""}],"src":"14:173:16"},{"body":{"nodeType":"YulBlock","src":"262:116:16","statements":[{"body":{"nodeType":"YulBlock","src":"308:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"317:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"320:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"310:6:16"},"nodeType":"YulFunctionCall","src":"310:12:16"},"nodeType":"YulExpressionStatement","src":"310:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"283:7:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"292:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"279:3:16"},"nodeType":"YulFunctionCall","src":"279:23:16"},{"kind":"number","nodeType":"YulLiteral","src":"304:2:16","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"275:3:16"},"nodeType":"YulFunctionCall","src":"275:32:16"},"nodeType":"YulIf","src":"272:52:16"},{"nodeType":"YulAssignment","src":"333:39:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"362:9:16"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"343:18:16"},"nodeType":"YulFunctionCall","src":"343:29:16"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"333:6:16"}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"228:9:16","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"239:7:16","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"251:6:16","type":""}],"src":"192:186:16"},{"body":{"nodeType":"YulBlock","src":"484:76:16","statements":[{"nodeType":"YulAssignment","src":"494:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"506:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"517:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"502:3:16"},"nodeType":"YulFunctionCall","src":"502:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"494:4:16"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"536:9:16"},{"name":"value0","nodeType":"YulIdentifier","src":"547:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"529:6:16"},"nodeType":"YulFunctionCall","src":"529:25:16"},"nodeType":"YulExpressionStatement","src":"529:25:16"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"453:9:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"464:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"475:4:16","type":""}],"src":"383:177:16"},{"body":{"nodeType":"YulBlock","src":"609:60:16","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"626:3:16"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"635:5:16"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"650:3:16","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"655:1:16","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"646:3:16"},"nodeType":"YulFunctionCall","src":"646:11:16"},{"kind":"number","nodeType":"YulLiteral","src":"659:1:16","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"642:3:16"},"nodeType":"YulFunctionCall","src":"642:19:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"631:3:16"},"nodeType":"YulFunctionCall","src":"631:31:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"619:6:16"},"nodeType":"YulFunctionCall","src":"619:44:16"},"nodeType":"YulExpressionStatement","src":"619:44:16"}]},"name":"abi_encode_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"593:5:16","type":""},{"name":"pos","nodeType":"YulTypedName","src":"600:3:16","type":""}],"src":"565:104:16"},{"body":{"nodeType":"YulBlock","src":"775:102:16","statements":[{"nodeType":"YulAssignment","src":"785:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"797:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"808:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"793:3:16"},"nodeType":"YulFunctionCall","src":"793:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"785:4:16"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"827:9:16"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"842:6:16"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"858:3:16","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"863:1:16","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"854:3:16"},"nodeType":"YulFunctionCall","src":"854:11:16"},{"kind":"number","nodeType":"YulLiteral","src":"867:1:16","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"850:3:16"},"nodeType":"YulFunctionCall","src":"850:19:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"838:3:16"},"nodeType":"YulFunctionCall","src":"838:32:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"820:6:16"},"nodeType":"YulFunctionCall","src":"820:51:16"},"nodeType":"YulExpressionStatement","src":"820:51:16"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"744:9:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"755:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"766:4:16","type":""}],"src":"674:203:16"},{"body":{"nodeType":"YulBlock","src":"923:50:16","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"940:3:16"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"959:5:16"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"952:6:16"},"nodeType":"YulFunctionCall","src":"952:13:16"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"945:6:16"},"nodeType":"YulFunctionCall","src":"945:21:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"933:6:16"},"nodeType":"YulFunctionCall","src":"933:34:16"},"nodeType":"YulExpressionStatement","src":"933:34:16"}]},"name":"abi_encode_bool","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"907:5:16","type":""},{"name":"pos","nodeType":"YulTypedName","src":"914:3:16","type":""}],"src":"882:91:16"},{"body":{"nodeType":"YulBlock","src":"1073:92:16","statements":[{"nodeType":"YulAssignment","src":"1083:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1095:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"1106:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1091:3:16"},"nodeType":"YulFunctionCall","src":"1091:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1083:4:16"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1125:9:16"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1150:6:16"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1143:6:16"},"nodeType":"YulFunctionCall","src":"1143:14:16"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1136:6:16"},"nodeType":"YulFunctionCall","src":"1136:22:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1118:6:16"},"nodeType":"YulFunctionCall","src":"1118:41:16"},"nodeType":"YulExpressionStatement","src":"1118:41:16"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1042:9:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1053:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1064:4:16","type":""}],"src":"978:187:16"},{"body":{"nodeType":"YulBlock","src":"1257:167:16","statements":[{"body":{"nodeType":"YulBlock","src":"1303:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1312:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1315:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1305:6:16"},"nodeType":"YulFunctionCall","src":"1305:12:16"},"nodeType":"YulExpressionStatement","src":"1305:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1278:7:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"1287:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1274:3:16"},"nodeType":"YulFunctionCall","src":"1274:23:16"},{"kind":"number","nodeType":"YulLiteral","src":"1299:2:16","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1270:3:16"},"nodeType":"YulFunctionCall","src":"1270:32:16"},"nodeType":"YulIf","src":"1267:52:16"},{"nodeType":"YulAssignment","src":"1328:39:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1357:9:16"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"1338:18:16"},"nodeType":"YulFunctionCall","src":"1338:29:16"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1328:6:16"}]},{"nodeType":"YulAssignment","src":"1376:42:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1403:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"1414:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1399:3:16"},"nodeType":"YulFunctionCall","src":"1399:18:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1386:12:16"},"nodeType":"YulFunctionCall","src":"1386:32:16"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1376:6:16"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1215:9:16","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1226:7:16","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1238:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1246:6:16","type":""}],"src":"1170:254:16"},{"body":{"nodeType":"YulBlock","src":"1499:110:16","statements":[{"body":{"nodeType":"YulBlock","src":"1545:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1554:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1557:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1547:6:16"},"nodeType":"YulFunctionCall","src":"1547:12:16"},"nodeType":"YulExpressionStatement","src":"1547:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1520:7:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"1529:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1516:3:16"},"nodeType":"YulFunctionCall","src":"1516:23:16"},{"kind":"number","nodeType":"YulLiteral","src":"1541:2:16","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1512:3:16"},"nodeType":"YulFunctionCall","src":"1512:32:16"},"nodeType":"YulIf","src":"1509:52:16"},{"nodeType":"YulAssignment","src":"1570:33:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1593:9:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1580:12:16"},"nodeType":"YulFunctionCall","src":"1580:23:16"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1570:6:16"}]}]},"name":"abi_decode_tuple_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1465:9:16","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1476:7:16","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1488:6:16","type":""}],"src":"1429:180:16"},{"body":{"nodeType":"YulBlock","src":"1698:283:16","statements":[{"body":{"nodeType":"YulBlock","src":"1747:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1756:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1759:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1749:6:16"},"nodeType":"YulFunctionCall","src":"1749:12:16"},"nodeType":"YulExpressionStatement","src":"1749:12:16"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1726:6:16"},{"kind":"number","nodeType":"YulLiteral","src":"1734:4:16","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1722:3:16"},"nodeType":"YulFunctionCall","src":"1722:17:16"},{"name":"end","nodeType":"YulIdentifier","src":"1741:3:16"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1718:3:16"},"nodeType":"YulFunctionCall","src":"1718:27:16"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1711:6:16"},"nodeType":"YulFunctionCall","src":"1711:35:16"},"nodeType":"YulIf","src":"1708:55:16"},{"nodeType":"YulAssignment","src":"1772:30:16","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1795:6:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1782:12:16"},"nodeType":"YulFunctionCall","src":"1782:20:16"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"1772:6:16"}]},{"body":{"nodeType":"YulBlock","src":"1845:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1854:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1857:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1847:6:16"},"nodeType":"YulFunctionCall","src":"1847:12:16"},"nodeType":"YulExpressionStatement","src":"1847:12:16"}]},"condition":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1817:6:16"},{"kind":"number","nodeType":"YulLiteral","src":"1825:18:16","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1814:2:16"},"nodeType":"YulFunctionCall","src":"1814:30:16"},"nodeType":"YulIf","src":"1811:50:16"},{"nodeType":"YulAssignment","src":"1870:29:16","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1886:6:16"},{"kind":"number","nodeType":"YulLiteral","src":"1894:4:16","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1882:3:16"},"nodeType":"YulFunctionCall","src":"1882:17:16"},"variableNames":[{"name":"arrayPos","nodeType":"YulIdentifier","src":"1870:8:16"}]},{"body":{"nodeType":"YulBlock","src":"1959:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1968:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1971:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1961:6:16"},"nodeType":"YulFunctionCall","src":"1961:12:16"},"nodeType":"YulExpressionStatement","src":"1961:12:16"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1922:6:16"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1934:1:16","type":"","value":"5"},{"name":"length","nodeType":"YulIdentifier","src":"1937:6:16"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1930:3:16"},"nodeType":"YulFunctionCall","src":"1930:14:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1918:3:16"},"nodeType":"YulFunctionCall","src":"1918:27:16"},{"kind":"number","nodeType":"YulLiteral","src":"1947:4:16","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1914:3:16"},"nodeType":"YulFunctionCall","src":"1914:38:16"},{"name":"end","nodeType":"YulIdentifier","src":"1954:3:16"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1911:2:16"},"nodeType":"YulFunctionCall","src":"1911:47:16"},"nodeType":"YulIf","src":"1908:67:16"}]},"name":"abi_decode_array_address_dyn_calldata","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"1661:6:16","type":""},{"name":"end","nodeType":"YulTypedName","src":"1669:3:16","type":""}],"returnVariables":[{"name":"arrayPos","nodeType":"YulTypedName","src":"1677:8:16","type":""},{"name":"length","nodeType":"YulTypedName","src":"1687:6:16","type":""}],"src":"1614:367:16"},{"body":{"nodeType":"YulBlock","src":"2091:332:16","statements":[{"body":{"nodeType":"YulBlock","src":"2137:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2146:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2149:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2139:6:16"},"nodeType":"YulFunctionCall","src":"2139:12:16"},"nodeType":"YulExpressionStatement","src":"2139:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2112:7:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"2121:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2108:3:16"},"nodeType":"YulFunctionCall","src":"2108:23:16"},{"kind":"number","nodeType":"YulLiteral","src":"2133:2:16","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2104:3:16"},"nodeType":"YulFunctionCall","src":"2104:32:16"},"nodeType":"YulIf","src":"2101:52:16"},{"nodeType":"YulVariableDeclaration","src":"2162:37:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2189:9:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"2176:12:16"},"nodeType":"YulFunctionCall","src":"2176:23:16"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"2166:6:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"2242:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2251:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2254:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2244:6:16"},"nodeType":"YulFunctionCall","src":"2244:12:16"},"nodeType":"YulExpressionStatement","src":"2244:12:16"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"2214:6:16"},{"kind":"number","nodeType":"YulLiteral","src":"2222:18:16","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2211:2:16"},"nodeType":"YulFunctionCall","src":"2211:30:16"},"nodeType":"YulIf","src":"2208:50:16"},{"nodeType":"YulVariableDeclaration","src":"2267:96:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2335:9:16"},{"name":"offset","nodeType":"YulIdentifier","src":"2346:6:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2331:3:16"},"nodeType":"YulFunctionCall","src":"2331:22:16"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"2355:7:16"}],"functionName":{"name":"abi_decode_array_address_dyn_calldata","nodeType":"YulIdentifier","src":"2293:37:16"},"nodeType":"YulFunctionCall","src":"2293:70:16"},"variables":[{"name":"value0_1","nodeType":"YulTypedName","src":"2271:8:16","type":""},{"name":"value1_1","nodeType":"YulTypedName","src":"2281:8:16","type":""}]},{"nodeType":"YulAssignment","src":"2372:18:16","value":{"name":"value0_1","nodeType":"YulIdentifier","src":"2382:8:16"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2372:6:16"}]},{"nodeType":"YulAssignment","src":"2399:18:16","value":{"name":"value1_1","nodeType":"YulIdentifier","src":"2409:8:16"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"2399:6:16"}]}]},"name":"abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptr","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2049:9:16","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2060:7:16","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2072:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2080:6:16","type":""}],"src":"1986:437:16"},{"body":{"nodeType":"YulBlock","src":"2489:374:16","statements":[{"nodeType":"YulVariableDeclaration","src":"2499:26:16","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2519:5:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2513:5:16"},"nodeType":"YulFunctionCall","src":"2513:12:16"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"2503:6:16","type":""}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"2541:3:16"},{"name":"length","nodeType":"YulIdentifier","src":"2546:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2534:6:16"},"nodeType":"YulFunctionCall","src":"2534:19:16"},"nodeType":"YulExpressionStatement","src":"2534:19:16"},{"nodeType":"YulVariableDeclaration","src":"2562:14:16","value":{"kind":"number","nodeType":"YulLiteral","src":"2572:4:16","type":"","value":"0x20"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"2566:2:16","type":""}]},{"nodeType":"YulAssignment","src":"2585:19:16","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"2596:3:16"},{"name":"_1","nodeType":"YulIdentifier","src":"2601:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2592:3:16"},"nodeType":"YulFunctionCall","src":"2592:12:16"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"2585:3:16"}]},{"nodeType":"YulVariableDeclaration","src":"2613:28:16","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"2631:5:16"},{"name":"_1","nodeType":"YulIdentifier","src":"2638:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2627:3:16"},"nodeType":"YulFunctionCall","src":"2627:14:16"},"variables":[{"name":"srcPtr","nodeType":"YulTypedName","src":"2617:6:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"2650:10:16","value":{"kind":"number","nodeType":"YulLiteral","src":"2659:1:16","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"2654:1:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"2718:120:16","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"2739:3:16"},{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"2750:6:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2744:5:16"},"nodeType":"YulFunctionCall","src":"2744:13:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2732:6:16"},"nodeType":"YulFunctionCall","src":"2732:26:16"},"nodeType":"YulExpressionStatement","src":"2732:26:16"},{"nodeType":"YulAssignment","src":"2771:19:16","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"2782:3:16"},{"name":"_1","nodeType":"YulIdentifier","src":"2787:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2778:3:16"},"nodeType":"YulFunctionCall","src":"2778:12:16"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"2771:3:16"}]},{"nodeType":"YulAssignment","src":"2803:25:16","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"2817:6:16"},{"name":"_1","nodeType":"YulIdentifier","src":"2825:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2813:3:16"},"nodeType":"YulFunctionCall","src":"2813:15:16"},"variableNames":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"2803:6:16"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"2680:1:16"},{"name":"length","nodeType":"YulIdentifier","src":"2683:6:16"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2677:2:16"},"nodeType":"YulFunctionCall","src":"2677:13:16"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"2691:18:16","statements":[{"nodeType":"YulAssignment","src":"2693:14:16","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"2702:1:16"},{"kind":"number","nodeType":"YulLiteral","src":"2705:1:16","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2698:3:16"},"nodeType":"YulFunctionCall","src":"2698:9:16"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"2693:1:16"}]}]},"pre":{"nodeType":"YulBlock","src":"2673:3:16","statements":[]},"src":"2669:169:16"},{"nodeType":"YulAssignment","src":"2847:10:16","value":{"name":"pos","nodeType":"YulIdentifier","src":"2854:3:16"},"variableNames":[{"name":"end","nodeType":"YulIdentifier","src":"2847:3:16"}]}]},"name":"abi_encode_array_uint256_dyn","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"2466:5:16","type":""},{"name":"pos","nodeType":"YulTypedName","src":"2473:3:16","type":""}],"returnVariables":[{"name":"end","nodeType":"YulTypedName","src":"2481:3:16","type":""}],"src":"2428:435:16"},{"body":{"nodeType":"YulBlock","src":"3125:279:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3142:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"3153:2:16","type":"","value":"96"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3135:6:16"},"nodeType":"YulFunctionCall","src":"3135:21:16"},"nodeType":"YulExpressionStatement","src":"3135:21:16"},{"nodeType":"YulVariableDeclaration","src":"3165:70:16","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3208:6:16"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3220:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"3231:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3216:3:16"},"nodeType":"YulFunctionCall","src":"3216:18:16"}],"functionName":{"name":"abi_encode_array_uint256_dyn","nodeType":"YulIdentifier","src":"3179:28:16"},"nodeType":"YulFunctionCall","src":"3179:56:16"},"variables":[{"name":"tail_1","nodeType":"YulTypedName","src":"3169:6:16","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3255:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"3266:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3251:3:16"},"nodeType":"YulFunctionCall","src":"3251:18:16"},{"arguments":[{"name":"tail_1","nodeType":"YulIdentifier","src":"3275:6:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"3283:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3271:3:16"},"nodeType":"YulFunctionCall","src":"3271:22:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3244:6:16"},"nodeType":"YulFunctionCall","src":"3244:50:16"},"nodeType":"YulExpressionStatement","src":"3244:50:16"},{"nodeType":"YulAssignment","src":"3303:52:16","value":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"3340:6:16"},{"name":"tail_1","nodeType":"YulIdentifier","src":"3348:6:16"}],"functionName":{"name":"abi_encode_array_uint256_dyn","nodeType":"YulIdentifier","src":"3311:28:16"},"nodeType":"YulFunctionCall","src":"3311:44:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3303:4:16"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3375:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"3386:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3371:3:16"},"nodeType":"YulFunctionCall","src":"3371:18:16"},{"name":"value2","nodeType":"YulIdentifier","src":"3391:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3364:6:16"},"nodeType":"YulFunctionCall","src":"3364:34:16"},"nodeType":"YulExpressionStatement","src":"3364:34:16"}]},"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:16","type":""},{"name":"value2","nodeType":"YulTypedName","src":"3089:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"3097:6:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3105:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3116:4:16","type":""}],"src":"2868:536:16"},{"body":{"nodeType":"YulBlock","src":"3594:232:16","statements":[{"nodeType":"YulAssignment","src":"3604:27:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3616:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"3627:3:16","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3612:3:16"},"nodeType":"YulFunctionCall","src":"3612:19:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3604:4:16"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3647:9:16"},{"name":"value0","nodeType":"YulIdentifier","src":"3658:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3640:6:16"},"nodeType":"YulFunctionCall","src":"3640:25:16"},"nodeType":"YulExpressionStatement","src":"3640:25:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3685:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"3696:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3681:3:16"},"nodeType":"YulFunctionCall","src":"3681:18:16"},{"name":"value1","nodeType":"YulIdentifier","src":"3701:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3674:6:16"},"nodeType":"YulFunctionCall","src":"3674:34:16"},"nodeType":"YulExpressionStatement","src":"3674:34:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3728:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"3739:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3724:3:16"},"nodeType":"YulFunctionCall","src":"3724:18:16"},{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"3748:6:16"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3764:3:16","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"3769:1:16","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3760:3:16"},"nodeType":"YulFunctionCall","src":"3760:11:16"},{"kind":"number","nodeType":"YulLiteral","src":"3773:1:16","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3756:3:16"},"nodeType":"YulFunctionCall","src":"3756:19:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3744:3:16"},"nodeType":"YulFunctionCall","src":"3744:32:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3717:6:16"},"nodeType":"YulFunctionCall","src":"3717:60:16"},"nodeType":"YulExpressionStatement","src":"3717:60:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3797:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"3808:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3793:3:16"},"nodeType":"YulFunctionCall","src":"3793:18:16"},{"name":"value3","nodeType":"YulIdentifier","src":"3813:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3786:6:16"},"nodeType":"YulFunctionCall","src":"3786:34:16"},"nodeType":"YulExpressionStatement","src":"3786:34:16"}]},"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:16","type":""},{"name":"value3","nodeType":"YulTypedName","src":"3550:6:16","type":""},{"name":"value2","nodeType":"YulTypedName","src":"3558:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"3566:6:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3574:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3585:4:16","type":""}],"src":"3409:417:16"},{"body":{"nodeType":"YulBlock","src":"3960:145:16","statements":[{"nodeType":"YulAssignment","src":"3970:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3982:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"3993:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3978:3:16"},"nodeType":"YulFunctionCall","src":"3978:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3970:4:16"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4012:9:16"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4027:6:16"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4043:3:16","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"4048:1:16","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"4039:3:16"},"nodeType":"YulFunctionCall","src":"4039:11:16"},{"kind":"number","nodeType":"YulLiteral","src":"4052:1:16","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4035:3:16"},"nodeType":"YulFunctionCall","src":"4035:19:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4023:3:16"},"nodeType":"YulFunctionCall","src":"4023:32:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4005:6:16"},"nodeType":"YulFunctionCall","src":"4005:51:16"},"nodeType":"YulExpressionStatement","src":"4005:51:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4076:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"4087:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4072:3:16"},"nodeType":"YulFunctionCall","src":"4072:18:16"},{"name":"value1","nodeType":"YulIdentifier","src":"4092:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4065:6:16"},"nodeType":"YulFunctionCall","src":"4065:34:16"},"nodeType":"YulExpressionStatement","src":"4065:34:16"}]},"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:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"3932:6:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3940:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3951:4:16","type":""}],"src":"3831:274:16"},{"body":{"nodeType":"YulBlock","src":"4239:119:16","statements":[{"nodeType":"YulAssignment","src":"4249:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4261:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"4272:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4257:3:16"},"nodeType":"YulFunctionCall","src":"4257:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4249:4:16"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4291:9:16"},{"name":"value0","nodeType":"YulIdentifier","src":"4302:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4284:6:16"},"nodeType":"YulFunctionCall","src":"4284:25:16"},"nodeType":"YulExpressionStatement","src":"4284:25:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4329:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"4340:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4325:3:16"},"nodeType":"YulFunctionCall","src":"4325:18:16"},{"name":"value1","nodeType":"YulIdentifier","src":"4345:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4318:6:16"},"nodeType":"YulFunctionCall","src":"4318:34:16"},"nodeType":"YulExpressionStatement","src":"4318:34:16"}]},"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:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"4211:6:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"4219:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4230:4:16","type":""}],"src":"4110:248:16"},{"body":{"nodeType":"YulBlock","src":"4520:616:16","statements":[{"body":{"nodeType":"YulBlock","src":"4566:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4575:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4578:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4568:6:16"},"nodeType":"YulFunctionCall","src":"4568:12:16"},"nodeType":"YulExpressionStatement","src":"4568:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"4541:7:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"4550:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4537:3:16"},"nodeType":"YulFunctionCall","src":"4537:23:16"},{"kind":"number","nodeType":"YulLiteral","src":"4562:2:16","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"4533:3:16"},"nodeType":"YulFunctionCall","src":"4533:32:16"},"nodeType":"YulIf","src":"4530:52:16"},{"nodeType":"YulVariableDeclaration","src":"4591:37:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4618:9:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4605:12:16"},"nodeType":"YulFunctionCall","src":"4605:23:16"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"4595:6:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"4637:28:16","value":{"kind":"number","nodeType":"YulLiteral","src":"4647:18:16","type":"","value":"0xffffffffffffffff"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"4641:2:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"4692:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4701:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4704:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4694:6:16"},"nodeType":"YulFunctionCall","src":"4694:12:16"},"nodeType":"YulExpressionStatement","src":"4694:12:16"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"4680:6:16"},{"name":"_1","nodeType":"YulIdentifier","src":"4688:2:16"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4677:2:16"},"nodeType":"YulFunctionCall","src":"4677:14:16"},"nodeType":"YulIf","src":"4674:34:16"},{"nodeType":"YulVariableDeclaration","src":"4717:96:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4785:9:16"},{"name":"offset","nodeType":"YulIdentifier","src":"4796:6:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4781:3:16"},"nodeType":"YulFunctionCall","src":"4781:22:16"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"4805:7:16"}],"functionName":{"name":"abi_decode_array_address_dyn_calldata","nodeType":"YulIdentifier","src":"4743:37:16"},"nodeType":"YulFunctionCall","src":"4743:70:16"},"variables":[{"name":"value0_1","nodeType":"YulTypedName","src":"4721:8:16","type":""},{"name":"value1_1","nodeType":"YulTypedName","src":"4731:8:16","type":""}]},{"nodeType":"YulAssignment","src":"4822:18:16","value":{"name":"value0_1","nodeType":"YulIdentifier","src":"4832:8:16"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"4822:6:16"}]},{"nodeType":"YulAssignment","src":"4849:18:16","value":{"name":"value1_1","nodeType":"YulIdentifier","src":"4859:8:16"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"4849:6:16"}]},{"nodeType":"YulVariableDeclaration","src":"4876:48:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4909:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"4920:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4905:3:16"},"nodeType":"YulFunctionCall","src":"4905:18:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"4892:12:16"},"nodeType":"YulFunctionCall","src":"4892:32:16"},"variables":[{"name":"offset_1","nodeType":"YulTypedName","src":"4880:8:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"4953:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4962:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4965:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4955:6:16"},"nodeType":"YulFunctionCall","src":"4955:12:16"},"nodeType":"YulExpressionStatement","src":"4955:12:16"}]},"condition":{"arguments":[{"name":"offset_1","nodeType":"YulIdentifier","src":"4939:8:16"},{"name":"_1","nodeType":"YulIdentifier","src":"4949:2:16"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4936:2:16"},"nodeType":"YulFunctionCall","src":"4936:16:16"},"nodeType":"YulIf","src":"4933:36:16"},{"nodeType":"YulVariableDeclaration","src":"4978:98:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5046:9:16"},{"name":"offset_1","nodeType":"YulIdentifier","src":"5057:8:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5042:3:16"},"nodeType":"YulFunctionCall","src":"5042:24:16"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"5068:7:16"}],"functionName":{"name":"abi_decode_array_address_dyn_calldata","nodeType":"YulIdentifier","src":"5004:37:16"},"nodeType":"YulFunctionCall","src":"5004:72:16"},"variables":[{"name":"value2_1","nodeType":"YulTypedName","src":"4982:8:16","type":""},{"name":"value3_1","nodeType":"YulTypedName","src":"4992:8:16","type":""}]},{"nodeType":"YulAssignment","src":"5085:18:16","value":{"name":"value2_1","nodeType":"YulIdentifier","src":"5095:8:16"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"5085:6:16"}]},{"nodeType":"YulAssignment","src":"5112:18:16","value":{"name":"value3_1","nodeType":"YulIdentifier","src":"5122:8:16"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"5112:6:16"}]}]},"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:16","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"4473:7:16","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"4485:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"4493:6:16","type":""},{"name":"value2","nodeType":"YulTypedName","src":"4501:6:16","type":""},{"name":"value3","nodeType":"YulTypedName","src":"4509:6:16","type":""}],"src":"4363:773:16"},{"body":{"nodeType":"YulBlock","src":"5228:161:16","statements":[{"body":{"nodeType":"YulBlock","src":"5274:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5283:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"5286:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"5276:6:16"},"nodeType":"YulFunctionCall","src":"5276:12:16"},"nodeType":"YulExpressionStatement","src":"5276:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"5249:7:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"5258:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5245:3:16"},"nodeType":"YulFunctionCall","src":"5245:23:16"},{"kind":"number","nodeType":"YulLiteral","src":"5270:2:16","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"5241:3:16"},"nodeType":"YulFunctionCall","src":"5241:32:16"},"nodeType":"YulIf","src":"5238:52:16"},{"nodeType":"YulAssignment","src":"5299:33:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5322:9:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5309:12:16"},"nodeType":"YulFunctionCall","src":"5309:23:16"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"5299:6:16"}]},{"nodeType":"YulAssignment","src":"5341:42:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5368:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"5379:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5364:3:16"},"nodeType":"YulFunctionCall","src":"5364:18:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"5351:12:16"},"nodeType":"YulFunctionCall","src":"5351:32:16"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"5341:6:16"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5186:9:16","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"5197:7:16","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"5209:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"5217:6:16","type":""}],"src":"5141:248:16"},{"body":{"nodeType":"YulBlock","src":"5447:235:16","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5464:3:16"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5475:5:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5469:5:16"},"nodeType":"YulFunctionCall","src":"5469:12:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5457:6:16"},"nodeType":"YulFunctionCall","src":"5457:25:16"},"nodeType":"YulExpressionStatement","src":"5457:25:16"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5502:3:16"},{"kind":"number","nodeType":"YulLiteral","src":"5507:4:16","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5498:3:16"},"nodeType":"YulFunctionCall","src":"5498:14:16"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5524:5:16"},{"kind":"number","nodeType":"YulLiteral","src":"5531:4:16","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5520:3:16"},"nodeType":"YulFunctionCall","src":"5520:16:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5514:5:16"},"nodeType":"YulFunctionCall","src":"5514:23:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5491:6:16"},"nodeType":"YulFunctionCall","src":"5491:47:16"},"nodeType":"YulExpressionStatement","src":"5491:47:16"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5558:3:16"},{"kind":"number","nodeType":"YulLiteral","src":"5563:4:16","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5554:3:16"},"nodeType":"YulFunctionCall","src":"5554:14:16"},{"arguments":[{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5584:5:16"},{"kind":"number","nodeType":"YulLiteral","src":"5591:4:16","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5580:3:16"},"nodeType":"YulFunctionCall","src":"5580:16:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5574:5:16"},"nodeType":"YulFunctionCall","src":"5574:23:16"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"5607:3:16","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"5612:1:16","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"5603:3:16"},"nodeType":"YulFunctionCall","src":"5603:11:16"},{"kind":"number","nodeType":"YulLiteral","src":"5616:1:16","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"5599:3:16"},"nodeType":"YulFunctionCall","src":"5599:19:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"5570:3:16"},"nodeType":"YulFunctionCall","src":"5570:49:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5547:6:16"},"nodeType":"YulFunctionCall","src":"5547:73:16"},"nodeType":"YulExpressionStatement","src":"5547:73:16"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"5640:3:16"},{"kind":"number","nodeType":"YulLiteral","src":"5645:4:16","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5636:3:16"},"nodeType":"YulFunctionCall","src":"5636:14:16"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"5662:5:16"},{"kind":"number","nodeType":"YulLiteral","src":"5669:4:16","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5658:3:16"},"nodeType":"YulFunctionCall","src":"5658:16:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"5652:5:16"},"nodeType":"YulFunctionCall","src":"5652:23:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5629:6:16"},"nodeType":"YulFunctionCall","src":"5629:47:16"},"nodeType":"YulExpressionStatement","src":"5629:47:16"}]},"name":"abi_encode_struct_SellStake","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"5431:5:16","type":""},{"name":"pos","nodeType":"YulTypedName","src":"5438:3:16","type":""}],"src":"5394:288:16"},{"body":{"nodeType":"YulBlock","src":"6048:1124:16","statements":[{"nodeType":"YulVariableDeclaration","src":"6058:32:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6076:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"6087:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6072:3:16"},"nodeType":"YulFunctionCall","src":"6072:18:16"},"variables":[{"name":"tail_1","nodeType":"YulTypedName","src":"6062:6:16","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6106:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"6117:2:16","type":"","value":"96"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6099:6:16"},"nodeType":"YulFunctionCall","src":"6099:21:16"},"nodeType":"YulExpressionStatement","src":"6099:21:16"},{"nodeType":"YulVariableDeclaration","src":"6129:17:16","value":{"name":"tail_1","nodeType":"YulIdentifier","src":"6140:6:16"},"variables":[{"name":"pos","nodeType":"YulTypedName","src":"6133:3:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"6155:27:16","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"6175:6:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"6169:5:16"},"nodeType":"YulFunctionCall","src":"6169:13:16"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"6159:6:16","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nodeType":"YulIdentifier","src":"6198:6:16"},{"name":"length","nodeType":"YulIdentifier","src":"6206:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6191:6:16"},"nodeType":"YulFunctionCall","src":"6191:22:16"},"nodeType":"YulExpressionStatement","src":"6191:22:16"},{"nodeType":"YulVariableDeclaration","src":"6222:13:16","value":{"kind":"number","nodeType":"YulLiteral","src":"6232:3:16","type":"","value":"128"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"6226:2:16","type":""}]},{"nodeType":"YulAssignment","src":"6244:25:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6255:9:16"},{"name":"_1","nodeType":"YulIdentifier","src":"6266:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6251:3:16"},"nodeType":"YulFunctionCall","src":"6251:18:16"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"6244:3:16"}]},{"nodeType":"YulVariableDeclaration","src":"6278:14:16","value":{"kind":"number","nodeType":"YulLiteral","src":"6288:4:16","type":"","value":"0x20"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"6282:2:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"6301:29:16","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"6319:6:16"},{"name":"_2","nodeType":"YulIdentifier","src":"6327:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6315:3:16"},"nodeType":"YulFunctionCall","src":"6315:15:16"},"variables":[{"name":"srcPtr","nodeType":"YulTypedName","src":"6305:6:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"6339:10:16","value":{"kind":"number","nodeType":"YulLiteral","src":"6348:1:16","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"6343:1:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"6407:146:16","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6428:3:16"},{"arguments":[{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"6443:6:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"6437:5:16"},"nodeType":"YulFunctionCall","src":"6437:13:16"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"6460:3:16","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"6465:1:16","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"6456:3:16"},"nodeType":"YulFunctionCall","src":"6456:11:16"},{"kind":"number","nodeType":"YulLiteral","src":"6469:1:16","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6452:3:16"},"nodeType":"YulFunctionCall","src":"6452:19:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"6433:3:16"},"nodeType":"YulFunctionCall","src":"6433:39:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6421:6:16"},"nodeType":"YulFunctionCall","src":"6421:52:16"},"nodeType":"YulExpressionStatement","src":"6421:52:16"},{"nodeType":"YulAssignment","src":"6486:19:16","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6497:3:16"},{"name":"_2","nodeType":"YulIdentifier","src":"6502:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6493:3:16"},"nodeType":"YulFunctionCall","src":"6493:12:16"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"6486:3:16"}]},{"nodeType":"YulAssignment","src":"6518:25:16","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"6532:6:16"},{"name":"_2","nodeType":"YulIdentifier","src":"6540:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6528:3:16"},"nodeType":"YulFunctionCall","src":"6528:15:16"},"variableNames":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"6518:6:16"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"6369:1:16"},{"name":"length","nodeType":"YulIdentifier","src":"6372:6:16"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"6366:2:16"},"nodeType":"YulFunctionCall","src":"6366:13:16"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"6380:18:16","statements":[{"nodeType":"YulAssignment","src":"6382:14:16","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"6391:1:16"},{"kind":"number","nodeType":"YulLiteral","src":"6394:1:16","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6387:3:16"},"nodeType":"YulFunctionCall","src":"6387:9:16"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"6382:1:16"}]}]},"pre":{"nodeType":"YulBlock","src":"6362:3:16","statements":[]},"src":"6358:195:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6573:9:16"},{"name":"_2","nodeType":"YulIdentifier","src":"6584:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6569:3:16"},"nodeType":"YulFunctionCall","src":"6569:18:16"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"6593:3:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"6598:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6589:3:16"},"nodeType":"YulFunctionCall","src":"6589:19:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6562:6:16"},"nodeType":"YulFunctionCall","src":"6562:47:16"},"nodeType":"YulExpressionStatement","src":"6562:47:16"},{"nodeType":"YulVariableDeclaration","src":"6618:55:16","value":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"6661:6:16"},{"name":"pos","nodeType":"YulIdentifier","src":"6669:3:16"}],"functionName":{"name":"abi_encode_array_uint256_dyn","nodeType":"YulIdentifier","src":"6632:28:16"},"nodeType":"YulFunctionCall","src":"6632:41:16"},"variables":[{"name":"tail_2","nodeType":"YulTypedName","src":"6622:6:16","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"6693:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"6704:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6689:3:16"},"nodeType":"YulFunctionCall","src":"6689:18:16"},{"arguments":[{"name":"tail_2","nodeType":"YulIdentifier","src":"6713:6:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"6721:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"6709:3:16"},"nodeType":"YulFunctionCall","src":"6709:22:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6682:6:16"},"nodeType":"YulFunctionCall","src":"6682:50:16"},"nodeType":"YulExpressionStatement","src":"6682:50:16"},{"nodeType":"YulVariableDeclaration","src":"6741:19:16","value":{"name":"tail_2","nodeType":"YulIdentifier","src":"6754:6:16"},"variables":[{"name":"pos_1","nodeType":"YulTypedName","src":"6745:5:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"6769:29:16","value":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"6791:6:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"6785:5:16"},"nodeType":"YulFunctionCall","src":"6785:13:16"},"variables":[{"name":"length_1","nodeType":"YulTypedName","src":"6773:8:16","type":""}]},{"expression":{"arguments":[{"name":"tail_2","nodeType":"YulIdentifier","src":"6814:6:16"},{"name":"length_1","nodeType":"YulIdentifier","src":"6822:8:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"6807:6:16"},"nodeType":"YulFunctionCall","src":"6807:24:16"},"nodeType":"YulExpressionStatement","src":"6807:24:16"},{"nodeType":"YulAssignment","src":"6840:24:16","value":{"arguments":[{"name":"tail_2","nodeType":"YulIdentifier","src":"6853:6:16"},{"name":"_2","nodeType":"YulIdentifier","src":"6861:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6849:3:16"},"nodeType":"YulFunctionCall","src":"6849:15:16"},"variableNames":[{"name":"pos_1","nodeType":"YulIdentifier","src":"6840:5:16"}]},{"nodeType":"YulVariableDeclaration","src":"6873:31:16","value":{"arguments":[{"name":"value2","nodeType":"YulIdentifier","src":"6893:6:16"},{"name":"_2","nodeType":"YulIdentifier","src":"6901:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6889:3:16"},"nodeType":"YulFunctionCall","src":"6889:15:16"},"variables":[{"name":"srcPtr_1","nodeType":"YulTypedName","src":"6877:8:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"6913:12:16","value":{"kind":"number","nodeType":"YulLiteral","src":"6924:1:16","type":"","value":"0"},"variables":[{"name":"i_1","nodeType":"YulTypedName","src":"6917:3:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"6991:153:16","statements":[{"expression":{"arguments":[{"arguments":[{"name":"srcPtr_1","nodeType":"YulIdentifier","src":"7039:8:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"7033:5:16"},"nodeType":"YulFunctionCall","src":"7033:15:16"},{"name":"pos_1","nodeType":"YulIdentifier","src":"7050:5:16"}],"functionName":{"name":"abi_encode_struct_SellStake","nodeType":"YulIdentifier","src":"7005:27:16"},"nodeType":"YulFunctionCall","src":"7005:51:16"},"nodeType":"YulExpressionStatement","src":"7005:51:16"},{"nodeType":"YulAssignment","src":"7069:23:16","value":{"arguments":[{"name":"pos_1","nodeType":"YulIdentifier","src":"7082:5:16"},{"name":"_1","nodeType":"YulIdentifier","src":"7089:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7078:3:16"},"nodeType":"YulFunctionCall","src":"7078:14:16"},"variableNames":[{"name":"pos_1","nodeType":"YulIdentifier","src":"7069:5:16"}]},{"nodeType":"YulAssignment","src":"7105:29:16","value":{"arguments":[{"name":"srcPtr_1","nodeType":"YulIdentifier","src":"7121:8:16"},{"name":"_2","nodeType":"YulIdentifier","src":"7131:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7117:3:16"},"nodeType":"YulFunctionCall","src":"7117:17:16"},"variableNames":[{"name":"srcPtr_1","nodeType":"YulIdentifier","src":"7105:8:16"}]}]},"condition":{"arguments":[{"name":"i_1","nodeType":"YulIdentifier","src":"6945:3:16"},{"name":"length_1","nodeType":"YulIdentifier","src":"6950:8:16"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"6942:2:16"},"nodeType":"YulFunctionCall","src":"6942:17:16"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"6960:22:16","statements":[{"nodeType":"YulAssignment","src":"6962:18:16","value":{"arguments":[{"name":"i_1","nodeType":"YulIdentifier","src":"6973:3:16"},{"kind":"number","nodeType":"YulLiteral","src":"6978:1:16","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"6969:3:16"},"nodeType":"YulFunctionCall","src":"6969:11:16"},"variableNames":[{"name":"i_1","nodeType":"YulIdentifier","src":"6962:3:16"}]}]},"pre":{"nodeType":"YulBlock","src":"6938:3:16","statements":[]},"src":"6934:210:16"},{"nodeType":"YulAssignment","src":"7153:13:16","value":{"name":"pos_1","nodeType":"YulIdentifier","src":"7161:5:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"7153:4:16"}]}]},"name":"abi_encode_tuple_t_array$_t_address_$dyn_memory_ptr_t_array$_t_uint256_$dyn_memory_ptr_t_array$_t_struct$_SellStake_$1868_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_$1868_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"6001:9:16","type":""},{"name":"value2","nodeType":"YulTypedName","src":"6012:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"6020:6:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"6028:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"6039:4:16","type":""}],"src":"5687:1485:16"},{"body":{"nodeType":"YulBlock","src":"7264:173:16","statements":[{"body":{"nodeType":"YulBlock","src":"7310:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7319:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7322:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7312:6:16"},"nodeType":"YulFunctionCall","src":"7312:12:16"},"nodeType":"YulExpressionStatement","src":"7312:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"7285:7:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"7294:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7281:3:16"},"nodeType":"YulFunctionCall","src":"7281:23:16"},{"kind":"number","nodeType":"YulLiteral","src":"7306:2:16","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"7277:3:16"},"nodeType":"YulFunctionCall","src":"7277:32:16"},"nodeType":"YulIf","src":"7274:52:16"},{"nodeType":"YulAssignment","src":"7335:39:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7364:9:16"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"7345:18:16"},"nodeType":"YulFunctionCall","src":"7345:29:16"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"7335:6:16"}]},{"nodeType":"YulAssignment","src":"7383:48:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7416:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"7427:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7412:3:16"},"nodeType":"YulFunctionCall","src":"7412:18:16"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"7393:18:16"},"nodeType":"YulFunctionCall","src":"7393:38:16"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"7383:6:16"}]}]},"name":"abi_decode_tuple_t_addresst_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7222:9:16","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"7233:7:16","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"7245:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"7253:6:16","type":""}],"src":"7177:260:16"},{"body":{"nodeType":"YulBlock","src":"7631:484:16","statements":[{"body":{"nodeType":"YulBlock","src":"7678:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"7687:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"7690:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"7680:6:16"},"nodeType":"YulFunctionCall","src":"7680:12:16"},"nodeType":"YulExpressionStatement","src":"7680:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"7652:7:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"7661:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"7648:3:16"},"nodeType":"YulFunctionCall","src":"7648:23:16"},{"kind":"number","nodeType":"YulLiteral","src":"7673:3:16","type":"","value":"256"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"7644:3:16"},"nodeType":"YulFunctionCall","src":"7644:33:16"},"nodeType":"YulIf","src":"7641:53:16"},{"nodeType":"YulAssignment","src":"7703:39:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7732:9:16"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"7713:18:16"},"nodeType":"YulFunctionCall","src":"7713:29:16"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"7703:6:16"}]},{"nodeType":"YulAssignment","src":"7751:42:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7778:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"7789:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7774:3:16"},"nodeType":"YulFunctionCall","src":"7774:18:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7761:12:16"},"nodeType":"YulFunctionCall","src":"7761:32:16"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"7751:6:16"}]},{"nodeType":"YulAssignment","src":"7802:42:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7829:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"7840:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7825:3:16"},"nodeType":"YulFunctionCall","src":"7825:18:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7812:12:16"},"nodeType":"YulFunctionCall","src":"7812:32:16"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"7802:6:16"}]},{"nodeType":"YulAssignment","src":"7853:42:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7880:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"7891:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7876:3:16"},"nodeType":"YulFunctionCall","src":"7876:18:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7863:12:16"},"nodeType":"YulFunctionCall","src":"7863:32:16"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"7853:6:16"}]},{"nodeType":"YulAssignment","src":"7904:49:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7937:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"7948:3:16","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7933:3:16"},"nodeType":"YulFunctionCall","src":"7933:19:16"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"7914:18:16"},"nodeType":"YulFunctionCall","src":"7914:39:16"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"7904:6:16"}]},{"nodeType":"YulAssignment","src":"7962:43:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"7989:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"8000:3:16","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"7985:3:16"},"nodeType":"YulFunctionCall","src":"7985:19:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"7972:12:16"},"nodeType":"YulFunctionCall","src":"7972:33:16"},"variableNames":[{"name":"value5","nodeType":"YulIdentifier","src":"7962:6:16"}]},{"nodeType":"YulAssignment","src":"8014:43:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8041:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"8052:3:16","type":"","value":"192"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8037:3:16"},"nodeType":"YulFunctionCall","src":"8037:19:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"8024:12:16"},"nodeType":"YulFunctionCall","src":"8024:33:16"},"variableNames":[{"name":"value6","nodeType":"YulIdentifier","src":"8014:6:16"}]},{"nodeType":"YulAssignment","src":"8066:43:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8093:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"8104:3:16","type":"","value":"224"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8089:3:16"},"nodeType":"YulFunctionCall","src":"8089:19:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"8076:12:16"},"nodeType":"YulFunctionCall","src":"8076:33:16"},"variableNames":[{"name":"value7","nodeType":"YulIdentifier","src":"8066:6:16"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_addresst_uint256t_uint256t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"7541:9:16","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"7552:7:16","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"7564:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"7572:6:16","type":""},{"name":"value2","nodeType":"YulTypedName","src":"7580:6:16","type":""},{"name":"value3","nodeType":"YulTypedName","src":"7588:6:16","type":""},{"name":"value4","nodeType":"YulTypedName","src":"7596:6:16","type":""},{"name":"value5","nodeType":"YulTypedName","src":"7604:6:16","type":""},{"name":"value6","nodeType":"YulTypedName","src":"7612:6:16","type":""},{"name":"value7","nodeType":"YulTypedName","src":"7620:6:16","type":""}],"src":"7442:673:16"},{"body":{"nodeType":"YulBlock","src":"8321:1326:16","statements":[{"nodeType":"YulVariableDeclaration","src":"8331:12:16","value":{"kind":"number","nodeType":"YulLiteral","src":"8341:2:16","type":"","value":"32"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"8335:2:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"8352:32:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8370:9:16"},{"name":"_1","nodeType":"YulIdentifier","src":"8381:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8366:3:16"},"nodeType":"YulFunctionCall","src":"8366:18:16"},"variables":[{"name":"tail_1","nodeType":"YulTypedName","src":"8356:6:16","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8400:9:16"},{"name":"_1","nodeType":"YulIdentifier","src":"8411:2:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8393:6:16"},"nodeType":"YulFunctionCall","src":"8393:21:16"},"nodeType":"YulExpressionStatement","src":"8393:21:16"},{"nodeType":"YulVariableDeclaration","src":"8423:17:16","value":{"name":"tail_1","nodeType":"YulIdentifier","src":"8434:6:16"},"variables":[{"name":"pos","nodeType":"YulTypedName","src":"8427:3:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"8449:27:16","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"8469:6:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8463:5:16"},"nodeType":"YulFunctionCall","src":"8463:13:16"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"8453:6:16","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nodeType":"YulIdentifier","src":"8492:6:16"},{"name":"length","nodeType":"YulIdentifier","src":"8500:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8485:6:16"},"nodeType":"YulFunctionCall","src":"8485:22:16"},"nodeType":"YulExpressionStatement","src":"8485:22:16"},{"nodeType":"YulVariableDeclaration","src":"8516:12:16","value":{"kind":"number","nodeType":"YulLiteral","src":"8526:2:16","type":"","value":"64"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"8520:2:16","type":""}]},{"nodeType":"YulAssignment","src":"8537:25:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"8548:9:16"},{"name":"_2","nodeType":"YulIdentifier","src":"8559:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8544:3:16"},"nodeType":"YulFunctionCall","src":"8544:18:16"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"8537:3:16"}]},{"nodeType":"YulVariableDeclaration","src":"8571:29:16","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"8589:6:16"},{"name":"_1","nodeType":"YulIdentifier","src":"8597:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8585:3:16"},"nodeType":"YulFunctionCall","src":"8585:15:16"},"variables":[{"name":"srcPtr","nodeType":"YulTypedName","src":"8575:6:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"8609:10:16","value":{"kind":"number","nodeType":"YulLiteral","src":"8618:1:16","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"8613:1:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"8677:944:16","statements":[{"nodeType":"YulVariableDeclaration","src":"8691:23:16","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"8707:6:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8701:5:16"},"nodeType":"YulFunctionCall","src":"8701:13:16"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"8695:2:16","type":""}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8734:3:16"},{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"8745:2:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8739:5:16"},"nodeType":"YulFunctionCall","src":"8739:9:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8727:6:16"},"nodeType":"YulFunctionCall","src":"8727:22:16"},"nodeType":"YulExpressionStatement","src":"8727:22:16"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8773:3:16"},{"name":"_1","nodeType":"YulIdentifier","src":"8778:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8769:3:16"},"nodeType":"YulFunctionCall","src":"8769:12:16"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"8793:2:16"},{"name":"_1","nodeType":"YulIdentifier","src":"8797:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8789:3:16"},"nodeType":"YulFunctionCall","src":"8789:11:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8783:5:16"},"nodeType":"YulFunctionCall","src":"8783:18:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8762:6:16"},"nodeType":"YulFunctionCall","src":"8762:40:16"},"nodeType":"YulExpressionStatement","src":"8762:40:16"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8826:3:16"},{"name":"_2","nodeType":"YulIdentifier","src":"8831:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8822:3:16"},"nodeType":"YulFunctionCall","src":"8822:12:16"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"8846:2:16"},{"name":"_2","nodeType":"YulIdentifier","src":"8850:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8842:3:16"},"nodeType":"YulFunctionCall","src":"8842:11:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8836:5:16"},"nodeType":"YulFunctionCall","src":"8836:18:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8815:6:16"},"nodeType":"YulFunctionCall","src":"8815:40:16"},"nodeType":"YulExpressionStatement","src":"8815:40:16"},{"nodeType":"YulVariableDeclaration","src":"8868:14:16","value":{"kind":"number","nodeType":"YulLiteral","src":"8878:4:16","type":"","value":"0x60"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"8872:2:16","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8906:3:16"},{"name":"_4","nodeType":"YulIdentifier","src":"8911:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8902:3:16"},"nodeType":"YulFunctionCall","src":"8902:12:16"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"8926:2:16"},{"name":"_4","nodeType":"YulIdentifier","src":"8930:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8922:3:16"},"nodeType":"YulFunctionCall","src":"8922:11:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8916:5:16"},"nodeType":"YulFunctionCall","src":"8916:18:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8895:6:16"},"nodeType":"YulFunctionCall","src":"8895:40:16"},"nodeType":"YulExpressionStatement","src":"8895:40:16"},{"nodeType":"YulVariableDeclaration","src":"8948:14:16","value":{"kind":"number","nodeType":"YulLiteral","src":"8958:4:16","type":"","value":"0x80"},"variables":[{"name":"_5","nodeType":"YulTypedName","src":"8952:2:16","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"8986:3:16"},{"name":"_5","nodeType":"YulIdentifier","src":"8991:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8982:3:16"},"nodeType":"YulFunctionCall","src":"8982:12:16"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"9006:2:16"},{"name":"_5","nodeType":"YulIdentifier","src":"9010:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9002:3:16"},"nodeType":"YulFunctionCall","src":"9002:11:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"8996:5:16"},"nodeType":"YulFunctionCall","src":"8996:18:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"8975:6:16"},"nodeType":"YulFunctionCall","src":"8975:40:16"},"nodeType":"YulExpressionStatement","src":"8975:40:16"},{"nodeType":"YulVariableDeclaration","src":"9028:14:16","value":{"kind":"number","nodeType":"YulLiteral","src":"9038:4:16","type":"","value":"0xa0"},"variables":[{"name":"_6","nodeType":"YulTypedName","src":"9032:2:16","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9066:3:16"},{"name":"_6","nodeType":"YulIdentifier","src":"9071:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9062:3:16"},"nodeType":"YulFunctionCall","src":"9062:12:16"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"9086:2:16"},{"name":"_6","nodeType":"YulIdentifier","src":"9090:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9082:3:16"},"nodeType":"YulFunctionCall","src":"9082:11:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9076:5:16"},"nodeType":"YulFunctionCall","src":"9076:18:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9055:6:16"},"nodeType":"YulFunctionCall","src":"9055:40:16"},"nodeType":"YulExpressionStatement","src":"9055:40:16"},{"nodeType":"YulVariableDeclaration","src":"9108:14:16","value":{"kind":"number","nodeType":"YulLiteral","src":"9118:4:16","type":"","value":"0xc0"},"variables":[{"name":"_7","nodeType":"YulTypedName","src":"9112:2:16","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9146:3:16"},{"name":"_7","nodeType":"YulIdentifier","src":"9151:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9142:3:16"},"nodeType":"YulFunctionCall","src":"9142:12:16"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"9166:2:16"},{"name":"_7","nodeType":"YulIdentifier","src":"9170:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9162:3:16"},"nodeType":"YulFunctionCall","src":"9162:11:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9156:5:16"},"nodeType":"YulFunctionCall","src":"9156:18:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9135:6:16"},"nodeType":"YulFunctionCall","src":"9135:40:16"},"nodeType":"YulExpressionStatement","src":"9135:40:16"},{"nodeType":"YulVariableDeclaration","src":"9188:14:16","value":{"kind":"number","nodeType":"YulLiteral","src":"9198:4:16","type":"","value":"0xe0"},"variables":[{"name":"_8","nodeType":"YulTypedName","src":"9192:2:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"9215:38:16","value":{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"9245:2:16"},{"name":"_8","nodeType":"YulIdentifier","src":"9249:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9241:3:16"},"nodeType":"YulFunctionCall","src":"9241:11:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9235:5:16"},"nodeType":"YulFunctionCall","src":"9235:18:16"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"9219:12:16","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"9285:12:16"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9303:3:16"},{"name":"_8","nodeType":"YulIdentifier","src":"9308:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9299:3:16"},"nodeType":"YulFunctionCall","src":"9299:12:16"}],"functionName":{"name":"abi_encode_address","nodeType":"YulIdentifier","src":"9266:18:16"},"nodeType":"YulFunctionCall","src":"9266:46:16"},"nodeType":"YulExpressionStatement","src":"9266:46:16"},{"nodeType":"YulVariableDeclaration","src":"9325:16:16","value":{"kind":"number","nodeType":"YulLiteral","src":"9335:6:16","type":"","value":"0x0100"},"variables":[{"name":"_9","nodeType":"YulTypedName","src":"9329:2:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"9354:40:16","value":{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"9386:2:16"},{"name":"_9","nodeType":"YulIdentifier","src":"9390:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9382:3:16"},"nodeType":"YulFunctionCall","src":"9382:11:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9376:5:16"},"nodeType":"YulFunctionCall","src":"9376:18:16"},"variables":[{"name":"memberValue0_1","nodeType":"YulTypedName","src":"9358:14:16","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_1","nodeType":"YulIdentifier","src":"9423:14:16"},{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9443:3:16"},{"name":"_9","nodeType":"YulIdentifier","src":"9448:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9439:3:16"},"nodeType":"YulFunctionCall","src":"9439:12:16"}],"functionName":{"name":"abi_encode_bool","nodeType":"YulIdentifier","src":"9407:15:16"},"nodeType":"YulFunctionCall","src":"9407:45:16"},"nodeType":"YulExpressionStatement","src":"9407:45:16"},{"nodeType":"YulVariableDeclaration","src":"9465:17:16","value":{"kind":"number","nodeType":"YulLiteral","src":"9476:6:16","type":"","value":"0x0120"},"variables":[{"name":"_10","nodeType":"YulTypedName","src":"9469:3:16","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9506:3:16"},{"name":"_10","nodeType":"YulIdentifier","src":"9511:3:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9502:3:16"},"nodeType":"YulFunctionCall","src":"9502:13:16"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"9527:2:16"},{"name":"_10","nodeType":"YulIdentifier","src":"9531:3:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9523:3:16"},"nodeType":"YulFunctionCall","src":"9523:12:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"9517:5:16"},"nodeType":"YulFunctionCall","src":"9517:19:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9495:6:16"},"nodeType":"YulFunctionCall","src":"9495:42:16"},"nodeType":"YulExpressionStatement","src":"9495:42:16"},{"nodeType":"YulAssignment","src":"9550:23:16","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"9561:3:16"},{"kind":"number","nodeType":"YulLiteral","src":"9566:6:16","type":"","value":"0x0140"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9557:3:16"},"nodeType":"YulFunctionCall","src":"9557:16:16"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"9550:3:16"}]},{"nodeType":"YulAssignment","src":"9586:25:16","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"9600:6:16"},{"name":"_1","nodeType":"YulIdentifier","src":"9608:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9596:3:16"},"nodeType":"YulFunctionCall","src":"9596:15:16"},"variableNames":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"9586:6:16"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"8639:1:16"},{"name":"length","nodeType":"YulIdentifier","src":"8642:6:16"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"8636:2:16"},"nodeType":"YulFunctionCall","src":"8636:13:16"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"8650:18:16","statements":[{"nodeType":"YulAssignment","src":"8652:14:16","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"8661:1:16"},{"kind":"number","nodeType":"YulLiteral","src":"8664:1:16","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"8657:3:16"},"nodeType":"YulFunctionCall","src":"8657:9:16"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"8652:1:16"}]}]},"pre":{"nodeType":"YulBlock","src":"8632:3:16","statements":[]},"src":"8628:993:16"},{"nodeType":"YulAssignment","src":"9630:11:16","value":{"name":"pos","nodeType":"YulIdentifier","src":"9638:3:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"9630:4:16"}]}]},"name":"abi_encode_tuple_t_array$_t_struct$_Vesting_$1827_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Vesting_$1827_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"8290:9:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"8301:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"8312:4:16","type":""}],"src":"8120:1527:16"},{"body":{"nodeType":"YulBlock","src":"9869:748:16","statements":[{"nodeType":"YulVariableDeclaration","src":"9879:12:16","value":{"kind":"number","nodeType":"YulLiteral","src":"9889:2:16","type":"","value":"32"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"9883:2:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"9900:32:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9918:9:16"},{"name":"_1","nodeType":"YulIdentifier","src":"9929:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"9914:3:16"},"nodeType":"YulFunctionCall","src":"9914:18:16"},"variables":[{"name":"tail_1","nodeType":"YulTypedName","src":"9904:6:16","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"9948:9:16"},{"name":"_1","nodeType":"YulIdentifier","src":"9959:2:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"9941:6:16"},"nodeType":"YulFunctionCall","src":"9941:21:16"},"nodeType":"YulExpressionStatement","src":"9941:21:16"},{"nodeType":"YulVariableDeclaration","src":"9971:17:16","value":{"name":"tail_1","nodeType":"YulIdentifier","src":"9982:6:16"},"variables":[{"name":"pos","nodeType":"YulTypedName","src":"9975:3:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"9997:27:16","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"10017:6:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10011:5:16"},"nodeType":"YulFunctionCall","src":"10011:13:16"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"10001:6:16","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nodeType":"YulIdentifier","src":"10040:6:16"},{"name":"length","nodeType":"YulIdentifier","src":"10048:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10033:6:16"},"nodeType":"YulFunctionCall","src":"10033:22:16"},"nodeType":"YulExpressionStatement","src":"10033:22:16"},{"nodeType":"YulVariableDeclaration","src":"10064:12:16","value":{"kind":"number","nodeType":"YulLiteral","src":"10074:2:16","type":"","value":"64"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"10068:2:16","type":""}]},{"nodeType":"YulAssignment","src":"10085:25:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10096:9:16"},{"name":"_2","nodeType":"YulIdentifier","src":"10107:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10092:3:16"},"nodeType":"YulFunctionCall","src":"10092:18:16"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"10085:3:16"}]},{"nodeType":"YulVariableDeclaration","src":"10119:29:16","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"10137:6:16"},{"name":"_1","nodeType":"YulIdentifier","src":"10145:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10133:3:16"},"nodeType":"YulFunctionCall","src":"10133:15:16"},"variables":[{"name":"srcPtr","nodeType":"YulTypedName","src":"10123:6:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"10157:10:16","value":{"kind":"number","nodeType":"YulLiteral","src":"10166:1:16","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"10161:1:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"10225:366:16","statements":[{"nodeType":"YulVariableDeclaration","src":"10239:23:16","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"10255:6:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10249:5:16"},"nodeType":"YulFunctionCall","src":"10249:13:16"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"10243:2:16","type":""}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10282:3:16"},{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"10293:2:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10287:5:16"},"nodeType":"YulFunctionCall","src":"10287:9:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10275:6:16"},"nodeType":"YulFunctionCall","src":"10275:22:16"},"nodeType":"YulExpressionStatement","src":"10275:22:16"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10321:3:16"},{"name":"_1","nodeType":"YulIdentifier","src":"10326:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10317:3:16"},"nodeType":"YulFunctionCall","src":"10317:12:16"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"10341:2:16"},{"name":"_1","nodeType":"YulIdentifier","src":"10345:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10337:3:16"},"nodeType":"YulFunctionCall","src":"10337:11:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10331:5:16"},"nodeType":"YulFunctionCall","src":"10331:18:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10310:6:16"},"nodeType":"YulFunctionCall","src":"10310:40:16"},"nodeType":"YulExpressionStatement","src":"10310:40:16"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10374:3:16"},{"name":"_2","nodeType":"YulIdentifier","src":"10379:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10370:3:16"},"nodeType":"YulFunctionCall","src":"10370:12:16"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"10394:2:16"},{"name":"_2","nodeType":"YulIdentifier","src":"10398:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10390:3:16"},"nodeType":"YulFunctionCall","src":"10390:11:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10384:5:16"},"nodeType":"YulFunctionCall","src":"10384:18:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10363:6:16"},"nodeType":"YulFunctionCall","src":"10363:40:16"},"nodeType":"YulExpressionStatement","src":"10363:40:16"},{"nodeType":"YulVariableDeclaration","src":"10416:14:16","value":{"kind":"number","nodeType":"YulLiteral","src":"10426:4:16","type":"","value":"0x60"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"10420:2:16","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10454:3:16"},{"name":"_4","nodeType":"YulIdentifier","src":"10459:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10450:3:16"},"nodeType":"YulFunctionCall","src":"10450:12:16"},{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"10478:2:16"},{"name":"_4","nodeType":"YulIdentifier","src":"10482:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10474:3:16"},"nodeType":"YulFunctionCall","src":"10474:11:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"10468:5:16"},"nodeType":"YulFunctionCall","src":"10468:18:16"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10496:3:16","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"10501:1:16","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"10492:3:16"},"nodeType":"YulFunctionCall","src":"10492:11:16"},{"kind":"number","nodeType":"YulLiteral","src":"10505:1:16","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"10488:3:16"},"nodeType":"YulFunctionCall","src":"10488:19:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"10464:3:16"},"nodeType":"YulFunctionCall","src":"10464:44:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"10443:6:16"},"nodeType":"YulFunctionCall","src":"10443:66:16"},"nodeType":"YulExpressionStatement","src":"10443:66:16"},{"nodeType":"YulAssignment","src":"10522:21:16","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"10533:3:16"},{"kind":"number","nodeType":"YulLiteral","src":"10538:4:16","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10529:3:16"},"nodeType":"YulFunctionCall","src":"10529:14:16"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"10522:3:16"}]},{"nodeType":"YulAssignment","src":"10556:25:16","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"10570:6:16"},{"name":"_1","nodeType":"YulIdentifier","src":"10578:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10566:3:16"},"nodeType":"YulFunctionCall","src":"10566:15:16"},"variableNames":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"10556:6:16"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"10187:1:16"},{"name":"length","nodeType":"YulIdentifier","src":"10190:6:16"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"10184:2:16"},"nodeType":"YulFunctionCall","src":"10184:13:16"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"10198:18:16","statements":[{"nodeType":"YulAssignment","src":"10200:14:16","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"10209:1:16"},{"kind":"number","nodeType":"YulLiteral","src":"10212:1:16","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10205:3:16"},"nodeType":"YulFunctionCall","src":"10205:9:16"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"10200:1:16"}]}]},"pre":{"nodeType":"YulBlock","src":"10180:3:16","statements":[]},"src":"10176:415:16"},{"nodeType":"YulAssignment","src":"10600:11:16","value":{"name":"pos","nodeType":"YulIdentifier","src":"10608:3:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"10600:4:16"}]}]},"name":"abi_encode_tuple_t_array$_t_struct$_WithdrawVesting_$1841_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_WithdrawVesting_$1841_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"9838:9:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"9849:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"9860:4:16","type":""}],"src":"9652:965:16"},{"body":{"nodeType":"YulBlock","src":"10726:212:16","statements":[{"body":{"nodeType":"YulBlock","src":"10772:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"10781:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"10784:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"10774:6:16"},"nodeType":"YulFunctionCall","src":"10774:12:16"},"nodeType":"YulExpressionStatement","src":"10774:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"10747:7:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"10756:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"10743:3:16"},"nodeType":"YulFunctionCall","src":"10743:23:16"},{"kind":"number","nodeType":"YulLiteral","src":"10768:2:16","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"10739:3:16"},"nodeType":"YulFunctionCall","src":"10739:32:16"},"nodeType":"YulIf","src":"10736:52:16"},{"nodeType":"YulAssignment","src":"10797:33:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10820:9:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"10807:12:16"},"nodeType":"YulFunctionCall","src":"10807:23:16"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"10797:6:16"}]},{"nodeType":"YulAssignment","src":"10839:42:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10866:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"10877:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10862:3:16"},"nodeType":"YulFunctionCall","src":"10862:18:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"10849:12:16"},"nodeType":"YulFunctionCall","src":"10849:32:16"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"10839:6:16"}]},{"nodeType":"YulAssignment","src":"10890:42:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"10917:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"10928:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"10913:3:16"},"nodeType":"YulFunctionCall","src":"10913:18:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"10900:12:16"},"nodeType":"YulFunctionCall","src":"10900:32:16"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"10890:6:16"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"10676:9:16","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"10687:7:16","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"10699:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"10707:6:16","type":""},{"name":"value2","nodeType":"YulTypedName","src":"10715:6:16","type":""}],"src":"10622:316:16"},{"body":{"nodeType":"YulBlock","src":"11098:380:16","statements":[{"body":{"nodeType":"YulBlock","src":"11145:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"11154:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"11157:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"11147:6:16"},"nodeType":"YulFunctionCall","src":"11147:12:16"},"nodeType":"YulExpressionStatement","src":"11147:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"11119:7:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"11128:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"11115:3:16"},"nodeType":"YulFunctionCall","src":"11115:23:16"},{"kind":"number","nodeType":"YulLiteral","src":"11140:3:16","type":"","value":"192"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"11111:3:16"},"nodeType":"YulFunctionCall","src":"11111:33:16"},"nodeType":"YulIf","src":"11108:53:16"},{"nodeType":"YulAssignment","src":"11170:39:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11199:9:16"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"11180:18:16"},"nodeType":"YulFunctionCall","src":"11180:29:16"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"11170:6:16"}]},{"nodeType":"YulAssignment","src":"11218:42:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11245:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"11256:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11241:3:16"},"nodeType":"YulFunctionCall","src":"11241:18:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"11228:12:16"},"nodeType":"YulFunctionCall","src":"11228:32:16"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"11218:6:16"}]},{"nodeType":"YulAssignment","src":"11269:42:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11296:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"11307:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11292:3:16"},"nodeType":"YulFunctionCall","src":"11292:18:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"11279:12:16"},"nodeType":"YulFunctionCall","src":"11279:32:16"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"11269:6:16"}]},{"nodeType":"YulAssignment","src":"11320:42:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11347:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"11358:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11343:3:16"},"nodeType":"YulFunctionCall","src":"11343:18:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"11330:12:16"},"nodeType":"YulFunctionCall","src":"11330:32:16"},"variableNames":[{"name":"value3","nodeType":"YulIdentifier","src":"11320:6:16"}]},{"nodeType":"YulAssignment","src":"11371:49:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11404:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"11415:3:16","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11400:3:16"},"nodeType":"YulFunctionCall","src":"11400:19:16"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"11381:18:16"},"nodeType":"YulFunctionCall","src":"11381:39:16"},"variableNames":[{"name":"value4","nodeType":"YulIdentifier","src":"11371:6:16"}]},{"nodeType":"YulAssignment","src":"11429:43:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"11456:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"11467:3:16","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11452:3:16"},"nodeType":"YulFunctionCall","src":"11452:19:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"11439:12:16"},"nodeType":"YulFunctionCall","src":"11439:33:16"},"variableNames":[{"name":"value5","nodeType":"YulIdentifier","src":"11429:6:16"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint256t_uint256t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11024:9:16","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"11035:7:16","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"11047:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"11055:6:16","type":""},{"name":"value2","nodeType":"YulTypedName","src":"11063:6:16","type":""},{"name":"value3","nodeType":"YulTypedName","src":"11071:6:16","type":""},{"name":"value4","nodeType":"YulTypedName","src":"11079:6:16","type":""},{"name":"value5","nodeType":"YulTypedName","src":"11087:6:16","type":""}],"src":"10943:535:16"},{"body":{"nodeType":"YulBlock","src":"11532:265:16","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11549:3:16"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"11560:5:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"11554:5:16"},"nodeType":"YulFunctionCall","src":"11554:12:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11542:6:16"},"nodeType":"YulFunctionCall","src":"11542:25:16"},"nodeType":"YulExpressionStatement","src":"11542:25:16"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11587:3:16"},{"kind":"number","nodeType":"YulLiteral","src":"11592:4:16","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11583:3:16"},"nodeType":"YulFunctionCall","src":"11583:14:16"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"11609:5:16"},{"kind":"number","nodeType":"YulLiteral","src":"11616:4:16","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11605:3:16"},"nodeType":"YulFunctionCall","src":"11605:16:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"11599:5:16"},"nodeType":"YulFunctionCall","src":"11599:23:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11576:6:16"},"nodeType":"YulFunctionCall","src":"11576:47:16"},"nodeType":"YulExpressionStatement","src":"11576:47:16"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11643:3:16"},{"kind":"number","nodeType":"YulLiteral","src":"11648:4:16","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11639:3:16"},"nodeType":"YulFunctionCall","src":"11639:14:16"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"11665:5:16"},{"kind":"number","nodeType":"YulLiteral","src":"11672:4:16","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11661:3:16"},"nodeType":"YulFunctionCall","src":"11661:16:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"11655:5:16"},"nodeType":"YulFunctionCall","src":"11655:23:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11632:6:16"},"nodeType":"YulFunctionCall","src":"11632:47:16"},"nodeType":"YulExpressionStatement","src":"11632:47:16"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11699:3:16"},{"kind":"number","nodeType":"YulLiteral","src":"11704:4:16","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11695:3:16"},"nodeType":"YulFunctionCall","src":"11695:14:16"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"11721:5:16"},{"kind":"number","nodeType":"YulLiteral","src":"11728:4:16","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11717:3:16"},"nodeType":"YulFunctionCall","src":"11717:16:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"11711:5:16"},"nodeType":"YulFunctionCall","src":"11711:23:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11688:6:16"},"nodeType":"YulFunctionCall","src":"11688:47:16"},"nodeType":"YulExpressionStatement","src":"11688:47:16"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"11755:3:16"},{"kind":"number","nodeType":"YulLiteral","src":"11760:4:16","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11751:3:16"},"nodeType":"YulFunctionCall","src":"11751:14:16"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"11777:5:16"},{"kind":"number","nodeType":"YulLiteral","src":"11784:4:16","type":"","value":"0x80"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"11773:3:16"},"nodeType":"YulFunctionCall","src":"11773:16:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"11767:5:16"},"nodeType":"YulFunctionCall","src":"11767:23:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"11744:6:16"},"nodeType":"YulFunctionCall","src":"11744:47:16"},"nodeType":"YulExpressionStatement","src":"11744:47:16"}]},"name":"abi_encode_struct_Epoch","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"11516:5:16","type":""},{"name":"pos","nodeType":"YulTypedName","src":"11523:3:16","type":""}],"src":"11483:314:16"},{"body":{"nodeType":"YulBlock","src":"11999:500:16","statements":[{"nodeType":"YulVariableDeclaration","src":"12009:12:16","value":{"kind":"number","nodeType":"YulLiteral","src":"12019:2:16","type":"","value":"32"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"12013:2:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"12030:32:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12048:9:16"},{"name":"_1","nodeType":"YulIdentifier","src":"12059:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12044:3:16"},"nodeType":"YulFunctionCall","src":"12044:18:16"},"variables":[{"name":"tail_1","nodeType":"YulTypedName","src":"12034:6:16","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12078:9:16"},{"name":"_1","nodeType":"YulIdentifier","src":"12089:2:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12071:6:16"},"nodeType":"YulFunctionCall","src":"12071:21:16"},"nodeType":"YulExpressionStatement","src":"12071:21:16"},{"nodeType":"YulVariableDeclaration","src":"12101:17:16","value":{"name":"tail_1","nodeType":"YulIdentifier","src":"12112:6:16"},"variables":[{"name":"pos","nodeType":"YulTypedName","src":"12105:3:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"12127:27:16","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"12147:6:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"12141:5:16"},"nodeType":"YulFunctionCall","src":"12141:13:16"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"12131:6:16","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nodeType":"YulIdentifier","src":"12170:6:16"},{"name":"length","nodeType":"YulIdentifier","src":"12178:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12163:6:16"},"nodeType":"YulFunctionCall","src":"12163:22:16"},"nodeType":"YulExpressionStatement","src":"12163:22:16"},{"nodeType":"YulAssignment","src":"12194:25:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12205:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"12216:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12201:3:16"},"nodeType":"YulFunctionCall","src":"12201:18:16"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"12194:3:16"}]},{"nodeType":"YulVariableDeclaration","src":"12228:29:16","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"12246:6:16"},{"name":"_1","nodeType":"YulIdentifier","src":"12254:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12242:3:16"},"nodeType":"YulFunctionCall","src":"12242:15:16"},"variables":[{"name":"srcPtr","nodeType":"YulTypedName","src":"12232:6:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"12266:10:16","value":{"kind":"number","nodeType":"YulLiteral","src":"12275:1:16","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"12270:1:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"12334:139:16","statements":[{"expression":{"arguments":[{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"12378:6:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"12372:5:16"},"nodeType":"YulFunctionCall","src":"12372:13:16"},{"name":"pos","nodeType":"YulIdentifier","src":"12387:3:16"}],"functionName":{"name":"abi_encode_struct_Epoch","nodeType":"YulIdentifier","src":"12348:23:16"},"nodeType":"YulFunctionCall","src":"12348:43:16"},"nodeType":"YulExpressionStatement","src":"12348:43:16"},{"nodeType":"YulAssignment","src":"12404:21:16","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"12415:3:16"},{"kind":"number","nodeType":"YulLiteral","src":"12420:4:16","type":"","value":"0xa0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12411:3:16"},"nodeType":"YulFunctionCall","src":"12411:14:16"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"12404:3:16"}]},{"nodeType":"YulAssignment","src":"12438:25:16","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"12452:6:16"},{"name":"_1","nodeType":"YulIdentifier","src":"12460:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12448:3:16"},"nodeType":"YulFunctionCall","src":"12448:15:16"},"variableNames":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"12438:6:16"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"12296:1:16"},{"name":"length","nodeType":"YulIdentifier","src":"12299:6:16"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"12293:2:16"},"nodeType":"YulFunctionCall","src":"12293:13:16"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"12307:18:16","statements":[{"nodeType":"YulAssignment","src":"12309:14:16","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"12318:1:16"},{"kind":"number","nodeType":"YulLiteral","src":"12321:1:16","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12314:3:16"},"nodeType":"YulFunctionCall","src":"12314:9:16"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"12309:1:16"}]}]},"pre":{"nodeType":"YulBlock","src":"12289:3:16","statements":[]},"src":"12285:188:16"},{"nodeType":"YulAssignment","src":"12482:11:16","value":{"name":"pos","nodeType":"YulIdentifier","src":"12490:3:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12482:4:16"}]}]},"name":"abi_encode_tuple_t_array$_t_struct$_Epoch_$1852_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Epoch_$1852_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"11968:9:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"11979:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"11990:4:16","type":""}],"src":"11802:697:16"},{"body":{"nodeType":"YulBlock","src":"12745:350:16","statements":[{"nodeType":"YulAssignment","src":"12755:27:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12767:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"12778:3:16","type":"","value":"192"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12763:3:16"},"nodeType":"YulFunctionCall","src":"12763:19:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"12755:4:16"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12798:9:16"},{"name":"value0","nodeType":"YulIdentifier","src":"12809:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12791:6:16"},"nodeType":"YulFunctionCall","src":"12791:25:16"},"nodeType":"YulExpressionStatement","src":"12791:25:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12836:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"12847:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12832:3:16"},"nodeType":"YulFunctionCall","src":"12832:18:16"},{"name":"value1","nodeType":"YulIdentifier","src":"12852:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12825:6:16"},"nodeType":"YulFunctionCall","src":"12825:34:16"},"nodeType":"YulExpressionStatement","src":"12825:34:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12879:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"12890:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12875:3:16"},"nodeType":"YulFunctionCall","src":"12875:18:16"},{"name":"value2","nodeType":"YulIdentifier","src":"12895:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12868:6:16"},"nodeType":"YulFunctionCall","src":"12868:34:16"},"nodeType":"YulExpressionStatement","src":"12868:34:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"12922:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"12933:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12918:3:16"},"nodeType":"YulFunctionCall","src":"12918:18:16"},{"name":"value3","nodeType":"YulIdentifier","src":"12938:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12911:6:16"},"nodeType":"YulFunctionCall","src":"12911:34:16"},"nodeType":"YulExpressionStatement","src":"12911:34:16"},{"nodeType":"YulVariableDeclaration","src":"12954:29:16","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"12972:3:16","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"12977:1:16","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"12968:3:16"},"nodeType":"YulFunctionCall","src":"12968:11:16"},{"kind":"number","nodeType":"YulLiteral","src":"12981:1:16","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"12964:3:16"},"nodeType":"YulFunctionCall","src":"12964:19:16"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"12958:2:16","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13003:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"13014:3:16","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"12999:3:16"},"nodeType":"YulFunctionCall","src":"12999:19:16"},{"arguments":[{"name":"value4","nodeType":"YulIdentifier","src":"13024:6:16"},{"name":"_1","nodeType":"YulIdentifier","src":"13032:2:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"13020:3:16"},"nodeType":"YulFunctionCall","src":"13020:15:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"12992:6:16"},"nodeType":"YulFunctionCall","src":"12992:44:16"},"nodeType":"YulExpressionStatement","src":"12992:44:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13056:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"13067:3:16","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13052:3:16"},"nodeType":"YulFunctionCall","src":"13052:19:16"},{"arguments":[{"name":"value5","nodeType":"YulIdentifier","src":"13077:6:16"},{"name":"_1","nodeType":"YulIdentifier","src":"13085:2:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"13073:3:16"},"nodeType":"YulFunctionCall","src":"13073:15:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13045:6:16"},"nodeType":"YulFunctionCall","src":"13045:44:16"},"nodeType":"YulExpressionStatement","src":"13045:44:16"}]},"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:16","type":""},{"name":"value5","nodeType":"YulTypedName","src":"12685:6:16","type":""},{"name":"value4","nodeType":"YulTypedName","src":"12693:6:16","type":""},{"name":"value3","nodeType":"YulTypedName","src":"12701:6:16","type":""},{"name":"value2","nodeType":"YulTypedName","src":"12709:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"12717:6:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"12725:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"12736:4:16","type":""}],"src":"12504:591:16"},{"body":{"nodeType":"YulBlock","src":"13255:98:16","statements":[{"nodeType":"YulAssignment","src":"13265:27:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13277:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"13288:3:16","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13273:3:16"},"nodeType":"YulFunctionCall","src":"13273:19:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13265:4:16"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"13329:6:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"13337:9:16"}],"functionName":{"name":"abi_encode_struct_SellStake","nodeType":"YulIdentifier","src":"13301:27:16"},"nodeType":"YulFunctionCall","src":"13301:46:16"},"nodeType":"YulExpressionStatement","src":"13301:46:16"}]},"name":"abi_encode_tuple_t_struct$_SellStake_$1868_memory_ptr__to_t_struct$_SellStake_$1868_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13224:9:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"13235:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"13246:4:16","type":""}],"src":"13100:253:16"},{"body":{"nodeType":"YulBlock","src":"13415:153:16","statements":[{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13432:3:16"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"13443:5:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"13437:5:16"},"nodeType":"YulFunctionCall","src":"13437:12:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13425:6:16"},"nodeType":"YulFunctionCall","src":"13425:25:16"},"nodeType":"YulExpressionStatement","src":"13425:25:16"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13470:3:16"},{"kind":"number","nodeType":"YulLiteral","src":"13475:4:16","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13466:3:16"},"nodeType":"YulFunctionCall","src":"13466:14:16"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"13492:5:16"},{"kind":"number","nodeType":"YulLiteral","src":"13499:4:16","type":"","value":"0x20"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13488:3:16"},"nodeType":"YulFunctionCall","src":"13488:16:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"13482:5:16"},"nodeType":"YulFunctionCall","src":"13482:23:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13459:6:16"},"nodeType":"YulFunctionCall","src":"13459:47:16"},"nodeType":"YulExpressionStatement","src":"13459:47:16"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"13526:3:16"},{"kind":"number","nodeType":"YulLiteral","src":"13531:4:16","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13522:3:16"},"nodeType":"YulFunctionCall","src":"13522:14:16"},{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"13548:5:16"},{"kind":"number","nodeType":"YulLiteral","src":"13555:4:16","type":"","value":"0x40"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13544:3:16"},"nodeType":"YulFunctionCall","src":"13544:16:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"13538:5:16"},"nodeType":"YulFunctionCall","src":"13538:23:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"13515:6:16"},"nodeType":"YulFunctionCall","src":"13515:47:16"},"nodeType":"YulExpressionStatement","src":"13515:47:16"}]},"name":"abi_encode_struct_WithdrawStake","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"13399:5:16","type":""},{"name":"pos","nodeType":"YulTypedName","src":"13406:3:16","type":""}],"src":"13358:210:16"},{"body":{"nodeType":"YulBlock","src":"13736:101:16","statements":[{"nodeType":"YulAssignment","src":"13746:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"13758:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"13769:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"13754:3:16"},"nodeType":"YulFunctionCall","src":"13754:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"13746:4:16"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"13813:6:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"13821:9:16"}],"functionName":{"name":"abi_encode_struct_WithdrawStake","nodeType":"YulIdentifier","src":"13781:31:16"},"nodeType":"YulFunctionCall","src":"13781:50:16"},"nodeType":"YulExpressionStatement","src":"13781:50:16"}]},"name":"abi_encode_tuple_t_struct$_WithdrawStake_$1859_memory_ptr__to_t_struct$_WithdrawStake_$1859_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13705:9:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"13716:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"13727:4:16","type":""}],"src":"13573:264:16"},{"body":{"nodeType":"YulBlock","src":"13946:218:16","statements":[{"body":{"nodeType":"YulBlock","src":"13992:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"14001:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"14004:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"13994:6:16"},"nodeType":"YulFunctionCall","src":"13994:12:16"},"nodeType":"YulExpressionStatement","src":"13994:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"13967:7:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"13976:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"13963:3:16"},"nodeType":"YulFunctionCall","src":"13963:23:16"},{"kind":"number","nodeType":"YulLiteral","src":"13988:2:16","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"13959:3:16"},"nodeType":"YulFunctionCall","src":"13959:32:16"},"nodeType":"YulIf","src":"13956:52:16"},{"nodeType":"YulAssignment","src":"14017:39:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14046:9:16"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"14027:18:16"},"nodeType":"YulFunctionCall","src":"14027:29:16"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"14017:6:16"}]},{"nodeType":"YulAssignment","src":"14065:42:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14092:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"14103:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14088:3:16"},"nodeType":"YulFunctionCall","src":"14088:18:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"14075:12:16"},"nodeType":"YulFunctionCall","src":"14075:32:16"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"14065:6:16"}]},{"nodeType":"YulAssignment","src":"14116:42:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14143:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"14154:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14139:3:16"},"nodeType":"YulFunctionCall","src":"14139:18:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"14126:12:16"},"nodeType":"YulFunctionCall","src":"14126:32:16"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"14116:6:16"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"13896:9:16","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"13907:7:16","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"13919:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"13927:6:16","type":""},{"name":"value2","nodeType":"YulTypedName","src":"13935:6:16","type":""}],"src":"13842:322:16"},{"body":{"nodeType":"YulBlock","src":"14316:94:16","statements":[{"nodeType":"YulAssignment","src":"14326:27:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14338:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"14349:3:16","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14334:3:16"},"nodeType":"YulFunctionCall","src":"14334:19:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14326:4:16"}]},{"expression":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"14386:6:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"14394:9:16"}],"functionName":{"name":"abi_encode_struct_Epoch","nodeType":"YulIdentifier","src":"14362:23:16"},"nodeType":"YulFunctionCall","src":"14362:42:16"},"nodeType":"YulExpressionStatement","src":"14362:42:16"}]},"name":"abi_encode_tuple_t_struct$_Epoch_$1852_memory_ptr__to_t_struct$_Epoch_$1852_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"14285:9:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"14296:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"14307:4:16","type":""}],"src":"14169:241:16"},{"body":{"nodeType":"YulBlock","src":"14762:512:16","statements":[{"nodeType":"YulAssignment","src":"14772:27:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14784:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"14795:3:16","type":"","value":"320"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14780:3:16"},"nodeType":"YulFunctionCall","src":"14780:19:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"14772:4:16"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14815:9:16"},{"name":"value0","nodeType":"YulIdentifier","src":"14826:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14808:6:16"},"nodeType":"YulFunctionCall","src":"14808:25:16"},"nodeType":"YulExpressionStatement","src":"14808:25:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14853:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"14864:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14849:3:16"},"nodeType":"YulFunctionCall","src":"14849:18:16"},{"name":"value1","nodeType":"YulIdentifier","src":"14869:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14842:6:16"},"nodeType":"YulFunctionCall","src":"14842:34:16"},"nodeType":"YulExpressionStatement","src":"14842:34:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14896:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"14907:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14892:3:16"},"nodeType":"YulFunctionCall","src":"14892:18:16"},{"name":"value2","nodeType":"YulIdentifier","src":"14912:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14885:6:16"},"nodeType":"YulFunctionCall","src":"14885:34:16"},"nodeType":"YulExpressionStatement","src":"14885:34:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14939:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"14950:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14935:3:16"},"nodeType":"YulFunctionCall","src":"14935:18:16"},{"name":"value3","nodeType":"YulIdentifier","src":"14955:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14928:6:16"},"nodeType":"YulFunctionCall","src":"14928:34:16"},"nodeType":"YulExpressionStatement","src":"14928:34:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"14982:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"14993:3:16","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"14978:3:16"},"nodeType":"YulFunctionCall","src":"14978:19:16"},{"name":"value4","nodeType":"YulIdentifier","src":"14999:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"14971:6:16"},"nodeType":"YulFunctionCall","src":"14971:35:16"},"nodeType":"YulExpressionStatement","src":"14971:35:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15026:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"15037:3:16","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15022:3:16"},"nodeType":"YulFunctionCall","src":"15022:19:16"},{"name":"value5","nodeType":"YulIdentifier","src":"15043:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15015:6:16"},"nodeType":"YulFunctionCall","src":"15015:35:16"},"nodeType":"YulExpressionStatement","src":"15015:35:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15070:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"15081:3:16","type":"","value":"192"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15066:3:16"},"nodeType":"YulFunctionCall","src":"15066:19:16"},{"name":"value6","nodeType":"YulIdentifier","src":"15087:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15059:6:16"},"nodeType":"YulFunctionCall","src":"15059:35:16"},"nodeType":"YulExpressionStatement","src":"15059:35:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15114:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"15125:3:16","type":"","value":"224"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15110:3:16"},"nodeType":"YulFunctionCall","src":"15110:19:16"},{"arguments":[{"name":"value7","nodeType":"YulIdentifier","src":"15135:6:16"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"15151:3:16","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"15156:1:16","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"15147:3:16"},"nodeType":"YulFunctionCall","src":"15147:11:16"},{"kind":"number","nodeType":"YulLiteral","src":"15160:1:16","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"15143:3:16"},"nodeType":"YulFunctionCall","src":"15143:19:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"15131:3:16"},"nodeType":"YulFunctionCall","src":"15131:32:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15103:6:16"},"nodeType":"YulFunctionCall","src":"15103:61:16"},"nodeType":"YulExpressionStatement","src":"15103:61:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15184:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"15195:3:16","type":"","value":"256"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15180:3:16"},"nodeType":"YulFunctionCall","src":"15180:19:16"},{"arguments":[{"arguments":[{"name":"value8","nodeType":"YulIdentifier","src":"15215:6:16"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"15208:6:16"},"nodeType":"YulFunctionCall","src":"15208:14:16"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"15201:6:16"},"nodeType":"YulFunctionCall","src":"15201:22:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15173:6:16"},"nodeType":"YulFunctionCall","src":"15173:51:16"},"nodeType":"YulExpressionStatement","src":"15173:51:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15244:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"15255:3:16","type":"","value":"288"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15240:3:16"},"nodeType":"YulFunctionCall","src":"15240:19:16"},{"name":"value9","nodeType":"YulIdentifier","src":"15261:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15233:6:16"},"nodeType":"YulFunctionCall","src":"15233:35:16"},"nodeType":"YulExpressionStatement","src":"15233:35:16"}]},"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":"14659:9:16","type":""},{"name":"value9","nodeType":"YulTypedName","src":"14670:6:16","type":""},{"name":"value8","nodeType":"YulTypedName","src":"14678:6:16","type":""},{"name":"value7","nodeType":"YulTypedName","src":"14686:6:16","type":""},{"name":"value6","nodeType":"YulTypedName","src":"14694:6:16","type":""},{"name":"value5","nodeType":"YulTypedName","src":"14702:6:16","type":""},{"name":"value4","nodeType":"YulTypedName","src":"14710:6:16","type":""},{"name":"value3","nodeType":"YulTypedName","src":"14718:6:16","type":""},{"name":"value2","nodeType":"YulTypedName","src":"14726:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"14734:6:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"14742:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"14753:4:16","type":""}],"src":"14415:859:16"},{"body":{"nodeType":"YulBlock","src":"15508:236:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15525:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"15536:2:16","type":"","value":"64"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15518:6:16"},"nodeType":"YulFunctionCall","src":"15518:21:16"},"nodeType":"YulExpressionStatement","src":"15518:21:16"},{"nodeType":"YulVariableDeclaration","src":"15548:70:16","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"15591:6:16"},{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15603:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"15614:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15599:3:16"},"nodeType":"YulFunctionCall","src":"15599:18:16"}],"functionName":{"name":"abi_encode_array_uint256_dyn","nodeType":"YulIdentifier","src":"15562:28:16"},"nodeType":"YulFunctionCall","src":"15562:56:16"},"variables":[{"name":"tail_1","nodeType":"YulTypedName","src":"15552:6:16","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15638:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"15649:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15634:3:16"},"nodeType":"YulFunctionCall","src":"15634:18:16"},{"arguments":[{"name":"tail_1","nodeType":"YulIdentifier","src":"15658:6:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"15666:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"15654:3:16"},"nodeType":"YulFunctionCall","src":"15654:22:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15627:6:16"},"nodeType":"YulFunctionCall","src":"15627:50:16"},"nodeType":"YulExpressionStatement","src":"15627:50:16"},{"nodeType":"YulAssignment","src":"15686:52:16","value":{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"15723:6:16"},{"name":"tail_1","nodeType":"YulIdentifier","src":"15731:6:16"}],"functionName":{"name":"abi_encode_array_uint256_dyn","nodeType":"YulIdentifier","src":"15694:28:16"},"nodeType":"YulFunctionCall","src":"15694:44:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15686:4:16"}]}]},"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":"15469:9:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"15480:6:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"15488:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15499:4:16","type":""}],"src":"15279:465:16"},{"body":{"nodeType":"YulBlock","src":"15906:162:16","statements":[{"nodeType":"YulAssignment","src":"15916:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15928:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"15939:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15924:3:16"},"nodeType":"YulFunctionCall","src":"15924:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"15916:4:16"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15958:9:16"},{"name":"value0","nodeType":"YulIdentifier","src":"15969:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15951:6:16"},"nodeType":"YulFunctionCall","src":"15951:25:16"},"nodeType":"YulExpressionStatement","src":"15951:25:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"15996:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"16007:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"15992:3:16"},"nodeType":"YulFunctionCall","src":"15992:18:16"},{"name":"value1","nodeType":"YulIdentifier","src":"16012:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"15985:6:16"},"nodeType":"YulFunctionCall","src":"15985:34:16"},"nodeType":"YulExpressionStatement","src":"15985:34:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16039:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"16050:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16035:3:16"},"nodeType":"YulFunctionCall","src":"16035:18:16"},{"name":"value2","nodeType":"YulIdentifier","src":"16055:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16028:6:16"},"nodeType":"YulFunctionCall","src":"16028:34:16"},"nodeType":"YulExpressionStatement","src":"16028:34:16"}]},"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":"15859:9:16","type":""},{"name":"value2","nodeType":"YulTypedName","src":"15870:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"15878:6:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"15886:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"15897:4:16","type":""}],"src":"15749:319:16"},{"body":{"nodeType":"YulBlock","src":"16286:250:16","statements":[{"nodeType":"YulAssignment","src":"16296:27:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16308:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"16319:3:16","type":"","value":"160"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16304:3:16"},"nodeType":"YulFunctionCall","src":"16304:19:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"16296:4:16"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16339:9:16"},{"name":"value0","nodeType":"YulIdentifier","src":"16350:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16332:6:16"},"nodeType":"YulFunctionCall","src":"16332:25:16"},"nodeType":"YulExpressionStatement","src":"16332:25:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16377:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"16388:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16373:3:16"},"nodeType":"YulFunctionCall","src":"16373:18:16"},{"name":"value1","nodeType":"YulIdentifier","src":"16393:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16366:6:16"},"nodeType":"YulFunctionCall","src":"16366:34:16"},"nodeType":"YulExpressionStatement","src":"16366:34:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16420:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"16431:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16416:3:16"},"nodeType":"YulFunctionCall","src":"16416:18:16"},{"name":"value2","nodeType":"YulIdentifier","src":"16436:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16409:6:16"},"nodeType":"YulFunctionCall","src":"16409:34:16"},"nodeType":"YulExpressionStatement","src":"16409:34:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16463:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"16474:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16459:3:16"},"nodeType":"YulFunctionCall","src":"16459:18:16"},{"name":"value3","nodeType":"YulIdentifier","src":"16479:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16452:6:16"},"nodeType":"YulFunctionCall","src":"16452:34:16"},"nodeType":"YulExpressionStatement","src":"16452:34:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16506:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"16517:3:16","type":"","value":"128"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16502:3:16"},"nodeType":"YulFunctionCall","src":"16502:19:16"},{"name":"value4","nodeType":"YulIdentifier","src":"16523:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16495:6:16"},"nodeType":"YulFunctionCall","src":"16495:35:16"},"nodeType":"YulExpressionStatement","src":"16495:35:16"}]},"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":"16223:9:16","type":""},{"name":"value4","nodeType":"YulTypedName","src":"16234:6:16","type":""},{"name":"value3","nodeType":"YulTypedName","src":"16242:6:16","type":""},{"name":"value2","nodeType":"YulTypedName","src":"16250:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"16258:6:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"16266:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"16277:4:16","type":""}],"src":"16073:463:16"},{"body":{"nodeType":"YulBlock","src":"16754:508:16","statements":[{"nodeType":"YulVariableDeclaration","src":"16764:12:16","value":{"kind":"number","nodeType":"YulLiteral","src":"16774:2:16","type":"","value":"32"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"16768:2:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"16785:32:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16803:9:16"},{"name":"_1","nodeType":"YulIdentifier","src":"16814:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16799:3:16"},"nodeType":"YulFunctionCall","src":"16799:18:16"},"variables":[{"name":"tail_1","nodeType":"YulTypedName","src":"16789:6:16","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16833:9:16"},{"name":"_1","nodeType":"YulIdentifier","src":"16844:2:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16826:6:16"},"nodeType":"YulFunctionCall","src":"16826:21:16"},"nodeType":"YulExpressionStatement","src":"16826:21:16"},{"nodeType":"YulVariableDeclaration","src":"16856:17:16","value":{"name":"tail_1","nodeType":"YulIdentifier","src":"16867:6:16"},"variables":[{"name":"pos","nodeType":"YulTypedName","src":"16860:3:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"16882:27:16","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"16902:6:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"16896:5:16"},"nodeType":"YulFunctionCall","src":"16896:13:16"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"16886:6:16","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nodeType":"YulIdentifier","src":"16925:6:16"},{"name":"length","nodeType":"YulIdentifier","src":"16933:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"16918:6:16"},"nodeType":"YulFunctionCall","src":"16918:22:16"},"nodeType":"YulExpressionStatement","src":"16918:22:16"},{"nodeType":"YulAssignment","src":"16949:25:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"16960:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"16971:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16956:3:16"},"nodeType":"YulFunctionCall","src":"16956:18:16"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"16949:3:16"}]},{"nodeType":"YulVariableDeclaration","src":"16983:29:16","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"17001:6:16"},{"name":"_1","nodeType":"YulIdentifier","src":"17009:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"16997:3:16"},"nodeType":"YulFunctionCall","src":"16997:15:16"},"variables":[{"name":"srcPtr","nodeType":"YulTypedName","src":"16987:6:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"17021:10:16","value":{"kind":"number","nodeType":"YulLiteral","src":"17030:1:16","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"17025:1:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"17089:147:16","statements":[{"expression":{"arguments":[{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"17141:6:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"17135:5:16"},"nodeType":"YulFunctionCall","src":"17135:13:16"},{"name":"pos","nodeType":"YulIdentifier","src":"17150:3:16"}],"functionName":{"name":"abi_encode_struct_WithdrawStake","nodeType":"YulIdentifier","src":"17103:31:16"},"nodeType":"YulFunctionCall","src":"17103:51:16"},"nodeType":"YulExpressionStatement","src":"17103:51:16"},{"nodeType":"YulAssignment","src":"17167:21:16","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17178:3:16"},{"kind":"number","nodeType":"YulLiteral","src":"17183:4:16","type":"","value":"0x60"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17174:3:16"},"nodeType":"YulFunctionCall","src":"17174:14:16"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"17167:3:16"}]},{"nodeType":"YulAssignment","src":"17201:25:16","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"17215:6:16"},{"name":"_1","nodeType":"YulIdentifier","src":"17223:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17211:3:16"},"nodeType":"YulFunctionCall","src":"17211:15:16"},"variableNames":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"17201:6:16"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"17051:1:16"},{"name":"length","nodeType":"YulIdentifier","src":"17054:6:16"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"17048:2:16"},"nodeType":"YulFunctionCall","src":"17048:13:16"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"17062:18:16","statements":[{"nodeType":"YulAssignment","src":"17064:14:16","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"17073:1:16"},{"kind":"number","nodeType":"YulLiteral","src":"17076:1:16","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17069:3:16"},"nodeType":"YulFunctionCall","src":"17069:9:16"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"17064:1:16"}]}]},"pre":{"nodeType":"YulBlock","src":"17044:3:16","statements":[]},"src":"17040:196:16"},{"nodeType":"YulAssignment","src":"17245:11:16","value":{"name":"pos","nodeType":"YulIdentifier","src":"17253:3:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"17245:4:16"}]}]},"name":"abi_encode_tuple_t_array$_t_struct$_WithdrawStake_$1859_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_WithdrawStake_$1859_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"16723:9:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"16734:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"16745:4:16","type":""}],"src":"16541:721:16"},{"body":{"nodeType":"YulBlock","src":"17490:987:16","statements":[{"nodeType":"YulVariableDeclaration","src":"17500:12:16","value":{"kind":"number","nodeType":"YulLiteral","src":"17510:2:16","type":"","value":"32"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"17504:2:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"17521:32:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17539:9:16"},{"name":"_1","nodeType":"YulIdentifier","src":"17550:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17535:3:16"},"nodeType":"YulFunctionCall","src":"17535:18:16"},"variables":[{"name":"tail_1","nodeType":"YulTypedName","src":"17525:6:16","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17569:9:16"},{"name":"_1","nodeType":"YulIdentifier","src":"17580:2:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17562:6:16"},"nodeType":"YulFunctionCall","src":"17562:21:16"},"nodeType":"YulExpressionStatement","src":"17562:21:16"},{"nodeType":"YulVariableDeclaration","src":"17592:17:16","value":{"name":"tail_1","nodeType":"YulIdentifier","src":"17603:6:16"},"variables":[{"name":"pos","nodeType":"YulTypedName","src":"17596:3:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"17618:27:16","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"17638:6:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"17632:5:16"},"nodeType":"YulFunctionCall","src":"17632:13:16"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"17622:6:16","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nodeType":"YulIdentifier","src":"17661:6:16"},{"name":"length","nodeType":"YulIdentifier","src":"17669:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17654:6:16"},"nodeType":"YulFunctionCall","src":"17654:22:16"},"nodeType":"YulExpressionStatement","src":"17654:22:16"},{"nodeType":"YulVariableDeclaration","src":"17685:12:16","value":{"kind":"number","nodeType":"YulLiteral","src":"17695:2:16","type":"","value":"64"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"17689:2:16","type":""}]},{"nodeType":"YulAssignment","src":"17706:25:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"17717:9:16"},{"name":"_2","nodeType":"YulIdentifier","src":"17728:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17713:3:16"},"nodeType":"YulFunctionCall","src":"17713:18:16"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"17706:3:16"}]},{"nodeType":"YulVariableDeclaration","src":"17740:29:16","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"17758:6:16"},{"name":"_1","nodeType":"YulIdentifier","src":"17766:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17754:3:16"},"nodeType":"YulFunctionCall","src":"17754:15:16"},"variables":[{"name":"srcPtr","nodeType":"YulTypedName","src":"17744:6:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"17778:10:16","value":{"kind":"number","nodeType":"YulLiteral","src":"17787:1:16","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"17782:1:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"17846:605:16","statements":[{"nodeType":"YulVariableDeclaration","src":"17860:23:16","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"17876:6:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"17870:5:16"},"nodeType":"YulFunctionCall","src":"17870:13:16"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"17864:2:16","type":""}]},{"expression":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17903:3:16"},{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"17914:2:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"17908:5:16"},"nodeType":"YulFunctionCall","src":"17908:9:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17896:6:16"},"nodeType":"YulFunctionCall","src":"17896:22:16"},"nodeType":"YulExpressionStatement","src":"17896:22:16"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17942:3:16"},{"name":"_1","nodeType":"YulIdentifier","src":"17947:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17938:3:16"},"nodeType":"YulFunctionCall","src":"17938:12:16"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"17962:2:16"},{"name":"_1","nodeType":"YulIdentifier","src":"17966:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17958:3:16"},"nodeType":"YulFunctionCall","src":"17958:11:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"17952:5:16"},"nodeType":"YulFunctionCall","src":"17952:18:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17931:6:16"},"nodeType":"YulFunctionCall","src":"17931:40:16"},"nodeType":"YulExpressionStatement","src":"17931:40:16"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"17995:3:16"},{"name":"_2","nodeType":"YulIdentifier","src":"18000:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17991:3:16"},"nodeType":"YulFunctionCall","src":"17991:12:16"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"18015:2:16"},{"name":"_2","nodeType":"YulIdentifier","src":"18019:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18011:3:16"},"nodeType":"YulFunctionCall","src":"18011:11:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"18005:5:16"},"nodeType":"YulFunctionCall","src":"18005:18:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"17984:6:16"},"nodeType":"YulFunctionCall","src":"17984:40:16"},"nodeType":"YulExpressionStatement","src":"17984:40:16"},{"nodeType":"YulVariableDeclaration","src":"18037:14:16","value":{"kind":"number","nodeType":"YulLiteral","src":"18047:4:16","type":"","value":"0x60"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"18041:2:16","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"18075:3:16"},{"name":"_4","nodeType":"YulIdentifier","src":"18080:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18071:3:16"},"nodeType":"YulFunctionCall","src":"18071:12:16"},{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"18095:2:16"},{"name":"_4","nodeType":"YulIdentifier","src":"18099:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18091:3:16"},"nodeType":"YulFunctionCall","src":"18091:11:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"18085:5:16"},"nodeType":"YulFunctionCall","src":"18085:18:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18064:6:16"},"nodeType":"YulFunctionCall","src":"18064:40:16"},"nodeType":"YulExpressionStatement","src":"18064:40:16"},{"nodeType":"YulVariableDeclaration","src":"18117:14:16","value":{"kind":"number","nodeType":"YulLiteral","src":"18127:4:16","type":"","value":"0x80"},"variables":[{"name":"_5","nodeType":"YulTypedName","src":"18121:2:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"18144:38:16","value":{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"18174:2:16"},{"name":"_5","nodeType":"YulIdentifier","src":"18178:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18170:3:16"},"nodeType":"YulFunctionCall","src":"18170:11:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"18164:5:16"},"nodeType":"YulFunctionCall","src":"18164:18:16"},"variables":[{"name":"memberValue0","nodeType":"YulTypedName","src":"18148:12:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"18195:29:16","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"18213:3:16","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"18218:1:16","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"18209:3:16"},"nodeType":"YulFunctionCall","src":"18209:11:16"},{"kind":"number","nodeType":"YulLiteral","src":"18222:1:16","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"18205:3:16"},"nodeType":"YulFunctionCall","src":"18205:19:16"},"variables":[{"name":"_6","nodeType":"YulTypedName","src":"18199:2:16","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"18248:3:16"},{"name":"_5","nodeType":"YulIdentifier","src":"18253:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18244:3:16"},"nodeType":"YulFunctionCall","src":"18244:12:16"},{"arguments":[{"name":"memberValue0","nodeType":"YulIdentifier","src":"18262:12:16"},{"name":"_6","nodeType":"YulIdentifier","src":"18276:2:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"18258:3:16"},"nodeType":"YulFunctionCall","src":"18258:21:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18237:6:16"},"nodeType":"YulFunctionCall","src":"18237:43:16"},"nodeType":"YulExpressionStatement","src":"18237:43:16"},{"nodeType":"YulVariableDeclaration","src":"18293:14:16","value":{"kind":"number","nodeType":"YulLiteral","src":"18303:4:16","type":"","value":"0xa0"},"variables":[{"name":"_7","nodeType":"YulTypedName","src":"18297:2:16","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"18331:3:16"},{"name":"_7","nodeType":"YulIdentifier","src":"18336:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18327:3:16"},"nodeType":"YulFunctionCall","src":"18327:12:16"},{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nodeType":"YulIdentifier","src":"18355:2:16"},{"name":"_7","nodeType":"YulIdentifier","src":"18359:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18351:3:16"},"nodeType":"YulFunctionCall","src":"18351:11:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"18345:5:16"},"nodeType":"YulFunctionCall","src":"18345:18:16"},{"name":"_6","nodeType":"YulIdentifier","src":"18365:2:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"18341:3:16"},"nodeType":"YulFunctionCall","src":"18341:27:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18320:6:16"},"nodeType":"YulFunctionCall","src":"18320:49:16"},"nodeType":"YulExpressionStatement","src":"18320:49:16"},{"nodeType":"YulAssignment","src":"18382:21:16","value":{"arguments":[{"name":"pos","nodeType":"YulIdentifier","src":"18393:3:16"},{"kind":"number","nodeType":"YulLiteral","src":"18398:4:16","type":"","value":"0xc0"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18389:3:16"},"nodeType":"YulFunctionCall","src":"18389:14:16"},"variableNames":[{"name":"pos","nodeType":"YulIdentifier","src":"18382:3:16"}]},{"nodeType":"YulAssignment","src":"18416:25:16","value":{"arguments":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"18430:6:16"},{"name":"_1","nodeType":"YulIdentifier","src":"18438:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"18426:3:16"},"nodeType":"YulFunctionCall","src":"18426:15:16"},"variableNames":[{"name":"srcPtr","nodeType":"YulIdentifier","src":"18416:6:16"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"17808:1:16"},{"name":"length","nodeType":"YulIdentifier","src":"17811:6:16"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"17805:2:16"},"nodeType":"YulFunctionCall","src":"17805:13:16"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"17819:18:16","statements":[{"nodeType":"YulAssignment","src":"17821:14:16","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"17830:1:16"},{"kind":"number","nodeType":"YulLiteral","src":"17833:1:16","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"17826:3:16"},"nodeType":"YulFunctionCall","src":"17826:9:16"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"17821:1:16"}]}]},"pre":{"nodeType":"YulBlock","src":"17801:3:16","statements":[]},"src":"17797:654:16"},{"nodeType":"YulAssignment","src":"18460:11:16","value":{"name":"pos","nodeType":"YulIdentifier","src":"18468:3:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"18460:4:16"}]}]},"name":"abi_encode_tuple_t_array$_t_struct$_MarketplaceHistory_$1886_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_MarketplaceHistory_$1886_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"17459:9:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"17470:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"17481:4:16","type":""}],"src":"17267:1210:16"},{"body":{"nodeType":"YulBlock","src":"18514:95:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"18531:1:16","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"18538:3:16","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"18543:10:16","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"18534:3:16"},"nodeType":"YulFunctionCall","src":"18534:20:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18524:6:16"},"nodeType":"YulFunctionCall","src":"18524:31:16"},"nodeType":"YulExpressionStatement","src":"18524:31:16"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"18571:1:16","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"18574:4:16","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18564:6:16"},"nodeType":"YulFunctionCall","src":"18564:15:16"},"nodeType":"YulExpressionStatement","src":"18564:15:16"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"18595:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"18598:4:16","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"18588:6:16"},"nodeType":"YulFunctionCall","src":"18588:15:16"},"nodeType":"YulExpressionStatement","src":"18588:15:16"}]},"name":"panic_error_0x11","nodeType":"YulFunctionDefinition","src":"18482:127:16"},{"body":{"nodeType":"YulBlock","src":"18666:116:16","statements":[{"nodeType":"YulAssignment","src":"18676:20:16","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"18691:1:16"},{"name":"y","nodeType":"YulIdentifier","src":"18694:1:16"}],"functionName":{"name":"mul","nodeType":"YulIdentifier","src":"18687:3:16"},"nodeType":"YulFunctionCall","src":"18687:9:16"},"variableNames":[{"name":"product","nodeType":"YulIdentifier","src":"18676:7:16"}]},{"body":{"nodeType":"YulBlock","src":"18754:22:16","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"18756:16:16"},"nodeType":"YulFunctionCall","src":"18756:18:16"},"nodeType":"YulExpressionStatement","src":"18756:18:16"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"18725:1:16"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"18718:6:16"},"nodeType":"YulFunctionCall","src":"18718:9:16"},{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"18732:1:16"},{"arguments":[{"name":"product","nodeType":"YulIdentifier","src":"18739:7:16"},{"name":"x","nodeType":"YulIdentifier","src":"18748:1:16"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"18735:3:16"},"nodeType":"YulFunctionCall","src":"18735:15:16"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"18729:2:16"},"nodeType":"YulFunctionCall","src":"18729:22:16"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"18715:2:16"},"nodeType":"YulFunctionCall","src":"18715:37:16"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"18708:6:16"},"nodeType":"YulFunctionCall","src":"18708:45:16"},"nodeType":"YulIf","src":"18705:71:16"}]},"name":"checked_mul_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"18645:1:16","type":""},{"name":"y","nodeType":"YulTypedName","src":"18648:1:16","type":""}],"returnVariables":[{"name":"product","nodeType":"YulTypedName","src":"18654:7:16","type":""}],"src":"18614:168:16"},{"body":{"nodeType":"YulBlock","src":"18833:171:16","statements":[{"body":{"nodeType":"YulBlock","src":"18864:111:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"18885:1:16","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"18892:3:16","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"18897:10:16","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"18888:3:16"},"nodeType":"YulFunctionCall","src":"18888:20:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18878:6:16"},"nodeType":"YulFunctionCall","src":"18878:31:16"},"nodeType":"YulExpressionStatement","src":"18878:31:16"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"18929:1:16","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"18932:4:16","type":"","value":"0x12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"18922:6:16"},"nodeType":"YulFunctionCall","src":"18922:15:16"},"nodeType":"YulExpressionStatement","src":"18922:15:16"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"18957:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"18960:4:16","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"18950:6:16"},"nodeType":"YulFunctionCall","src":"18950:15:16"},"nodeType":"YulExpressionStatement","src":"18950:15:16"}]},"condition":{"arguments":[{"name":"y","nodeType":"YulIdentifier","src":"18853:1:16"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"18846:6:16"},"nodeType":"YulFunctionCall","src":"18846:9:16"},"nodeType":"YulIf","src":"18843:132:16"},{"nodeType":"YulAssignment","src":"18984:14:16","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"18993:1:16"},{"name":"y","nodeType":"YulIdentifier","src":"18996:1:16"}],"functionName":{"name":"div","nodeType":"YulIdentifier","src":"18989:3:16"},"nodeType":"YulFunctionCall","src":"18989:9:16"},"variableNames":[{"name":"r","nodeType":"YulIdentifier","src":"18984:1:16"}]}]},"name":"checked_div_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"18818:1:16","type":""},{"name":"y","nodeType":"YulTypedName","src":"18821:1:16","type":""}],"returnVariables":[{"name":"r","nodeType":"YulTypedName","src":"18827:1:16","type":""}],"src":"18787:217:16"},{"body":{"nodeType":"YulBlock","src":"19057:77:16","statements":[{"nodeType":"YulAssignment","src":"19067:16:16","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"19078:1:16"},{"name":"y","nodeType":"YulIdentifier","src":"19081:1:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19074:3:16"},"nodeType":"YulFunctionCall","src":"19074:9:16"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"19067:3:16"}]},{"body":{"nodeType":"YulBlock","src":"19106:22:16","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"19108:16:16"},"nodeType":"YulFunctionCall","src":"19108:18:16"},"nodeType":"YulExpressionStatement","src":"19108:18:16"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"19098:1:16"},{"name":"sum","nodeType":"YulIdentifier","src":"19101:3:16"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"19095:2:16"},"nodeType":"YulFunctionCall","src":"19095:10:16"},"nodeType":"YulIf","src":"19092:36:16"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"19040:1:16","type":""},{"name":"y","nodeType":"YulTypedName","src":"19043:1:16","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"19049:3:16","type":""}],"src":"19009:125:16"},{"body":{"nodeType":"YulBlock","src":"19188:79:16","statements":[{"nodeType":"YulAssignment","src":"19198:17:16","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"19210:1:16"},{"name":"y","nodeType":"YulIdentifier","src":"19213:1:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"19206:3:16"},"nodeType":"YulFunctionCall","src":"19206:9:16"},"variableNames":[{"name":"diff","nodeType":"YulIdentifier","src":"19198:4:16"}]},{"body":{"nodeType":"YulBlock","src":"19239:22:16","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"19241:16:16"},"nodeType":"YulFunctionCall","src":"19241:18:16"},"nodeType":"YulExpressionStatement","src":"19241:18:16"}]},"condition":{"arguments":[{"name":"diff","nodeType":"YulIdentifier","src":"19230:4:16"},{"name":"x","nodeType":"YulIdentifier","src":"19236:1:16"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"19227:2:16"},"nodeType":"YulFunctionCall","src":"19227:11:16"},"nodeType":"YulIf","src":"19224:37:16"}]},"name":"checked_sub_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"19170:1:16","type":""},{"name":"y","nodeType":"YulTypedName","src":"19173:1:16","type":""}],"returnVariables":[{"name":"diff","nodeType":"YulTypedName","src":"19179:4:16","type":""}],"src":"19139:128:16"},{"body":{"nodeType":"YulBlock","src":"19319:88:16","statements":[{"body":{"nodeType":"YulBlock","src":"19350:22:16","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nodeType":"YulIdentifier","src":"19352:16:16"},"nodeType":"YulFunctionCall","src":"19352:18:16"},"nodeType":"YulExpressionStatement","src":"19352:18:16"}]},"condition":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"19335:5:16"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"19346:1:16","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"19342:3:16"},"nodeType":"YulFunctionCall","src":"19342:6:16"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"19332:2:16"},"nodeType":"YulFunctionCall","src":"19332:17:16"},"nodeType":"YulIf","src":"19329:43:16"},{"nodeType":"YulAssignment","src":"19381:20:16","value":{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"19392:5:16"},{"kind":"number","nodeType":"YulLiteral","src":"19399:1:16","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19388:3:16"},"nodeType":"YulFunctionCall","src":"19388:13:16"},"variableNames":[{"name":"ret","nodeType":"YulIdentifier","src":"19381:3:16"}]}]},"name":"increment_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nodeType":"YulTypedName","src":"19301:5:16","type":""}],"returnVariables":[{"name":"ret","nodeType":"YulTypedName","src":"19311:3:16","type":""}],"src":"19272:135:16"},{"body":{"nodeType":"YulBlock","src":"19444:95:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"19461:1:16","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"19468:3:16","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"19473:10:16","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"19464:3:16"},"nodeType":"YulFunctionCall","src":"19464:20:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19454:6:16"},"nodeType":"YulFunctionCall","src":"19454:31:16"},"nodeType":"YulExpressionStatement","src":"19454:31:16"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"19501:1:16","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"19504:4:16","type":"","value":"0x32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19494:6:16"},"nodeType":"YulFunctionCall","src":"19494:15:16"},"nodeType":"YulExpressionStatement","src":"19494:15:16"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"19525:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"19528:4:16","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"19518:6:16"},"nodeType":"YulFunctionCall","src":"19518:15:16"},"nodeType":"YulExpressionStatement","src":"19518:15:16"}]},"name":"panic_error_0x32","nodeType":"YulFunctionDefinition","src":"19412:127:16"},{"body":{"nodeType":"YulBlock","src":"19718:166:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19735:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"19746:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19728:6:16"},"nodeType":"YulFunctionCall","src":"19728:21:16"},"nodeType":"YulExpressionStatement","src":"19728:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19769:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"19780:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19765:3:16"},"nodeType":"YulFunctionCall","src":"19765:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"19785:2:16","type":"","value":"16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19758:6:16"},"nodeType":"YulFunctionCall","src":"19758:30:16"},"nodeType":"YulExpressionStatement","src":"19758:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19808:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"19819:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19804:3:16"},"nodeType":"YulFunctionCall","src":"19804:18:16"},{"hexValue":"4e6f7468696e6720746f20636c61696d","kind":"string","nodeType":"YulLiteral","src":"19824:18:16","type":"","value":"Nothing to claim"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"19797:6:16"},"nodeType":"YulFunctionCall","src":"19797:46:16"},"nodeType":"YulExpressionStatement","src":"19797:46:16"},{"nodeType":"YulAssignment","src":"19852:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"19864:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"19875:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"19860:3:16"},"nodeType":"YulFunctionCall","src":"19860:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"19852:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_1b72ba14eb1a8a9d546abe036e42fec8df7f04acf2220edbbc427b6b1c2eb1d3__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"19695:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"19709:4:16","type":""}],"src":"19544:340:16"},{"body":{"nodeType":"YulBlock","src":"20063:164:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20080:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"20091:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20073:6:16"},"nodeType":"YulFunctionCall","src":"20073:21:16"},"nodeType":"YulExpressionStatement","src":"20073:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20114:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"20125:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20110:3:16"},"nodeType":"YulFunctionCall","src":"20110:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"20130:2:16","type":"","value":"14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20103:6:16"},"nodeType":"YulFunctionCall","src":"20103:30:16"},"nodeType":"YulExpressionStatement","src":"20103:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20153:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"20164:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20149:3:16"},"nodeType":"YulFunctionCall","src":"20149:18:16"},{"hexValue":"4e6f7420617574686f72697a6564","kind":"string","nodeType":"YulLiteral","src":"20169:16:16","type":"","value":"Not authorized"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20142:6:16"},"nodeType":"YulFunctionCall","src":"20142:44:16"},"nodeType":"YulExpressionStatement","src":"20142:44:16"},{"nodeType":"YulAssignment","src":"20195:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20207:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"20218:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20203:3:16"},"nodeType":"YulFunctionCall","src":"20203:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"20195:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"20040:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"20054:4:16","type":""}],"src":"19889:338:16"},{"body":{"nodeType":"YulBlock","src":"20406:158:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20423:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"20434:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20416:6:16"},"nodeType":"YulFunctionCall","src":"20416:21:16"},"nodeType":"YulExpressionStatement","src":"20416:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20457:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"20468:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20453:3:16"},"nodeType":"YulFunctionCall","src":"20453:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"20473:1:16","type":"","value":"9"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20446:6:16"},"nodeType":"YulFunctionCall","src":"20446:29:16"},"nodeType":"YulExpressionStatement","src":"20446:29:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20495:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"20506:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20491:3:16"},"nodeType":"YulFunctionCall","src":"20491:18:16"},{"hexValue":"4e6f74206f776e6572","kind":"string","nodeType":"YulLiteral","src":"20511:11:16","type":"","value":"Not owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20484:6:16"},"nodeType":"YulFunctionCall","src":"20484:39:16"},"nodeType":"YulExpressionStatement","src":"20484:39:16"},{"nodeType":"YulAssignment","src":"20532:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20544:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"20555:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20540:3:16"},"nodeType":"YulFunctionCall","src":"20540:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"20532:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_c266efca4f4ed37612271196433531dcbb4fca89a694d568d1e290e32feb1682__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"20383:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"20397:4:16","type":""}],"src":"20232:332:16"},{"body":{"nodeType":"YulBlock","src":"20743:168:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20760:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"20771:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20753:6:16"},"nodeType":"YulFunctionCall","src":"20753:21:16"},"nodeType":"YulExpressionStatement","src":"20753:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20794:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"20805:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20790:3:16"},"nodeType":"YulFunctionCall","src":"20790:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"20810:2:16","type":"","value":"18"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20783:6:16"},"nodeType":"YulFunctionCall","src":"20783:30:16"},"nodeType":"YulExpressionStatement","src":"20783:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20833:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"20844:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20829:3:16"},"nodeType":"YulFunctionCall","src":"20829:18:16"},{"hexValue":"43616e6e6f742072656d6f76652073656c66","kind":"string","nodeType":"YulLiteral","src":"20849:20:16","type":"","value":"Cannot remove self"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"20822:6:16"},"nodeType":"YulFunctionCall","src":"20822:48:16"},"nodeType":"YulExpressionStatement","src":"20822:48:16"},{"nodeType":"YulAssignment","src":"20879:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"20891:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"20902:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"20887:3:16"},"nodeType":"YulFunctionCall","src":"20887:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"20879:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_56a630a6cae883952b5fbd7413dd0e1f1e7b64e1f4026c3de951fb35e0a10d3c__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"20720:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"20734:4:16","type":""}],"src":"20569:342:16"},{"body":{"nodeType":"YulBlock","src":"21090:169:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21107:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"21118:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21100:6:16"},"nodeType":"YulFunctionCall","src":"21100:21:16"},"nodeType":"YulExpressionStatement","src":"21100:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21141:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"21152:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21137:3:16"},"nodeType":"YulFunctionCall","src":"21137:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"21157:2:16","type":"","value":"19"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21130:6:16"},"nodeType":"YulFunctionCall","src":"21130:30:16"},"nodeType":"YulExpressionStatement","src":"21130:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21180:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"21191:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21176:3:16"},"nodeType":"YulFunctionCall","src":"21176:18:16"},{"hexValue":"4e6f207374616b657320617661696c61626c65","kind":"string","nodeType":"YulLiteral","src":"21196:21:16","type":"","value":"No stakes available"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21169:6:16"},"nodeType":"YulFunctionCall","src":"21169:49:16"},"nodeType":"YulExpressionStatement","src":"21169:49:16"},{"nodeType":"YulAssignment","src":"21227:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21239:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"21250:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21235:3:16"},"nodeType":"YulFunctionCall","src":"21235:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"21227:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_2c1545a468168af67c0991f4493f605bb35531d3f741d96256911830016317fd__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"21067:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"21081:4:16","type":""}],"src":"20916:343:16"},{"body":{"nodeType":"YulBlock","src":"21438:162:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21455:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"21466:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21448:6:16"},"nodeType":"YulFunctionCall","src":"21448:21:16"},"nodeType":"YulExpressionStatement","src":"21448:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21489:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"21500:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21485:3:16"},"nodeType":"YulFunctionCall","src":"21485:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"21505:2:16","type":"","value":"12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21478:6:16"},"nodeType":"YulFunctionCall","src":"21478:30:16"},"nodeType":"YulExpressionStatement","src":"21478:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21528:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"21539:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21524:3:16"},"nodeType":"YulFunctionCall","src":"21524:18:16"},{"hexValue":"5374616b65206c6f636b6564","kind":"string","nodeType":"YulLiteral","src":"21544:14:16","type":"","value":"Stake locked"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21517:6:16"},"nodeType":"YulFunctionCall","src":"21517:42:16"},"nodeType":"YulExpressionStatement","src":"21517:42:16"},{"nodeType":"YulAssignment","src":"21568:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21580:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"21591:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21576:3:16"},"nodeType":"YulFunctionCall","src":"21576:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"21568:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_c96e0a341c9518256eddb565314349d39d191e3a702caab37452bb2761e74717__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"21415:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"21429:4:16","type":""}],"src":"21264:336:16"},{"body":{"nodeType":"YulBlock","src":"21779:165:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21796:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"21807:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21789:6:16"},"nodeType":"YulFunctionCall","src":"21789:21:16"},"nodeType":"YulExpressionStatement","src":"21789:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21830:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"21841:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21826:3:16"},"nodeType":"YulFunctionCall","src":"21826:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"21846:2:16","type":"","value":"15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21819:6:16"},"nodeType":"YulFunctionCall","src":"21819:30:16"},"nodeType":"YulExpressionStatement","src":"21819:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21869:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"21880:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21865:3:16"},"nodeType":"YulFunctionCall","src":"21865:18:16"},{"hexValue":"5374616b65206e6f7420666f756e64","kind":"string","nodeType":"YulLiteral","src":"21885:17:16","type":"","value":"Stake not found"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21858:6:16"},"nodeType":"YulFunctionCall","src":"21858:45:16"},"nodeType":"YulExpressionStatement","src":"21858:45:16"},{"nodeType":"YulAssignment","src":"21912:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"21924:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"21935:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"21920:3:16"},"nodeType":"YulFunctionCall","src":"21920:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"21912:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_c720c01b1ab900eae0624fc88257558becc0dda54896b3f86c3f492482a20d30__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"21756:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"21770:4:16","type":""}],"src":"21605:339:16"},{"body":{"nodeType":"YulBlock","src":"21981:95:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"21998:1:16","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"22005:3:16","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"22010:10:16","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"22001:3:16"},"nodeType":"YulFunctionCall","src":"22001:20:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"21991:6:16"},"nodeType":"YulFunctionCall","src":"21991:31:16"},"nodeType":"YulExpressionStatement","src":"21991:31:16"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"22038:1:16","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"22041:4:16","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22031:6:16"},"nodeType":"YulFunctionCall","src":"22031:15:16"},"nodeType":"YulExpressionStatement","src":"22031:15:16"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"22062:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"22065:4:16","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"22055:6:16"},"nodeType":"YulFunctionCall","src":"22055:15:16"},"nodeType":"YulExpressionStatement","src":"22055:15:16"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"21949:127:16"},{"body":{"nodeType":"YulBlock","src":"22162:103:16","statements":[{"body":{"nodeType":"YulBlock","src":"22208:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"22217:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"22220:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"22210:6:16"},"nodeType":"YulFunctionCall","src":"22210:12:16"},"nodeType":"YulExpressionStatement","src":"22210:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"22183:7:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"22192:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"22179:3:16"},"nodeType":"YulFunctionCall","src":"22179:23:16"},{"kind":"number","nodeType":"YulLiteral","src":"22204:2:16","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"22175:3:16"},"nodeType":"YulFunctionCall","src":"22175:32:16"},"nodeType":"YulIf","src":"22172:52:16"},{"nodeType":"YulAssignment","src":"22233:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22249:9:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"22243:5:16"},"nodeType":"YulFunctionCall","src":"22243:16:16"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"22233:6:16"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"22128:9:16","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"22139:7:16","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"22151:6:16","type":""}],"src":"22081:184:16"},{"body":{"nodeType":"YulBlock","src":"22407:119:16","statements":[{"nodeType":"YulAssignment","src":"22417:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22429:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"22440:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22425:3:16"},"nodeType":"YulFunctionCall","src":"22425:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"22417:4:16"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22459:9:16"},{"name":"value0","nodeType":"YulIdentifier","src":"22470:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22452:6:16"},"nodeType":"YulFunctionCall","src":"22452:25:16"},"nodeType":"YulExpressionStatement","src":"22452:25:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22497:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"22508:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22493:3:16"},"nodeType":"YulFunctionCall","src":"22493:18:16"},{"name":"value1","nodeType":"YulIdentifier","src":"22513:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22486:6:16"},"nodeType":"YulFunctionCall","src":"22486:34:16"},"nodeType":"YulExpressionStatement","src":"22486:34:16"}]},"name":"abi_encode_tuple_t_uint256_t_rational_0_by_1__to_t_uint256_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"22368:9:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"22379:6:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"22387:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"22398:4:16","type":""}],"src":"22270:256:16"},{"body":{"nodeType":"YulBlock","src":"22705:171:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22722:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"22733:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22715:6:16"},"nodeType":"YulFunctionCall","src":"22715:21:16"},"nodeType":"YulExpressionStatement","src":"22715:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22756:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"22767:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22752:3:16"},"nodeType":"YulFunctionCall","src":"22752:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"22772:2:16","type":"","value":"21"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22745:6:16"},"nodeType":"YulFunctionCall","src":"22745:30:16"},"nodeType":"YulExpressionStatement","src":"22745:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22795:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"22806:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22791:3:16"},"nodeType":"YulFunctionCall","src":"22791:18:16"},{"hexValue":"4172726179206c656e677468206d69736d61746368","kind":"string","nodeType":"YulLiteral","src":"22811:23:16","type":"","value":"Array length mismatch"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"22784:6:16"},"nodeType":"YulFunctionCall","src":"22784:51:16"},"nodeType":"YulExpressionStatement","src":"22784:51:16"},{"nodeType":"YulAssignment","src":"22844:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"22856:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"22867:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"22852:3:16"},"nodeType":"YulFunctionCall","src":"22852:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"22844:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_179ae693e0c70d403e6d1a2bebe6454a8d095a8abd12c6f3f032c5018f3e2aea__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"22682:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"22696:4:16","type":""}],"src":"22531:345:16"},{"body":{"nodeType":"YulBlock","src":"23055:162:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23072:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"23083:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23065:6:16"},"nodeType":"YulFunctionCall","src":"23065:21:16"},"nodeType":"YulExpressionStatement","src":"23065:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23106:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"23117:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23102:3:16"},"nodeType":"YulFunctionCall","src":"23102:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"23122:2:16","type":"","value":"12"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23095:6:16"},"nodeType":"YulFunctionCall","src":"23095:30:16"},"nodeType":"YulExpressionStatement","src":"23095:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23145:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"23156:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23141:3:16"},"nodeType":"YulFunctionCall","src":"23141:18:16"},{"hexValue":"456d70747920617272617973","kind":"string","nodeType":"YulLiteral","src":"23161:14:16","type":"","value":"Empty arrays"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23134:6:16"},"nodeType":"YulFunctionCall","src":"23134:42:16"},"nodeType":"YulExpressionStatement","src":"23134:42:16"},{"nodeType":"YulAssignment","src":"23185:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23197:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"23208:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23193:3:16"},"nodeType":"YulFunctionCall","src":"23193:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"23185:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_920fc87d8e9a45232b5e4c2c36e3c0fff5f09b5434a80d6ec35d7f09f9d69c29__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"23032:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"23046:4:16","type":""}],"src":"22881:336:16"},{"body":{"nodeType":"YulBlock","src":"23396:165:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23413:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"23424:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23406:6:16"},"nodeType":"YulFunctionCall","src":"23406:21:16"},"nodeType":"YulExpressionStatement","src":"23406:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23447:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"23458:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23443:3:16"},"nodeType":"YulFunctionCall","src":"23443:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"23463:2:16","type":"","value":"15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23436:6:16"},"nodeType":"YulFunctionCall","src":"23436:30:16"},"nodeType":"YulExpressionStatement","src":"23436:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23486:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"23497:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23482:3:16"},"nodeType":"YulFunctionCall","src":"23482:18:16"},{"hexValue":"496e76616c69642061646472657373","kind":"string","nodeType":"YulLiteral","src":"23502:17:16","type":"","value":"Invalid address"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23475:6:16"},"nodeType":"YulFunctionCall","src":"23475:45:16"},"nodeType":"YulExpressionStatement","src":"23475:45:16"},{"nodeType":"YulAssignment","src":"23529:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23541:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"23552:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23537:3:16"},"nodeType":"YulFunctionCall","src":"23537:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"23529:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_1462473b7a4b33d32b109b815fd2324d00c9e5839b707ecf16d0ab5744f99226__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"23373:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"23387:4:16","type":""}],"src":"23222:339:16"},{"body":{"nodeType":"YulBlock","src":"23740:164:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23757:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"23768:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23750:6:16"},"nodeType":"YulFunctionCall","src":"23750:21:16"},"nodeType":"YulExpressionStatement","src":"23750:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23791:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"23802:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23787:3:16"},"nodeType":"YulFunctionCall","src":"23787:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"23807:2:16","type":"","value":"14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23780:6:16"},"nodeType":"YulFunctionCall","src":"23780:30:16"},"nodeType":"YulExpressionStatement","src":"23780:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23830:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"23841:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23826:3:16"},"nodeType":"YulFunctionCall","src":"23826:18:16"},{"hexValue":"496e76616c696420616d6f756e74","kind":"string","nodeType":"YulLiteral","src":"23846:16:16","type":"","value":"Invalid amount"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"23819:6:16"},"nodeType":"YulFunctionCall","src":"23819:44:16"},"nodeType":"YulExpressionStatement","src":"23819:44:16"},{"nodeType":"YulAssignment","src":"23872:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"23884:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"23895:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"23880:3:16"},"nodeType":"YulFunctionCall","src":"23880:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"23872:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_2fd1dfd944df9898ee4c79794168926172c3d96d7664ff9919bb7080bb018af1__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"23717:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"23731:4:16","type":""}],"src":"23566:338:16"},{"body":{"nodeType":"YulBlock","src":"24083:163:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24100:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"24111:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24093:6:16"},"nodeType":"YulFunctionCall","src":"24093:21:16"},"nodeType":"YulExpressionStatement","src":"24093:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24134:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"24145:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24130:3:16"},"nodeType":"YulFunctionCall","src":"24130:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"24150:2:16","type":"","value":"13"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24123:6:16"},"nodeType":"YulFunctionCall","src":"24123:30:16"},"nodeType":"YulExpressionStatement","src":"24123:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24173:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"24184:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24169:3:16"},"nodeType":"YulFunctionCall","src":"24169:18:16"},{"hexValue":"496e76616c69642076616c7565","kind":"string","nodeType":"YulLiteral","src":"24189:15:16","type":"","value":"Invalid value"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24162:6:16"},"nodeType":"YulFunctionCall","src":"24162:43:16"},"nodeType":"YulExpressionStatement","src":"24162:43:16"},{"nodeType":"YulAssignment","src":"24214:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24226:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"24237:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24222:3:16"},"nodeType":"YulFunctionCall","src":"24222:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"24214:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_a06538b932a313089ae566efd0e7e26dd4e72c52e77044e966d0526f069591e6__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"24060:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"24074:4:16","type":""}],"src":"23909:337:16"},{"body":{"nodeType":"YulBlock","src":"24425:168:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24442:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"24453:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24435:6:16"},"nodeType":"YulFunctionCall","src":"24435:21:16"},"nodeType":"YulExpressionStatement","src":"24435:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24476:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"24487:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24472:3:16"},"nodeType":"YulFunctionCall","src":"24472:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"24492:2:16","type":"","value":"18"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24465:6:16"},"nodeType":"YulFunctionCall","src":"24465:30:16"},"nodeType":"YulExpressionStatement","src":"24465:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24515:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"24526:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24511:3:16"},"nodeType":"YulFunctionCall","src":"24511:18:16"},{"hexValue":"496e76616c69642073616c65207072696365","kind":"string","nodeType":"YulLiteral","src":"24531:20:16","type":"","value":"Invalid sale price"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24504:6:16"},"nodeType":"YulFunctionCall","src":"24504:48:16"},"nodeType":"YulExpressionStatement","src":"24504:48:16"},{"nodeType":"YulAssignment","src":"24561:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24573:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"24584:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24569:3:16"},"nodeType":"YulFunctionCall","src":"24569:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"24561:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_41afe65c2f48450cc65afb8258dbcfd4711efe900a4abbb354fb78b64cb78f3c__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"24402:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"24416:4:16","type":""}],"src":"24251:342:16"},{"body":{"nodeType":"YulBlock","src":"24772:169:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24789:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"24800:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24782:6:16"},"nodeType":"YulFunctionCall","src":"24782:21:16"},"nodeType":"YulExpressionStatement","src":"24782:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24823:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"24834:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24819:3:16"},"nodeType":"YulFunctionCall","src":"24819:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"24839:2:16","type":"","value":"19"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24812:6:16"},"nodeType":"YulFunctionCall","src":"24812:30:16"},"nodeType":"YulExpressionStatement","src":"24812:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24862:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"24873:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24858:3:16"},"nodeType":"YulFunctionCall","src":"24858:18:16"},{"hexValue":"56616c75652062656c6f77206d696e696d756d","kind":"string","nodeType":"YulLiteral","src":"24878:21:16","type":"","value":"Value below minimum"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"24851:6:16"},"nodeType":"YulFunctionCall","src":"24851:49:16"},"nodeType":"YulExpressionStatement","src":"24851:49:16"},{"nodeType":"YulAssignment","src":"24909:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"24921:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"24932:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"24917:3:16"},"nodeType":"YulFunctionCall","src":"24917:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"24909:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_07ac34a80b409cb13a59b255bc41aced9c990f0df5c1385b4a46b6b34a89399d__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"24749:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"24763:4:16","type":""}],"src":"24598:343:16"},{"body":{"nodeType":"YulBlock","src":"25120:172:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25137:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"25148:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25130:6:16"},"nodeType":"YulFunctionCall","src":"25130:21:16"},"nodeType":"YulExpressionStatement","src":"25130:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25171:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"25182:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25167:3:16"},"nodeType":"YulFunctionCall","src":"25167:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"25187:2:16","type":"","value":"22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25160:6:16"},"nodeType":"YulFunctionCall","src":"25160:30:16"},"nodeType":"YulExpressionStatement","src":"25160:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25210:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"25221:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25206:3:16"},"nodeType":"YulFunctionCall","src":"25206:18:16"},{"hexValue":"496e73756666696369656e74206e6574207374616b65","kind":"string","nodeType":"YulLiteral","src":"25226:24:16","type":"","value":"Insufficient net stake"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25199:6:16"},"nodeType":"YulFunctionCall","src":"25199:52:16"},"nodeType":"YulExpressionStatement","src":"25199:52:16"},{"nodeType":"YulAssignment","src":"25260:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25272:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"25283:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25268:3:16"},"nodeType":"YulFunctionCall","src":"25268:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"25260:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_e5b6e7e123f74d79e5b22a141b369c822da4aa28e7734495eb76a647065377a9__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"25097:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"25111:4:16","type":""}],"src":"24946:346:16"},{"body":{"nodeType":"YulBlock","src":"25471:163:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25488:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"25499:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25481:6:16"},"nodeType":"YulFunctionCall","src":"25481:21:16"},"nodeType":"YulExpressionStatement","src":"25481:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25522:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"25533:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25518:3:16"},"nodeType":"YulFunctionCall","src":"25518:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"25538:2:16","type":"","value":"13"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25511:6:16"},"nodeType":"YulFunctionCall","src":"25511:30:16"},"nodeType":"YulExpressionStatement","src":"25511:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25561:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"25572:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25557:3:16"},"nodeType":"YulFunctionCall","src":"25557:18:16"},{"hexValue":"416c7265616479206f776e6572","kind":"string","nodeType":"YulLiteral","src":"25577:15:16","type":"","value":"Already owner"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25550:6:16"},"nodeType":"YulFunctionCall","src":"25550:43:16"},"nodeType":"YulExpressionStatement","src":"25550:43:16"},{"nodeType":"YulAssignment","src":"25602:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25614:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"25625:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25610:3:16"},"nodeType":"YulFunctionCall","src":"25610:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"25602:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_a0e5f91d515f2cca6fea514f5d410d9cd3a3de245b2e2deb2a867e55917af289__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"25448:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"25462:4:16","type":""}],"src":"25297:337:16"},{"body":{"nodeType":"YulBlock","src":"25747:101:16","statements":[{"nodeType":"YulAssignment","src":"25757:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25769:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"25780:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"25765:3:16"},"nodeType":"YulFunctionCall","src":"25765:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"25757:4:16"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"25799:9:16"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"25814:6:16"},{"kind":"number","nodeType":"YulLiteral","src":"25822:18:16","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"25810:3:16"},"nodeType":"YulFunctionCall","src":"25810:31:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"25792:6:16"},"nodeType":"YulFunctionCall","src":"25792:50:16"},"nodeType":"YulExpressionStatement","src":"25792:50:16"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"25716:9:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"25727:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"25738:4:16","type":""}],"src":"25639:209:16"},{"body":{"nodeType":"YulBlock","src":"26027:167:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26044:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"26055:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26037:6:16"},"nodeType":"YulFunctionCall","src":"26037:21:16"},"nodeType":"YulExpressionStatement","src":"26037:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26078:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"26089:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26074:3:16"},"nodeType":"YulFunctionCall","src":"26074:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"26094:2:16","type":"","value":"17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26067:6:16"},"nodeType":"YulFunctionCall","src":"26067:30:16"},"nodeType":"YulExpressionStatement","src":"26067:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26117:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"26128:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26113:3:16"},"nodeType":"YulFunctionCall","src":"26113:18:16"},{"hexValue":"4c697374696e67206e6f7420666f756e64","kind":"string","nodeType":"YulLiteral","src":"26133:19:16","type":"","value":"Listing not found"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26106:6:16"},"nodeType":"YulFunctionCall","src":"26106:47:16"},"nodeType":"YulExpressionStatement","src":"26106:47:16"},{"nodeType":"YulAssignment","src":"26162:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26174:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"26185:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26170:3:16"},"nodeType":"YulFunctionCall","src":"26170:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"26162:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_e65aeb0dca34957cd75dcf5edf664369a554ea0a38af77ddcfdf2ec419a8424a__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"26004:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"26018:4:16","type":""}],"src":"25853:341:16"},{"body":{"nodeType":"YulBlock","src":"26373:164:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26390:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"26401:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26383:6:16"},"nodeType":"YulFunctionCall","src":"26383:21:16"},"nodeType":"YulExpressionStatement","src":"26383:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26424:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"26435:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26420:3:16"},"nodeType":"YulFunctionCall","src":"26420:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"26440:2:16","type":"","value":"14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26413:6:16"},"nodeType":"YulFunctionCall","src":"26413:30:16"},"nodeType":"YulExpressionStatement","src":"26413:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26463:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"26474:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26459:3:16"},"nodeType":"YulFunctionCall","src":"26459:18:16"},{"hexValue":"4e6f74207468652073656c6c6572","kind":"string","nodeType":"YulLiteral","src":"26479:16:16","type":"","value":"Not the seller"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26452:6:16"},"nodeType":"YulFunctionCall","src":"26452:44:16"},"nodeType":"YulExpressionStatement","src":"26452:44:16"},{"nodeType":"YulAssignment","src":"26505:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26517:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"26528:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26513:3:16"},"nodeType":"YulFunctionCall","src":"26513:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"26505:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_ce57addf3f5de810402cc65bacdf9d6eb19fb240991cacfdb84749b70a2ea3ec__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"26350:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"26364:4:16","type":""}],"src":"26199:338:16"},{"body":{"nodeType":"YulBlock","src":"26574:95:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"26591:1:16","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"26598:3:16","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"26603:10:16","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"26594:3:16"},"nodeType":"YulFunctionCall","src":"26594:20:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26584:6:16"},"nodeType":"YulFunctionCall","src":"26584:31:16"},"nodeType":"YulExpressionStatement","src":"26584:31:16"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"26631:1:16","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"26634:4:16","type":"","value":"0x31"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26624:6:16"},"nodeType":"YulFunctionCall","src":"26624:15:16"},"nodeType":"YulExpressionStatement","src":"26624:15:16"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"26655:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"26658:4:16","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"26648:6:16"},"nodeType":"YulFunctionCall","src":"26648:15:16"},"nodeType":"YulExpressionStatement","src":"26648:15:16"}]},"name":"panic_error_0x31","nodeType":"YulFunctionDefinition","src":"26542:127:16"},{"body":{"nodeType":"YulBlock","src":"26848:163:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26865:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"26876:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26858:6:16"},"nodeType":"YulFunctionCall","src":"26858:21:16"},"nodeType":"YulExpressionStatement","src":"26858:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26899:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"26910:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26895:3:16"},"nodeType":"YulFunctionCall","src":"26895:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"26915:2:16","type":"","value":"13"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26888:6:16"},"nodeType":"YulFunctionCall","src":"26888:30:16"},"nodeType":"YulExpressionStatement","src":"26888:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26938:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"26949:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26934:3:16"},"nodeType":"YulFunctionCall","src":"26934:18:16"},{"hexValue":"496e76616c69642072616e6765","kind":"string","nodeType":"YulLiteral","src":"26954:15:16","type":"","value":"Invalid range"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"26927:6:16"},"nodeType":"YulFunctionCall","src":"26927:43:16"},"nodeType":"YulExpressionStatement","src":"26927:43:16"},{"nodeType":"YulAssignment","src":"26979:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"26991:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"27002:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"26987:3:16"},"nodeType":"YulFunctionCall","src":"26987:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"26979:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_86f5232cd420b5d8e89c0911fc290331f6cfd7bd7824383c43ece46e2a1c20ec__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"26825:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"26839:4:16","type":""}],"src":"26674:337:16"},{"body":{"nodeType":"YulBlock","src":"27190:169:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27207:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"27218:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27200:6:16"},"nodeType":"YulFunctionCall","src":"27200:21:16"},"nodeType":"YulExpressionStatement","src":"27200:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27241:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"27252:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27237:3:16"},"nodeType":"YulFunctionCall","src":"27237:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"27257:2:16","type":"","value":"19"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27230:6:16"},"nodeType":"YulFunctionCall","src":"27230:30:16"},"nodeType":"YulExpressionStatement","src":"27230:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27280:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"27291:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27276:3:16"},"nodeType":"YulFunctionCall","src":"27276:18:16"},{"hexValue":"456e642065706f6368206e6f7420666f756e64","kind":"string","nodeType":"YulLiteral","src":"27296:21:16","type":"","value":"End epoch not found"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27269:6:16"},"nodeType":"YulFunctionCall","src":"27269:49:16"},"nodeType":"YulExpressionStatement","src":"27269:49:16"},{"nodeType":"YulAssignment","src":"27327:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27339:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"27350:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27335:3:16"},"nodeType":"YulFunctionCall","src":"27335:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"27327:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_c205ddc0e8dee9f6a699462fe56d0ef15d0fbd12a7f42fd9d0f08d7b477e733b__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"27167:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"27181:4:16","type":""}],"src":"27016:343:16"},{"body":{"nodeType":"YulBlock","src":"27538:170:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27555:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"27566:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27548:6:16"},"nodeType":"YulFunctionCall","src":"27548:21:16"},"nodeType":"YulExpressionStatement","src":"27548:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27589:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"27600:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27585:3:16"},"nodeType":"YulFunctionCall","src":"27585:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"27605:2:16","type":"","value":"20"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27578:6:16"},"nodeType":"YulFunctionCall","src":"27578:30:16"},"nodeType":"YulExpressionStatement","src":"27578:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27628:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"27639:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27624:3:16"},"nodeType":"YulFunctionCall","src":"27624:18:16"},{"hexValue":"4275796f7574206e6f7420617661696c61626c65","kind":"string","nodeType":"YulLiteral","src":"27644:22:16","type":"","value":"Buyout not available"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27617:6:16"},"nodeType":"YulFunctionCall","src":"27617:50:16"},"nodeType":"YulExpressionStatement","src":"27617:50:16"},{"nodeType":"YulAssignment","src":"27676:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27688:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"27699:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27684:3:16"},"nodeType":"YulFunctionCall","src":"27684:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"27676:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_1ac10a5347532b65b65d9d764e2021f8095d5c71891cb82e55f43f42c14f0f65__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"27515:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"27529:4:16","type":""}],"src":"27364:344:16"},{"body":{"nodeType":"YulBlock","src":"27887:179:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27904:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"27915:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27897:6:16"},"nodeType":"YulFunctionCall","src":"27897:21:16"},"nodeType":"YulExpressionStatement","src":"27897:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27938:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"27949:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27934:3:16"},"nodeType":"YulFunctionCall","src":"27934:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"27954:2:16","type":"","value":"29"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27927:6:16"},"nodeType":"YulFunctionCall","src":"27927:30:16"},"nodeType":"YulExpressionStatement","src":"27927:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"27977:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"27988:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"27973:3:16"},"nodeType":"YulFunctionCall","src":"27973:18:16"},{"hexValue":"50657263656e746167652063616e6e6f74206578636565642031303025","kind":"string","nodeType":"YulLiteral","src":"27993:31:16","type":"","value":"Percentage cannot exceed 100%"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"27966:6:16"},"nodeType":"YulFunctionCall","src":"27966:59:16"},"nodeType":"YulExpressionStatement","src":"27966:59:16"},{"nodeType":"YulAssignment","src":"28034:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28046:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"28057:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28042:3:16"},"nodeType":"YulFunctionCall","src":"28042:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"28034:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_0822d438e7ff02d04e33a3b237e81701c1bd3a6e2907a292cc8ad1069147f0b1__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"27864:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"27878:4:16","type":""}],"src":"27713:353:16"},{"body":{"nodeType":"YulBlock","src":"28245:171:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28262:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"28273:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28255:6:16"},"nodeType":"YulFunctionCall","src":"28255:21:16"},"nodeType":"YulExpressionStatement","src":"28255:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28296:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"28307:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28292:3:16"},"nodeType":"YulFunctionCall","src":"28292:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"28312:2:16","type":"","value":"21"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28285:6:16"},"nodeType":"YulFunctionCall","src":"28285:30:16"},"nodeType":"YulExpressionStatement","src":"28285:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28335:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"28346:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28331:3:16"},"nodeType":"YulFunctionCall","src":"28331:18:16"},{"hexValue":"496e76616c69642076657374696e6720696e646578","kind":"string","nodeType":"YulLiteral","src":"28351:23:16","type":"","value":"Invalid vesting index"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28324:6:16"},"nodeType":"YulFunctionCall","src":"28324:51:16"},"nodeType":"YulExpressionStatement","src":"28324:51:16"},{"nodeType":"YulAssignment","src":"28384:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28396:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"28407:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28392:3:16"},"nodeType":"YulFunctionCall","src":"28392:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"28384:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_958bf679397ff3f7b38ad9e6e0d68fc1f329d27b4d75f8a328d52e3e6926cc04__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"28222:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"28236:4:16","type":""}],"src":"28071:345:16"},{"body":{"nodeType":"YulBlock","src":"28595:166:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28612:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"28623:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28605:6:16"},"nodeType":"YulFunctionCall","src":"28605:21:16"},"nodeType":"YulExpressionStatement","src":"28605:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28646:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"28657:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28642:3:16"},"nodeType":"YulFunctionCall","src":"28642:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"28662:2:16","type":"","value":"16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28635:6:16"},"nodeType":"YulFunctionCall","src":"28635:30:16"},"nodeType":"YulExpressionStatement","src":"28635:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28685:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"28696:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28681:3:16"},"nodeType":"YulFunctionCall","src":"28681:18:16"},{"hexValue":"56657374696e6720636f6d706c657465","kind":"string","nodeType":"YulLiteral","src":"28701:18:16","type":"","value":"Vesting complete"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28674:6:16"},"nodeType":"YulFunctionCall","src":"28674:46:16"},"nodeType":"YulExpressionStatement","src":"28674:46:16"},{"nodeType":"YulAssignment","src":"28729:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28741:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"28752:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28737:3:16"},"nodeType":"YulFunctionCall","src":"28737:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"28729:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_74917fd6fcb4f5c0476024ca107dba39ccfc7e6e33632969cffe0341aefd3ea4__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"28572:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"28586:4:16","type":""}],"src":"28421:340:16"},{"body":{"nodeType":"YulBlock","src":"28940:170:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28957:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"28968:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28950:6:16"},"nodeType":"YulFunctionCall","src":"28950:21:16"},"nodeType":"YulExpressionStatement","src":"28950:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"28991:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"29002:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"28987:3:16"},"nodeType":"YulFunctionCall","src":"28987:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"29007:2:16","type":"","value":"20"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"28980:6:16"},"nodeType":"YulFunctionCall","src":"28980:30:16"},"nodeType":"YulExpressionStatement","src":"28980:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"29030:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"29041:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"29026:3:16"},"nodeType":"YulFunctionCall","src":"29026:18:16"},{"hexValue":"496e76616c696420636c61696d20616d6f756e74","kind":"string","nodeType":"YulLiteral","src":"29046:22:16","type":"","value":"Invalid claim amount"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"29019:6:16"},"nodeType":"YulFunctionCall","src":"29019:50:16"},"nodeType":"YulExpressionStatement","src":"29019:50:16"},{"nodeType":"YulAssignment","src":"29078:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"29090:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"29101:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"29086:3:16"},"nodeType":"YulFunctionCall","src":"29086:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"29078:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_a2174c1737f7cb6c21957e39702561f246cc9bd66d84735975199b1061c55180__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"28917:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"28931:4:16","type":""}],"src":"28766:344:16"},{"body":{"nodeType":"YulBlock","src":"29289:171:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"29306:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"29317:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"29299:6:16"},"nodeType":"YulFunctionCall","src":"29299:21:16"},"nodeType":"YulExpressionStatement","src":"29299:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"29340:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"29351:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"29336:3:16"},"nodeType":"YulFunctionCall","src":"29336:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"29356:2:16","type":"","value":"21"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"29329:6:16"},"nodeType":"YulFunctionCall","src":"29329:30:16"},"nodeType":"YulExpressionStatement","src":"29329:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"29379:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"29390:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"29375:3:16"},"nodeType":"YulFunctionCall","src":"29375:18:16"},{"hexValue":"496e76616c696420746f6b656e2061646472657373","kind":"string","nodeType":"YulLiteral","src":"29395:23:16","type":"","value":"Invalid token address"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"29368:6:16"},"nodeType":"YulFunctionCall","src":"29368:51:16"},"nodeType":"YulExpressionStatement","src":"29368:51:16"},{"nodeType":"YulAssignment","src":"29428:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"29440:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"29451:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"29436:3:16"},"nodeType":"YulFunctionCall","src":"29436:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"29428:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_d34df3e6e5f402d3417b1a16a0a8a7541b184d7fb338e177a15236f4037e3743__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"29266:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"29280:4:16","type":""}],"src":"29115:345:16"},{"body":{"nodeType":"YulBlock","src":"29639:168:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"29656:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"29667:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"29649:6:16"},"nodeType":"YulFunctionCall","src":"29649:21:16"},"nodeType":"YulExpressionStatement","src":"29649:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"29690:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"29701:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"29686:3:16"},"nodeType":"YulFunctionCall","src":"29686:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"29706:2:16","type":"","value":"18"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"29679:6:16"},"nodeType":"YulFunctionCall","src":"29679:30:16"},"nodeType":"YulExpressionStatement","src":"29679:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"29729:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"29740:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"29725:3:16"},"nodeType":"YulFunctionCall","src":"29725:18:16"},{"hexValue":"496e76616c69642070657263656e74616765","kind":"string","nodeType":"YulLiteral","src":"29745:20:16","type":"","value":"Invalid percentage"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"29718:6:16"},"nodeType":"YulFunctionCall","src":"29718:48:16"},"nodeType":"YulExpressionStatement","src":"29718:48:16"},{"nodeType":"YulAssignment","src":"29775:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"29787:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"29798:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"29783:3:16"},"nodeType":"YulFunctionCall","src":"29783:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"29775:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_3aa060f1dfc69ce7f57887a6e23d7fbceead8042b984953c572b9c8fa5af8f04__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"29616:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"29630:4:16","type":""}],"src":"29465:342:16"},{"body":{"nodeType":"YulBlock","src":"29986:165:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"30003:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"30014:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"29996:6:16"},"nodeType":"YulFunctionCall","src":"29996:21:16"},"nodeType":"YulExpressionStatement","src":"29996:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"30037:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"30048:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30033:3:16"},"nodeType":"YulFunctionCall","src":"30033:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"30053:2:16","type":"","value":"15"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"30026:6:16"},"nodeType":"YulFunctionCall","src":"30026:30:16"},"nodeType":"YulExpressionStatement","src":"30026:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"30076:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"30087:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30072:3:16"},"nodeType":"YulFunctionCall","src":"30072:18:16"},{"hexValue":"45706f6368206e6f7420666f756e64","kind":"string","nodeType":"YulLiteral","src":"30092:17:16","type":"","value":"Epoch not found"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"30065:6:16"},"nodeType":"YulFunctionCall","src":"30065:45:16"},"nodeType":"YulExpressionStatement","src":"30065:45:16"},{"nodeType":"YulAssignment","src":"30119:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"30131:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"30142:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30127:3:16"},"nodeType":"YulFunctionCall","src":"30127:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"30119:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_804bf3e06a7bf92133efba56bc925714e4bd93bde4bd86e97734c971603054e8__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"29963:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"29977:4:16","type":""}],"src":"29812:339:16"},{"body":{"nodeType":"YulBlock","src":"30330:175:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"30347:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"30358:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"30340:6:16"},"nodeType":"YulFunctionCall","src":"30340:21:16"},"nodeType":"YulExpressionStatement","src":"30340:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"30381:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"30392:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30377:3:16"},"nodeType":"YulFunctionCall","src":"30377:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"30397:2:16","type":"","value":"25"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"30370:6:16"},"nodeType":"YulFunctionCall","src":"30370:30:16"},"nodeType":"YulExpressionStatement","src":"30370:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"30420:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"30431:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30416:3:16"},"nodeType":"YulFunctionCall","src":"30416:18:16"},{"hexValue":"537461727420696e646578206f7574206f6620626f756e6473","kind":"string","nodeType":"YulLiteral","src":"30436:27:16","type":"","value":"Start index out of bounds"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"30409:6:16"},"nodeType":"YulFunctionCall","src":"30409:55:16"},"nodeType":"YulExpressionStatement","src":"30409:55:16"},{"nodeType":"YulAssignment","src":"30473:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"30485:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"30496:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30481:3:16"},"nodeType":"YulFunctionCall","src":"30481:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"30473:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_e68aa2945d9d826fe10860e3b76417578773840626355af3554acc1da6ab249f__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"30307:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"30321:4:16","type":""}],"src":"30156:349:16"},{"body":{"nodeType":"YulBlock","src":"30684:172:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"30701:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"30712:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"30694:6:16"},"nodeType":"YulFunctionCall","src":"30694:21:16"},"nodeType":"YulExpressionStatement","src":"30694:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"30735:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"30746:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30731:3:16"},"nodeType":"YulFunctionCall","src":"30731:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"30751:2:16","type":"","value":"22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"30724:6:16"},"nodeType":"YulFunctionCall","src":"30724:30:16"},"nodeType":"YulExpressionStatement","src":"30724:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"30774:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"30785:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30770:3:16"},"nodeType":"YulFunctionCall","src":"30770:18:16"},{"hexValue":"43616e6e6f7420627579206f776e206c697374696e67","kind":"string","nodeType":"YulLiteral","src":"30790:24:16","type":"","value":"Cannot buy own listing"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"30763:6:16"},"nodeType":"YulFunctionCall","src":"30763:52:16"},"nodeType":"YulExpressionStatement","src":"30763:52:16"},{"nodeType":"YulAssignment","src":"30824:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"30836:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"30847:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"30832:3:16"},"nodeType":"YulFunctionCall","src":"30832:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"30824:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_beaa7de9c81be7521b658b5b0a3f8866d9ed560c21a4f26c1d2fa6ffaaeb68c3__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"30661:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"30675:4:16","type":""}],"src":"30510:346:16"},{"body":{"nodeType":"YulBlock","src":"31035:171:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31052:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"31063:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"31045:6:16"},"nodeType":"YulFunctionCall","src":"31045:21:16"},"nodeType":"YulExpressionStatement","src":"31045:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31086:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"31097:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31082:3:16"},"nodeType":"YulFunctionCall","src":"31082:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"31102:2:16","type":"","value":"21"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"31075:6:16"},"nodeType":"YulFunctionCall","src":"31075:30:16"},"nodeType":"YulExpressionStatement","src":"31075:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31125:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"31136:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31121:3:16"},"nodeType":"YulFunctionCall","src":"31121:18:16"},{"hexValue":"4e6f2076657374696e677320617661696c61626c65","kind":"string","nodeType":"YulLiteral","src":"31141:23:16","type":"","value":"No vestings available"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"31114:6:16"},"nodeType":"YulFunctionCall","src":"31114:51:16"},"nodeType":"YulExpressionStatement","src":"31114:51:16"},{"nodeType":"YulAssignment","src":"31174:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31186:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"31197:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31182:3:16"},"nodeType":"YulFunctionCall","src":"31182:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"31174:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_cf7bf03ffa0f3da677adf7e97e2d75567c809ca39257ccf6603f40c13c2ab5f1__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"31012:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"31026:4:16","type":""}],"src":"30861:345:16"},{"body":{"nodeType":"YulBlock","src":"31385:164:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31402:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"31413:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"31395:6:16"},"nodeType":"YulFunctionCall","src":"31395:21:16"},"nodeType":"YulExpressionStatement","src":"31395:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31436:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"31447:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31432:3:16"},"nodeType":"YulFunctionCall","src":"31432:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"31452:2:16","type":"","value":"14"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"31425:6:16"},"nodeType":"YulFunctionCall","src":"31425:30:16"},"nodeType":"YulExpressionStatement","src":"31425:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31475:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"31486:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31471:3:16"},"nodeType":"YulFunctionCall","src":"31471:18:16"},{"hexValue":"56657374696e67206c6f636b6564","kind":"string","nodeType":"YulLiteral","src":"31491:16:16","type":"","value":"Vesting locked"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"31464:6:16"},"nodeType":"YulFunctionCall","src":"31464:44:16"},"nodeType":"YulExpressionStatement","src":"31464:44:16"},{"nodeType":"YulAssignment","src":"31517:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31529:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"31540:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31525:3:16"},"nodeType":"YulFunctionCall","src":"31525:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"31517:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_9dede7b2029e0fe80e0defc5cd4aff28fc7482f6ec721698e1cde7e28b94a259__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"31362:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"31376:4:16","type":""}],"src":"31211:338:16"},{"body":{"nodeType":"YulBlock","src":"31728:167:16","statements":[{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31745:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"31756:2:16","type":"","value":"32"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"31738:6:16"},"nodeType":"YulFunctionCall","src":"31738:21:16"},"nodeType":"YulExpressionStatement","src":"31738:21:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31779:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"31790:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31775:3:16"},"nodeType":"YulFunctionCall","src":"31775:18:16"},{"kind":"number","nodeType":"YulLiteral","src":"31795:2:16","type":"","value":"17"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"31768:6:16"},"nodeType":"YulFunctionCall","src":"31768:30:16"},"nodeType":"YulExpressionStatement","src":"31768:30:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31818:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"31829:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31814:3:16"},"nodeType":"YulFunctionCall","src":"31814:18:16"},{"hexValue":"56657374696e67206e6f7420666f756e64","kind":"string","nodeType":"YulLiteral","src":"31834:19:16","type":"","value":"Vesting not found"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"31807:6:16"},"nodeType":"YulFunctionCall","src":"31807:47:16"},"nodeType":"YulExpressionStatement","src":"31807:47:16"},{"nodeType":"YulAssignment","src":"31863:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"31875:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"31886:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"31871:3:16"},"nodeType":"YulFunctionCall","src":"31871:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"31863:4:16"}]}]},"name":"abi_encode_tuple_t_stringliteral_2d19b9974516f8ce8c5e173466515fe8707bb9662afc415a22d19104b8441caa__to_t_string_memory_ptr__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"31705:9:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"31719:4:16","type":""}],"src":"31554:341:16"},{"body":{"nodeType":"YulBlock","src":"32057:218:16","statements":[{"nodeType":"YulAssignment","src":"32067:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"32079:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"32090:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"32075:3:16"},"nodeType":"YulFunctionCall","src":"32075:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"32067:4:16"}]},{"nodeType":"YulVariableDeclaration","src":"32102:29:16","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"32120:3:16","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"32125:1:16","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"32116:3:16"},"nodeType":"YulFunctionCall","src":"32116:11:16"},{"kind":"number","nodeType":"YulLiteral","src":"32129:1:16","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"32112:3:16"},"nodeType":"YulFunctionCall","src":"32112:19:16"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"32106:2:16","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"32147:9:16"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"32162:6:16"},{"name":"_1","nodeType":"YulIdentifier","src":"32170:2:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"32158:3:16"},"nodeType":"YulFunctionCall","src":"32158:15:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"32140:6:16"},"nodeType":"YulFunctionCall","src":"32140:34:16"},"nodeType":"YulExpressionStatement","src":"32140:34:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"32194:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"32205:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"32190:3:16"},"nodeType":"YulFunctionCall","src":"32190:18:16"},{"arguments":[{"name":"value1","nodeType":"YulIdentifier","src":"32214:6:16"},{"name":"_1","nodeType":"YulIdentifier","src":"32222:2:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"32210:3:16"},"nodeType":"YulFunctionCall","src":"32210:15:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"32183:6:16"},"nodeType":"YulFunctionCall","src":"32183:43:16"},"nodeType":"YulExpressionStatement","src":"32183:43:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"32246:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"32257:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"32242:3:16"},"nodeType":"YulFunctionCall","src":"32242:18:16"},{"name":"value2","nodeType":"YulIdentifier","src":"32262:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"32235:6:16"},"nodeType":"YulFunctionCall","src":"32235:34:16"},"nodeType":"YulExpressionStatement","src":"32235:34:16"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"32010:9:16","type":""},{"name":"value2","nodeType":"YulTypedName","src":"32021:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"32029:6:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"32037:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"32048:4:16","type":""}],"src":"31900:375:16"}]},"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_$1868_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_$1868_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_$1827_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Vesting_$1827_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_$1841_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_WithdrawVesting_$1841_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_$1852_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Epoch_$1852_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_$1868_memory_ptr__to_t_struct$_SellStake_$1868_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_$1859_memory_ptr__to_t_struct$_WithdrawStake_$1859_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 96)\n abi_encode_struct_WithdrawStake(value0, headStart)\n }\n function abi_decode_tuple_t_addresst_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2\n {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := calldataload(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n }\n function abi_encode_tuple_t_struct$_Epoch_$1852_memory_ptr__to_t_struct$_Epoch_$1852_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_$1859_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_WithdrawStake_$1859_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_$1886_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_MarketplaceHistory_$1886_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_uint256_t_rational_0_by_1__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n {\n tail := add(headStart, 64)\n mstore(headStart, value0)\n mstore(add(headStart, 32), value1)\n }\n function abi_encode_tuple_t_stringliteral_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_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_rational_1_by_1__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, and(value0, 0xffffffffffffffff))\n }\n function abi_encode_tuple_t_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_1ac10a5347532b65b65d9d764e2021f8095d5c71891cb82e55f43f42c14f0f65__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 20)\n mstore(add(headStart, 64), \"Buyout not available\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_0822d438e7ff02d04e33a3b237e81701c1bd3a6e2907a292cc8ad1069147f0b1__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 29)\n mstore(add(headStart, 64), \"Percentage cannot exceed 100%\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_958bf679397ff3f7b38ad9e6e0d68fc1f329d27b4d75f8a328d52e3e6926cc04__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), \"Invalid vesting index\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_74917fd6fcb4f5c0476024ca107dba39ccfc7e6e33632969cffe0341aefd3ea4__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), \"Vesting complete\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_a2174c1737f7cb6c21957e39702561f246cc9bd66d84735975199b1061c55180__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 20)\n mstore(add(headStart, 64), \"Invalid claim amount\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_d34df3e6e5f402d3417b1a16a0a8a7541b184d7fb338e177a15236f4037e3743__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), \"Invalid token address\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_3aa060f1dfc69ce7f57887a6e23d7fbceead8042b984953c572b9c8fa5af8f04__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 percentage\")\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 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_9dede7b2029e0fe80e0defc5cd4aff28fc7482f6ec721698e1cde7e28b94a259__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), \"Vesting locked\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_2d19b9974516f8ce8c5e173466515fe8707bb9662afc415a22d19104b8441caa__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), \"Vesting not found\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n {\n tail := add(headStart, 96)\n let _1 := sub(shl(160, 1), 1)\n mstore(headStart, and(value0, _1))\n mstore(add(headStart, 32), and(value1, _1))\n mstore(add(headStart, 64), value2)\n }\n}","id":16,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561001057600080fd5b506004361061045e5760003560e01c80638129fc1c1161024c578063bed9757e11610146578063da1b4364116100c3578063f109208f11610087578063f109208f14610c3f578063f2bb563014610c52578063f7e4444c14610c65578063fe2f50d014610c78578063ffecf51614610c8157600080fd5b8063da1b436414610be8578063e079fd9114610c08578063e88f8e6614610c10578063eacdc5ff14610c23578063eb44e0a314610c2c57600080fd5b8063c7b530b01161010a578063c7b530b014610b6f578063cc573a9114610b8f578063ce13d09014610ba2578063cfcf331914610bb5578063d919302514610bd557600080fd5b8063bed9757e14610aa0578063c267660314610ac1578063c32d3ae214610ac9578063c36d03fd14610af7578063c6b61e4c14610b0a57600080fd5b806396fd111a116101d4578063ac97b41711610198578063ac97b417146109d2578063b6c3dc4c146109e5578063b92a349f14610a05578063bc0bc6ba14610a18578063bd84477d14610a3857600080fd5b806396fd111a146109205780639cb6f556146109405780639f3a676c14610953578063a0d467581461099f578063aaf4b04d146109bf57600080fd5b80638bdf67f21161021b5780638bdf67f2146108b45780638da5cb5b146108c75780638f82818f146108da5780639437e32e146108fa578063953d16bf1461090d57600080fd5b80638129fc1c14610866578063853e0df21461086e57806387b4b105146108815780638851ec0f146108a157600080fd5b806343c7c0111161035d57806362cd6a09116102e55780637a0c6dc0116102a95780637a0c6dc0146107d75780637bc221ac146107f75780637d08af971461080a5780637e6d99261461082a57806380ca0ecf1461085357600080fd5b806362cd6a091461077e57806367a74ddc146107955780636ef569a5146107a85780637065cb48146107b157806374d1c8e3146107c457600080fd5b806351f6cf2f1161032c57806351f6cf2f14610708578063549e61d3146107305780635811622714610743578063592d1dd11461075657806361d1080b1461077657600080fd5b806343c7c0111461069d578063441a4175146106b057806348ea286d146106e257806351e62472146106f557600080fd5b8063173825d9116103eb5780632ded58aa116103af5780632ded58aa146105c15780633ba8396e146105ca5780633c92f98d146105ed5780633f35e7221461060f57806343a32f891461062257600080fd5b8063173825d91461056c5780631ada70a81461057f5780631aefa2d1146105885780631eb9e53e1461059b57806325d5971f146105ae57600080fd5b8063092c761011610432578063092c7610146105065780630a84096a146105265780630a910a6d146105395780630c7d63861461054257806313baee5b1461054c57600080fd5b8062159da6146104635780630137451814610489578063022914a7146104ca5780630519da32146104fd575b600080fd5b610476610471366004615402565b610c94565b6040519081526020015b60405180910390f35b6104b2610497366004615402565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b039091168152602001610480565b6104ed6104d8366004615402565b60016020526000908152604090205460ff1681565b6040519015158152602001610480565b61047660095481565b610476610514366004615402565b60076020526000908152604090205481565b610476610534366004615424565b610d2a565b61047660145481565b61054a610e62565b005b61047661055a366004615402565b600f6020526000908152604090205481565b61054a61057a366004615402565b610fa4565b61047660085481565b61054a61059636600461544e565b611095565b6104766105a9366004615402565b6110c9565b61054a6105bc36600461544e565b611100565b61047660135481565b6104ed6105d8366004615402565b60026020526000908152604090205460ff1681565b6106006105fb3660046154ab565b6112c0565b60405161048093929190615527565b61054a61061d366004615424565b6114ae565b61066e610630366004615424565b60156020908152600092835260408084209091529082529020805460018201546002830154600390930154919290916001600160a01b039091169084565b604051610480949392919093845260208401929092526001600160a01b03166040830152606082015260800190565b61054a6106ab366004615402565b611535565b6106c36106be36600461544e565b6118bb565b604080516001600160a01b039093168352602083019190915201610480565b61054a6106f0366004615402565b6118f3565b61054a61070336600461544e565b611a87565b61071b610716366004615424565b611abb565b60408051928352602083019190915201610480565b61054a61073e36600461555d565b611af7565b61054a6107513660046155c8565b611dc0565b610476610764366004615402565b60066020526000908152604090205481565b601b54610476565b6107866120b0565b604051610480939291906155ea565b61054a6107a33660046156b3565b612303565b61047660175481565b61054a6107bf366004615402565b612360565b61054a6107d23660046156e6565b612435565b6107ea6107e5366004615402565b612618565b6040516104809190615751565b610476610805366004615402565b6126ff565b61081d610818366004615402565b6128d2565b60405161048091906157ff565b610476610838366004615402565b6001600160a01b031660009081526018602052604090205490565b610476610861366004615424565b612967565b61054a612a73565b61054a61087c36600461544e565b612ca9565b61047661088f366004615402565b600d6020526000908152604090205481565b61054a6108af36600461585f565b612d45565b61054a6108c236600461544e565b612e78565b6000546104b2906001600160a01b031681565b6104766108e8366004615402565b60186020526000908152604090205481565b61054a61090836600461588b565b612ec7565b61054a61091b36600461544e565b612f0e565b61093361092e3660046155c8565b6131f8565b60405161048091906158e3565b61054a61094e36600461544e565b6133b7565b61096661096136600461544e565b6135a9565b6040805196875260208701959095529385019290925260608401526001600160a01b0390811660808401521660a082015260c001610480565b6109b26109ad366004615424565b6135fc565b604051610480919061595c565b61054a6109cd36600461544e565b61368c565b61054a6109e036600461544e565b613712565b6109f86109f3366004615424565b613b23565b6040516104809190615990565b61054a610a133660046159b1565b613bf8565b610a2b610a2636600461544e565b613dc1565b60405161048091906159e4565b610a4b610a46366004615424565b613e85565b604080519a8b5260208b0199909952978901969096526060880194909452608087019290925260a086015260c08501526001600160a01b031660e0840152151561010083015261012082015261014001610480565b610ab3610aae366004615424565b613f03565b604051610480929190615a1d565b6103e7610476565b610adc610ad7366004615402565b6140a9565b60408051938452602084019290925290820152606001610480565b61054a610b0536600461544e565b614108565b610b47610b1836600461544e565b600e60205260009081526040902080546001820154600283015460038401546004909401549293919290919085565b604080519586526020860194909452928401919091526060830152608082015260a001610480565b610b82610b7d366004615402565b61413c565b6040516104809190615a42565b610adc610b9d366004615424565b6141c4565b61054a610bb036600461544e565b614206565b610bc8610bc33660046155c8565b61423a565b6040516104809190615a98565b61054a610be336600461544e565b614407565b610476610bf6366004615402565b60106020526000908152604090205481565b600b54610476565b610600610c1e366004615402565b6145e1565b61047660125481565b61054a610c3a366004615424565b6147bb565b61054a610c4d366004615424565b614ccf565b61054a610c603660046155c8565b614dd1565b61054a610c7336600461544e565b614ee2565b61047660165481565b61054a610c8f366004615402565b6150b9565b6001600160a01b0381166000908152600f60209081526040808320546010909252822054805b601254811015610d22578215610d10576000818152600e602052604081206003015461271090610cea9086615b28565b610cf49190615b3f565b9050610d008186615b61565b9450610d0c8185615b74565b9350505b80610d1a81615b87565b915050610cba565b505050919050565b6001600160a01b0382166000908152600360205260408120805482919084908110610d5757610d57615ba0565b906000526020600020906009020190506000816006015442610d799190615b74565b60078301549091506001600160a01b03166000805b6001600160a01b038316600090815260046020526040902054811015610e55576001600160a01b0383166000908152600460205260408120805483908110610dd857610dd8615ba0565b6000918252602082206002909102018054600182015460088a015492945090929091606490610e0990600a90615b28565b610e139190615b3f565b9050828810610e4057612710610e298383615b28565b610e339190615b3f565b610e3d9087615b61565b95505b5050505080610e4e90615b87565b9050610d8e565b5093505050505b92915050565b610e6a615132565b6000610e7533610c94565b905060008111610ea05760405162461bcd60e51b8152600401610e9790615bb6565b60405180910390fd5b336000908152600f602052604081208054839290610ebf908490615b74565b925050819055508060136000828254610ed89190615b74565b90915550506012543360009081526010602090815260408083209390935560118152908290208251606081018452428082529281018590526009549193909290830191610f2491615b61565b90528154600180820184556000938452602093849020835160039093020191825582840151908201556040918201516002909101555182815233917fa65a8b4f7f65a1063243d7f7e9e4da00ff767599acf21549ef2548a45d1695ae910160405180910390a250610fa26001600080516020615cca83398151915255565b565b3360009081526001602052604090205460ff16610fd35760405162461bcd60e51b8152600401610e9790615be0565b6001600160a01b03811660009081526001602052604090205460ff166110275760405162461bcd60e51b81526020600482015260096024820152682737ba1037bbb732b960b91b6044820152606401610e97565b336001600160a01b038216036110745760405162461bcd60e51b815260206004820152601260248201527121b0b73737ba103932b6b7bb329039b2b63360711b6044820152606401610e97565b6001600160a01b03166000908152600160205260409020805460ff19169055565b3360009081526001602052604090205460ff166110c45760405162461bcd60e51b8152600401610e9790615be0565b601755565b6001600160a01b0381166000908152600f6020526040812054816110ec84610c94565b90506110f88183615b74565b949350505050565b611108615132565b336000908152601160205260409020805461115b5760405162461bcd60e51b81526020600482015260136024820152724e6f207374616b657320617661696c61626c6560681b6044820152606401610e97565b60005b815481101561126b57600082828154811061117b5761117b615ba0565b906000526020600020906003020190508381600001541480156111a2575060008160010154115b156112585780600201544210156111ea5760405162461bcd60e51b815260206004820152600c60248201526b14dd185ad9481b1bd8dad95960a21b6044820152606401610e97565b60018101805460009091556112147355d398326f99059ff775485246999027b3197955338361517e565b604080518281526020810187905233917f933735aa8de6d7547d0126171b2f31b9c34dd00f3ecd4be85a0ba047db4fafef910160405180910390a2505050506112a6565b508061126381615b87565b91505061115e565b5060405162461bcd60e51b815260206004820152600f60248201526e14dd185ad9481b9bdd08199bdd5b99608a1b6044820152606401610e97565b6112bd6001600080516020615cca83398151915255565b50565b606080600083806001600160401b038111156112de576112de615c08565b604051908082528060200260200182016040528015611307578160200160208202803683370190505b509350806001600160401b0381111561132257611322615c08565b60405190808252806020026020018201604052801561134b578160200160208202803683370190505b50925060005b818110156114a557600087878381811061136d5761136d615ba0565b90506020020160208101906113829190615402565b6001600160a01b03811660009081526007602052604090205487519192509081908890859081106113b5576113b5615ba0565b6020908102919091018101919091526001600160a01b038381166000818152600590935260408084205490516302c68be360e31b81526004810192909252909116906316345f1890602401602060405180830381865afa15801561141d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114419190615c1e565b90506000670de0b6b3a76400006114588484615b28565b6114629190615b3f565b90508088868151811061147757611477615ba0565b602090810291909101015261148c8188615b61565b965050505050808061149d90615b87565b915050611351565b50509250925092565b3360009081526001602052604090205460ff166114dd5760405162461bcd60e51b8152600401610e9790615be0565b6114f16001600160a01b038316338361517e565b6040518181526001600160a01b0383169033907fa92ff919b850e4909ab2261d907ef955f11bc1716733a6cbece38d163a69af8a9060200160405180910390a35050565b61153d615132565b6000805b336000908152600360205260409020548110156116485733600090815260036020526040812080548390811061157957611579615ba0565b6000918252602090912060099091020160078101549091506001600160a01b0385811691161480156115b757506007810154600160a01b900460ff16155b156116355760006115c83384612967565b905081600301548111156116335760008260030154826115e89190615b74565b90506115f48186615b61565b94508083600301600082825461160a9190615b61565b909155505082546003840154106116315760078301805460ff60a01b1916600160a01b1790555b505b505b508061164081615b87565b915050611541565b50600081116116695760405162461bcd60e51b8152600401610e9790615bb6565b3360009081526006602052604090205415611772576001600160a01b038281166000818152600560205260408082205490516302c68be360e31b815260048101939093529092670de0b6b3a7640000928592909116906316345f1890602401602060405180830381865afa1580156116e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117099190615c1e565b6117139190615b28565b61171d9190615b3f565b33600090815260066020526040902054909150811061174b5733600090815260066020526040812055611770565b336000908152600660205260408120805483929061176a908490615b74565b90915550505b505b6001600160a01b0382166000908152600760205260408120805483929061179a908490615b74565b9091555050336000908152600a6020526040808220815160808101909252600b80549193839291906117cb83615b87565b919050558152602001838152602001600954426117e89190615b61565b81526001600160a01b0385811660209283018190528454600180820187556000968752848720865160049093020191825585850151908201556040808601516002830155606090950151600390910180546001600160a01b03191691909316179091558352600d905281208054839290611863908490615b61565b9091555050604080518281526000602082015233917f4a94c2c356e29a6583071e731bdacf2ca56565ba5efebcff6936eb7923b51721910160405180910390a2506112bd6001600080516020615cca83398151915255565b601981815481106118cb57600080fd5b6000918252602090912060029091020180546001909101546001600160a01b03909116915082565b3360009081526002602052604090205460ff166119225760405162461bcd60e51b8152600401610e9790615be0565b60005b6001600160a01b038216600090815260036020526040902054811015611a83576001600160a01b038216600090815260036020526040812080548390811061196f5761196f615ba0565b906000526020600020906009020190508060070160149054906101000a900460ff16611a475760088101546001600160a01b038416600090815260066020526040902054106119eb5760088101546001600160a01b038416600090815260066020526040812080549091906119e5908490615b74565b90915550505b80546007808301546001600160a01b03166000908152602091909152604090205410611a475780546007808301546001600160a01b03166000908152602091909152604081208054909190611a41908490615b74565b90915550505b600080825560018201819055600382018190556004820155600701805460ff60a01b1916600160a01b179055611a7c81615b87565b9050611925565b5050565b3360009081526001602052604090205460ff16611ab65760405162461bcd60e51b8152600401610e9790615be0565b601655565b60046020528160005260406000208181548110611ad757600080fd5b600091825260209091206002909102018054600190910154909250905082565b3360009081526002602052604090205460ff16611b265760405162461bcd60e51b8152600401610e9790615be0565b828114611b6d5760405162461bcd60e51b8152602060048201526015602482015274082e4e4c2f240d8cadccee8d040dad2e6dac2e8c6d605b1b6044820152606401610e97565b82611ba95760405162461bcd60e51b815260206004820152600c60248201526b456d7074792061727261797360a01b6044820152606401610e97565b6000805b84811015611da1576000868683818110611bc957611bc9615ba0565b9050602002016020810190611bde9190615402565b6001600160a01b031603611c045760405162461bcd60e51b8152600401610e9790615c37565b6000848483818110611c1857611c18615ba0565b9050602002013511611c3c5760405162461bcd60e51b8152600401610e9790615c60565b838382818110611c4e57611c4e615ba0565b90506020020135600f6000888885818110611c6b57611c6b615ba0565b9050602002016020810190611c809190615402565b6001600160a01b03168152602081019190915260400160002054611ca49084615b74565b611cae9190615b61565b9150838382818110611cc257611cc2615ba0565b90506020020135600f6000888885818110611cdf57611cdf615ba0565b9050602002016020810190611cf49190615402565b6001600160a01b03168152602081019190915260400160002055858582818110611d2057611d20615ba0565b9050602002016020810190611d359190615402565b6001600160a01b03167fec7e3594982826a1f90c8fc76513357b83a691b7f4e38b8be04f3d40f9b15839858584818110611d7157611d71615ba0565b90506020020135604051611d8791815260200190565b60405180910390a280611d9981615b87565b915050611bad565b508060136000828254611db49190615b61565b90915550505050505050565b611dc8615132565b60008211611e085760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642076616c756560981b6044820152606401610e97565b60008111611e4d5760405162461bcd60e51b8152602060048201526012602482015271496e76616c69642073616c6520707269636560701b6044820152606401610e97565b601654821015611e955760405162461bcd60e51b815260206004820152601360248201527256616c75652062656c6f77206d696e696d756d60681b6044820152606401610e97565b6000611ea0336110c9565b905080831115611eeb5760405162461bcd60e51b8152602060048201526016602482015275496e73756666696369656e74206e6574207374616b6560501b6044820152606401610e97565b600c8054906000611efb83615b87565b9091555050600c54336000908152600f602052604081208054869290611f22908490615b74565b925050819055508360136000828254611f3b9190615b74565b909155505060408051608081018252858152602080820186815233838501818152426060860190815260008381526015865287812089825286528781209651875593516001808801919091559151600280880180546001600160a01b039384166001600160a01b03199182161790915592516003909801979097558751808901909852928752938601878152601980548084018255948190529651939095027f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c969581018054949093169390941692909217905591517f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c96969091015590546120409190615b74565b336000818152601a6020908152604080832086845282529182902093909355805186815292830184905290917f8e79b7ba8dab5ebfa59b9c6af1743c3ef14863680b3cc5ac837f8d636f76031c910160405180910390a25050611a836001600080516020615cca83398151915255565b60195460609081908190806001600160401b038111156120d2576120d2615c08565b6040519080825280602002602001820160405280156120fb578160200160208202803683370190505b509350806001600160401b0381111561211657612116615c08565b60405190808252806020026020018201604052801561213f578160200160208202803683370190505b509250806001600160401b0381111561215a5761215a615c08565b6040519080825280602002602001820160405280156121bf57816020015b6121ac6040518060800160405280600081526020016000815260200160006001600160a01b03168152602001600081525090565b8152602001906001900390816121785790505b50915060005b818110156122fc576000601982815481106121e2576121e2615ba0565b60009182526020918290206040805180820190915260029092020180546001600160a01b031680835260019091015492820192909252875190925087908490811061222f5761222f615ba0565b60200260200101906001600160a01b031690816001600160a01b031681525050806020015185838151811061226657612266615ba0565b60209081029190910181019190915281516001600160a01b03908116600090815260158352604080822085850151835284529081902081516080810183528154815260018201549481019490945260028101549092169083015260030154606082015284518590849081106122dd576122dd615ba0565b60200260200101819052505080806122f490615b87565b9150506121c5565b5050909192565b3360009081526001602052604090205460ff166123325760405162461bcd60e51b8152600401610e9790615be0565b6001600160a01b03918216600090815260056020526040902080546001600160a01b03191691909216179055565b3360009081526001602052604090205460ff1661238f5760405162461bcd60e51b8152600401610e9790615be0565b6001600160a01b0381166123b55760405162461bcd60e51b8152600401610e9790615c37565b6001600160a01b03811660009081526001602052604090205460ff161561240e5760405162461bcd60e51b815260206004820152600d60248201526c20b63932b0b23c9037bbb732b960991b6044820152606401610e97565b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b3360009081526002602052604090205460ff166124645760405162461bcd60e51b8152600401610e9790615be0565b60036000896001600160a01b03166001600160a01b031681526020019081526020016000206040518061014001604052808981526020018881526020018781526020016000815260200160008152602001848152602001838152602001866001600160a01b03168152602001600015158152602001858152509080600181540180825580915050600190039060005260206000209060090201600090919091909150600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e08201518160070160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506101008201518160070160146101000a81548160ff0219169083151502179055506101208201518160080155505082600660008a6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546125dc9190615b61565b90915550506001600160a01b03841660009081526007602052604081208054899290612609908490615b61565b90915550505050505050505050565b6001600160a01b0381166000908152600360209081526040808320805482518185028101850190935280835260609492939192909184015b828210156126f457600084815260209081902060408051610140810182526009860290920180548352600180820154848601526002820154928401929092526003810154606084015260048101546080840152600581015460a0840152600681015460c084015260078101546001600160a01b03811660e0850152600160a01b900460ff161515610100840152600801546101208301529083529092019101612650565b505050509050919050565b6001600160a01b038116600090815260036020526040812054815b818110156128cb576001600160a01b038416600090815260036020526040812080548390811061274c5761274c615ba0565b600091825260209182902060408051610140810182526009909302909101805483526001810154938301939093526002830154908201526003820154606082015260048201546080820152600582015460a0820152600682015460c082015260078201546001600160a01b03811660e083015260ff600160a01b909104161515610100820181905260089092015461012082015291506128b85760e0810180516001600160a01b0390811660009081526005602052604080822054935190516302c68be360e31b815290831660048201529092909116906316345f1890602401602060405180830381865afa158015612849573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061286d9190615c1e565b90506000826060015183600001516128859190615b74565b90506000670de0b6b3a764000061289c8385615b28565b6128a69190615b3f565b90506128b28188615b61565b96505050505b50806128c381615b87565b91505061271a565b5050919050565b6001600160a01b0381166000908152600a60209081526040808320805482518185028101850190935280835260609492939192909184015b828210156126f457600084815260209081902060408051608081018252600486029092018054835260018082015484860152600282015492840192909252600301546001600160a01b03166060830152908352909201910161290a565b6001600160a01b038216600090815260036020526040812080548291908490811061299457612994615ba0565b9060005260206000209060090201905060008160060154426129b69190615b74565b60078301549091506001600160a01b03166000805b6001600160a01b038316600090815260046020526040902054811015610e55576001600160a01b0383166000908152600460205260408120805483908110612a1557612a15615ba0565b600091825260209091206002909102018054600182015491925090818710612a5f57875461271090612a48908390615b28565b612a529190615b3f565b612a5c9086615b61565b94505b50505080612a6c90615b87565b90506129cb565b6000612a7d6151e2565b805490915060ff600160401b82041615906001600160401b0316600081158015612aa45750825b90506000826001600160401b03166001148015612ac05750303b155b905081158015612ace575080155b15612aec5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612b1657845460ff60401b1916600160401b1785555b612b1e61520b565b600080546001600160a01b03191633908117825581526001602081815260408320805460ff1990811684179091557f968a1791ad31618c63b086103baa804af57c3ca0efa33a191010fbb7741579fc80548216841790557f62cf4150b20d3255eba0565c087b9107980561f805ca8d8f9daa6ef061b5102180548216841790557f07c745cf21e9841960aca585c508e8b656ab26f500f65e063e363f1e5431cb338054821684179055738a9281ecece9b599c2f42d829c3d0d8e74b7083e84527f3951584e4df0c05d84015a72c4987ad1375f6f18e35cb23b25e1962d5cdc88b68054909116909217909155600f905269021e19e0c9bab24000007f49b20f23a4c98683b2444d4fceacc6fea988f6ff51924040a449ec627e73e8368190556013805491929091612c50908490615b61565b90915550506201fa406009558315612ca257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b3360009081526001602052604090205460ff16612cd85760405162461bcd60e51b8152600401610e9790615be0565b612cf77355d398326f99059ff775485246999027b3197955338361517e565b6040518181527355d398326f99059ff775485246999027b31979559033907fa92ff919b850e4909ab2261d907ef955f11bc1716733a6cbece38d163a69af8a9060200160405180910390a350565b3360009081526001602052604090205460ff16612d745760405162461bcd60e51b8152600401610e9790615be0565b60125460009015612dbf576000600e60006001601254612d949190615b74565b81526020019081526020016000209050612dbb84601354836001015484600201548761521b565b9150505b6040805160a081018252858152602080820186815260135483850190815260608085018781524260808701908152601280546000908152600e885289902097518855945160018801559251600287015551600386015590516004909401939093555483518781529182018590529281018590527feadbedb993dfca23e4c79bf4fa5fe531c2e0e926258fabb8445e8bc5c472780f910160405180910390a260128054906000612e6d83615b87565b919050555050505050565b3360009081526001602052604090205460ff16612ea75760405162461bcd60e51b8152600401610e9790615be0565b6112bd7355d398326f99059ff775485246999027b31979553330846152b4565b3360009081526002602052604090205460ff16612ef65760405162461bcd60e51b8152600401610e9790615be0565b612f068686868686864242612435565b505050505050565b33600090815260156020908152604080832084845290915290208054612f465760405162461bcd60e51b8152600401610e9790615c88565b60028101546001600160a01b03163314612f935760405162461bcd60e51b815260206004820152600e60248201526d2737ba103a34329039b2b63632b960911b6044820152606401610e97565b805460175460009061271090612fa99084615b28565b612fb39190615b3f565b90506000612fc18284615b74565b336000908152600f6020526040812080549293508392909190612fe5908490615b61565b925050819055508060136000828254612ffe9190615b61565b9091555050811561304557604080518381526020810187905233917f4725a4d4de9bff212d0885095e27515072f73f427df55e52f37f241321ef88f9910160405180910390a25b336000818152601560209081526040808320898452825280832083815560018082018590556002820180546001600160a01b03191690556003909101849055938352601a825280832089845290915281205460195490926130a591615b74565b9050808214613166576000601982815481106130c3576130c3615ba0565b60009182526020918290206040805180820190915260029092020180546001600160a01b0316825260010154918101919091526019805491925082918590811061310f5761310f615ba0565b6000918252602080832084516002939093020180546001600160a01b0319166001600160a01b03938416178155938101516001909401939093558351168152601a8252604080822093830151825292909152208290555b601980548061317757613177615cb3565b600082815260208082206002600019949094019384020180546001600160a01b03191681556001018290559190925533808352601a825260408084208b855283528084209390935591518981527f73d12dec3eb3b445b6c9feb2fd559ba7c852c525bc1e59d8f7ff760c55df041d910160405180910390a250505050505050565b60608183111561323a5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642072616e676560981b6044820152606401610e97565b60125482106132815760405162461bcd60e51b8152602060048201526013602482015272115b9908195c1bd8da081b9bdd08199bdd5b99606a1b6044820152606401610e97565b600061328d8484615b74565b613298906001615b61565b90506000816001600160401b038111156132b4576132b4615c08565b60405190808252806020026020018201604052801561331757816020015b6133046040518060a0016040528060008152602001600081526020016000815260200160008152602001600081525090565b8152602001906001900390816132d25790505b50905060005b828110156133ae57600e60006133338389615b61565b81526020019081526020016000206040518060a00160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152505082828151811061339057613390615ba0565b602002602001018190525080806133a690615b87565b91505061331d565b50949350505050565b6133bf615132565b600081116133df5760405162461bcd60e51b8152600401610e9790615c60565b6000601454116134285760405162461bcd60e51b81526020600482015260146024820152734275796f7574206e6f7420617661696c61626c6560601b6044820152606401610e97565b6000613433336110c9565b90508082111561347e5760405162461bcd60e51b8152602060048201526016602482015275496e73756666696369656e74206e6574207374616b6560501b6044820152606401610e97565b6000612710601454846134919190615b28565b61349b9190615b3f565b336000908152600f60205260408120805492935085929091906134bf908490615b74565b9250508190555082601360008282546134d89190615b74565b9091555050600c80549060006134ed83615b87565b9091555050336000908152601160209081526040918290208251606081018452600c548152918201849052600954909282019061352a9042615b61565b90528154600180820184556000938452602093849020835160039093020191825582840151908201556040918201516002909101555182815233917fa65a8b4f7f65a1063243d7f7e9e4da00ff767599acf21549ef2548a45d1695ae910160405180910390a250506112bd6001600080516020615cca83398151915255565b601b81815481106135b957600080fd5b6000918252602090912060069091020180546001820154600283015460038401546004850154600590950154939550919390926001600160a01b03918216911686565b6136306040518060800160405280600081526020016000815260200160006001600160a01b03168152602001600081525090565b506001600160a01b03918216600090815260156020908152604080832093835292815290829020825160808101845281548152600182015492810192909252600281015490931691810191909152600390910154606082015290565b3360009081526001602052604090205460ff166136bb5760405162461bcd60e51b8152600401610e9790615be0565b61271081111561370d5760405162461bcd60e51b815260206004820152601d60248201527f50657263656e746167652063616e6e6f742065786365656420313030250000006044820152606401610e97565b601455565b61371a615132565b3360009081526003602052604090205481106137705760405162461bcd60e51b8152602060048201526015602482015274092dcecc2d8d2c840eccae6e8d2dcce40d2dcc8caf605b1b6044820152606401610e97565b33600090815260036020526040812080548390811061379157613791615ba0565b906000526020600020906009020190508060070160149054906101000a900460ff16156137f35760405162461bcd60e51b815260206004820152601060248201526f56657374696e6720636f6d706c65746560801b6044820152606401610e97565b60006137ff3384612967565b9050816003015481101561384c5760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a590818db185a5b48185b5bdd5b9d60621b6044820152606401610e97565b600082600301548261385e9190615b74565b9050600081116138805760405162461bcd60e51b8152600401610e9790615bb6565b808360030160008282546138949190615b61565b909155505082546003840154106138bb5760078301805460ff60a01b1916600160a01b1790555b33600090815260066020526040902054156139c95760078301546001600160a01b039081166000818152600560205260408082205490516302c68be360e31b815260048101939093529092670de0b6b3a7640000928592909116906316345f1890602401602060405180830381865afa15801561393c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139609190615c1e565b61396a9190615b28565b6139749190615b3f565b3360009081526006602052604090205490915081106139a257336000908152600660205260408120556139c7565b33600090815260066020526040812080548392906139c1908490615b74565b90915550505b505b6007838101546001600160a01b031660009081526020919091526040812080548392906139f7908490615b74565b9091555050336000908152600a6020526040808220815160808101909252600b8054919383929190613a2883615b87565b91905055815260200183815260200160095442613a459190615b61565b81526007860180546001600160a01b039081166020938401528454600180820187556000968752848720865160049093020191825585850151908201556040808601516002830155606090950151600390910180546001600160a01b0319169183169190911790559054168352600d905281208054839290613ac8908490615b61565b9091555050604080518281526000602082015233917f4a94c2c356e29a6583071e731bdacf2ca56565ba5efebcff6936eb7923b5172191015b60405180910390a25050506112bd6001600080516020615cca83398151915255565b613b4760405180606001604052806000815260200160008152602001600081525090565b6001600160a01b0383166000908152601160205260408120905b815481101561126b5783828281548110613b7d57613b7d615ba0565b90600052602060002090600302016000015403613be657818181548110613ba657613ba6615ba0565b9060005260206000209060030201604051806060016040529081600082015481526020016001820154815260200160028201548152505092505050610e5c565b80613bf081615b87565b915050613b61565b3360009081526001602052604090205460ff16613c275760405162461bcd60e51b8152600401610e9790615be0565b6001600160a01b038316613c755760405162461bcd60e51b8152602060048201526015602482015274496e76616c696420746f6b656e206164647265737360581b6044820152606401610e97565b600081118015613c8757506127108111155b613cc85760405162461bcd60e51b8152602060048201526012602482015271496e76616c69642070657263656e7461676560701b6044820152606401610e97565b6001600160a01b0383166000908152600460205260408120613ce9916153ab565b6000825b612710821015613d865782612710613d058285615b61565b1115613d1a57613d1783612710615b74565b90505b6001600160a01b0386166000908152600460209081526040808320815180830190925285825281830185815281546001818101845592865293909420915160029093029091019182559151910155613d728184615b61565b9250613d7e8583615b61565b915050613ced565b6040516001600160a01b038616907fde4b6ccc38b84f88129403b65a309f9b1c41d4c316bc2118d7614e449b9d4c4590600090a25050505050565b613df36040518060a0016040528060008152602001600081526020016000815260200160008152602001600081525090565b6012548210613e365760405162461bcd60e51b815260206004820152600f60248201526e115c1bd8da081b9bdd08199bdd5b99608a1b6044820152606401610e97565b506000908152600e6020908152604091829020825160a0810184528154815260018201549281019290925260028101549282019290925260038201546060820152600490910154608082015290565b60036020528160005260406000208181548110613ea157600080fd5b6000918252602090912060099091020180546001820154600283015460038401546004850154600586015460068701546007880154600890980154969950949750929591949093916001600160a01b03811691600160a01b90910460ff16908a565b6001600160a01b038216600090815260036020526040812080546060928392909185908110613f3457613f34615ba0565b600091825260208083206007600990930201918201546001600160a01b03168084526004909152604083205491935091816001600160401b03811115613f7c57613f7c615c08565b604051908082528060200260200182016040528015613fa5578160200160208202803683370190505b5090506000826001600160401b03811115613fc257613fc2615c08565b604051908082528060200260200182016040528015613feb578160200160208202803683370190505b50905060005b83811015614098576001600160a01b038516600090815260046020526040812080548390811061402357614023615ba0565b90600052602060002090600202019050806000015487600601546140479190615b61565b84838151811061405957614059615ba0565b602002602001018181525050806001015483838151811061407c5761407c615ba0565b60209081029190910101525061409181615b87565b9050613ff1565b5090955093505050505b9250929050565b6000806000806140b885610c94565b6001600160a01b0386166000908152600f60205260409020549091506140df908290615b74565b6001600160a01b0386166000908152600f602052604090205490945090925090505b9193909250565b3360009081526001602052604090205460ff166141375760405162461bcd60e51b8152600401610e9790615be0565b600855565b6001600160a01b0381166000908152601160209081526040808320805482518185028101850190935280835260609492939192909184015b828210156126f45783829060005260206000209060030201604051806060016040529081600082015481526020016001820154815260200160028201548152505081526020019060010190614174565b601160205281600052604060002081815481106141e057600080fd5b600091825260209091206003909102018054600182015460029092015490935090915083565b3360009081526001602052604090205460ff166142355760405162461bcd60e51b8152600401610e9790615be0565b600955565b601b54606090831061428e5760405162461bcd60e51b815260206004820152601960248201527f537461727420696e646578206f7574206f6620626f756e6473000000000000006044820152606401610e97565b600061429a8385615b61565b601b549091508111156142ac5750601b545b60006142b88583615b74565b6001600160401b038111156142cf576142cf615c08565b60405190808252806020026020018201604052801561434b57816020015b6143386040518060c001604052806000815260200160008152602001600081526020016000815260200160006001600160a01b0316815260200160006001600160a01b031681525090565b8152602001906001900390816142ed5790505b509050845b828110156133ae57601b818154811061436b5761436b615ba0565b60009182526020918290206040805160c0810182526006909302909101805483526001810154938301939093526002830154908201526003820154606082015260048201546001600160a01b03908116608083015260059092015490911660a0820152826143d98884615b74565b815181106143e9576143e9615ba0565b602002602001018190525080806143ff90615b87565b915050614350565b61440f615132565b3360009081526003602052604090205481106144655760405162461bcd60e51b8152602060048201526015602482015274092dcecc2d8d2c840eccae6e8d2dcce40d2dcc8caf605b1b6044820152606401610e97565b33600090815260036020526040812080548390811061448657614486615ba0565b9060005260206000209060090201905060006144a23384610d2a565b905081600401548110156144ef5760405162461bcd60e51b8152602060048201526014602482015273125b9d985b1a590818db185a5b48185b5bdd5b9d60621b6044820152606401610e97565b60008260040154826145019190615b74565b9050600081116145235760405162461bcd60e51b8152600401610e9790615bb6565b808360040160008282546145379190615b61565b90915550503360009081526011602052604090819020815160608101909252908061456587620f4240615b61565b81526020018381526020016009544261457e9190615b61565b90528154600180820184556000938452602093849020835160039093020191825582840151908201556040918201516002909101555182815233917f4e69fdc49495bcab2b4375781457ba16653a90eb4ffb6588351bdc39071433e29101613b01565b6001600160a01b0381166000908152600f60209081526040808320546010909252822054601254606093849390929091839061461e908390615b74565b90508060000361464f5750506040805160008082526020820181815282840190935290955090935091506141019050565b806001600160401b0381111561466757614667615c08565b604051908082528060200260200182016040528015614690578160200160208202803683370190505b509550806001600160401b038111156146ab576146ab615c08565b6040519080825280602002602001820160405280156146d4578160200160208202803683370190505b50945060005b818110156147b05760006146ee8285615b61565b90508088838151811061470357614703615ba0565b6020908102919091010152841561477c576000818152600e6020526040812060030154612710906147349088615b28565b61473e9190615b3f565b90508088848151811061475357614753615ba0565b60209081029190910101526147688188615b61565b96506147748187615b74565b95505061479d565b600087838151811061479057614790615ba0565b6020026020010181815250505b50806147a881615b87565b9150506146da565b505050509193909250565b6147c3615132565b6001600160a01b0382166000908152601560209081526040808320848452909152902080546148045760405162461bcd60e51b8152600401610e9790615c88565b336001600160a01b038416036148555760405162461bcd60e51b815260206004820152601660248201527543616e6e6f7420627579206f776e206c697374696e6760501b6044820152606401610e97565b805460018201546003830154600082841161487157600061487b565b61487b8385615b74565b905060008461488c83612710615b28565b6148969190615b3f565b905060006127106148a78380615b28565b6148b19190615b3f565b905060006127106148c28389615b28565b6148cc9190615b3f565b905060006148da8289615b74565b90506148fc7355d398326f99059ff775485246999027b3197955338d8a6152b4565b336000908152600f60205260408120805483929061491b908490615b61565b9250508190555080601360008282546149349190615b61565b90915550506001600160a01b038b1660009081526018602052604081208054899290614961908490615b61565b92505081905550601b6040518060c001604052808881526020014281526020018a81526020018981526020018d6001600160a01b03168152602001336001600160a01b031681525090806001815401808255809150506001900390600052602060002090600602016000909190919091506000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060a08201518160050160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505050601560008c6001600160a01b03166001600160a01b0316815260200190815260200160002060008b815260200190815260200160002060008082016000905560018201600090556002820160006101000a8154906001600160a01b030219169055600382016000905550506000601a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002060008c815260200190815260200160002054905060006001601980549050614b109190615b74565b9050808214614bd157600060198281548110614b2e57614b2e615ba0565b60009182526020918290206040805180820190915260029092020180546001600160a01b03168252600101549181019190915260198054919250829185908110614b7a57614b7a615ba0565b6000918252602080832084516002939093020180546001600160a01b0319166001600160a01b03938416178155938101516001909401939093558351168152601a8252604080822093830151825292909152208290555b6019805480614be257614be2615cb3565b6001900381819060005260206000209060020201600080820160006101000a8154906001600160a01b030219169055600182016000905550509055601a60008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d815260200190815260200160002060009055336001600160a01b03168d6001600160a01b03167f7bb39d095b04a9986ed34adf14d74c33294d0a9e807f02bf634d532507422eba8b8f604051614ca5929190918252602082015260400190565b60405180910390a35050505050505050505050611a836001600080516020615cca83398151915255565b3360009081526002602052604090205460ff16614cfe5760405162461bcd60e51b8152600401610e9790615be0565b6001600160a01b038216614d245760405162461bcd60e51b8152600401610e9790615c37565b60008111614d445760405162461bcd60e51b8152600401610e9790615c60565b6001600160a01b0382166000908152600f60205260409020546013548291614d6b91615b74565b614d759190615b61565b6013556001600160a01b0382166000818152600f602052604090819020839055517fec7e3594982826a1f90c8fc76513357b83a691b7f4e38b8be04f3d40f9b1583990614dc59084815260200190565b60405180910390a25050565b33600090815260156020908152604080832085845290915290208054614e095760405162461bcd60e51b8152600401610e9790615c88565b60028101546001600160a01b03163314614e565760405162461bcd60e51b815260206004820152600e60248201526d2737ba103a34329039b2b63632b960911b6044820152606401610e97565b60008211614e9b5760405162461bcd60e51b8152602060048201526012602482015271496e76616c69642073616c6520707269636560701b6044820152606401610e97565b60018101829055604080518381526020810185905233917f8e79b7ba8dab5ebfa59b9c6af1743c3ef14863680b3cc5ac837f8d636f76031c910160405180910390a2505050565b614eea615132565b336000908152600a602052604090208054614f3f5760405162461bcd60e51b81526020600482015260156024820152744e6f2076657374696e677320617661696c61626c6560581b6044820152606401610e97565b60005b815481101561507c576000828281548110614f5f57614f5f615ba0565b90600052602060002090600402019050838160000154148015614f86575060008160010154115b15615069578060020154421015614fd05760405162461bcd60e51b815260206004820152600e60248201526d15995cdd1a5b99c81b1bd8dad95960921b6044820152606401610e97565b60018101805460038301546000928390556001600160a01b0316808352600d6020526040832080549293919284929061500a908490615b74565b9091555061502490506001600160a01b038216338461517e565b604080518381526020810188905233917f933735aa8de6d7547d0126171b2f31b9c34dd00f3ecd4be85a0ba047db4fafef910160405180910390a250505050506112a6565b508061507481615b87565b915050614f42565b5060405162461bcd60e51b815260206004820152601160248201527015995cdd1a5b99c81b9bdd08199bdd5b99607a1b6044820152606401610e97565b3360009081526001602052604090205460ff166150e85760405162461bcd60e51b8152600401610e9790615be0565b6001600160a01b03811661510e5760405162461bcd60e51b8152600401610e9790615c37565b6001600160a01b03166000908152600260205260409020805460ff19166001179055565b600080516020615cca83398151915280546001190161516457604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b6001600080516020615cca83398151915255565b6040516001600160a01b038381166024830152604482018390526151dd91859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050506152f3565b505050565b6000807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610e5c565b615213615364565b610fa2615389565b6000821580615228575084155b15615235575060006152ab565b60008561524488612710615b28565b61524e9190615b3f565b905060008461525f87612710615b28565b6152699190615b3f565b905080821161527d576000925050506152ab565b60006152898284615b74565b9050600061271061529a8784615b28565b6152a49190615b3f565b9450505050505b95945050505050565b6040516001600160a01b0384811660248301528381166044830152606482018390526152ed9186918216906323b872dd906084016151ab565b50505050565b600080602060008451602086016000885af180615316576040513d6000823e3d81fd5b50506000513d9150811561532e57806001141561533b565b6001600160a01b0384163b155b156152ed57604051635274afe760e01b81526001600160a01b0385166004820152602401610e97565b61536c615391565b610fa257604051631afcd79f60e31b815260040160405180910390fd5b61516a615364565b600061539b6151e2565b54600160401b900460ff16919050565b50805460008255600202906000526020600020908101906112bd91905b808211156153e257600080825560018201556002016153c8565b5090565b80356001600160a01b03811681146153fd57600080fd5b919050565b60006020828403121561541457600080fd5b61541d826153e6565b9392505050565b6000806040838503121561543757600080fd5b615440836153e6565b946020939093013593505050565b60006020828403121561546057600080fd5b5035919050565b60008083601f84011261547957600080fd5b5081356001600160401b0381111561549057600080fd5b6020830191508360208260051b85010111156140a257600080fd5b600080602083850312156154be57600080fd5b82356001600160401b038111156154d457600080fd5b6154e085828601615467565b90969095509350505050565b600081518084526020808501945080840160005b8381101561551c57815187529582019590820190600101615500565b509495945050505050565b60608152600061553a60608301866154ec565b828103602084015261554c81866154ec565b915050826040830152949350505050565b6000806000806040858703121561557357600080fd5b84356001600160401b038082111561558a57600080fd5b61559688838901615467565b909650945060208701359150808211156155af57600080fd5b506155bc87828801615467565b95989497509550505050565b600080604083850312156155db57600080fd5b50508035926020909101359150565b60608082528451908201819052600090608090818401906020808901855b8381101561562d5781516001600160a01b031685529382019390820190600101615608565b50508583038187015261564083896154ec565b868103604088015287518082528289019450908201925060005b818110156156a45761569484865180518252602080820151908301526040808201516001600160a01b031690830152606090810151910152565b938201939285019260010161565a565b50919998505050505050505050565b600080604083850312156156c657600080fd5b6156cf836153e6565b91506156dd602084016153e6565b90509250929050565b600080600080600080600080610100898b03121561570357600080fd5b61570c896153e6565b975060208901359650604089013595506060890135945061572f60808a016153e6565b979a969950949793969560a0850135955060c08501359460e001359350915050565b602080825282518282018190526000919060409081850190868401855b828110156157f25781518051855286810151878601528581015186860152606080820151908601526080808201519086015260a0808201519086015260c0808201519086015260e0808201516001600160a01b031690860152610100808201511515908601526101209081015190850152610140909301929085019060010161576e565b5091979650505050505050565b602080825282518282018190526000919060409081850190868401855b828110156157f257815180518552868101518786015285810151868601526060908101516001600160a01b0316908501526080909301929085019060010161581c565b60008060006060848603121561587457600080fd5b505081359360208301359350604090920135919050565b60008060008060008060c087890312156158a457600080fd5b6158ad876153e6565b95506020870135945060408701359350606087013592506158d0608088016153e6565b915060a087013590509295509295509295565b6020808252825182820181905260009190848201906040850190845b818110156159505761593d83855180518252602081015160208301526040810151604083015260608101516060830152608081015160808301525050565b9284019260a092909201916001016158ff565b50909695505050505050565b81518152602080830151908201526040808301516001600160a01b0316908201526060808301519082015260808101610e5c565b81518152602080830151908201526040808301519082015260608101610e5c565b6000806000606084860312156159c657600080fd5b6159cf846153e6565b95602085013595506040909401359392505050565b60a08101610e5c828480518252602081015160208301526040810151604083015260608101516060830152608081015160808301525050565b604081526000615a3060408301856154ec565b82810360208401526152ab81856154ec565b6020808252825182820181905260009190848201906040850190845b8181101561595057615a858385518051825260208082015190830152604090810151910152565b9284019260609290920191600101615a5e565b602080825282518282018190526000919060409081850190868401855b828110156157f25781518051855286810151878601528581015186860152606080820151908601526080808201516001600160a01b039081169187019190915260a091820151169085015260c09093019290850190600101615ab5565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610e5c57610e5c615b12565b600082615b5c57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610e5c57610e5c615b12565b81810381811115610e5c57610e5c615b12565b600060018201615b9957615b99615b12565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60208082526010908201526f4e6f7468696e6720746f20636c61696d60801b604082015260600190565b6020808252600e908201526d139bdd08185d5d1a1bdc9a5e995960921b604082015260600190565b634e487b7160e01b600052604160045260246000fd5b600060208284031215615c3057600080fd5b5051919050565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b6020808252600e908201526d125b9d985b1a5908185b5bdd5b9d60921b604082015260600190565b602080825260119082015270131a5cdd1a5b99c81b9bdd08199bdd5b99607a1b604082015260600190565b634e487b7160e01b600052603160045260246000fdfe9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00a2646970667358221220f6c9687424e98a5eedc2ebd97c79e0c5a0cde5c699d22518c725ae3ffacddc4764736f6c63430008140033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x45E JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8129FC1C GT PUSH2 0x24C JUMPI DUP1 PUSH4 0xBED9757E GT PUSH2 0x146 JUMPI DUP1 PUSH4 0xDA1B4364 GT PUSH2 0xC3 JUMPI DUP1 PUSH4 0xF109208F GT PUSH2 0x87 JUMPI DUP1 PUSH4 0xF109208F EQ PUSH2 0xC3F JUMPI DUP1 PUSH4 0xF2BB5630 EQ PUSH2 0xC52 JUMPI DUP1 PUSH4 0xF7E4444C EQ PUSH2 0xC65 JUMPI DUP1 PUSH4 0xFE2F50D0 EQ PUSH2 0xC78 JUMPI DUP1 PUSH4 0xFFECF516 EQ PUSH2 0xC81 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xDA1B4364 EQ PUSH2 0xBE8 JUMPI DUP1 PUSH4 0xE079FD91 EQ PUSH2 0xC08 JUMPI DUP1 PUSH4 0xE88F8E66 EQ PUSH2 0xC10 JUMPI DUP1 PUSH4 0xEACDC5FF EQ PUSH2 0xC23 JUMPI DUP1 PUSH4 0xEB44E0A3 EQ PUSH2 0xC2C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xC7B530B0 GT PUSH2 0x10A JUMPI DUP1 PUSH4 0xC7B530B0 EQ PUSH2 0xB6F JUMPI DUP1 PUSH4 0xCC573A91 EQ PUSH2 0xB8F JUMPI DUP1 PUSH4 0xCE13D090 EQ PUSH2 0xBA2 JUMPI DUP1 PUSH4 0xCFCF3319 EQ PUSH2 0xBB5 JUMPI DUP1 PUSH4 0xD9193025 EQ PUSH2 0xBD5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xBED9757E EQ PUSH2 0xAA0 JUMPI DUP1 PUSH4 0xC2676603 EQ PUSH2 0xAC1 JUMPI DUP1 PUSH4 0xC32D3AE2 EQ PUSH2 0xAC9 JUMPI DUP1 PUSH4 0xC36D03FD EQ PUSH2 0xAF7 JUMPI DUP1 PUSH4 0xC6B61E4C EQ PUSH2 0xB0A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x96FD111A GT PUSH2 0x1D4 JUMPI DUP1 PUSH4 0xAC97B417 GT PUSH2 0x198 JUMPI DUP1 PUSH4 0xAC97B417 EQ PUSH2 0x9D2 JUMPI DUP1 PUSH4 0xB6C3DC4C EQ PUSH2 0x9E5 JUMPI DUP1 PUSH4 0xB92A349F EQ PUSH2 0xA05 JUMPI DUP1 PUSH4 0xBC0BC6BA EQ PUSH2 0xA18 JUMPI DUP1 PUSH4 0xBD84477D EQ PUSH2 0xA38 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x96FD111A EQ PUSH2 0x920 JUMPI DUP1 PUSH4 0x9CB6F556 EQ PUSH2 0x940 JUMPI DUP1 PUSH4 0x9F3A676C EQ PUSH2 0x953 JUMPI DUP1 PUSH4 0xA0D46758 EQ PUSH2 0x99F JUMPI DUP1 PUSH4 0xAAF4B04D EQ PUSH2 0x9BF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8BDF67F2 GT PUSH2 0x21B JUMPI DUP1 PUSH4 0x8BDF67F2 EQ PUSH2 0x8B4 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x8C7 JUMPI DUP1 PUSH4 0x8F82818F EQ PUSH2 0x8DA JUMPI DUP1 PUSH4 0x9437E32E EQ PUSH2 0x8FA JUMPI DUP1 PUSH4 0x953D16BF EQ PUSH2 0x90D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8129FC1C EQ PUSH2 0x866 JUMPI DUP1 PUSH4 0x853E0DF2 EQ PUSH2 0x86E JUMPI DUP1 PUSH4 0x87B4B105 EQ PUSH2 0x881 JUMPI DUP1 PUSH4 0x8851EC0F EQ PUSH2 0x8A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x43C7C011 GT PUSH2 0x35D JUMPI DUP1 PUSH4 0x62CD6A09 GT PUSH2 0x2E5 JUMPI DUP1 PUSH4 0x7A0C6DC0 GT PUSH2 0x2A9 JUMPI DUP1 PUSH4 0x7A0C6DC0 EQ PUSH2 0x7D7 JUMPI DUP1 PUSH4 0x7BC221AC EQ PUSH2 0x7F7 JUMPI DUP1 PUSH4 0x7D08AF97 EQ PUSH2 0x80A JUMPI DUP1 PUSH4 0x7E6D9926 EQ PUSH2 0x82A JUMPI DUP1 PUSH4 0x80CA0ECF EQ PUSH2 0x853 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x62CD6A09 EQ PUSH2 0x77E JUMPI DUP1 PUSH4 0x67A74DDC EQ PUSH2 0x795 JUMPI DUP1 PUSH4 0x6EF569A5 EQ PUSH2 0x7A8 JUMPI DUP1 PUSH4 0x7065CB48 EQ PUSH2 0x7B1 JUMPI DUP1 PUSH4 0x74D1C8E3 EQ PUSH2 0x7C4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x51F6CF2F GT PUSH2 0x32C JUMPI DUP1 PUSH4 0x51F6CF2F EQ PUSH2 0x708 JUMPI DUP1 PUSH4 0x549E61D3 EQ PUSH2 0x730 JUMPI DUP1 PUSH4 0x58116227 EQ PUSH2 0x743 JUMPI DUP1 PUSH4 0x592D1DD1 EQ PUSH2 0x756 JUMPI DUP1 PUSH4 0x61D1080B EQ PUSH2 0x776 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x43C7C011 EQ PUSH2 0x69D JUMPI DUP1 PUSH4 0x441A4175 EQ PUSH2 0x6B0 JUMPI DUP1 PUSH4 0x48EA286D EQ PUSH2 0x6E2 JUMPI DUP1 PUSH4 0x51E62472 EQ PUSH2 0x6F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x173825D9 GT PUSH2 0x3EB JUMPI DUP1 PUSH4 0x2DED58AA GT PUSH2 0x3AF JUMPI DUP1 PUSH4 0x2DED58AA EQ PUSH2 0x5C1 JUMPI DUP1 PUSH4 0x3BA8396E EQ PUSH2 0x5CA JUMPI DUP1 PUSH4 0x3C92F98D EQ PUSH2 0x5ED JUMPI DUP1 PUSH4 0x3F35E722 EQ PUSH2 0x60F JUMPI DUP1 PUSH4 0x43A32F89 EQ PUSH2 0x622 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x173825D9 EQ PUSH2 0x56C JUMPI DUP1 PUSH4 0x1ADA70A8 EQ PUSH2 0x57F JUMPI DUP1 PUSH4 0x1AEFA2D1 EQ PUSH2 0x588 JUMPI DUP1 PUSH4 0x1EB9E53E EQ PUSH2 0x59B JUMPI DUP1 PUSH4 0x25D5971F EQ PUSH2 0x5AE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x92C7610 GT PUSH2 0x432 JUMPI DUP1 PUSH4 0x92C7610 EQ PUSH2 0x506 JUMPI DUP1 PUSH4 0xA84096A EQ PUSH2 0x526 JUMPI DUP1 PUSH4 0xA910A6D EQ PUSH2 0x539 JUMPI DUP1 PUSH4 0xC7D6386 EQ PUSH2 0x542 JUMPI DUP1 PUSH4 0x13BAEE5B EQ PUSH2 0x54C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH3 0x159DA6 EQ PUSH2 0x463 JUMPI DUP1 PUSH4 0x1374518 EQ PUSH2 0x489 JUMPI DUP1 PUSH4 0x22914A7 EQ PUSH2 0x4CA JUMPI DUP1 PUSH4 0x519DA32 EQ PUSH2 0x4FD JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x476 PUSH2 0x471 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0xC94 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4B2 PUSH2 0x497 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0x5 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 0x480 JUMP JUMPDEST PUSH2 0x4ED PUSH2 0x4D8 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0x1 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 0x480 JUMP JUMPDEST PUSH2 0x476 PUSH1 0x9 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x476 PUSH2 0x514 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x476 PUSH2 0x534 CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 JUMP JUMPDEST PUSH2 0xD2A JUMP JUMPDEST PUSH2 0x476 PUSH1 0x14 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x54A PUSH2 0xE62 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x476 PUSH2 0x55A CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x57A CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0xFA4 JUMP JUMPDEST PUSH2 0x476 PUSH1 0x8 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x596 CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x1095 JUMP JUMPDEST PUSH2 0x476 PUSH2 0x5A9 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0x10C9 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x5BC CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x1100 JUMP JUMPDEST PUSH2 0x476 PUSH1 0x13 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4ED PUSH2 0x5D8 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x600 PUSH2 0x5FB CALLDATASIZE PUSH1 0x4 PUSH2 0x54AB JUMP JUMPDEST PUSH2 0x12C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x5527 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x61D CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 JUMP JUMPDEST PUSH2 0x14AE JUMP JUMPDEST PUSH2 0x66E PUSH2 0x630 CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 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 0x480 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 0x54A PUSH2 0x6AB CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0x1535 JUMP JUMPDEST PUSH2 0x6C3 PUSH2 0x6BE CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x18BB 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 0x480 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x6F0 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0x18F3 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x703 CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x1A87 JUMP JUMPDEST PUSH2 0x71B PUSH2 0x716 CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 JUMP JUMPDEST PUSH2 0x1ABB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x480 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x73E CALLDATASIZE PUSH1 0x4 PUSH2 0x555D JUMP JUMPDEST PUSH2 0x1AF7 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x751 CALLDATASIZE PUSH1 0x4 PUSH2 0x55C8 JUMP JUMPDEST PUSH2 0x1DC0 JUMP JUMPDEST PUSH2 0x476 PUSH2 0x764 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1B SLOAD PUSH2 0x476 JUMP JUMPDEST PUSH2 0x786 PUSH2 0x20B0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x55EA JUMP JUMPDEST PUSH2 0x54A PUSH2 0x7A3 CALLDATASIZE PUSH1 0x4 PUSH2 0x56B3 JUMP JUMPDEST PUSH2 0x2303 JUMP JUMPDEST PUSH2 0x476 PUSH1 0x17 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x7BF CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0x2360 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x7D2 CALLDATASIZE PUSH1 0x4 PUSH2 0x56E6 JUMP JUMPDEST PUSH2 0x2435 JUMP JUMPDEST PUSH2 0x7EA PUSH2 0x7E5 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0x2618 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP2 SWAP1 PUSH2 0x5751 JUMP JUMPDEST PUSH2 0x476 PUSH2 0x805 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0x26FF JUMP JUMPDEST PUSH2 0x81D PUSH2 0x818 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0x28D2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP2 SWAP1 PUSH2 0x57FF JUMP JUMPDEST PUSH2 0x476 PUSH2 0x838 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 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 0x476 PUSH2 0x861 CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 JUMP JUMPDEST PUSH2 0x2967 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x2A73 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x87C CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x2CA9 JUMP JUMPDEST PUSH2 0x476 PUSH2 0x88F CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0xD PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x8AF CALLDATASIZE PUSH1 0x4 PUSH2 0x585F JUMP JUMPDEST PUSH2 0x2D45 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x8C2 CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x2E78 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH2 0x4B2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH2 0x476 PUSH2 0x8E8 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x908 CALLDATASIZE PUSH1 0x4 PUSH2 0x588B JUMP JUMPDEST PUSH2 0x2EC7 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x91B CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x2F0E JUMP JUMPDEST PUSH2 0x933 PUSH2 0x92E CALLDATASIZE PUSH1 0x4 PUSH2 0x55C8 JUMP JUMPDEST PUSH2 0x31F8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP2 SWAP1 PUSH2 0x58E3 JUMP JUMPDEST PUSH2 0x54A PUSH2 0x94E CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x33B7 JUMP JUMPDEST PUSH2 0x966 PUSH2 0x961 CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x35A9 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 0x480 JUMP JUMPDEST PUSH2 0x9B2 PUSH2 0x9AD CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 JUMP JUMPDEST PUSH2 0x35FC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP2 SWAP1 PUSH2 0x595C JUMP JUMPDEST PUSH2 0x54A PUSH2 0x9CD CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x368C JUMP JUMPDEST PUSH2 0x54A PUSH2 0x9E0 CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x3712 JUMP JUMPDEST PUSH2 0x9F8 PUSH2 0x9F3 CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 JUMP JUMPDEST PUSH2 0x3B23 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP2 SWAP1 PUSH2 0x5990 JUMP JUMPDEST PUSH2 0x54A PUSH2 0xA13 CALLDATASIZE PUSH1 0x4 PUSH2 0x59B1 JUMP JUMPDEST PUSH2 0x3BF8 JUMP JUMPDEST PUSH2 0xA2B PUSH2 0xA26 CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x3DC1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP2 SWAP1 PUSH2 0x59E4 JUMP JUMPDEST PUSH2 0xA4B PUSH2 0xA46 CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 JUMP JUMPDEST PUSH2 0x3E85 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 0x480 JUMP JUMPDEST PUSH2 0xAB3 PUSH2 0xAAE CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 JUMP JUMPDEST PUSH2 0x3F03 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP3 SWAP2 SWAP1 PUSH2 0x5A1D JUMP JUMPDEST PUSH2 0x3E7 PUSH2 0x476 JUMP JUMPDEST PUSH2 0xADC PUSH2 0xAD7 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0x40A9 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 0x480 JUMP JUMPDEST PUSH2 0x54A PUSH2 0xB05 CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x4108 JUMP JUMPDEST PUSH2 0xB47 PUSH2 0xB18 CALLDATASIZE PUSH1 0x4 PUSH2 0x544E 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 0x480 JUMP JUMPDEST PUSH2 0xB82 PUSH2 0xB7D CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0x413C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP2 SWAP1 PUSH2 0x5A42 JUMP JUMPDEST PUSH2 0xADC PUSH2 0xB9D CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 JUMP JUMPDEST PUSH2 0x41C4 JUMP JUMPDEST PUSH2 0x54A PUSH2 0xBB0 CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x4206 JUMP JUMPDEST PUSH2 0xBC8 PUSH2 0xBC3 CALLDATASIZE PUSH1 0x4 PUSH2 0x55C8 JUMP JUMPDEST PUSH2 0x423A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x480 SWAP2 SWAP1 PUSH2 0x5A98 JUMP JUMPDEST PUSH2 0x54A PUSH2 0xBE3 CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x4407 JUMP JUMPDEST PUSH2 0x476 PUSH2 0xBF6 CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0x10 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH1 0xB SLOAD PUSH2 0x476 JUMP JUMPDEST PUSH2 0x600 PUSH2 0xC1E CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0x45E1 JUMP JUMPDEST PUSH2 0x476 PUSH1 0x12 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x54A PUSH2 0xC3A CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 JUMP JUMPDEST PUSH2 0x47BB JUMP JUMPDEST PUSH2 0x54A PUSH2 0xC4D CALLDATASIZE PUSH1 0x4 PUSH2 0x5424 JUMP JUMPDEST PUSH2 0x4CCF JUMP JUMPDEST PUSH2 0x54A PUSH2 0xC60 CALLDATASIZE PUSH1 0x4 PUSH2 0x55C8 JUMP JUMPDEST PUSH2 0x4DD1 JUMP JUMPDEST PUSH2 0x54A PUSH2 0xC73 CALLDATASIZE PUSH1 0x4 PUSH2 0x544E JUMP JUMPDEST PUSH2 0x4EE2 JUMP JUMPDEST PUSH2 0x476 PUSH1 0x16 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x54A PUSH2 0xC8F CALLDATASIZE PUSH1 0x4 PUSH2 0x5402 JUMP JUMPDEST PUSH2 0x50B9 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 0xD22 JUMPI DUP3 ISZERO PUSH2 0xD10 JUMPI PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x3 ADD SLOAD PUSH2 0x2710 SWAP1 PUSH2 0xCEA SWAP1 DUP7 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0xCF4 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP1 POP PUSH2 0xD00 DUP2 DUP7 PUSH2 0x5B61 JUMP JUMPDEST SWAP5 POP PUSH2 0xD0C DUP2 DUP6 PUSH2 0x5B74 JUMP JUMPDEST SWAP4 POP POP JUMPDEST DUP1 PUSH2 0xD1A DUP2 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xCBA 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 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP3 SWAP2 SWAP1 DUP5 SWAP1 DUP2 LT PUSH2 0xD57 JUMPI PUSH2 0xD57 PUSH2 0x5BA0 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 0xD79 SWAP2 SWAP1 PUSH2 0x5B74 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 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 LT ISZERO PUSH2 0xE55 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0xDD8 JUMPI PUSH2 0xDD8 PUSH2 0x5BA0 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 0xE09 SWAP1 PUSH1 0xA SWAP1 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0xE13 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP1 POP DUP3 DUP9 LT PUSH2 0xE40 JUMPI PUSH2 0x2710 PUSH2 0xE29 DUP4 DUP4 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0xE33 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST PUSH2 0xE3D SWAP1 DUP8 PUSH2 0x5B61 JUMP JUMPDEST SWAP6 POP JUMPDEST POP POP POP POP DUP1 PUSH2 0xE4E SWAP1 PUSH2 0x5B87 JUMP JUMPDEST SWAP1 POP PUSH2 0xD8E JUMP JUMPDEST POP SWAP4 POP POP POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xE6A PUSH2 0x5132 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE75 CALLER PUSH2 0xC94 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 GT PUSH2 0xEA0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BB6 JUMP 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 0xEBF SWAP1 DUP5 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x13 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xED8 SWAP2 SWAP1 PUSH2 0x5B74 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 0x9 SLOAD SWAP2 SWAP4 SWAP1 SWAP3 SWAP1 DUP4 ADD SWAP2 PUSH2 0xF24 SWAP2 PUSH2 0x5B61 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 0xFA2 PUSH1 0x1 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5CCA DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SSTORE JUMP JUMPDEST JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0xFD3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x1027 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 0xE97 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SUB PUSH2 0x1074 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 0xE97 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x10C4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 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 0x10EC DUP5 PUSH2 0xC94 JUMP JUMPDEST SWAP1 POP PUSH2 0x10F8 DUP2 DUP4 PUSH2 0x5B74 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x1108 PUSH2 0x5132 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH2 0x115B 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 0xE97 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 SLOAD DUP2 LT ISZERO PUSH2 0x126B JUMPI PUSH1 0x0 DUP3 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x117B JUMPI PUSH2 0x117B PUSH2 0x5BA0 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 0x11A2 JUMPI POP PUSH1 0x0 DUP2 PUSH1 0x1 ADD SLOAD GT JUMPDEST ISZERO PUSH2 0x1258 JUMPI DUP1 PUSH1 0x2 ADD SLOAD TIMESTAMP LT ISZERO PUSH2 0x11EA 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 0xE97 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD DUP1 SLOAD PUSH1 0x0 SWAP1 SWAP2 SSTORE PUSH2 0x1214 PUSH20 0x55D398326F99059FF775485246999027B3197955 CALLER DUP4 PUSH2 0x517E JUMP JUMPDEST 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 0x12A6 JUMP JUMPDEST POP DUP1 PUSH2 0x1263 DUP2 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x115E 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 0xE97 JUMP JUMPDEST PUSH2 0x12BD PUSH1 0x1 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5CCA DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SSTORE JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 DUP4 DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x12DE JUMPI PUSH2 0x12DE PUSH2 0x5C08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1307 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 0x1322 JUMPI PUSH2 0x1322 PUSH2 0x5C08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x134B 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 0x14A5 JUMPI PUSH1 0x0 DUP8 DUP8 DUP4 DUP2 DUP2 LT PUSH2 0x136D JUMPI PUSH2 0x136D PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1382 SWAP2 SWAP1 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP8 MLOAD SWAP2 SWAP3 POP SWAP1 DUP2 SWAP1 DUP9 SWAP1 DUP6 SWAP1 DUP2 LT PUSH2 0x13B5 JUMPI PUSH2 0x13B5 PUSH2 0x5BA0 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 0x5 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 0x141D 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 0x1441 SWAP2 SWAP1 PUSH2 0x5C1E JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1458 DUP5 DUP5 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x1462 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP1 POP DUP1 DUP9 DUP7 DUP2 MLOAD DUP2 LT PUSH2 0x1477 JUMPI PUSH2 0x1477 PUSH2 0x5BA0 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH2 0x148C DUP2 DUP9 PUSH2 0x5B61 JUMP JUMPDEST SWAP7 POP POP POP POP POP DUP1 DUP1 PUSH2 0x149D SWAP1 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1351 JUMP JUMPDEST POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x14DD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH2 0x14F1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND CALLER DUP4 PUSH2 0x517E 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 PUSH2 0x153D PUSH2 0x5132 JUMP JUMPDEST PUSH1 0x0 DUP1 JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 LT ISZERO PUSH2 0x1648 JUMPI CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0x1579 JUMPI PUSH2 0x1579 PUSH2 0x5BA0 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 SWAP1 SWAP2 KECCAK256 PUSH1 0x9 SWAP1 SWAP2 MUL ADD PUSH1 0x7 DUP2 ADD SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND SWAP2 AND EQ DUP1 ISZERO PUSH2 0x15B7 JUMPI POP PUSH1 0x7 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO JUMPDEST ISZERO PUSH2 0x1635 JUMPI PUSH1 0x0 PUSH2 0x15C8 CALLER DUP5 PUSH2 0x2967 JUMP JUMPDEST SWAP1 POP DUP2 PUSH1 0x3 ADD SLOAD DUP2 GT ISZERO PUSH2 0x1633 JUMPI PUSH1 0x0 DUP3 PUSH1 0x3 ADD SLOAD DUP3 PUSH2 0x15E8 SWAP2 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 POP PUSH2 0x15F4 DUP2 DUP7 PUSH2 0x5B61 JUMP JUMPDEST SWAP5 POP DUP1 DUP4 PUSH1 0x3 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x160A SWAP2 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP DUP3 SLOAD PUSH1 0x3 DUP5 ADD SLOAD LT PUSH2 0x1631 JUMPI PUSH1 0x7 DUP4 ADD DUP1 SLOAD PUSH1 0xFF PUSH1 0xA0 SHL NOT AND PUSH1 0x1 PUSH1 0xA0 SHL OR SWAP1 SSTORE JUMPDEST POP JUMPDEST POP JUMPDEST POP DUP1 PUSH2 0x1640 DUP2 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1541 JUMP JUMPDEST POP PUSH1 0x0 DUP2 GT PUSH2 0x1669 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BB6 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD ISZERO PUSH2 0x1772 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SLOAD SWAP1 MLOAD PUSH4 0x2C68BE3 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE SWAP1 SWAP3 PUSH8 0xDE0B6B3A7640000 SWAP3 DUP6 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 0x16E5 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 0x1709 SWAP2 SWAP1 PUSH2 0x5C1E JUMP JUMPDEST PUSH2 0x1713 SWAP2 SWAP1 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x171D SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 SWAP2 POP DUP2 LT PUSH2 0x174B JUMPI CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SSTORE PUSH2 0x1770 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x176A SWAP1 DUP5 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP JUMPDEST POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x179A SWAP1 DUP5 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xA PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP2 MLOAD PUSH1 0x80 DUP2 ADD SWAP1 SWAP3 MSTORE PUSH1 0xB DUP1 SLOAD SWAP2 SWAP4 DUP4 SWAP3 SWAP2 SWAP1 PUSH2 0x17CB DUP4 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x9 SLOAD TIMESTAMP PUSH2 0x17E8 SWAP2 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x20 SWAP3 DUP4 ADD DUP2 SWAP1 MSTORE DUP5 SLOAD PUSH1 0x1 DUP1 DUP3 ADD DUP8 SSTORE PUSH1 0x0 SWAP7 DUP8 MSTORE DUP5 DUP8 KECCAK256 DUP7 MLOAD PUSH1 0x4 SWAP1 SWAP4 MUL ADD SWAP2 DUP3 SSTORE DUP6 DUP6 ADD MLOAD SWAP1 DUP3 ADD SSTORE PUSH1 0x40 DUP1 DUP7 ADD MLOAD PUSH1 0x2 DUP4 ADD SSTORE PUSH1 0x60 SWAP1 SWAP6 ADD MLOAD PUSH1 0x3 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP2 SWAP1 SWAP4 AND OR SWAP1 SWAP2 SSTORE DUP4 MSTORE PUSH1 0xD SWAP1 MSTORE DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x1863 SWAP1 DUP5 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 DUP1 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 PUSH1 0x20 DUP3 ADD MSTORE CALLER SWAP2 PUSH32 0x4A94C2C356E29A6583071E731BDACF2CA56565BA5EFEBCFF6936EB7923B51721 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH2 0x12BD PUSH1 0x1 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5CCA DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SSTORE JUMP JUMPDEST PUSH1 0x19 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x18CB 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 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x1922 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 LT ISZERO PUSH2 0x1A83 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0x196F JUMPI PUSH2 0x196F PUSH2 0x5BA0 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 0x1A47 JUMPI PUSH1 0x8 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD LT PUSH2 0x19EB JUMPI PUSH1 0x8 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP1 SWAP2 SWAP1 PUSH2 0x19E5 SWAP1 DUP5 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP JUMPDEST DUP1 SLOAD PUSH1 0x7 DUP1 DUP4 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD LT PUSH2 0x1A47 JUMPI DUP1 SLOAD PUSH1 0x7 DUP1 DUP4 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP1 SWAP2 SWAP1 PUSH2 0x1A41 SWAP1 DUP5 SWAP1 PUSH2 0x5B74 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 0x1A7C DUP2 PUSH2 0x5B87 JUMP JUMPDEST SWAP1 POP PUSH2 0x1925 JUMP JUMPDEST POP POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x1AB6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x16 SSTORE JUMP JUMPDEST PUSH1 0x4 PUSH1 0x20 MSTORE DUP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1AD7 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 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x1B26 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST DUP3 DUP2 EQ PUSH2 0x1B6D 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 0xE97 JUMP JUMPDEST DUP3 PUSH2 0x1BA9 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 0xE97 JUMP JUMPDEST PUSH1 0x0 DUP1 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x1DA1 JUMPI PUSH1 0x0 DUP7 DUP7 DUP4 DUP2 DUP2 LT PUSH2 0x1BC9 JUMPI PUSH2 0x1BC9 PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1BDE SWAP2 SWAP1 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x1C04 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5C37 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 DUP4 DUP2 DUP2 LT PUSH2 0x1C18 JUMPI PUSH2 0x1C18 PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD GT PUSH2 0x1C3C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5C60 JUMP JUMPDEST DUP4 DUP4 DUP3 DUP2 DUP2 LT PUSH2 0x1C4E JUMPI PUSH2 0x1C4E PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD PUSH1 0xF PUSH1 0x0 DUP9 DUP9 DUP6 DUP2 DUP2 LT PUSH2 0x1C6B JUMPI PUSH2 0x1C6B PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1C80 SWAP2 SWAP1 PUSH2 0x5402 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 0x1CA4 SWAP1 DUP5 PUSH2 0x5B74 JUMP JUMPDEST PUSH2 0x1CAE SWAP2 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP2 POP DUP4 DUP4 DUP3 DUP2 DUP2 LT PUSH2 0x1CC2 JUMPI PUSH2 0x1CC2 PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD PUSH1 0xF PUSH1 0x0 DUP9 DUP9 DUP6 DUP2 DUP2 LT PUSH2 0x1CDF JUMPI PUSH2 0x1CDF PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1CF4 SWAP2 SWAP1 PUSH2 0x5402 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 0x1D20 JUMPI PUSH2 0x1D20 PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1D35 SWAP2 SWAP1 PUSH2 0x5402 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xEC7E3594982826A1F90C8FC76513357B83A691B7F4E38B8BE04F3D40F9B15839 DUP6 DUP6 DUP5 DUP2 DUP2 LT PUSH2 0x1D71 JUMPI PUSH2 0x1D71 PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD PUSH1 0x40 MLOAD PUSH2 0x1D87 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP1 PUSH2 0x1D99 DUP2 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1BAD JUMP JUMPDEST POP DUP1 PUSH1 0x13 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1DB4 SWAP2 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1DC8 PUSH2 0x5132 JUMP JUMPDEST PUSH1 0x0 DUP3 GT PUSH2 0x1E08 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 0xE97 JUMP JUMPDEST PUSH1 0x0 DUP2 GT PUSH2 0x1E4D 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 0xE97 JUMP JUMPDEST PUSH1 0x16 SLOAD DUP3 LT ISZERO PUSH2 0x1E95 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 0xE97 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1EA0 CALLER PUSH2 0x10C9 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 GT ISZERO PUSH2 0x1EEB 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 0xE97 JUMP JUMPDEST PUSH1 0xC DUP1 SLOAD SWAP1 PUSH1 0x0 PUSH2 0x1EFB DUP4 PUSH2 0x5B87 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0xC SLOAD CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP7 SWAP3 SWAP1 PUSH2 0x1F22 SWAP1 DUP5 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP4 PUSH1 0x13 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1F3B SWAP2 SWAP1 PUSH2 0x5B74 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 0x2040 SWAP2 SWAP1 PUSH2 0x5B74 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 0x1A83 PUSH1 0x1 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5CCA DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE 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 0x20D2 JUMPI PUSH2 0x20D2 PUSH2 0x5C08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x20FB 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 0x2116 JUMPI PUSH2 0x2116 PUSH2 0x5C08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x213F 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 0x215A JUMPI PUSH2 0x215A PUSH2 0x5C08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x21BF JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x21AC 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 0x2178 JUMPI SWAP1 POP JUMPDEST POP SWAP2 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x22FC JUMPI PUSH1 0x0 PUSH1 0x19 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x21E2 JUMPI PUSH2 0x21E2 PUSH2 0x5BA0 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 0x222F JUMPI PUSH2 0x222F PUSH2 0x5BA0 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 0x2266 JUMPI PUSH2 0x2266 PUSH2 0x5BA0 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 0x22DD JUMPI PUSH2 0x22DD PUSH2 0x5BA0 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP POP DUP1 DUP1 PUSH2 0x22F4 SWAP1 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x21C5 JUMP JUMPDEST POP POP SWAP1 SWAP2 SWAP3 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x2332 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 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 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x238F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x23B5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5C37 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND ISZERO PUSH2 0x240E 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 0xE97 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SWAP2 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 0x2464 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x3 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 0x6 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 0x25DC SWAP2 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP 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 DUP10 SWAP3 SWAP1 PUSH2 0x2609 SWAP1 DUP5 SWAP1 PUSH2 0x5B61 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 0x3 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 0x26F4 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 0x2650 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD DUP2 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x28CB JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0x274C JUMPI PUSH2 0x274C PUSH2 0x5BA0 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 0x28B8 JUMPI PUSH1 0xE0 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 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 0x2849 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 0x286D SWAP2 SWAP1 PUSH2 0x5C1E JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP3 PUSH1 0x60 ADD MLOAD DUP4 PUSH1 0x0 ADD MLOAD PUSH2 0x2885 SWAP2 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 PUSH2 0x289C DUP4 DUP6 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x28A6 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP1 POP PUSH2 0x28B2 DUP2 DUP9 PUSH2 0x5B61 JUMP JUMPDEST SWAP7 POP POP POP POP JUMPDEST POP DUP1 PUSH2 0x28C3 DUP2 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x271A 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 0xA 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 0x26F4 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 0x290A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP3 SWAP2 SWAP1 DUP5 SWAP1 DUP2 LT PUSH2 0x2994 JUMPI PUSH2 0x2994 PUSH2 0x5BA0 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 0x29B6 SWAP2 SWAP1 PUSH2 0x5B74 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 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 LT ISZERO PUSH2 0xE55 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0x2A15 JUMPI PUSH2 0x2A15 PUSH2 0x5BA0 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 0x2A5F JUMPI DUP8 SLOAD PUSH2 0x2710 SWAP1 PUSH2 0x2A48 SWAP1 DUP4 SWAP1 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x2A52 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST PUSH2 0x2A5C SWAP1 DUP7 PUSH2 0x5B61 JUMP JUMPDEST SWAP5 POP JUMPDEST POP POP POP DUP1 PUSH2 0x2A6C SWAP1 PUSH2 0x5B87 JUMP JUMPDEST SWAP1 POP PUSH2 0x29CB JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A7D PUSH2 0x51E2 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x2AA4 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH1 0x0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x2AC0 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x2ACE JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x2AEC JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x2B16 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0x2B1E PUSH2 0x520B JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND CALLER SWAP1 DUP2 OR DUP3 SSTORE DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT SWAP1 DUP2 AND DUP5 OR SWAP1 SWAP2 SSTORE PUSH32 0x968A1791AD31618C63B086103BAA804AF57C3CA0EFA33A191010FBB7741579FC DUP1 SLOAD DUP3 AND DUP5 OR SWAP1 SSTORE PUSH32 0x62CF4150B20D3255EBA0565C087B9107980561F805CA8D8F9DAA6EF061B51021 DUP1 SLOAD DUP3 AND DUP5 OR SWAP1 SSTORE PUSH32 0x7C745CF21E9841960ACA585C508E8B656AB26F500F65E063E363F1E5431CB33 DUP1 SLOAD DUP3 AND DUP5 OR SWAP1 SSTORE PUSH20 0x8A9281ECECE9B599C2F42D829C3D0D8E74B7083E DUP5 MSTORE PUSH32 0x3951584E4DF0C05D84015A72C4987AD1375F6F18E35CB23B25E1962D5CDC88B6 DUP1 SLOAD SWAP1 SWAP2 AND SWAP1 SWAP3 OR SWAP1 SWAP2 SSTORE PUSH1 0xF SWAP1 MSTORE PUSH10 0x21E19E0C9BAB2400000 PUSH32 0x49B20F23A4C98683B2444D4FCEACC6FEA988F6FF51924040A449EC627E73E836 DUP2 SWAP1 SSTORE PUSH1 0x13 DUP1 SLOAD SWAP2 SWAP3 SWAP1 SWAP2 PUSH2 0x2C50 SWAP1 DUP5 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH3 0x1FA40 PUSH1 0x9 SSTORE DUP4 ISZERO PUSH2 0x2CA2 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x2CD8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH2 0x2CF7 PUSH20 0x55D398326F99059FF775485246999027B3197955 CALLER DUP4 PUSH2 0x517E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH20 0x55D398326F99059FF775485246999027B3197955 SWAP1 CALLER SWAP1 PUSH32 0xA92FF919B850E4909AB2261D907EF955F11BC1716733A6CBECE38D163A69AF8A SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x2D74 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x12 SLOAD PUSH1 0x0 SWAP1 ISZERO PUSH2 0x2DBF JUMPI PUSH1 0x0 PUSH1 0xE PUSH1 0x0 PUSH1 0x1 PUSH1 0x12 SLOAD PUSH2 0x2D94 SWAP2 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH2 0x2DBB DUP5 PUSH1 0x13 SLOAD DUP4 PUSH1 0x1 ADD SLOAD DUP5 PUSH1 0x2 ADD SLOAD DUP8 PUSH2 0x521B 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 0x2E6D DUP4 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x2EA7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH2 0x12BD PUSH20 0x55D398326F99059FF775485246999027B3197955 CALLER ADDRESS DUP5 PUSH2 0x52B4 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x2EF6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH2 0x2F06 DUP7 DUP7 DUP7 DUP7 DUP7 DUP7 TIMESTAMP TIMESTAMP PUSH2 0x2435 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 0x2F46 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5C88 JUMP JUMPDEST PUSH1 0x2 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x2F93 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 0xE97 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x17 SLOAD PUSH1 0x0 SWAP1 PUSH2 0x2710 SWAP1 PUSH2 0x2FA9 SWAP1 DUP5 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x2FB3 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2FC1 DUP3 DUP5 PUSH2 0x5B74 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 0x2FE5 SWAP1 DUP5 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x13 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2FFE SWAP2 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP DUP2 ISZERO PUSH2 0x3045 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 0x30A5 SWAP2 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 POP DUP1 DUP3 EQ PUSH2 0x3166 JUMPI PUSH1 0x0 PUSH1 0x19 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x30C3 JUMPI PUSH2 0x30C3 PUSH2 0x5BA0 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 0x310F JUMPI PUSH2 0x310F PUSH2 0x5BA0 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 0x3177 JUMPI PUSH2 0x3177 PUSH2 0x5CB3 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 0x323A 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 0xE97 JUMP JUMPDEST PUSH1 0x12 SLOAD DUP3 LT PUSH2 0x3281 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 0xE97 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x328D DUP5 DUP5 PUSH2 0x5B74 JUMP JUMPDEST PUSH2 0x3298 SWAP1 PUSH1 0x1 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x32B4 JUMPI PUSH2 0x32B4 PUSH2 0x5C08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3317 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x3304 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 0x32D2 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x33AE JUMPI PUSH1 0xE PUSH1 0x0 PUSH2 0x3333 DUP4 DUP10 PUSH2 0x5B61 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 0x3390 JUMPI PUSH2 0x3390 PUSH2 0x5BA0 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x33A6 SWAP1 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x331D JUMP JUMPDEST POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x33BF PUSH2 0x5132 JUMP JUMPDEST PUSH1 0x0 DUP2 GT PUSH2 0x33DF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5C60 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x14 SLOAD GT PUSH2 0x3428 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x4275796F7574206E6F7420617661696C61626C65 PUSH1 0x60 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xE97 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3433 CALLER PUSH2 0x10C9 JUMP JUMPDEST SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x347E 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 0xE97 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2710 PUSH1 0x14 SLOAD DUP5 PUSH2 0x3491 SWAP2 SWAP1 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x349B SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP3 SWAP4 POP DUP6 SWAP3 SWAP1 SWAP2 SWAP1 PUSH2 0x34BF SWAP1 DUP5 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x13 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x34D8 SWAP2 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0xC DUP1 SLOAD SWAP1 PUSH1 0x0 PUSH2 0x34ED DUP4 PUSH2 0x5B87 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0x60 DUP2 ADD DUP5 MSTORE PUSH1 0xC SLOAD DUP2 MSTORE SWAP2 DUP3 ADD DUP5 SWAP1 MSTORE PUSH1 0x9 SLOAD SWAP1 SWAP3 DUP3 ADD SWAP1 PUSH2 0x352A SWAP1 TIMESTAMP PUSH2 0x5B61 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 POP PUSH2 0x12BD PUSH1 0x1 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5CCA DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SSTORE JUMP JUMPDEST PUSH1 0x1B DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x35B9 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 0x3630 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 CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x36BB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH2 0x2710 DUP2 GT ISZERO PUSH2 0x370D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x50657263656E746167652063616E6E6F74206578636565642031303025000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xE97 JUMP JUMPDEST PUSH1 0x14 SSTORE JUMP JUMPDEST PUSH2 0x371A PUSH2 0x5132 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 LT PUSH2 0x3770 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 0x92DCECC2D8D2C840ECCAE6E8D2DCCE40D2DCC8CAF PUSH1 0x5B SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xE97 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0x3791 JUMPI PUSH2 0x3791 PUSH2 0x5BA0 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 ISZERO PUSH2 0x37F3 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 0x56657374696E6720636F6D706C657465 PUSH1 0x80 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xE97 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x37FF CALLER DUP5 PUSH2 0x2967 JUMP JUMPDEST SWAP1 POP DUP2 PUSH1 0x3 ADD SLOAD DUP2 LT ISZERO PUSH2 0x384C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x125B9D985B1A590818DB185A5B48185B5BDD5B9D PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xE97 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x3 ADD SLOAD DUP3 PUSH2 0x385E SWAP2 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 GT PUSH2 0x3880 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BB6 JUMP JUMPDEST DUP1 DUP4 PUSH1 0x3 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x3894 SWAP2 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP DUP3 SLOAD PUSH1 0x3 DUP5 ADD SLOAD LT PUSH2 0x38BB JUMPI PUSH1 0x7 DUP4 ADD DUP1 SLOAD PUSH1 0xFF PUSH1 0xA0 SHL NOT AND PUSH1 0x1 PUSH1 0xA0 SHL OR SWAP1 SSTORE JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD ISZERO PUSH2 0x39C9 JUMPI PUSH1 0x7 DUP4 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SLOAD SWAP1 MLOAD PUSH4 0x2C68BE3 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE SWAP1 SWAP3 PUSH8 0xDE0B6B3A7640000 SWAP3 DUP6 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 0x393C 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 0x3960 SWAP2 SWAP1 PUSH2 0x5C1E JUMP JUMPDEST PUSH2 0x396A SWAP2 SWAP1 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x3974 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 SWAP2 POP DUP2 LT PUSH2 0x39A2 JUMPI CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SSTORE PUSH2 0x39C7 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x39C1 SWAP1 DUP5 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP JUMPDEST POP JUMPDEST PUSH1 0x7 DUP4 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x39F7 SWAP1 DUP5 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xA PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP2 MLOAD PUSH1 0x80 DUP2 ADD SWAP1 SWAP3 MSTORE PUSH1 0xB DUP1 SLOAD SWAP2 SWAP4 DUP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3A28 DUP4 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x9 SLOAD TIMESTAMP PUSH2 0x3A45 SWAP2 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x7 DUP7 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x20 SWAP4 DUP5 ADD MSTORE DUP5 SLOAD PUSH1 0x1 DUP1 DUP3 ADD DUP8 SSTORE PUSH1 0x0 SWAP7 DUP8 MSTORE DUP5 DUP8 KECCAK256 DUP7 MLOAD PUSH1 0x4 SWAP1 SWAP4 MUL ADD SWAP2 DUP3 SSTORE DUP6 DUP6 ADD MLOAD SWAP1 DUP3 ADD SSTORE PUSH1 0x40 DUP1 DUP7 ADD MLOAD PUSH1 0x2 DUP4 ADD SSTORE PUSH1 0x60 SWAP1 SWAP6 ADD MLOAD PUSH1 0x3 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP2 DUP4 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE SWAP1 SLOAD AND DUP4 MSTORE PUSH1 0xD SWAP1 MSTORE DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x3AC8 SWAP1 DUP5 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 DUP1 MLOAD DUP3 DUP2 MSTORE PUSH1 0x0 PUSH1 0x20 DUP3 ADD MSTORE CALLER SWAP2 PUSH32 0x4A94C2C356E29A6583071E731BDACF2CA56565BA5EFEBCFF6936EB7923B51721 SWAP2 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP PUSH2 0x12BD PUSH1 0x1 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5CCA DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SSTORE JUMP JUMPDEST PUSH2 0x3B47 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 0x126B JUMPI DUP4 DUP3 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x3B7D JUMPI PUSH2 0x3B7D PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 ADD SLOAD SUB PUSH2 0x3BE6 JUMPI DUP2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x3BA6 JUMPI PUSH2 0x3BA6 PUSH2 0x5BA0 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 0xE5C JUMP JUMPDEST DUP1 PUSH2 0x3BF0 DUP2 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3B61 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x3C27 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3C75 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 0x496E76616C696420746F6B656E2061646472657373 PUSH1 0x58 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xE97 JUMP JUMPDEST PUSH1 0x0 DUP2 GT DUP1 ISZERO PUSH2 0x3C87 JUMPI POP PUSH2 0x2710 DUP2 GT ISZERO JUMPDEST PUSH2 0x3CC8 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 0x496E76616C69642070657263656E74616765 PUSH1 0x70 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xE97 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 PUSH2 0x3CE9 SWAP2 PUSH2 0x53AB JUMP JUMPDEST PUSH1 0x0 DUP3 JUMPDEST PUSH2 0x2710 DUP3 LT ISZERO PUSH2 0x3D86 JUMPI DUP3 PUSH2 0x2710 PUSH2 0x3D05 DUP3 DUP6 PUSH2 0x5B61 JUMP JUMPDEST GT ISZERO PUSH2 0x3D1A JUMPI PUSH2 0x3D17 DUP4 PUSH2 0x2710 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP2 MLOAD DUP1 DUP4 ADD SWAP1 SWAP3 MSTORE DUP6 DUP3 MSTORE DUP2 DUP4 ADD DUP6 DUP2 MSTORE DUP2 SLOAD PUSH1 0x1 DUP2 DUP2 ADD DUP5 SSTORE SWAP3 DUP7 MSTORE SWAP4 SWAP1 SWAP5 KECCAK256 SWAP2 MLOAD PUSH1 0x2 SWAP1 SWAP4 MUL SWAP1 SWAP2 ADD SWAP2 DUP3 SSTORE SWAP2 MLOAD SWAP2 ADD SSTORE PUSH2 0x3D72 DUP2 DUP5 PUSH2 0x5B61 JUMP JUMPDEST SWAP3 POP PUSH2 0x3D7E DUP6 DUP4 PUSH2 0x5B61 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3CED JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 PUSH32 0xDE4B6CCC38B84F88129403B65A309F9B1C41D4C316BC2118D7614E449B9D4C45 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x3DF3 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 0x3E36 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 0xE97 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 0x3 PUSH1 0x20 MSTORE DUP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x3EA1 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 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x60 SWAP3 DUP4 SWAP3 SWAP1 SWAP2 DUP6 SWAP1 DUP2 LT PUSH2 0x3F34 JUMPI PUSH2 0x3F34 PUSH2 0x5BA0 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 0x4 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 0x3F7C JUMPI PUSH2 0x3F7C PUSH2 0x5C08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3FA5 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 0x3FC2 JUMPI PUSH2 0x3FC2 PUSH2 0x5C08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3FEB 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 0x4098 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0x4023 JUMPI PUSH2 0x4023 PUSH2 0x5BA0 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 0x4047 SWAP2 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x4059 JUMPI PUSH2 0x4059 PUSH2 0x5BA0 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 0x407C JUMPI PUSH2 0x407C PUSH2 0x5BA0 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE POP PUSH2 0x4091 DUP2 PUSH2 0x5B87 JUMP JUMPDEST SWAP1 POP PUSH2 0x3FF1 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 0x40B8 DUP6 PUSH2 0xC94 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 0x40DF SWAP1 DUP3 SWAP1 PUSH2 0x5B74 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 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x4137 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x8 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 0x26F4 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 0x4174 JUMP JUMPDEST PUSH1 0x11 PUSH1 0x20 MSTORE DUP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x41E0 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 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x4235 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x9 SSTORE JUMP JUMPDEST PUSH1 0x1B SLOAD PUSH1 0x60 SWAP1 DUP4 LT PUSH2 0x428E 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 0xE97 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x429A DUP4 DUP6 PUSH2 0x5B61 JUMP JUMPDEST PUSH1 0x1B SLOAD SWAP1 SWAP2 POP DUP2 GT ISZERO PUSH2 0x42AC JUMPI POP PUSH1 0x1B SLOAD JUMPDEST PUSH1 0x0 PUSH2 0x42B8 DUP6 DUP4 PUSH2 0x5B74 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x42CF JUMPI PUSH2 0x42CF PUSH2 0x5C08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x434B JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x4338 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 0x42ED JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP DUP5 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x33AE JUMPI PUSH1 0x1B DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x436B JUMPI PUSH2 0x436B PUSH2 0x5BA0 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 0x43D9 DUP9 DUP5 PUSH2 0x5B74 JUMP JUMPDEST DUP2 MLOAD DUP2 LT PUSH2 0x43E9 JUMPI PUSH2 0x43E9 PUSH2 0x5BA0 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x43FF SWAP1 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x4350 JUMP JUMPDEST PUSH2 0x440F PUSH2 0x5132 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 LT PUSH2 0x4465 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 0x92DCECC2D8D2C840ECCAE6E8D2DCCE40D2DCC8CAF PUSH1 0x5B SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xE97 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 DUP2 LT PUSH2 0x4486 JUMPI PUSH2 0x4486 PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x9 MUL ADD SWAP1 POP PUSH1 0x0 PUSH2 0x44A2 CALLER DUP5 PUSH2 0xD2A JUMP JUMPDEST SWAP1 POP DUP2 PUSH1 0x4 ADD SLOAD DUP2 LT ISZERO PUSH2 0x44EF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x125B9D985B1A590818DB185A5B48185B5BDD5B9D PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xE97 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x4 ADD SLOAD DUP3 PUSH2 0x4501 SWAP2 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 GT PUSH2 0x4523 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BB6 JUMP JUMPDEST DUP1 DUP4 PUSH1 0x4 ADD PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x4537 SWAP2 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x11 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP2 MLOAD PUSH1 0x60 DUP2 ADD SWAP1 SWAP3 MSTORE SWAP1 DUP1 PUSH2 0x4565 DUP8 PUSH3 0xF4240 PUSH2 0x5B61 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x9 SLOAD TIMESTAMP PUSH2 0x457E SWAP2 SWAP1 PUSH2 0x5B61 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 0x4E69FDC49495BCAB2B4375781457BA16653A90EB4FFB6588351BDC39071433E2 SWAP2 ADD PUSH2 0x3B01 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 0x461E SWAP1 DUP4 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 SUB PUSH2 0x464F 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 0x4101 SWAP1 POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4667 JUMPI PUSH2 0x4667 PUSH2 0x5C08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x4690 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 0x46AB JUMPI PUSH2 0x46AB PUSH2 0x5C08 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x46D4 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP5 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x47B0 JUMPI PUSH1 0x0 PUSH2 0x46EE DUP3 DUP6 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 POP DUP1 DUP9 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x4703 JUMPI PUSH2 0x4703 PUSH2 0x5BA0 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP5 ISZERO PUSH2 0x477C JUMPI PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0xE PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x3 ADD SLOAD PUSH2 0x2710 SWAP1 PUSH2 0x4734 SWAP1 DUP9 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x473E SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP1 POP DUP1 DUP9 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x4753 JUMPI PUSH2 0x4753 PUSH2 0x5BA0 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH2 0x4768 DUP2 DUP9 PUSH2 0x5B61 JUMP JUMPDEST SWAP7 POP PUSH2 0x4774 DUP2 DUP8 PUSH2 0x5B74 JUMP JUMPDEST SWAP6 POP POP PUSH2 0x479D JUMP JUMPDEST PUSH1 0x0 DUP8 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x4790 JUMPI PUSH2 0x4790 PUSH2 0x5BA0 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST POP DUP1 PUSH2 0x47A8 DUP2 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x46DA JUMP JUMPDEST POP POP POP POP SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH2 0x47C3 PUSH2 0x5132 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 0x4804 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5C88 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SUB PUSH2 0x4855 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 0xE97 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 DUP3 ADD SLOAD PUSH1 0x3 DUP4 ADD SLOAD PUSH1 0x0 DUP3 DUP5 GT PUSH2 0x4871 JUMPI PUSH1 0x0 PUSH2 0x487B JUMP JUMPDEST PUSH2 0x487B DUP4 DUP6 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP5 PUSH2 0x488C DUP4 PUSH2 0x2710 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x4896 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2710 PUSH2 0x48A7 DUP4 DUP1 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x48B1 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2710 PUSH2 0x48C2 DUP4 DUP10 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x48CC SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x48DA DUP3 DUP10 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 POP PUSH2 0x48FC PUSH20 0x55D398326F99059FF775485246999027B3197955 CALLER DUP14 DUP11 PUSH2 0x52B4 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xF PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0x491B SWAP1 DUP5 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x13 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x4934 SWAP2 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x18 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP10 SWAP3 SWAP1 PUSH2 0x4961 SWAP1 DUP5 SWAP1 PUSH2 0x5B61 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1B PUSH1 0x40 MLOAD DUP1 PUSH1 0xC0 ADD PUSH1 0x40 MSTORE DUP1 DUP9 DUP2 MSTORE PUSH1 0x20 ADD TIMESTAMP DUP2 MSTORE PUSH1 0x20 ADD DUP11 DUP2 MSTORE PUSH1 0x20 ADD DUP10 DUP2 MSTORE PUSH1 0x20 ADD DUP14 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 DUP13 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 DUP12 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 DUP14 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 DUP13 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 0x4B10 SWAP2 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 POP DUP1 DUP3 EQ PUSH2 0x4BD1 JUMPI PUSH1 0x0 PUSH1 0x19 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x4B2E JUMPI PUSH2 0x4B2E PUSH2 0x5BA0 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 0x4B7A JUMPI PUSH2 0x4B7A PUSH2 0x5BA0 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 0x4BE2 JUMPI PUSH2 0x4BE2 PUSH2 0x5CB3 JUMP JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 DUP1 DUP3 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 SSTORE PUSH1 0x1 DUP3 ADD PUSH1 0x0 SWAP1 SSTORE POP POP SWAP1 SSTORE PUSH1 0x1A PUSH1 0x0 DUP15 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 DUP14 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP14 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x7BB39D095B04A9986ED34ADF14D74C33294D0A9E807F02BF634D532507422EBA DUP12 DUP16 PUSH1 0x40 MLOAD PUSH2 0x4CA5 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP POP POP POP POP POP PUSH2 0x1A83 PUSH1 0x1 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5CCA DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SSTORE JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x4CFE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x4D24 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5C37 JUMP JUMPDEST PUSH1 0x0 DUP2 GT PUSH2 0x4D44 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5C60 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 0x4D6B SWAP2 PUSH2 0x5B74 JUMP JUMPDEST PUSH2 0x4D75 SWAP2 SWAP1 PUSH2 0x5B61 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 0x4DC5 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 0x4E09 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5C88 JUMP JUMPDEST PUSH1 0x2 DUP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x4E56 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 0xE97 JUMP JUMPDEST PUSH1 0x0 DUP3 GT PUSH2 0x4E9B 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 0xE97 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 PUSH2 0x4EEA PUSH2 0x5132 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0xA PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH2 0x4F3F 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 0xE97 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 SLOAD DUP2 LT ISZERO PUSH2 0x507C JUMPI PUSH1 0x0 DUP3 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x4F5F JUMPI PUSH2 0x4F5F PUSH2 0x5BA0 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x4 MUL ADD SWAP1 POP DUP4 DUP2 PUSH1 0x0 ADD SLOAD EQ DUP1 ISZERO PUSH2 0x4F86 JUMPI POP PUSH1 0x0 DUP2 PUSH1 0x1 ADD SLOAD GT JUMPDEST ISZERO PUSH2 0x5069 JUMPI DUP1 PUSH1 0x2 ADD SLOAD TIMESTAMP LT ISZERO PUSH2 0x4FD0 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 0x15995CDD1A5B99C81B1BD8DAD959 PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xE97 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD DUP1 SLOAD PUSH1 0x3 DUP4 ADD SLOAD PUSH1 0x0 SWAP3 DUP4 SWAP1 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 DUP4 MSTORE PUSH1 0xD PUSH1 0x20 MSTORE PUSH1 0x40 DUP4 KECCAK256 DUP1 SLOAD SWAP3 SWAP4 SWAP2 SWAP3 DUP5 SWAP3 SWAP1 PUSH2 0x500A SWAP1 DUP5 SWAP1 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x5024 SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND CALLER DUP5 PUSH2 0x517E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP9 SWAP1 MSTORE CALLER SWAP2 PUSH32 0x933735AA8DE6D7547D0126171B2F31B9C34DD00F3ECD4BE85A0BA047DB4FAFEF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP PUSH2 0x12A6 JUMP JUMPDEST POP DUP1 PUSH2 0x5074 DUP2 PUSH2 0x5B87 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x4F42 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x15995CDD1A5B99C81B9BDD08199BDD5B99 PUSH1 0x7A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xE97 JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND PUSH2 0x50E8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5BE0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x510E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE97 SWAP1 PUSH2 0x5C37 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 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5CCA DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP1 SLOAD PUSH1 0x1 NOT ADD PUSH2 0x5164 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 SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x5CCA DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x44 DUP3 ADD DUP4 SWAP1 MSTORE PUSH2 0x51DD SWAP2 DUP6 SWAP2 DUP3 AND SWAP1 PUSH4 0xA9059CBB SWAP1 PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP PUSH2 0x52F3 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0xE5C JUMP JUMPDEST PUSH2 0x5213 PUSH2 0x5364 JUMP JUMPDEST PUSH2 0xFA2 PUSH2 0x5389 JUMP JUMPDEST PUSH1 0x0 DUP3 ISZERO DUP1 PUSH2 0x5228 JUMPI POP DUP5 ISZERO JUMPDEST ISZERO PUSH2 0x5235 JUMPI POP PUSH1 0x0 PUSH2 0x52AB JUMP JUMPDEST PUSH1 0x0 DUP6 PUSH2 0x5244 DUP9 PUSH2 0x2710 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x524E SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP5 PUSH2 0x525F DUP8 PUSH2 0x2710 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x5269 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP1 POP DUP1 DUP3 GT PUSH2 0x527D JUMPI PUSH1 0x0 SWAP3 POP POP POP PUSH2 0x52AB JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5289 DUP3 DUP5 PUSH2 0x5B74 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2710 PUSH2 0x529A DUP8 DUP5 PUSH2 0x5B28 JUMP JUMPDEST PUSH2 0x52A4 SWAP2 SWAP1 PUSH2 0x5B3F JUMP JUMPDEST SWAP5 POP POP POP POP POP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 DUP2 AND PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD DUP4 SWAP1 MSTORE PUSH2 0x52ED SWAP2 DUP7 SWAP2 DUP3 AND SWAP1 PUSH4 0x23B872DD SWAP1 PUSH1 0x84 ADD PUSH2 0x51AB JUMP JUMPDEST 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 0x5316 JUMPI PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST POP POP PUSH1 0x0 MLOAD RETURNDATASIZE SWAP2 POP DUP2 ISZERO PUSH2 0x532E JUMPI DUP1 PUSH1 0x1 EQ ISZERO PUSH2 0x533B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO JUMPDEST ISZERO PUSH2 0x52ED 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 0xE97 JUMP JUMPDEST PUSH2 0x536C PUSH2 0x5391 JUMP JUMPDEST PUSH2 0xFA2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x516A PUSH2 0x5364 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x539B PUSH2 0x51E2 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST POP DUP1 SLOAD PUSH1 0x0 DUP3 SSTORE PUSH1 0x2 MUL SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x12BD SWAP2 SWAP1 JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x53E2 JUMPI PUSH1 0x0 DUP1 DUP3 SSTORE PUSH1 0x1 DUP3 ADD SSTORE PUSH1 0x2 ADD PUSH2 0x53C8 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x53FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5414 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x541D DUP3 PUSH2 0x53E6 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5437 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x5440 DUP4 PUSH2 0x53E6 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 0x5460 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x5479 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5490 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 0x40A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x54BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x54D4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x54E0 DUP6 DUP3 DUP7 ADD PUSH2 0x5467 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 0x551C JUMPI DUP2 MLOAD DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x5500 JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x0 PUSH2 0x553A PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0x54EC JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x554C DUP2 DUP7 PUSH2 0x54EC 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 0x5573 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH2 0x558A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x5596 DUP9 DUP4 DUP10 ADD PUSH2 0x5467 JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH2 0x55AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x55BC DUP8 DUP3 DUP9 ADD PUSH2 0x5467 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 0x55DB 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 0x562D 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 0x5608 JUMP JUMPDEST POP POP DUP6 DUP4 SUB DUP2 DUP8 ADD MSTORE PUSH2 0x5640 DUP4 DUP10 PUSH2 0x54EC 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 0x56A4 JUMPI PUSH2 0x5694 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 0x565A 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 0x56C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x56CF DUP4 PUSH2 0x53E6 JUMP JUMPDEST SWAP2 POP PUSH2 0x56DD PUSH1 0x20 DUP5 ADD PUSH2 0x53E6 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 0x5703 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x570C DUP10 PUSH2 0x53E6 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 0x572F PUSH1 0x80 DUP11 ADD PUSH2 0x53E6 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 0x57F2 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 0x576E 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 0x57F2 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 0x581C JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5874 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 0x58A4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x58AD DUP8 PUSH2 0x53E6 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 0x58D0 PUSH1 0x80 DUP9 ADD PUSH2 0x53E6 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 0x5950 JUMPI PUSH2 0x593D 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 0x58FF 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 0xE5C 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 0xE5C JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x59C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x59CF DUP5 PUSH2 0x53E6 JUMP JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD PUSH2 0xE5C 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 0x5A30 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x54EC JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x52AB DUP2 DUP6 PUSH2 0x54EC 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 0x5950 JUMPI PUSH2 0x5A85 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 0x5A5E 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 0x57F2 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 0x5AB5 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 0xE5C JUMPI PUSH2 0xE5C PUSH2 0x5B12 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x5B5C 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 0xE5C JUMPI PUSH2 0xE5C PUSH2 0x5B12 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0xE5C JUMPI PUSH2 0xE5C PUSH2 0x5B12 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP3 ADD PUSH2 0x5B99 JUMPI PUSH2 0x5B99 PUSH2 0x5B12 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 0x10 SWAP1 DUP3 ADD MSTORE PUSH16 0x4E6F7468696E6720746F20636C61696D PUSH1 0x80 SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP 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 0x5C30 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 0xE SWAP1 DUP3 ADD MSTORE PUSH14 0x125B9D985B1A5908185B5BDD5B9D PUSH1 0x92 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 SWAP12 PUSH24 0x9B17422D0DF92223018B32B4D1FA46E071723D6817E2486D STOP EXTCODESIZE 0xEC 0xC5 PUSH0 STOP LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF6 0xC9 PUSH9 0x7424E98A5EEDC2EBD9 PUSH29 0x79E0C5A0CDE5C699D22518C725AE3FFACDDC4764736F6C634300081400 CALLER ","sourceMap":"513:49159:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14887:553;;;;;;:::i;:::-;;:::i;:::-;;;529:25:16;;;517:2;502:18;14887:553:13;;;;;;;;2725:47;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;2725:47:13;;;;;;-1:-1:-1;;;;;838:32:16;;;820:51;;808:2;793:18;2725:47:13;674:203:16;2517:38:13;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1143:14:16;;1136:22;1118:41;;1106:2;1091:18;2517:38:13;978:187:16;2960:26:13;;;;;;2852:46;;;;;;:::i;:::-;;;;;;;;;;;;;;36402:825;;;;;;:::i;:::-;;:::i;3989:35::-;;;;;;16407:826;;;:::i;:::-;;3591:47;;;;;;:::i;:::-;;;;;;;;;;;;;;7158:202;;;;;;:::i;:::-;;:::i;2925:29::-;;;;;;11805:109;;;;;;:::i;:::-;;:::i;15517:215::-;;;;;;:::i;:::-;;:::i;17298:902::-;;;;;;:::i;:::-;;:::i;3905:29::-;;;;;;2561:46;;;;;;:::i;:::-;;;;;;;;;;;;;;;;37814:1137;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;7851:208::-;;;;;;:::i;:::-;;:::i;4115:67::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4115:67:13;;;;;;;;;;;;;;;3640:25:16;;;3696:2;3681:18;;3674:34;;;;-1:-1:-1;;;;;3744:32:16;3739:2;3724:18;;3717:60;3808:2;3793:18;;3786:34;3627:3;3612:19;;3409:417;41921:1841:13;;;;;;:::i;:::-;;:::i;4512:35::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4023:32:16;;;4005:51;;4087:2;4072:18;;4065:34;;;;3978:18;4512:35:13;3831:274:16;30398:801:13;;;;;;:::i;:::-;;:::i;11563:107::-;;;;;;:::i;:::-;;:::i;2664:55::-;;;;;;:::i;:::-;;:::i;:::-;;;;4284:25:16;;;4340:2;4325:18;;4318:34;;;;4257:18;2664:55:13;4110:248:16;20303:829:13;;;;;;:::i;:::-;;:::i;23965:1252::-;;;;;;:::i;:::-;;:::i;2778:48::-;;;;;;:::i;:::-;;;;;;;;;;;;;;49003:119;49090:18;:25;49003:119;;47010:689;;;:::i;:::-;;;;;;;;;:::i;8430:123::-;;;;;;:::i;:::-;;:::i;4325:30::-;;;;;;6940:212;;;;;;:::i;:::-;;:::i;31922:636::-;;;;;;:::i;:::-;;:::i;37306:114::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39183:720::-;;;;;;:::i;:::-;;:::i;45021:146::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49268:126::-;;;;;;:::i;:::-;-1:-1:-1;;;;;49364:23:13;49338:7;49364:23;;;:17;:23;;;;;;;49268:126;34775:737;;;;;;:::i;:::-;;:::i;6252:654::-;;;:::i;8226:198::-;;;;;;:::i;:::-;;:::i;3441:61::-;;;;;;:::i;:::-;;;;;;;;;;;;;;13736:1051;;;;;;:::i;:::-;;:::i;8069:147::-;;;;;;:::i;:::-;;:::i;2491:20::-;;;;;-1:-1:-1;;;;;2491:20:13;;;4424:52;;;;;;:::i;:::-;;;;;;;;;;;;;;31660:256;;;;;;:::i;:::-;;:::i;25366:1493::-;;;;;;:::i;:::-;;:::i;22080:464::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;18344:941::-;;;;;;:::i;:::-;;:::i;4711:46::-;;;;;;:::i;:::-;;:::i;:::-;;;;12791:25:16;;;12847:2;12832:18;;12825:34;;;;12875:18;;;12868:34;;;;12933:2;12918:18;;12911:34;-1:-1:-1;;;;;13020:15:16;;;13014:3;12999:19;;12992:44;13073:15;12972:3;13052:19;;13045:44;12778:3;12763:19;4711:46:13;12504:591:16;47874:147:13;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;12056:199::-;;;;;;:::i;:::-;;:::i;40046:1732::-;;;;;;:::i;:::-;;:::i;21419:383::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;8852:1178::-;;;;;;:::i;:::-;;:::i;21852:173::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2613:45::-;;;;;;:::i;:::-;;:::i;:::-;;;;14808:25:16;;;14864:2;14849:18;;14842:34;;;;14892:18;;;14885:34;;;;14950:2;14935:18;;14928:34;;;;14993:3;14978:19;;14971:35;;;;15037:3;15022:19;;15015:35;15081:3;15066:19;;15059:35;-1:-1:-1;;;;;15131:32:16;15125:3;15110:19;;15103:61;15208:14;15201:22;15195:3;15180:19;;15173:51;15255:3;15240:19;;15233:35;14795:3;14780:19;2613:45:13;14415:859:16;35518:878:13;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;49521:148::-;49601:3;49521:148;;15795:538;;;;;;:::i;:::-;;:::i;:::-;;;;15951:25:16;;;16007:2;15992:18;;15985:34;;;;16035:18;;;16028:34;15939:2;15924:18;15795:538:13;15749:319:16;7629:111:13;;;;;;:::i;:::-;;:::i;3546:39::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16332:25:16;;;16388:2;16373:18;;16366:34;;;;16416:18;;;16409:34;;;;16474:2;16459:18;;16452:34;16517:3;16502:19;;16495:35;16319:3;16304:19;3546:39:13;16073:463:16;21223:135:13;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3777:57::-;;;;;;:::i;:::-;;:::i;7746:99::-;;;;;;:::i;:::-;;:::i;48231:653::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;43910:913::-;;;;;;:::i;:::-;;:::i;3682:55::-;;;;;;:::i;:::-;;;;;;;;;;;;;;45313:121;45399:28;;45313:121;;22614:1118;;;;;;:::i;:::-;;:::i;3870:29::-;;;;;;27648:2512;;;;;;:::i;:::-;;:::i;19612:432::-;;;;;;:::i;:::-;;:::i;27013:480::-;;;;;;:::i;:::-;;:::i;45556:1206::-;;;;;;:::i;:::-;;:::i;4223:29::-;;;;;;7454:146;;;;;;:::i;:::-;;:::i;14887:553::-;-1:-1:-1;;;;;15014:18:13;;14955:22;15014:18;;;:12;:18;;;;;;;;;15063:20;:26;;;;;;;15108:295;15141:14;;15137:1;:18;15108:295;;;15180:18;;15176:217;;15218:16;15255:9;;;:6;:9;;;;;:26;;;15285:5;;15238:43;;:14;:43;:::i;:::-;15237:53;;;;:::i;:::-;15218:72;-1:-1:-1;15308:26:13;15218:72;15308:26;;:::i;:::-;;-1:-1:-1;15352:26:13;15370:8;15352:26;;:::i;:::-;;;15200:193;15176:217;15157:3;;;;:::i;:::-;;;;15108:295;;;;15412:21;;14887:553;;;:::o;36402:825::-;-1:-1:-1;;;;;36539:15:13;;36494:7;36539:15;;;:8;:15;;;;;:30;;36494:7;;36539:15;36555:13;;36539:30;;;;;;:::i;:::-;;;;;;;;;;;36513:56;;36579:19;36619:7;:17;;;36601:15;:35;;;;:::i;:::-;36662:13;;;;36579:57;;-1:-1:-1;;;;;;36662:13:13;36646;;36723:466;-1:-1:-1;;;;;36747:22:13;;;;;;:15;:22;;;;;:29;36743:33;;36723:466;;;-1:-1:-1;;;;;36823:22:13;;36797:23;36823:22;;;:15;:22;;;;;:25;;36846:1;;36823:25;;;;;;:::i;:::-;;;;;;;;;;;;;36881:15;;36931;;;;36986:17;;;;36823:25;;-1:-1:-1;36881:15:13;;36931;;37026:3;;36986:36;;3036:2;;36986:36;:::i;:::-;36985:44;;;;:::i;:::-;36960:69;;37063:8;37048:11;:23;37044:135;;37158:5;37127:27;37144:10;37127:14;:27;:::i;:::-;37126:37;;;;:::i;:::-;37108:56;;:14;:56;:::i;:::-;37091:73;;37044:135;36783:406;;;;36778:3;;;;:::i;:::-;;;36723:466;;;-1:-1:-1;37206:14:13;-1:-1:-1;;;;36402:825:13;;;;;:::o;16407:826::-;3395:21:1;:19;:21::i;:::-;16469:23:13::1;16495:35;16519:10;16495:23;:35::i;:::-;16469:61;;16566:1;16548:15;:19;16540:48;;;;-1:-1:-1::0;;;16540:48:13::1;;;;;;;:::i;:::-;;;;;;;;;16673:10;16660:24;::::0;;;:12:::1;:24;::::0;;;;:43;;16688:15;;16660:24;:43:::1;::::0;16688:15;;16660:43:::1;:::i;:::-;;;;;;;;16731:15;16713:14;;:33;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;16853:14:13::1;::::0;16839:10:::1;16818:32;::::0;;;:20:::1;:32;::::0;;;;;;;:49;;;;16941:14:::1;:26:::0;;;;;;16973:187;;::::1;::::0;::::1;::::0;;17010:15:::1;16973:187:::0;;;;;::::1;::::0;;;17138:11:::1;::::0;16941:26;;16973:187;;;;;;17120:29:::1;::::0;::::1;:::i;:::-;16973:187:::0;;16941:220;;::::1;::::0;;::::1;::::0;;-1:-1:-1;16941:220:13;;;::::1;::::0;;;;;;::::1;::::0;;::::1;;::::0;;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;17185:41;529:25:16;;;17198:10:13::1;::::0;17185:41:::1;::::0;502:18:16;17185:41:13::1;;;;;;;16459:774;3437:20:1::0;1949:1;-1:-1:-1;;;;;;;;;;;4113:23:1;3860:283;3437:20;16407:826:13:o;7158:202::-;5976:10;5969:18;;;;:6;:18;;;;;;;;5961:45;;;;-1:-1:-1;;;5961:45:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;7232:14:13;::::1;;::::0;;;:6:::1;:14;::::0;;;;;::::1;;7224:36;;;::::0;-1:-1:-1;;;7224:36:13;;20434:2:16;7224:36:13::1;::::0;::::1;20416:21:16::0;20473:1;20453:18;;;20446:29;-1:-1:-1;;;20491:18:16;;;20484:39;20540:18;;7224:36:13::1;20232:332:16::0;7224:36:13::1;7288:10;-1:-1:-1::0;;;;;7278:20:13;::::1;::::0;7270:51:::1;;;::::0;-1:-1:-1;;;7270:51:13;;20771:2:16;7270:51:13::1;::::0;::::1;20753:21:16::0;20810:2;20790:18;;;20783:30;-1:-1:-1;;;20829:18:16;;;20822:48;20887:18;;7270:51:13::1;20569:342:16::0;7270:51:13::1;-1:-1:-1::0;;;;;7331:14:13::1;7348:5;7331:14:::0;;;:6:::1;:14;::::0;;;;:22;;-1:-1:-1;;7331:22:13::1;::::0;;7158:202::o;11805:109::-;5976:10;5969:18;;;;:6;:18;;;;;;;;5961:45;;;;-1:-1:-1;;;5961:45:13;;;;;;;:::i;:::-;11882:15:::1;:25:::0;11805:109::o;15517:215::-;-1:-1:-1;;;;;15611:18:13;;15573:7;15611:18;;;:12;:18;;;;;;15573:7;15659:29;15624:4;15659:23;:29::i;:::-;15639:49;-1:-1:-1;15705:20:13;15639:49;15705:8;:20;:::i;:::-;15698:27;15517:215;-1:-1:-1;;;;15517:215:13:o;17298:902::-;3395:21:1;:19;:21::i;:::-;17422:10:13::1;17370:34;17407:26:::0;;;:14:::1;:26;::::0;;;;17451:17;;17443:53:::1;;;::::0;-1:-1:-1;;;17443:53:13;;21118:2:16;17443:53:13::1;::::0;::::1;21100:21:16::0;21157:2;21137:18;;;21130:30;-1:-1:-1;;;21176:18:16;;;21169:49;21235:18;;17443:53:13::1;20916:343:16::0;17443:53:13::1;17520:9;17515:635;17539:17:::0;;17535:21;::::1;17515:635;;;17577:27;17607:10;17618:1;17607:13;;;;;;;;:::i;:::-;;;;;;;;;;;17577:43;;17655:7;17638:5;:13;;;:24;:44;;;;;17681:1;17666:5;:12;;;:16;17638:44;17634:506;;;17729:5;:16;;;17710:15;:35;;17702:60;;;::::0;-1:-1:-1;;;17702:60:13;;21466:2:16;17702:60:13::1;::::0;::::1;21448:21:16::0;21505:2;21485:18;;;21478:30;-1:-1:-1;;;21524:18:16;;;21517:42;21576:18;;17702:60:13::1;21264:336:16::0;17702:60:13::1;17814:12;::::0;::::1;::::0;;17797:14:::1;17844:16:::0;;;17968:50:::1;3159:42;17999:10;17814:12:::0;17968:30:::1;:50::i;:::-;18058:43;::::0;;4284:25:16;;;4340:2;4325:18;;4318:34;;;18073:10:13::1;::::0;18058:43:::1;::::0;4257:18:16;18058:43:13::1;;;;;;;18119:7;;;;;;17634:506;-1:-1:-1::0;17558:3:13;::::1;::::0;::::1;:::i;:::-;;;;17515:635;;;-1:-1:-1::0;18168:25:13::1;::::0;-1:-1:-1;;;18168:25:13;;21807:2:16;18168:25:13::1;::::0;::::1;21789:21:16::0;21846:2;21826:18;;;21819:30;-1:-1:-1;;;21865:18:16;;;21858:45;21920:18;;18168:25:13::1;21605:339:16::0;3426:1:1::1;3437:20:::0;1949:1;-1:-1:-1;;;;;;;;;;;4113:23:1;3860:283;3437:20;17298:902:13;:::o;37814:1137::-;37927:24;;38005:16;38063:7;;-1:-1:-1;;;;;38097:21:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38097:21:13;;38087:31;;38154:6;-1:-1:-1;;;;;38140:21:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38140:21:13;;38128:33;;38177:9;38172:725;38196:6;38192:1;:10;38172:725;;;38223:13;38239:7;;38247:1;38239:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;38348:18:13;;38326:19;38348:18;;;:11;:18;;;;;;38380:10;;38223:26;;-1:-1:-1;38348:18:13;;;38380:7;;38388:1;;38380:10;;;;;;:::i;:::-;;;;;;;;;;;:24;;;;-1:-1:-1;;;;;38580:19:13;;;38551:13;38580:19;;;:12;:19;;;;;;;;38567:55;;-1:-1:-1;;;38567:55:13;;;;;820:51:16;;;;38580:19:13;;;;38567:48;;793:18:16;;38567:55:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38551:71;-1:-1:-1;38711:18:13;38756:4;38733:19;38741:11;38551:71;38733:19;:::i;:::-;38732:28;;;;:::i;:::-;38711:49;;38789:10;38774:9;38784:1;38774:12;;;;;;;;:::i;:::-;;;;;;;;;;:25;38864:22;38876:10;38864:22;;:::i;:::-;;;38209:688;;;;38204:3;;;;;:::i;:::-;;;;38172:725;;;;38907:37;37814:1137;;;;;:::o;7851:208::-;5976:10;5969:18;;;;:6;:18;;;;;;;;5961:45;;;;-1:-1:-1;;;5961:45:13;;;;;;;:::i;:::-;7946:48:::1;-1:-1:-1::0;;;;;7946:27:13;::::1;7974:10;7986:7:::0;7946:27:::1;:48::i;:::-;8009:43;::::0;529:25:16;;;-1:-1:-1;;;;;8009:43:13;::::1;::::0;8024:10:::1;::::0;8009:43:::1;::::0;517:2:16;502:18;8009:43:13::1;;;;;;;7851:208:::0;;:::o;41921:1841::-;3395:21:1;:19;:21::i;:::-;42001:19:13::1;42048:9:::0;42043:701:::1;42076:10;42067:20;::::0;;;:8:::1;:20;::::0;;;;:27;42063:31;::::1;42043:701;;;42150:10;42115:23;42141:20:::0;;;:8:::1;:20;::::0;;;;:23;;42162:1;;42141:23;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;42182:13;::::0;::::1;::::0;42141:23;;-1:-1:-1;;;;;;42182:23:13;;::::1;:13:::0;::::1;:23;:44:::0;::::1;;;-1:-1:-1::0;42210:16:13::1;::::0;::::1;::::0;-1:-1:-1;;;42210:16:13;::::1;;;42209:17;42182:44;42178:556;;;42246:16;42265:33;42284:10;42296:1;42265:18;:33::i;:::-;42246:52;;42331:7;:21;;;42320:8;:32;42316:404;;;42376:21;42411:7;:21;;;42400:8;:32;;;;:::i;:::-;42376:56:::0;-1:-1:-1;42454:28:13::1;42376:56:::0;42454:28;::::1;:::i;:::-;;;42550:13;42525:7;:21;;;:38;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;42614:14:13;;42589:21:::1;::::0;::::1;::::0;:39:::1;42585:117;;42656:16;::::0;::::1;:23:::0;;-1:-1:-1;;;;42656:23:13::1;-1:-1:-1::0;;;42656:23:13::1;::::0;;42585:117:::1;42354:366;42316:404;42228:506;42178:556;-1:-1:-1::0;42096:3:13;::::1;::::0;::::1;:::i;:::-;;;;42043:701;;;;42784:1;42770:11;:15;42762:44;;;;-1:-1:-1::0;;;42762:44:13::1;;;;;;;:::i;:::-;42882:10;42896:1;42868:25:::0;;;:13:::1;:25;::::0;;;;;:29;42864:353:::1;;-1:-1:-1::0;;;;;42946:20:13;;::::1;42913:16;42946:20:::0;;;:12:::1;:20;::::0;;;;;;42933:57;;-1:-1:-1;;;42933:57:13;;::::1;::::0;::::1;820:51:16::0;;;;42913:16:13;;43008:4:::1;::::0;42993:11;;42946:20;;::::1;::::0;42933:49:::1;::::0;793:18:16;;42933:57:13::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:71;;;;:::i;:::-;42932:80;;;;:::i;:::-;43056:10;43042:25;::::0;;;:13:::1;:25;::::0;;;;;42913:99;;-1:-1:-1;43030:37:13;::::1;43026:181;;43101:10;43115:1;43087:25:::0;;;:13:::1;:25;::::0;;;;:29;43026:181:::1;;;43169:10;43155:25;::::0;;;:13:::1;:25;::::0;;;;:37;;43184:8;;43155:25;:37:::1;::::0;43184:8;;43155:37:::1;:::i;:::-;::::0;;;-1:-1:-1;;43026:181:13::1;42899:318;42864:353;-1:-1:-1::0;;;;;43226:19:13;::::1;;::::0;;;:11:::1;:19;::::0;;;;:34;;43249:11;;43226:19;:34:::1;::::0;43249:11;;43226:34:::1;:::i;:::-;::::0;;;-1:-1:-1;;43349:10:13::1;43327:33;::::0;;;:21:::1;:33;::::0;;;;;43366:197;;::::1;::::0;::::1;::::0;;;43407:28:::1;:30:::0;;43327:33;;43366:197;;43407:30;:28;:30:::1;::::0;::::1;:::i;:::-;;;;;43366:197;;;;43459:11;43366:197;;;;43514:11;;43496:15;:29;;;;:::i;:::-;43366:197:::0;;-1:-1:-1;;;;;43366:197:13;;::::1;;::::0;;::::1;::::0;;;43327:237;;::::1;::::0;;::::1;::::0;;-1:-1:-1;43327:237:13;;;;;;;;::::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;;;;;;43327:237:13::1;::::0;;;::::1;;::::0;;;43648:34;;:26:::1;:34:::0;;;;:49;;43686:11;;-1:-1:-1;43648:49:13::1;::::0;43686:11;;43648:49:::1;:::i;:::-;::::0;;;-1:-1:-1;;43713:42:13::1;::::0;;4284:25:16;;;43753:1:13::1;4340:2:16::0;4325:18;;4318:34;43728:10:13::1;::::0;43713:42:::1;::::0;4257:18:16;43713:42:13::1;;;;;;;41991:1771;3437:20:1::0;1949:1;-1:-1:-1;;;;;;;;;;;4113:23:1;3860:283;4512:35:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4512:35:13;;;;-1:-1:-1;4512:35:13;:::o;30398:801::-;6086:10;6071:26;;;;:14;:26;;;;;;;;6063:53;;;;-1:-1:-1;;;6063:53:13;;;;;;;:::i;:::-;30466:9:::1;30461:732;-1:-1:-1::0;;;;;30485:14:13;::::1;;::::0;;;:8:::1;:14;::::0;;;;:21;30481:25;::::1;30461:732;;;-1:-1:-1::0;;;;;30553:14:13;::::1;30527:23;30553:14:::0;;;:8:::1;:14;::::0;;;;:17;;30568:1;;30553:17;::::1;;;;;:::i;:::-;;;;;;;;;;;30527:43;;30664:7;:16;;;;;;;;;;;;30659:334;;30727:17;::::0;::::1;::::0;-1:-1:-1;;;;;30704:19:13;::::1;;::::0;;;:13:::1;:19;::::0;;;;;:40:::1;30700:127;;30791:17;::::0;::::1;::::0;-1:-1:-1;;;;;30768:19:13;::::1;;::::0;;;:13:::1;:19;::::0;;;;:40;;:19;;;:40:::1;::::0;30791:17;;30768:40:::1;:::i;:::-;::::0;;;-1:-1:-1;;30700:127:13::1;30878:14:::0;;30848:11:::1;30860:13:::0;;::::1;::::0;-1:-1:-1;;;;;30860:13:13::1;30878:14;30848:26:::0;;;::::1;::::0;;;;;;;;:44:::1;30844:135;;30946:14:::0;;30916:11:::1;30928:13:::0;;::::1;::::0;-1:-1:-1;;;;;30928:13:13::1;30946:14;30916:26:::0;;;::::1;::::0;;;;;;;:44;;:26;;30946:14;30916:44:::1;::::0;30946:14;;30916:44:::1;:::i;:::-;::::0;;;-1:-1:-1;;30844:135:13::1;31036:1;31019:18:::0;;;31051:13:::1;::::0;::::1;:17:::0;;;31082:21:::1;::::0;::::1;:25:::0;;;31121:20:::1;::::0;::::1;:24:::0;31159:16:::1;;:23:::0;;-1:-1:-1;;;;31159:23:13::1;-1:-1:-1::0;;;31159:23:13::1;::::0;;30508:3:::1;::::0;::::1;:::i;:::-;;;30461:732;;;;30398:801:::0;:::o;11563:107::-;5976:10;5969:18;;;;:6;:18;;;;;;;;5961:45;;;;-1:-1:-1;;;5961:45:13;;;;;;;:::i;:::-;11639:14:::1;:24:::0;11563:107::o;2664:55::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2664:55:13;-1:-1:-1;2664:55:13;:::o;20303:829::-;6086:10;6071:26;;;;:14;:26;;;;;;;;6063:53;;;;-1:-1:-1;;;6063:53:13;;;;;;;:::i;:::-;20423:30;;::::1;20415:64;;;::::0;-1:-1:-1;;;20415:64:13;;22733:2:16;20415:64:13::1;::::0;::::1;22715:21:16::0;22772:2;22752:18;;;22745:30;-1:-1:-1;;;22791:18:16;;;22784:51;22852:18;;20415:64:13::1;22531:345:16::0;20415:64:13::1;20497:16:::0;20489:41:::1;;;::::0;-1:-1:-1;;;20489:41:13;;23083:2:16;20489:41:13::1;::::0;::::1;23065:21:16::0;23122:2;23102:18;;;23095:30;-1:-1:-1;;;23141:18:16;;;23134:42;23193:18;;20489:41:13::1;22881:336:16::0;20489:41:13::1;20549:18;20595:9:::0;20590:458:::1;20610:16:::0;;::::1;20590:458;;;20675:1;20655:5:::0;;20661:1;20655:8;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;20655:22:13::1;::::0;20647:50:::1;;;;-1:-1:-1::0;;;20647:50:13::1;;;;;;;:::i;:::-;20732:1;20719:7;;20727:1;20719:10;;;;;;;:::i;:::-;;;;;;;:14;20711:41;;;;-1:-1:-1::0;;;20711:41:13::1;;;;;;;:::i;:::-;20863:7;;20871:1;20863:10;;;;;;;:::i;:::-;;;;;;;20838:12;:22;20851:5;;20857:1;20851:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;20838:22:13::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;20838:22:13;;20825:35:::1;::::0;:10;:35:::1;:::i;:::-;:48;;;;:::i;:::-;20812:61;;20961:7;;20969:1;20961:10;;;;;;;:::i;:::-;;;;;;;20936:12;:22;20949:5;;20955:1;20949:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;20936:22:13::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;20936:22:13;:35;21016:5;;21022:1;21016:8;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;21003:34:13::1;;21026:7;;21034:1;21026:10;;;;;;;:::i;:::-;;;;;;;21003:34;;;;529:25:16::0;;517:2;502:18;;383:177;21003:34:13::1;;;;;;;;20628:3:::0;::::1;::::0;::::1;:::i;:::-;;;;20590:458;;;;21115:10;21097:14;;:28;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;20303:829:13:o;23965:1252::-;3395:21:1;:19;:21::i;:::-;24066:1:13::1;24058:5;:9;24050:35;;;::::0;-1:-1:-1;;;24050:35:13;;24111:2:16;24050:35:13::1;::::0;::::1;24093:21:16::0;24150:2;24130:18;;;24123:30;-1:-1:-1;;;24169:18:16;;;24162:43;24222:18;;24050:35:13::1;23909:337:16::0;24050:35:13::1;24115:1;24103:9;:13;24095:44;;;::::0;-1:-1:-1;;;24095:44:13;;24453:2:16;24095:44:13::1;::::0;::::1;24435:21:16::0;24492:2;24472:18;;;24465:30;-1:-1:-1;;;24511:18:16;;;24504:48;24569:18;;24095:44:13::1;24251:342:16::0;24095:44:13::1;24166:14;;24157:5;:23;;24149:55;;;::::0;-1:-1:-1;;;24149:55:13;;24800:2:16;24149:55:13::1;::::0;::::1;24782:21:16::0;24839:2;24819:18;;;24812:30;-1:-1:-1;;;24858:18:16;;;24851:49;24917:18;;24149:55:13::1;24598:343:16::0;24149:55:13::1;24290:16;24309:23;24321:10;24309:11;:23::i;:::-;24290:42;;24359:8;24350:5;:17;;24342:52;;;::::0;-1:-1:-1;;;24342:52:13;;25148:2:16;24342:52:13::1;::::0;::::1;25130:21:16::0;25187:2;25167:18;;;25160:30;-1:-1:-1;;;25206:18:16;;;25199:52;25268:18;;24342:52:13::1;24946:346:16::0;24342:52:13::1;24462:14;:16:::0;;;:14:::1;:16;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;24506:14:13::1;::::0;24610:10:::1;24488:15;24597:24:::0;;;:12:::1;:24;::::0;;;;:33;;24625:5;;24488:15;24597:33:::1;::::0;24625:5;;24597:33:::1;:::i;:::-;;;;;;;;24658:5;24640:14;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;24754:152:13::1;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;::::0;;;24846:10:::1;24754:152:::0;;;;;;24880:15:::1;24754:152:::0;;;;;;-1:-1:-1;24720:22:13;;;:10:::1;:22:::0;;;;;:31;;;;;;;;:186;;;;;;::::1;::::0;;::::1;::::0;;;;;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;24720:186:13;;::::1;-1:-1:-1::0;;;;;;24720:186:13;;::::1;;::::0;;;;;::::1;::::0;;::::1;::::0;;;;24978:86;;;;::::1;::::0;;;;;;;;::::1;::::0;;;24959:13:::1;:106:::0;;;;::::1;::::0;;;;;;;;;;;::::1;::::0;;::::1;::::0;;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;;;;;;;25116:20;;:24:::1;::::0;24720:186;25116:24:::1;:::i;:::-;25093:10;25075:29;::::0;;;:17:::1;:29;::::0;;;;;;;:38;;;;;;;;;:65;;;;25164:46;;4284:25:16;;;4325:18;;;4318:34;;;25093:10:13;;25164:46:::1;::::0;4257:18:16;25164:46:13::1;;;;;;;24040:1177;;3437:20:1::0;1949:1;-1:-1:-1;;;;;;;;;;;4113:23:1;3860:283;47010:689:13;47205:13;:20;47070:24;;;;;;47205:20;-1:-1:-1;;;;;47254:21:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47254:21:13;;47244:31;;47310:6;-1:-1:-1;;;;;47296:21:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47296:21:13;;47285:32;;47359:6;-1:-1:-1;;;;;47343:23:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47343:23:13;;;;;;;;;;;;;;;;;47327:39;;47390:9;47385:248;47409:6;47405:1;:10;47385:248;;;47436:23;47462:13;47476:1;47462:16;;;;;;;;:::i;:::-;;;;;;;;;;47436:42;;;;;;;;;47462:16;;;;;47436:42;;-1:-1:-1;;;;;47436:42:13;;;;;;;;;;;;;;;;47492:10;;47436:42;;-1:-1:-1;47492:7:13;;47500:1;;47492:10;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;47492:23:13;;;-1:-1:-1;;;;;47492:23:13;;;;;47543:3;:11;;;47529:8;47538:1;47529:11;;;;;;;;:::i;:::-;;;;;;;;;;;:25;;;;47598:10;;-1:-1:-1;;;;;47587:22:13;;;;;;;:10;:22;;;;;;47610:11;;;;47587:35;;;;;;;;47568:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:16;;:13;;47582:1;;47568:16;;;;;;:::i;:::-;;;;;;:54;;;;47422:211;47417:3;;;;;:::i;:::-;;;;47385:248;;;;47651:41;47010:689;;;:::o;8430:123::-;5976:10;5969:18;;;;:6;:18;;;;;;;;5961:45;;;;-1:-1:-1;;;5961:45:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;8516:20:13;;::::1;;::::0;;;:12:::1;:20;::::0;;;;:30;;-1:-1:-1;;;;;;8516:30:13::1;::::0;;;::::1;;::::0;;8430:123::o;6940:212::-;5976:10;5969:18;;;;:6;:18;;;;;;;;5961:45;;;;-1:-1:-1;;;5961:45:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;7014:23:13;::::1;7006:51;;;;-1:-1:-1::0;;;7006:51:13::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;7076:17:13;::::1;;::::0;;;:6:::1;:17;::::0;;;;;::::1;;7075:18;7067:44;;;::::0;-1:-1:-1;;;7067:44:13;;25499:2:16;7067:44:13::1;::::0;::::1;25481:21:16::0;25538:2;25518:18;;;25511:30;-1:-1:-1;;;25557:18:16;;;25550:43;25610:18;;7067:44:13::1;25297:337:16::0;7067:44:13::1;-1:-1:-1::0;;;;;7121:17:13::1;;::::0;;;7141:4:::1;7121:17;::::0;;;;;;;:24;;-1:-1:-1;;7121:24:13::1;::::0;;::::1;::::0;;6940:212::o;31922:636::-;6086:10;6071:26;;;;:14;:26;;;;;;;;6063:53;;;;-1:-1:-1;;;6063:53:13;;;;;;;:::i;:::-;32110:8:::1;:14;32119:4;-1:-1:-1::0;;;;;32110:14:13::1;-1:-1:-1::0;;;;;32110:14:13::1;;;;;;;;;;;;32130:331;;;;;;;;32160:6;32130:331;;;;32187:5;32130:331;;;;32219:11;32130:331;;;;32259:1;32130:331;;;;32288:1;32130:331;;;;32316:11;32130:331;;;;32352:9;32130:331;;;;32382:5;-1:-1:-1::0;;;;;32130:331:13::1;;;;;32411:5;32130:331;;;;;;32441:9;32130:331;;::::0;32110:352:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;32110:352:13::1;;;;;-1:-1:-1::0;;;;;32110:352:13::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32504:9;32481:13;:19;32495:4;-1:-1:-1::0;;;;;32481:19:13::1;-1:-1:-1::0;;;;;32481:19:13::1;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;32523:18:13;::::1;;::::0;;;:11:::1;:18;::::0;;;;:28;;32545:6;;32523:18;:28:::1;::::0;32545:6;;32523:28:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;;;;31922:636:13:o;37306:114::-;-1:-1:-1;;;;;37399:14:13;;;;;;:8;:14;;;;;;;;37392:21;;;;;;;;;;;;;;;;;37364:16;;37392:21;;37399:14;;37392:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37392:21:13;;;;;;-1:-1:-1;;;37392:21:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37306:114;;;:::o;39183:720::-;-1:-1:-1;;;;;39304:14:13;;39259:16;39304:14;;;:8;:14;;;;;:21;39259:16;39335:537;39359:6;39355:1;:10;39335:537;;;-1:-1:-1;;;;;39405:14:13;;39386:16;39405:14;;;:8;:14;;;;;:17;;39420:1;;39405:17;;;;;;:::i;:::-;;;;;;;;;;39386:36;;;;;;;;39405:17;;;;;;;39386:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39386:36:13;;;;;;;-1:-1:-1;;;39386:36:13;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39436:426:13;;39518:7;;;;;-1:-1:-1;;;;;39505:21:13;;;39471:18;39505:21;;;:12;:21;;;;;;;39543:7;;39492:59;;-1:-1:-1;;;39492:59:13;;838:32:16;;;39492:59:13;;;820:51:16;39471:18:13;;39505:21;;;;39492:50;;793:18:16;;39492:59:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39471:80;;39624:23;39661:1;:15;;;39650:1;:8;;;:26;;;;:::i;:::-;39624:52;-1:-1:-1;39752:16:13;39804:4;39772:28;39624:52;39772:10;:28;:::i;:::-;39771:37;;;;:::i;:::-;39752:56;-1:-1:-1;39827:20:13;39752:56;39827:20;;:::i;:::-;;;39453:409;;;39436:426;-1:-1:-1;39367:3:13;;;;:::i;:::-;;;;39335:537;;;;39881:15;39183:720;;;:::o;45021:146::-;-1:-1:-1;;;;;45133:27:13;;;;;;:21;:27;;;;;;;;45126:34;;;;;;;;;;;;;;;;;45090:24;;45126:34;;45133:27;;45126:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45126:34:13;;;;;;;;;;;;;;;34775:737;-1:-1:-1;;;;;34907:15:13;;34862:7;34907:15;;;:8;:15;;;;;:30;;34862:7;;34907:15;34923:13;;34907:30;;;;;;:::i;:::-;;;;;;;;;;;34881:56;;34947:19;34987:7;:17;;;34969:15;:35;;;;:::i;:::-;35030:13;;;;34947:57;;-1:-1:-1;;;;;;35030:13:13;35014;;35091:383;-1:-1:-1;;;;;35115:22:13;;;;;;:15;:22;;;;;:29;35111:33;;35091:383;;;-1:-1:-1;;;;;35191:22:13;;35165:23;35191:22;;;:15;:22;;;;;:25;;35214:1;;35191:25;;;;;;:::i;:::-;;;;;;;;;;;;;;35249:15;;35299;;;;35191:25;;-1:-1:-1;35249:15:13;35333:23;;;35329:135;;35412:14;;35443:5;;35412:27;;35429:10;;35412:27;:::i;:::-;35411:37;;;;:::i;:::-;35393:56;;:14;:56;:::i;:::-;35376:73;;35329:135;35151:323;;;35146:3;;;;:::i;:::-;;;35091:383;;6252:654;4158:30:0;4191:26;:24;:26::i;:::-;4302:15;;4158:59;;-1:-1:-1;4302:15:0;-1:-1:-1;;;4302:15:0;;;4301:16;;-1:-1:-1;;;;;4348:14:0;4279:19;4724:16;;:34;;;;;4744:14;4724:34;4704:54;;4768:17;4788:11;-1:-1:-1;;;;;4788:16:0;4803:1;4788:16;:50;;;;-1:-1:-1;4816:4:0;4808:25;:30;4788:50;4768:70;;4854:12;4853:13;:30;;;;;4871:12;4870:13;4853:30;4849:91;;;4906:23;;-1:-1:-1;;;4906:23:0;;;;;;;;;;;4849:91;4949:18;;-1:-1:-1;;4949:18:0;4966:1;4949:18;;;4977:67;;;;5011:22;;-1:-1:-1;;;;5011:22:0;-1:-1:-1;;;5011:22:0;;;4977:67;6303:24:13::1;:22;:24::i;:::-;6346:5;:18:::0;;-1:-1:-1;;;;;;6346:18:13::1;6354:10;6346:18:::0;;::::1;::::0;;6374;;6346;6374::::1;::::0;;;;;;:25;;-1:-1:-1;;6374:25:13;;::::1;::::0;::::1;::::0;;;6409:50;:57;;;::::1;::::0;::::1;::::0;;6477:58;:65;;;::::1;::::0;::::1;::::0;;6552:58;:65;;;::::1;::::0;::::1;::::0;;6416:42:::1;6627:58:::0;;;:65;;;;::::1;::::0;;::::1;::::0;;;6751:12:::1;:56:::0;;6810:12:::1;6751:56:::0;:71;;;6832:14:::1;:30:::0;;6810:12;;6832:14;;:30:::1;::::0;6810:12;;6832:30:::1;:::i;:::-;::::0;;;-1:-1:-1;;6887:12:13::1;6873:11;:26:::0;5064:101:0;;;;5098:23;;-1:-1:-1;;;;5098:23:0;;;5140:14;;-1:-1:-1;25792:50:16;;5140:14:0;;25780:2:16;25765:18;5140:14:0;;;;;;;5064:101;4092:1079;;;;;6252:654:13:o;8226:198::-;5976:10;5969:18;;;;:6;:18;;;;;;;;5961:45;;;;-1:-1:-1;;;5961:45:13;;;;;;;:::i;:::-;8305:51:::1;3159:42;8336:10;8348:7:::0;8305:30:::1;:51::i;:::-;8371:46;::::0;529:25:16;;;3159:42:13::1;::::0;8386:10:::1;::::0;8371:46:::1;::::0;517:2:16;502:18;8371:46:13::1;;;;;;;8226:198:::0;:::o;13736:1051::-;5976:10;5969:18;;;;:6;:18;;;;;;;;5961:45;;;;-1:-1:-1;;;5961:45:13;;;;;;;:::i;:::-;13913:14:::1;::::0;13862:24:::1;::::0;13913:18;13909:414:::1;;13986:23;14012:6;:26;14036:1;14019:14;;:18;;;;:::i;:::-;14012:26;;;;;;;;;;;13986:52;;14084:228;14127:18;14163:14;;14195:9;:28;;;14241:9;:24;;;14283:15;14084:25;:228::i;:::-;14065:247;;13933:390;13909:414;14400:249;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;::::0;;;14536:14:::1;::::0;14400:249;;;;;;;;;;;;;14623:15:::1;14400:249:::0;;;;;;14382:14:::1;::::0;;-1:-1:-1;14375:22:13;;;:6:::1;:22:::0;;;;;:274;;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;;14684:14;14673:81;;15951:25:16;;;15992:18;;;15985:34;;;16035:18;;;16028:34;;;14673:81:13::1;::::0;15924:18:16;14673:81:13::1;;;;;;;14764:14;:16:::0;;;:14:::1;:16;::::0;::::1;:::i;:::-;;;;;;13852:935;13736:1051:::0;;;:::o;8069:147::-;5976:10;5969:18;;;;:6;:18;;;;;;;;5961:45;;;;-1:-1:-1;;;5961:45:13;;;;;;;:::i;:::-;8139:70:::1;3159:42;8174:10;8194:4;8201:7:::0;8139:34:::1;:70::i;31660:256::-:0;6086:10;6071:26;;;;:14;:26;;;;;;;;6063:53;;;;-1:-1:-1;;;6063:53:13;;;;;;;:::i;:::-;31810:99:::1;31824:4;31830:6;31838:5;31845:11;31858:5;31865:9;31876:15;31893;31810:13;:99::i;:::-;31660:256:::0;;;;;;:::o;25366:1493::-;25473:10;25427:32;25462:22;;;:10;:22;;;;;;;;:31;;;;;;;;25511:20;;25503:54;;;;-1:-1:-1;;;25503:54:13;;;;;;;:::i;:::-;25575:21;;;;-1:-1:-1;;;;;25575:21:13;25600:10;25575:35;25567:62;;;;-1:-1:-1;;;25567:62:13;;26401:2:16;25567:62:13;;;26383:21:16;26440:2;26420:18;;;26413:30;-1:-1:-1;;;26459:18:16;;;26452:44;26513:18;;25567:62:13;26199:338:16;25567:62:13;25664:20;;25764:15;;25648:13;;25783:5;;25756:23;;25664:20;25756:23;:::i;:::-;25755:33;;;;:::i;:::-;25741:47;-1:-1:-1;25798:21:13;25822:11;25741:47;25822:5;:11;:::i;:::-;25920:10;25907:24;;;;:12;:24;;;;;:41;;25798:35;;-1:-1:-1;25798:35:13;;25907:24;;;:41;;25798:35;;25907:41;:::i;:::-;;;;;;;;25976:13;25958:14;;:31;;;;;;;:::i;:::-;;;;-1:-1:-1;;26118:7:13;;26114:88;;26146:45;;;4284:25:16;;;4340:2;4325:18;;4318:34;;;26166:10:13;;26146:45;;4257:18:16;26146:45:13;;;;;;;26114:88;26272:10;26261:22;;;;:10;:22;;;;;;;;:31;;;;;;;;26254:38;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26254:38:13;;;;;;;;;;26385:29;;;:17;:29;;;;;:38;;;;;;;;;26453:13;:20;26385:38;;26453:24;;;:::i;:::-;26433:44;;26500:9;26491:5;:18;26487:219;;26525:27;26555:13;26569:9;26555:24;;;;;;;;:::i;:::-;;;;;;;;;;26525:54;;;;;;;;;26555:24;;;;;26525:54;;-1:-1:-1;;;;;26525:54:13;;;;;;;;;;;;;26593:13;:20;;26525:54;;-1:-1:-1;26525:54:13;;26607:5;;26593:20;;;;;;:::i;:::-;;;;;;;;;:30;;:20;;;;;;:30;;-1:-1:-1;;;;;;26593:30:13;-1:-1:-1;;;;;26593:30:13;;;;;;;;;;-1:-1:-1;26593:30:13;;;;;;;26655:14;;26637:33;;;:17;:33;;;;;;26671:15;;;;26637:50;;;;;;;:58;;;26487:219;26715:13;:19;;;;;;;:::i;:::-;;;;;;;;;;-1:-1:-1;;26715:19:13;;;;;;;;;;-1:-1:-1;;;;;;26715:19:13;;;-1:-1:-1;26715:19:13;;;;;;;;26769:10;26751:29;;;:17;:29;;;;;;:38;;;;;;;;26744:45;;;;26813:39;;529:25:16;;;26813:39:13;;502:18:16;26813:39:13;;;;;;;25417:1442;;;;;;25366:1493;:::o;22080:464::-;22154:14;22199:5;22188:7;:16;;22180:42;;;;-1:-1:-1;;;22180:42:13;;26876:2:16;22180:42:13;;;26858:21:16;26915:2;26895:18;;;26888:30;-1:-1:-1;;;26934:18:16;;;26927:43;26987:18;;22180:42:13;26674:337:16;22180:42:13;22248:14;;22240:5;:22;22232:54;;;;-1:-1:-1;;;22232:54:13;;27218:2:16;22232:54:13;;;27200:21:16;27257:2;27237:18;;;27230:30;-1:-1:-1;;;27276:18:16;;;27269:49;27335:18;;22232:54:13;27016:343:16;22232:54:13;22305:14;22322:15;22330:7;22322:5;:15;:::i;:::-;:19;;22340:1;22322:19;:::i;:::-;22305:36;;22351:21;22387:6;-1:-1:-1;;;;;22375:19:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22375:19:13;;;;;;;;;;;;;;;;;22351:43;;22418:9;22413:93;22437:6;22433:1;:10;22413:93;;;22476:6;:19;22483:11;22493:1;22483:7;:11;:::i;:::-;22476:19;;;;;;;;;;;22464:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:6;22471:1;22464:9;;;;;;;;:::i;:::-;;;;;;:31;;;;22445:3;;;;;:::i;:::-;;;;22413:93;;;-1:-1:-1;22531:6:13;22080:464;-1:-1:-1;;;;22080:464:13:o;18344:941::-;3395:21:1;:19;:21::i;:::-;18432:1:13::1;18423:6;:10;18415:37;;;;-1:-1:-1::0;;;18415:37:13::1;;;;;;;:::i;:::-;18493:1;18470:20;;:24;18462:57;;;::::0;-1:-1:-1;;;18462:57:13;;27566:2:16;18462:57:13::1;::::0;::::1;27548:21:16::0;27605:2;27585:18;;;27578:30;-1:-1:-1;;;27624:18:16;;;27617:50;27684:18;;18462:57:13::1;27364:344:16::0;18462:57:13::1;18586:16;18605:23;18617:10;18605:11;:23::i;:::-;18586:42;;18656:8;18646:6;:18;;18638:53;;;::::0;-1:-1:-1;;;18638:53:13;;25148:2:16;18638:53:13::1;::::0;::::1;25130:21:16::0;25187:2;25167:18;;;25160:30;-1:-1:-1;;;25206:18:16;;;25199:52;25268:18;;18638:53:13::1;24946:346:16::0;18638:53:13::1;18710:20;18767:5;18743:20;;18734:6;:29;;;;:::i;:::-;18733:39;;;;:::i;:::-;18851:10;18838:24;::::0;;;:12:::1;:24;::::0;;;;:34;;18710:62;;-1:-1:-1;18866:6:13;;18838:24;;;:34:::1;::::0;18866:6;;18838:34:::1;:::i;:::-;;;;;;;;18900:6;18882:14;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;19006:14:13::1;:16:::0;;;:14:::1;:16;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;19047:10:13::1;19032:26;::::0;;;:14:::1;:26;::::0;;;;;;;;19064:151;;::::1;::::0;::::1;::::0;;19101:14:::1;::::0;19064:151;;;;::::1;::::0;;;19193:11:::1;::::0;19032:26;;19064:151;;;19175:29:::1;::::0;:15:::1;:29;:::i;:::-;19064:151:::0;;19032:184;;::::1;::::0;;::::1;::::0;;-1:-1:-1;19032:184:13;;;::::1;::::0;;;;;;::::1;::::0;;::::1;;::::0;;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;19240:38;529:25:16;;;19253:10:13::1;::::0;19240:38:::1;::::0;502:18:16;19240:38:13::1;;;;;;;18405:880;;3437:20:1::0;1949:1;-1:-1:-1;;;;;;;;;;;4113:23:1;3860:283;4711:46:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4711:46:13;;;;-1:-1:-1;;;;;4711:46:13;;;;;;:::o;47874:147::-;47952:16;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47952:16:13;-1:-1:-1;;;;;;47987:18:13;;;;;;;:10;:18;;;;;;;;:27;;;;;;;;;;47980:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47874:147::o;12056:199::-;5976:10;5969:18;;;;:6;:18;;;;;;;;5961:45;;;;-1:-1:-1;;;5961:45:13;;;;;;;:::i;:::-;12165:5:::1;12150:11;:20;;12142:62;;;::::0;-1:-1:-1;;;12142:62:13;;27915:2:16;12142:62:13::1;::::0;::::1;27897:21:16::0;27954:2;27934:18;;;27927:30;27993:31;27973:18;;;27966:59;28042:18;;12142:62:13::1;27713:353:16::0;12142:62:13::1;12214:20;:34:::0;12056:199::o;40046:1732::-;3395:21:1;:19;:21::i;:::-;40156:10:13::1;40147:20;::::0;;;:8:::1;:20;::::0;;;;:27;40131:43;::::1;40123:77;;;::::0;-1:-1:-1;;;40123:77:13;;28273:2:16;40123:77:13::1;::::0;::::1;28255:21:16::0;28312:2;28292:18;;;28285:30;-1:-1:-1;;;28331:18:16;;;28324:51;28392:18;;40123:77:13::1;28071:345:16::0;40123:77:13::1;40254:10;40219:23;40245:20:::0;;;:8:::1;:20;::::0;;;;:35;;40266:13;;40245:35;::::1;;;;;:::i;:::-;;;;;;;;;;;40219:61;;40299:7;:16;;;;;;;;;;;;40298:17;40290:46;;;::::0;-1:-1:-1;;;40290:46:13;;28623:2:16;40290:46:13::1;::::0;::::1;28605:21:16::0;28662:2;28642:18;;;28635:30;-1:-1:-1;;;28681:18:16;;;28674:46;28737:18;;40290:46:13::1;28421:340:16::0;40290:46:13::1;40355:16;40374:45;40393:10;40405:13;40374:18;:45::i;:::-;40355:64;;40449:7;:21;;;40437:8;:33;;40429:66;;;::::0;-1:-1:-1;;;40429:66:13;;28968:2:16;40429:66:13::1;::::0;::::1;28950:21:16::0;29007:2;28987:18;;;28980:30;-1:-1:-1;;;29026:18:16;;;29019:50;29086:18;;40429:66:13::1;28766:344:16::0;40429:66:13::1;40514:21;40549:7;:21;;;40538:8;:32;;;;:::i;:::-;40514:56;;40604:1;40588:13;:17;40580:46;;;;-1:-1:-1::0;;;40580:46:13::1;;;;;;;:::i;:::-;40662:13;40637:7;:21;;;:38;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;40714:14:13;;40689:21:::1;::::0;::::1;::::0;:39:::1;40685:93;;40744:16;::::0;::::1;:23:::0;;-1:-1:-1;;;;40744:23:13::1;-1:-1:-1::0;;;40744:23:13::1;::::0;;40685:93:::1;40853:10;40867:1;40839:25:::0;;;:13:::1;:25;::::0;;;;;:29;40835:369:::1;;40930:13;::::0;::::1;::::0;-1:-1:-1;;;;;40930:13:13;;::::1;40884:16;40917:27:::0;;;:12:::1;:27;::::0;;;;;;40904:71;;-1:-1:-1;;;40904:71:13;;::::1;::::0;::::1;820:51:16::0;;;;40884:16:13;;40995:4:::1;::::0;40978:13;;40917:27;;::::1;::::0;40904:56:::1;::::0;793:18:16;;40904:71:13::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:87;;;;:::i;:::-;40903:96;;;;:::i;:::-;41043:10;41029:25;::::0;;;:13:::1;:25;::::0;;;;;40884:115;;-1:-1:-1;41017:37:13;::::1;41013:181;;41088:10;41102:1;41074:25:::0;;;:13:::1;:25;::::0;;;;:29;41013:181:::1;;;41156:10;41142:25;::::0;;;:13:::1;:25;::::0;;;;:37;;41171:8;;41142:25;:37:::1;::::0;41171:8;;41142:37:::1;:::i;:::-;::::0;;;-1:-1:-1;;41013:181:13::1;40870:334;40835:369;41213:11;41225:13:::0;;::::1;::::0;-1:-1:-1;;;;;41225:13:13::1;41213:26;::::0;;;::::1;::::0;;;;;;;:43;;41243:13;;41213:26;:43:::1;::::0;41243:13;;41213:43:::1;:::i;:::-;::::0;;;-1:-1:-1;;41345:10:13::1;41323:33;::::0;;;:21:::1;:33;::::0;;;;;41362:206;;::::1;::::0;::::1;::::0;;;41403:28:::1;:30:::0;;41323:33;;41362:206;;41403:30;:28;:30:::1;::::0;::::1;:::i;:::-;;;;;41362:206;;;;41455:13;41362:206;;;;41512:11;;41494:15;:29;;;;:::i;:::-;41362:206:::0;;41544:13:::1;::::0;::::1;::::0;;-1:-1:-1;;;;;41544:13:13;;::::1;41362:206;::::0;;::::1;::::0;41323:246;;41544:13;41323:246;;::::1;::::0;;-1:-1:-1;41323:246:13;;;;;;;;::::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;;;;;;41323:246:13::1;::::0;;::::1;::::0;;;::::1;::::0;;41680:13;;::::1;41653:41:::0;;:26:::1;:41:::0;;;;:58;;41698:13;;-1:-1:-1;41653:58:13::1;::::0;41698:13;;41653:58:::1;:::i;:::-;::::0;;;-1:-1:-1;;41727:44:13::1;::::0;;4284:25:16;;;41769:1:13::1;4340:2:16::0;4325:18;;4318:34;41742:10:13::1;::::0;41727:44:::1;::::0;4257:18:16;41727:44:13::1;;;;;;;;40113:1665;;;3437:20:1::0;1949:1;-1:-1:-1;;;;;;;;;;;4113:23:1;3860:283;21419:383:13;21499:20;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;21499:20:13;-1:-1:-1;;;;;21568:20:13;;21531:34;21568:20;;;:14;:20;;;;;;21598:163;21622:17;;21618:21;;21598:163;;;21689:7;21664:10;21675:1;21664:13;;;;;;;;:::i;:::-;;;;;;;;;;;:21;;;:32;21660:91;;21723:10;21734:1;21723:13;;;;;;;;:::i;:::-;;;;;;;;;;;21716:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21660:91;21641:3;;;;:::i;:::-;;;;21598:163;;8852:1178;5976:10;5969:18;;;;:6;:18;;;;;;;;5961:45;;;;-1:-1:-1;;;5961:45:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;8991:20:13;::::1;8983:54;;;::::0;-1:-1:-1;;;8983:54:13;;29317:2:16;8983:54:13::1;::::0;::::1;29299:21:16::0;29356:2;29336:18;;;29329:30;-1:-1:-1;;;29375:18:16;;;29368:51;29436:18;;8983:54:13::1;29115:345:16::0;8983:54:13::1;9076:1;9055:18;:22;:53;;;;;9103:5;9081:18;:27;;9055:53;9047:84;;;::::0;-1:-1:-1;;;9047:84:13;;29667:2:16;9047:84:13::1;::::0;::::1;29649:21:16::0;29706:2;29686:18;;;29679:30;-1:-1:-1;;;29725:18:16;;;29718:48;29783:18;;9047:84:13::1;29465:342:16::0;9047:84:13::1;-1:-1:-1::0;;;;;9192:23:13;::::1;;::::0;;;:15:::1;:23;::::0;;;;9185:30:::1;::::0;::::1;:::i;:::-;9234:23;9292:9:::0;9371:604:::1;9396:5;9378:15;:23;9371:604;;;9442:18:::0;9580:5:::1;9545:32;9442:18:::0;9545:15;:32:::1;:::i;:::-;:40;9541:119;;;9622:23;9630:15:::0;9622:5:::1;:23;:::i;:::-;9605:40;;9541:119;-1:-1:-1::0;;;;;9686:23:13;::::1;;::::0;;;:15:::1;:23;::::0;;;;;;;9715:110;;;;::::1;::::0;;;;;;;;::::1;::::0;;;9686:140;;::::1;::::0;;::::1;::::0;;;;;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;::::1;::::0;9853:33:::1;9796:14:::0;9853:33;::::1;:::i;:::-;::::0;-1:-1:-1;9900:23:13::1;9914:9:::0;9900:23;::::1;:::i;:::-;;;9403:572;9371:604;;;9998:25;::::0;-1:-1:-1;;;;;9998:25:13;::::1;::::0;::::1;::::0;;;::::1;8973:1057;;8852:1178:::0;;;:::o;21852:173::-;21910:12;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21910:12:13;21952:14;;21942:7;:24;21934:52;;;;-1:-1:-1;;;21934:52:13;;30014:2:16;21934:52:13;;;29996:21:16;30053:2;30033:18;;;30026:30;-1:-1:-1;;;30072:18:16;;;30065:45;30127:18;;21934:52:13;29812:339:16;21934:52:13;-1:-1:-1;22003:15:13;;;;:6;:15;;;;;;;;;21996:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21852:173::o;2613:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2613:45:13;;-1:-1:-1;2613:45:13;;;;;;;-1:-1:-1;;;;;2613:45:13;;;-1:-1:-1;;;2613:45:13;;;;;;;:::o;35518:878::-;-1:-1:-1;;;;;35677:15:13;;35651:23;35677:15;;;:8;:15;;;;;:30;;35605:16;;;;35651:23;;35693:13;;35677:30;;;;;;:::i;:::-;;;;;;;;;35733:13;35677:30;;;;;35733:13;;;;-1:-1:-1;;;;;35733:13:13;35782:22;;;:15;:22;;;;;;:29;35677:30;;-1:-1:-1;35733:13:13;35782:29;-1:-1:-1;;;;;35857:29:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35857:29:13;;35821:65;;35896:34;35947:14;-1:-1:-1;;;;;35933:29:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35933:29:13;;35896:66;;35978:9;35973:362;35997:14;35993:1;:18;35973:362;;;-1:-1:-1;;;;;36058:22:13;;36032:23;36058:22;;;:15;:22;;;;;:25;;36081:1;;36058:25;;;;;;:::i;:::-;;;;;;;;;;;36032:51;;36195:4;:15;;;36175:7;:17;;;:35;;;;:::i;:::-;36153:16;36170:1;36153:19;;;;;;;;:::i;:::-;;;;;;:57;;;;;36247:4;:15;;;36224:17;36242:1;36224:20;;;;;;;;:::i;:::-;;;;;;;;;;:38;-1:-1:-1;36013:3:13;;;:::i;:::-;;;35973:362;;;-1:-1:-1;36353:16:13;;-1:-1:-1;36371:17:13;-1:-1:-1;;;;35518:878:13;;;;;;:::o;15795:538::-;15867:16;15936:22;15994:26;16077:17;16097:29;16121:4;16097:23;:29::i;:::-;-1:-1:-1;;;;;16157:18:13;;;;;;:12;:18;;;;;;16077:49;;-1:-1:-1;16157:30:13;;16077:49;;16157:30;:::i;:::-;-1:-1:-1;;;;;16273:18:13;;;;;;:12;:18;;;;;;16136:190;;-1:-1:-1;16215:9:13;;-1:-1:-1;16273:18:13;-1:-1:-1;15795:538:13;;;;;;:::o;7629:111::-;5976:10;5969:18;;;;:6;:18;;;;;;;;5961:45;;;;-1:-1:-1;;;5961:45:13;;;;;;;:::i;:::-;7707:14:::1;:26:::0;7629:111::o;21223:135::-;-1:-1:-1;;;;;21331:20:13;;;;;;:14;:20;;;;;;;;21324:27;;;;;;;;;;;;;;;;;21290:22;;21324:27;;21331:20;;21324:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3777:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3777:57:13;;-1:-1:-1;3777:57:13;:::o;7746:99::-;5976:10;5969:18;;;;:6;:18;;;;;;;;5961:45;;;;-1:-1:-1;;;5961:45:13;;;;;;;:::i;:::-;7818:11:::1;:20:::0;7746:99::o;48231:653::-;48390:18;:25;48330:27;;48377:38;;48369:76;;;;-1:-1:-1;;;48369:76:13;;30358:2:16;48369:76:13;;;30340:21:16;30397:2;30377:18;;;30370:30;30436:27;30416:18;;;30409:55;30481:18;;48369:76:13;30156:349:16;48369:76:13;48464:16;48483:19;48496:6;48483:10;:19;:::i;:::-;48527:18;:25;48464:38;;-1:-1:-1;48516:36:13;;48512:103;;;-1:-1:-1;48579:18:13;:25;48512:103;48633:34;48695:21;48706:10;48695:8;:21;:::i;:::-;-1:-1:-1;;;;;48670:47:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48670:47:13;;;;;;;;;;;;;;;;-1:-1:-1;48633:84:13;-1:-1:-1;48744:10:13;48727:119;48760:8;48756:1;:12;48727:119;;;48814:18;48833:1;48814:21;;;;;;;;:::i;:::-;;;;;;;;;;48789:46;;;;;;;;48814:21;;;;;;;48789:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48789:46:13;;;;;;;;;;;;;;;;;;;:6;48796:14;48800:10;48796:1;:14;:::i;:::-;48789:22;;;;;;;;:::i;:::-;;;;;;:46;;;;48770:3;;;;;:::i;:::-;;;;48727:119;;43910:913;3395:21:1;:19;:21::i;:::-;44018:10:13::1;44009:20;::::0;;;:8:::1;:20;::::0;;;;:27;43993:43;::::1;43985:77;;;::::0;-1:-1:-1;;;43985:77:13;;28273:2:16;43985:77:13::1;::::0;::::1;28255:21:16::0;28312:2;28292:18;;;28285:30;-1:-1:-1;;;28331:18:16;;;28324:51;28392:18;;43985:77:13::1;28071:345:16::0;43985:77:13::1;44116:10;44081:23;44107:20:::0;;;:8:::1;:20;::::0;;;;:35;;44128:13;;44107:35;::::1;;;;;:::i;:::-;;;;;;;;;;;44081:61;;44152:16;44171:50;44195:10;44207:13;44171:23;:50::i;:::-;44152:69;;44252:7;:20;;;44240:8;:32;;44232:65;;;::::0;-1:-1:-1;;;44232:65:13;;28968:2:16;44232:65:13::1;::::0;::::1;28950:21:16::0;29007:2;28987:18;;;28980:30;-1:-1:-1;;;29026:18:16;;;29019:50;29086:18;;44232:65:13::1;28766:344:16::0;44232:65:13::1;44307:20;44341:7;:20;;;44330:8;:31;;;;:::i;:::-;44307:54;;44394:1;44379:12;:16;44371:45;;;;-1:-1:-1::0;;;44371:45:13::1;;;;;;;:::i;:::-;44451:12;44427:7;:20;;;:36;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;44588:10:13::1;44573:26;::::0;;;:14:::1;:26;::::0;;;;;;44605:156;;::::1;::::0;::::1;::::0;;;44573:26;44605:156;44642:19:::1;:13:::0;44658:3:::1;44642:19;:::i;:::-;44605:156;;;;44683:12;44605:156;;;;44739:11;;44721:15;:29;;;;:::i;:::-;44605:156:::0;;44573:189;;::::1;::::0;;::::1;::::0;;-1:-1:-1;44573:189:13;;;::::1;::::0;;;;;;::::1;::::0;;::::1;;::::0;;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;44778:38;529:25:16;;;44791:10:13::1;::::0;44778:38:::1;::::0;502:18:16;44778:38:13::1;383:177:16::0;22614:1118:13;-1:-1:-1;;;;;22829:18:13;;22765:22;22829:18;;;:12;:18;;;;;;;;;22878:20;:26;;;;;;22935:14;;22696:25;;;;22765:22;;22829:18;;22765:22;;22935:27;;22878:26;;22935:27;:::i;:::-;22914:48;;22985:10;22999:1;22985:15;22981:92;;-1:-1:-1;;23024:16:13;;;23038:1;23024:16;;;;;;23042;;;;;;;;;23024;;-1:-1:-1;23024:16:13;;-1:-1:-1;23038:1:13;-1:-1:-1;23016:46:13;;-1:-1:-1;23016:46:13;22981:92;23116:10;-1:-1:-1;;;;;23102:25:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23102:25:13;;23091:36;;23161:10;-1:-1:-1;;;;;23147:25:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23147:25:13;;23137:35;;23196:9;23191:474;23215:10;23211:1;:14;23191:474;;;23246:15;23264:14;23277:1;23264:10;:14;:::i;:::-;23246:32;;23306:7;23292:8;23301:1;23292:11;;;;;;;;:::i;:::-;;;;;;;;;;:21;23344:18;;23340:315;;23382:16;23419:15;;;:6;:15;;;;;:32;;;23455:5;;23402:49;;:14;:49;:::i;:::-;23401:59;;;;:::i;:::-;23382:78;;23491:8;23478:7;23486:1;23478:10;;;;;;;;:::i;:::-;;;;;;;;;;:21;23517:26;23535:8;23517:26;;:::i;:::-;;-1:-1:-1;23561:26:13;23579:8;23561:26;;:::i;:::-;;;23364:238;23340:315;;;23639:1;23626:7;23634:1;23626:10;;;;;;;;:::i;:::-;;;;;;:14;;;;;23340:315;-1:-1:-1;23227:3:13;;;;:::i;:::-;;;;23191:474;;;;23683:42;;;22614:1118;;;;;:::o;27648:2512::-;3395:21:1;:19;:21::i;:::-;-1:-1:-1;;;;;27770:18:13;::::1;27735:32;27770:18:::0;;;:10:::1;:18;::::0;;;;;;;:27;;;;;;;;27815:20;;27807:54:::1;;;;-1:-1:-1::0;;;27807:54:13::1;;;;;;;:::i;:::-;27889:10;-1:-1:-1::0;;;;;27879:20:13;::::1;::::0;27871:55:::1;;;::::0;-1:-1:-1;;;27871:55:13;;30712:2:16;27871:55:13::1;::::0;::::1;30694:21:16::0;30751:2;30731:18;;;30724:30;-1:-1:-1;;;30770:18:16;;;30763:52;30832:18;;27871:55:13::1;30510:346:16::0;27871:55:13::1;27961:20:::0;;28011:24:::1;::::0;::::1;::::0;28064:23:::1;::::0;::::1;::::0;27945:13:::1;28205:17:::0;;::::1;:41;;28245:1;28205:41;;;28225:17;28233:9:::0;28225:5;:17:::1;:::i;:::-;28186:60:::0;-1:-1:-1;28256:23:13::1;28301:5:::0;28282:16:::1;28186:60:::0;28293:5:::1;28282:16;:::i;:::-;:24;;;;:::i;:::-;28256:50:::0;-1:-1:-1;28367:28:13::1;28436:5;28399:33;28256:50:::0;;28399:33:::1;:::i;:::-;28398:43;;;;:::i;:::-;28367:74:::0;-1:-1:-1;28485:21:13::1;28542:5;28510:28;28367:74:::0;28510:5;:28:::1;:::i;:::-;28509:38;;;;:::i;:::-;28485:62:::0;-1:-1:-1;28598:18:13::1;28619:21;28485:62:::0;28619:5;:21:::1;:::i;:::-;28598:42:::0;-1:-1:-1;28767:65:13::1;3159:42;28802:10;28814:6:::0;28822:9;28767:34:::1;:65::i;:::-;28936:10;28923:24;::::0;;;:12:::1;:24;::::0;;;;:38;;28951:10;;28923:24;:38:::1;::::0;28951:10;;28923:38:::1;:::i;:::-;;;;;;;;28989:10;28971:14;;:28;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;29154:25:13;::::1;;::::0;;;:17:::1;:25;::::0;;;;:38;;29183:9;;29154:25;:38:::1;::::0;29183:9;;29154:38:::1;:::i;:::-;;;;;;;;29255:18;29279:224;;;;;;;;29322:8;29279:224;;;;29354:15;29279:224;;;;29394:5;29279:224;;;;29424:9;29279:224;;;;29455:6;-1:-1:-1::0;;;;;29279:224:13::1;;;;;29482:10;-1:-1:-1::0;;;;;29279:224:13::1;;;::::0;29255:249:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;29255:249:13::1;;;;;-1:-1:-1::0;;;;;29255:249:13::1;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;29255:249:13::1;;;;;-1:-1:-1::0;;;;;29255:249:13::1;;;;;;;;29564:10;:18;29575:6;-1:-1:-1::0;;;;;29564:18:13::1;-1:-1:-1::0;;;;;29564:18:13::1;;;;;;;;;;;;:27;29583:7;29564:27;;;;;;;;;;;;29557:34:::0;::::1;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;29557:34:13::1;;;;;;;;;;;;;29668:13;29684:17;:25;29702:6;-1:-1:-1::0;;;;;29684:25:13::1;-1:-1:-1::0;;;;;29684:25:13::1;;;;;;;;;;;;:34;29710:7;29684:34;;;;;;;;;;;;29668:50;;29728:17;29771:1;29748:13;:20;;;;:24;;;;:::i;:::-;29728:44;;29795:9;29786:5;:18;29782:219;;29820:27;29850:13;29864:9;29850:24;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;29820:54:::1;::::0;;;;::::1;::::0;;;29850:24:::1;::::0;;::::1;;29820:54:::0;;-1:-1:-1;;;;;29820:54:13::1;::::0;;;::::1;::::0;;;::::1;::::0;;;;29888:13:::1;:20:::0;;29820:54;;-1:-1:-1;29820:54:13;;29902:5;;29888:20;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;:30;;:20:::1;::::0;;;::::1;;:30:::0;;-1:-1:-1;;;;;;29888:30:13::1;-1:-1:-1::0;;;;;29888:30:13;;::::1;;::::0;;;;::::1;::::0;-1:-1:-1;29888:30:13;;::::1;::::0;;;;29950:14;;29932:33:::1;::::0;;:17:::1;:33:::0;;;;;;29966:15;;::::1;::::0;29932:50;;;;;;;:58;;;29782:219:::1;30010:13;:19;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;-1:-1:-1::0;;;;;30010:19:13::1;;;;;;;;;;;;;;;30046:17;:25;30064:6;-1:-1:-1::0;;;;;30046:25:13::1;-1:-1:-1::0;;;;;30046:25:13::1;;;;;;;;;;;;:34;30072:7;30046:34;;;;;;;;;;;30039:41;;;30122:10;-1:-1:-1::0;;;;;30104:49:13::1;30114:6;-1:-1:-1::0;;;;;30104:49:13::1;;30134:9;30145:7;30104:49;;;;;;4284:25:16::0;;;4340:2;4325:18;;4318:34;4272:2;4257:18;;4110:248;30104:49:13::1;;;;;;;;27725:2435;;;;;;;;;;;3437:20:1::0;1949:1;-1:-1:-1;;;;;;;;;;;4113:23:1;3860:283;19612:432:13;6086:10;6071:26;;;;:14;:26;;;;;;;;6063:53;;;;-1:-1:-1;;;6063:53:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;19702:18:13;::::1;19694:46;;;;-1:-1:-1::0;;;19694:46:13::1;;;;;;;:::i;:::-;19767:1;19758:6;:10;19750:37;;;;-1:-1:-1::0;;;19750:37:13::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;19882:18:13;::::1;;::::0;;;:12:::1;:18;::::0;;;;;19865:14:::1;::::0;19903:6;;19865:35:::1;::::0;::::1;:::i;:::-;:44;;;;:::i;:::-;19848:14;:61:::0;-1:-1:-1;;;;;19960:18:13;::::1;;::::0;;;:12:::1;:18;::::0;;;;;;:27;;;20011:26;::::1;::::0;::::1;::::0;19981:6;529:25:16;;517:2;502:18;;383:177;20011:26:13::1;;;;;;;;19612:432:::0;;:::o;27013:480::-;27142:10;27096:32;27131:22;;;:10;:22;;;;;;;;:31;;;;;;;;27180:20;;27172:54;;;;-1:-1:-1;;;27172:54:13;;;;;;;:::i;:::-;27244:21;;;;-1:-1:-1;;;;;27244:21:13;27269:10;27244:35;27236:62;;;;-1:-1:-1;;;27236:62:13;;26401:2:16;27236:62:13;;;26383:21:16;26440:2;26420:18;;;26413:30;-1:-1:-1;;;26459:18:16;;;26452:44;26513:18;;27236:62:13;26199:338:16;27236:62:13;27331:1;27316:12;:16;27308:47;;;;-1:-1:-1;;;27308:47:13;;24453:2:16;27308:47:13;;;24435:21:16;24492:2;24472:18;;;24465:30;-1:-1:-1;;;24511:18:16;;;24504:48;24569:18;;27308:47:13;24251:342:16;27308:47:13;27374:24;;;:39;;;27437:49;;;4284:25:16;;;4340:2;4325:18;;4318:34;;;27452:10:13;;27437:49;;4257:18:16;27437:49:13;;;;;;;27086:407;27013:480;;:::o;45556:1206::-;3395:21:1;:19;:21::i;:::-;45701:10:13::1;45638:38;45679:33:::0;;;:21:::1;:33;::::0;;;;45730:19;;45722:57:::1;;;::::0;-1:-1:-1;;;45722:57:13;;31063:2:16;45722:57:13::1;::::0;::::1;31045:21:16::0;31102:2;31082:18;;;31075:30;-1:-1:-1;;;31121:18:16;;;31114:51;31182:18;;45722:57:13::1;30861:345:16::0;45722:57:13::1;45803:9;45798:912;45822:19:::0;;45818:23;::::1;45798:912;;;45862:39;45904:12;45917:1;45904:15;;;;;;;;:::i;:::-;;;;;;;;;;;45862:57;;45966:10;45937:15;:25;;;:39;:69;;;;;46005:1;45980:15;:22;;;:26;45937:69;45933:767;;;46053:15;:26;;;46034:15;:45;;46026:72;;;::::0;-1:-1:-1;;;46026:72:13;;31413:2:16;46026:72:13::1;::::0;::::1;31395:21:16::0;31452:2;31432:18;;;31425:30;-1:-1:-1;;;31471:18:16;;;31464:44;31525:18;;46026:72:13::1;31211:338:16::0;46026:72:13::1;46150:22;::::0;::::1;::::0;;46206:21:::1;::::0;::::1;::::0;46133:14:::1;46299:26:::0;;;;-1:-1:-1;;;;;46206:21:13::1;46433:33:::0;;;:26:::1;:33;::::0;;;;:43;;46150:22;;46206:21;;46150:22;;46133:14;46433:43:::1;::::0;46150:22;;46433:43:::1;:::i;:::-;::::0;;;-1:-1:-1;46546:46:13::1;::::0;-1:-1:-1;;;;;;46546:26:13;::::1;46573:10;46585:6:::0;46546:26:::1;:46::i;:::-;46615;::::0;;4284:25:16;;;4340:2;4325:18;;4318:34;;;46630:10:13::1;::::0;46615:46:::1;::::0;4257:18:16;46615:46:13::1;;;;;;;46679:7;;;;;;;45933:767;-1:-1:-1::0;45843:3:13;::::1;::::0;::::1;:::i;:::-;;;;45798:912;;;-1:-1:-1::0;46728:27:13::1;::::0;-1:-1:-1;;;46728:27:13;;31756:2:16;46728:27:13::1;::::0;::::1;31738:21:16::0;31795:2;31775:18;;;31768:30;-1:-1:-1;;;31814:18:16;;;31807:47;31871:18;;46728:27:13::1;31554:341:16::0;7454:146:13;5976:10;5969:18;;;;:6;:18;;;;;;;;5961:45;;;;-1:-1:-1;;;5961:45:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;7520:17:13;::::1;7512:45;;;;-1:-1:-1::0;;;7512:45:13::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;7567:19:13::1;;::::0;;;:14:::1;:19;::::0;;;;:26;;-1:-1:-1;;7567:26:13::1;7589:4;7567:26;::::0;;7454:146::o;3470:384:1:-;-1:-1:-1;;;;;;;;;;;3670:9:1;;-1:-1:-1;;3670:20:1;3666:88;;3713:30;;-1:-1:-1;;;3713:30:1;;;;;;;;;;;3666:88;1991:1;3828:19;;3470:384::o;3860:283::-;1949:1;-1:-1:-1;;;;;;;;;;;4113:23:1;3860:283::o;1219:160:10:-;1328:43;;-1:-1:-1;;;;;4023:32:16;;;1328:43:10;;;4005:51:16;4072:18;;;4065:34;;;1301:71:10;;1321:5;;1343:14;;;;;3978:18:16;;1328:43:10;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1328:43:10;;;;;;;;;;;1301:19;:71::i;:::-;1219:160;;;:::o;9071:205:0:-;9129:30;;3147:66;9186:27;8819:122;2684:111:1;6929:20:0;:18;:20::i;:::-;2754:34:1::1;:32;:34::i;12513:913:13:-:0;12729:7;12761:18;;;:43;;-1:-1:-1;12783:21:13;;12761:43;12757:98;;;-1:-1:-1;12827:1:13;12820:8;;12757:98;12933:20;12979:16;12957:18;:10;12970:5;12957:18;:::i;:::-;12956:39;;;;:::i;:::-;12933:62;-1:-1:-1;13005:17:13;13045:13;13026:15;:7;13036:5;13026:15;:::i;:::-;13025:33;;;;:::i;:::-;13005:53;;13097:9;13081:12;:25;13077:101;;13129:1;13122:8;;;;;;13077:101;13246:24;13273;13288:9;13273:12;:24;:::i;:::-;13246:51;-1:-1:-1;13307:24:13;13372:5;13335:33;13354:14;13246:51;13335:33;:::i;:::-;13334:43;;;;:::i;:::-;13307:70;-1:-1:-1;;;;;12513:913:13;;;;;;;;:::o;1618:188:10:-;1745:53;;-1:-1:-1;;;;;32158:15:16;;;1745:53:10;;;32140:34:16;32210:15;;;32190:18;;;32183:43;32242:18;;;32235:34;;;1718:81:10;;1738:5;;1760:18;;;;;32075::16;;1745:53:10;31900:375:16;1718:81:10;1618:188;;;;:::o;8370:720::-;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:10;8910:8;8866:16;;-1:-1:-1;8942:15:10;;:68;;8994:11;9009:1;8994:16;;8942:68;;;-1:-1:-1;;;;;8960:26:10;;;:31;8942:68;8938:146;;;9033:40;;-1:-1:-1;;;9033:40:10;;-1:-1:-1;;;;;838:32:16;;9033:40:10;;;820:51:16;793:18;;9033:40:10;674:203:16;7082:141:0;7149:17;:15;:17::i;:::-;7144:73;;7189:17;;-1:-1:-1;;;7189:17:0;;;;;;;;;;;2801:183:1;6929:20:0;:18;:20::i;8485:120::-;8535:4;8558:26;:24;:26::i;:::-;:40;-1:-1:-1;;;8558:40:0;;;;;;-1:-1:-1;8485:120:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:173:16:-;82:20;;-1:-1:-1;;;;;131:31:16;;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:16: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:16: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:16;;1429:180;-1:-1:-1;1429:180:16: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:16;;-1:-1:-1;;;;;1814:30:16;;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:16;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:16;-1:-1:-1;;;;1986:437:16: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:16;;2428:435;-1:-1:-1;;;;;2428:435:16: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:16;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:16;-1:-1:-1;4920:2:16;4905:18;;4892:32;;-1:-1:-1;4936:16:16;;;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:16;-1:-1:-1;;;;4363:773:16: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:16;;;5379:2;5364:18;;;5351:32;;-1:-1:-1;5141:248:16: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:16;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:16;;;;-1:-1:-1;6924:1:16;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:16;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:16;;5687:1485;-1:-1:-1;;;;;;;;;5687:1485:16: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:16;;;;7904:49;8000:3;7985:19;;7972:33;;-1:-1:-1;8052:3:16;8037:19;;8024:33;;8104:3;8089:19;8076:33;;-1:-1:-1;7442:673:16;-1:-1:-1;;7442:673:16: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:16;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:16;;8120:1527;-1:-1:-1;;;;;;;8120:1527:16: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:16;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:16;;;10877:2;10862:18;;10849:32;;-1:-1:-1;10928:2:16;10913:18;;;10900:32;;10622:316;-1:-1:-1;10622:316:16: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:16;;11802:697;-1:-1:-1;;;;;;11802:697:16: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:16;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:322;13919:6;13927;13935;13988:2;13976:9;13967:7;13963:23;13959:32;13956:52;;;14004:1;14001;13994:12;13956:52;14027:29;14046:9;14027:29;:::i;:::-;14017:39;14103:2;14088:18;;14075:32;;-1:-1:-1;14154:2:16;14139:18;;;14126:32;;13842:322;-1:-1:-1;;;13842:322:16:o;14169:241::-;14349:3;14334:19;;14362:42;14338:9;14386: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;15279:465;15536:2;15525:9;15518:21;15499:4;15562:56;15614:2;15603:9;15599:18;15591:6;15562:56;:::i;:::-;15666:9;15658:6;15654:22;15649:2;15638:9;15634:18;15627:50;15694:44;15731:6;15723;15694:44;:::i;16541:721::-;16774:2;16826:21;;;16896:13;;16799:18;;;16918:22;;;16745:4;;16774:2;16997:15;;;;16971:2;16956:18;;;16745:4;17040:196;17054:6;17051:1;17048:13;17040:196;;;17103:51;17150:3;17141:6;17135: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;17103:51;17211:15;;;;17183:4;17174:14;;;;;17076:1;17069:9;17040:196;;17267:1210;17510:2;17562:21;;;17632:13;;17535:18;;;17654:22;;;17481:4;;17510:2;17695;;17713:18;;;;17754:15;;;17481:4;17797:654;17811:6;17808:1;17805:13;17797:654;;;17870:13;;17908:9;;17896:22;;17958:11;;;17952:18;17938:12;;;17931:40;18011:11;;;18005:18;17991:12;;;17984:40;18047:4;18091:11;;;18085:18;18071:12;;;18064:40;18127:4;18170:11;;;18164:18;-1:-1:-1;;;;;18258:21:16;;;18244:12;;;18237:43;;;;18213:3;18351:11;;;18345:18;18341:27;18327:12;;;18320:49;18398:4;18389:14;;;;18426:15;;;;18222:1;17826:9;17797:654;;18482:127;18543:10;18538:3;18534:20;18531:1;18524:31;18574:4;18571:1;18564:15;18598:4;18595:1;18588:15;18614:168;18687:9;;;18718;;18735:15;;;18729:22;;18715:37;18705:71;;18756:18;;:::i;18787:217::-;18827:1;18853;18843:132;;18897:10;18892:3;18888:20;18885:1;18878:31;18932:4;18929:1;18922:15;18960:4;18957:1;18950:15;18843:132;-1:-1:-1;18989:9:16;;18787:217::o;19009:125::-;19074:9;;;19095:10;;;19092:36;;;19108:18;;:::i;19139:128::-;19206:9;;;19227:11;;;19224:37;;;19241:18;;:::i;19272:135::-;19311:3;19332:17;;;19329:43;;19352:18;;:::i;:::-;-1:-1:-1;19399:1:16;19388:13;;19272:135::o;19412:127::-;19473:10;19468:3;19464:20;19461:1;19454:31;19504:4;19501:1;19494:15;19528:4;19525:1;19518:15;19544:340;19746:2;19728:21;;;19785:2;19765:18;;;19758:30;-1:-1:-1;;;19819:2:16;19804:18;;19797:46;19875:2;19860:18;;19544:340::o;19889:338::-;20091:2;20073:21;;;20130:2;20110:18;;;20103:30;-1:-1:-1;;;20164:2:16;20149:18;;20142:44;20218:2;20203:18;;19889:338::o;21949:127::-;22010:10;22005:3;22001:20;21998:1;21991:31;22041:4;22038:1;22031:15;22065:4;22062:1;22055:15;22081:184;22151:6;22204:2;22192:9;22183:7;22179:23;22175:32;22172:52;;;22220:1;22217;22210:12;22172:52;-1:-1:-1;22243:16:16;;22081:184;-1:-1:-1;22081:184:16:o;23222:339::-;23424:2;23406:21;;;23463:2;23443:18;;;23436:30;-1:-1:-1;;;23497:2:16;23482:18;;23475:45;23552:2;23537:18;;23222:339::o;23566:338::-;23768:2;23750:21;;;23807:2;23787:18;;;23780:30;-1:-1:-1;;;23841:2:16;23826:18;;23819:44;23895:2;23880:18;;23566:338::o;25853:341::-;26055:2;26037:21;;;26094:2;26074:18;;;26067:30;-1:-1:-1;;;26128:2:16;26113:18;;26106:47;26185:2;26170:18;;25853:341::o;26542:127::-;26603:10;26598:3;26594:20;26591:1;26584:31;26634:4;26631:1;26624:15;26658:4;26655:1;26648: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","claimAllVestingByToken(address)":"43c7c011","claimBonus(uint256)":"d9193025","claimUnlockedFunds()":"0c7d6386","claimVesting(uint256)":"ac97b417","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","depositRewards(uint256)":"8bdf67f2","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","initialize()":"8129fc1c","instantBuyout(uint256)":"9cb6f556","instantBuyoutPercent()":"0a910a6d","lockupDuration()":"1ada70a8","marketplaceHistory(uint256)":"9f3a676c","marketplaceMin()":"fe2f50d0","marketplace_sales(address)":"8f82818f","owner()":"8da5cb5b","owners(address)":"022914a7","priceOracles(address)":"01374518","removeOwner(address)":"173825d9","sellStake(uint256,uint256)":"58116227","sellStakeKeys(uint256)":"441a4175","sellStakes(address,uint256)":"43a32f89","setPriceOracle(address,address)":"67a74ddc","setUnlockScheduleByPercentage(address,uint256,uint256)":"b92a349f","testUpgradeFunction()":"c2676603","totalBigStakes()":"2ded58aa","unlockDelay()":"0519da32","unlockSchedules(address,uint256)":"51f6cf2f","updateCancellationFee(uint256)":"1aefa2d1","updateInstantBuyoutPercent(uint256)":"aaf4b04d","updateLockupDuration(uint256)":"c36d03fd","updateMarketplaceMin(uint256)":"51e62472","updateSellStake(uint256,uint256)":"f2bb5630","updateUnlockDelay(uint256)":"ce13d090","userBigStake(address)":"13baee5b","userLastClaimedEpoch(address)":"da1b4364","vestedTotal(address)":"092c7610","vestings(address,uint256)":"bd84477d","withdrawFromStakingPool(uint256)":"853e0df2","withdrawFromVestingPool(address,uint256)":"3f35e722","withdrawStake(uint256)":"25d5971f","withdrawStakes(address,uint256)":"cc573a91","withdrawVestingLiabilities(address)":"87b4b105","withdrawVestingToken(uint256)":"f7e4444c"}},"metadata":"{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"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\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"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\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"}],\"name\":\"claimAllVestingByToken\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_vestingIndex\",\"type\":\"uint256\"}],\"name\":\"claimBonus\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"claimUnlockedFunds\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_vestingIndex\",\"type\":\"uint256\"}],\"name\":\"claimVesting\",\"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\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"depositRewards\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"instantBuyout\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"instantBuyoutPercent\",\"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\":[],\"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\":[{\"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\":[{\"internalType\":\"address\",\"name\":\"_token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_lockTime\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_percentagePerStep\",\"type\":\"uint256\"}],\"name\":\"setUnlockScheduleByPercentage\",\"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\":\"_newPercent\",\"type\":\"uint256\"}],\"name\":\"updateInstantBuyoutPercent\",\"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\":\"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\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"withdrawFromStakingPool\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_vestingId\",\"type\":\"uint256\"}],\"name\":\"withdrawVestingToken\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"errors\":{\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"ReentrancyGuardReentrantCall()\":[{\"details\":\"Unauthorized reentrant call.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"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\"}},\"claimAllVestingByToken(address)\":{\"params\":{\"_token\":\"The token address to claim all vestings for\"}},\"claimBonus(uint256)\":{\"params\":{\"_vestingIndex\":\"The index of the vesting to claim bonus from\"}},\"claimVesting(uint256)\":{\"params\":{\"_vestingIndex\":\"The index of the vesting to claim from\"}},\"clearVesting(address)\":{\"details\":\"Only to be used by bots in emergencies\",\"params\":{\"user\":\"The user whose vestings will be ended and 0'd\"}},\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"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\"}},\"instantBuyout(uint256)\":{\"params\":{\"amount\":\"The amount of stake to buy out\"}},\"sellStake(uint256,uint256)\":{\"params\":{\"salePrice\":\"The price seller wants to receive\",\"value\":\"The payback value to sell (must be >= marketplaceMin)\"}},\"setUnlockScheduleByPercentage(address,uint256,uint256)\":{\"params\":{\"_lockTime\":\"The initial lock time in seconds\",\"_percentagePerStep\":\"The percentage to unlock at each step (scaled by 10000)\",\"_token\":\"The token address to set the schedule for\"}},\"testUpgradeFunction()\":{\"returns\":{\"_0\":\"Returns a constant value to verify upgrade worked\"}},\"updateCancellationFee(uint256)\":{\"params\":{\"_newFee\":\"The fee percentage (scaled by 10000), ex: 500 = 5%\"}},\"updateInstantBuyoutPercent(uint256)\":{\"params\":{\"_newPercent\":\"The buyout percentage (scaled by 10000), ex: 8000 = 80%\"}},\"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\"}},\"withdrawVestingToken(uint256)\":{\"params\":{\"_vestingId\":\"The vesting ID to withdraw\"}}},\"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)\"},\"claimAllVestingByToken(address)\":{\"notice\":\"Claim all unlocked vesting tokens for a specific token\"},\"claimBonus(uint256)\":{\"notice\":\"Claim unlocked bonus tokens from a specific vesting\"},\"claimUnlockedFunds()\":{\"notice\":\"Claim unlocked funds and create withdrawable stakes\"},\"claimVesting(uint256)\":{\"notice\":\"Claim unlocked vesting tokens for a specific vesting\"},\"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\"},\"instantBuyout(uint256)\":{\"notice\":\"Instantly buy out a portion of user's stake at configured percentage\"},\"sellStake(uint256,uint256)\":{\"notice\":\"List payback value for sale on marketplace\"},\"setUnlockScheduleByPercentage(address,uint256,uint256)\":{\"notice\":\"Set unlock schedule for a token using percentage-based steps\"},\"testUpgradeFunction()\":{\"notice\":\"Test function for upgrade verification\"},\"updateCancellationFee(uint256)\":{\"notice\":\"Update cancellation fee percentage\"},\"updateInstantBuyoutPercent(uint256)\":{\"notice\":\"Update instant buyout 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\"},\"withdrawVestingToken(uint256)\":{\"notice\":\"Withdraws vesting tokens after cooldown period\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/CunaFinanceBsc.sol\":\"CunaFinanceBsc\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.sol\":{\"keccak256\":\"0x361126a17677994081cd9cb69c3f50cffff6e920d25cb7e428acdb1ae41d1866\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://19ae787a7dd001269cd60a394b1a5261b78925a0fc3a6f927beb2986a9aa56cf\",\"dweb:/ipfs/QmYLfXiuKmcRgTDBEDXMMjXU8t6JxsspUmjxYzqWS55oEv\"]},\"@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/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"contracts/CunaFinanceBsc.sol\":{\"keccak256\":\"0xb19a925898a45e3dcad396c22e1ea5ef185ce00a8465b8fbc9f8351372ec5570\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://52d53060512b37a7725b8bb4004e63f3160d5acc2afeb6e01c875ef598af3f79\",\"dweb:/ipfs/QmfWk8PkWPvTq9ozAVctdENFNXcBdetLCMqgxRDE1Qur7S\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":1888,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"owner","offset":0,"slot":"0","type":"t_address"},{"astId":1892,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"owners","offset":0,"slot":"1","type":"t_mapping(t_address,t_bool)"},{"astId":1896,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"authorizedBots","offset":0,"slot":"2","type":"t_mapping(t_address,t_bool)"},{"astId":1902,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"vestings","offset":0,"slot":"3","type":"t_mapping(t_address,t_array(t_struct(Vesting)1827_storage)dyn_storage)"},{"astId":1908,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"unlockSchedules","offset":0,"slot":"4","type":"t_mapping(t_address,t_array(t_struct(UnlockStep)1832_storage)dyn_storage)"},{"astId":1912,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"priceOracles","offset":0,"slot":"5","type":"t_mapping(t_address,t_address)"},{"astId":1916,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"dollarsVested","offset":0,"slot":"6","type":"t_mapping(t_address,t_uint256)"},{"astId":1920,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"vestedTotal","offset":0,"slot":"7","type":"t_mapping(t_address,t_uint256)"},{"astId":1922,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"lockupDuration","offset":0,"slot":"8","type":"t_uint256"},{"astId":1924,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"unlockDelay","offset":0,"slot":"9","type":"t_uint256"},{"astId":1936,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"withdrawVestingActual","offset":0,"slot":"10","type":"t_mapping(t_address,t_array(t_struct(WithdrawVesting)1841_storage)dyn_storage)"},{"astId":1938,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"withdrawVestingCounterActual","offset":0,"slot":"11","type":"t_uint256"},{"astId":1940,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"stakeIdCounter","offset":0,"slot":"12","type":"t_uint256"},{"astId":1944,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"withdrawVestingLiabilities","offset":0,"slot":"13","type":"t_mapping(t_address,t_uint256)"},{"astId":1949,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"epochs","offset":0,"slot":"14","type":"t_mapping(t_uint256,t_struct(Epoch)1852_storage)"},{"astId":1953,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"userBigStake","offset":0,"slot":"15","type":"t_mapping(t_address,t_uint256)"},{"astId":1957,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"userLastClaimedEpoch","offset":0,"slot":"16","type":"t_mapping(t_address,t_uint256)"},{"astId":1963,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"withdrawStakes","offset":0,"slot":"17","type":"t_mapping(t_address,t_array(t_struct(WithdrawStake)1859_storage)dyn_storage)"},{"astId":1965,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"currentEpochId","offset":0,"slot":"18","type":"t_uint256"},{"astId":1967,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"totalBigStakes","offset":0,"slot":"19","type":"t_uint256"},{"astId":1969,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"instantBuyoutPercent","offset":0,"slot":"20","type":"t_uint256"},{"astId":1976,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"sellStakes","offset":0,"slot":"21","type":"t_mapping(t_address,t_mapping(t_uint256,t_struct(SellStake)1868_storage))"},{"astId":1978,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"marketplaceMin","offset":0,"slot":"22","type":"t_uint256"},{"astId":1980,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"cancellationFee","offset":0,"slot":"23","type":"t_uint256"},{"astId":1984,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"marketplace_sales","offset":0,"slot":"24","type":"t_mapping(t_address,t_uint256)"},{"astId":1988,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"sellStakeKeys","offset":0,"slot":"25","type":"t_array(t_struct(SellStakeKey)1873_storage)dyn_storage"},{"astId":1994,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"sellStakeKeyIndex","offset":0,"slot":"26","type":"t_mapping(t_address,t_mapping(t_uint256,t_uint256))"},{"astId":1998,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"marketplaceHistory","offset":0,"slot":"27","type":"t_array(t_struct(MarketplaceHistory)1886_storage)dyn_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_array(t_struct(MarketplaceHistory)1886_storage)dyn_storage":{"base":"t_struct(MarketplaceHistory)1886_storage","encoding":"dynamic_array","label":"struct CunaFinanceBsc.MarketplaceHistory[]","numberOfBytes":"32"},"t_array(t_struct(SellStakeKey)1873_storage)dyn_storage":{"base":"t_struct(SellStakeKey)1873_storage","encoding":"dynamic_array","label":"struct CunaFinanceBsc.SellStakeKey[]","numberOfBytes":"32"},"t_array(t_struct(UnlockStep)1832_storage)dyn_storage":{"base":"t_struct(UnlockStep)1832_storage","encoding":"dynamic_array","label":"struct CunaFinanceBsc.UnlockStep[]","numberOfBytes":"32"},"t_array(t_struct(Vesting)1827_storage)dyn_storage":{"base":"t_struct(Vesting)1827_storage","encoding":"dynamic_array","label":"struct CunaFinanceBsc.Vesting[]","numberOfBytes":"32"},"t_array(t_struct(WithdrawStake)1859_storage)dyn_storage":{"base":"t_struct(WithdrawStake)1859_storage","encoding":"dynamic_array","label":"struct CunaFinanceBsc.WithdrawStake[]","numberOfBytes":"32"},"t_array(t_struct(WithdrawVesting)1841_storage)dyn_storage":{"base":"t_struct(WithdrawVesting)1841_storage","encoding":"dynamic_array","label":"struct CunaFinanceBsc.WithdrawVesting[]","numberOfBytes":"32"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_mapping(t_address,t_address)":{"encoding":"mapping","key":"t_address","label":"mapping(address => address)","numberOfBytes":"32","value":"t_address"},"t_mapping(t_address,t_array(t_struct(UnlockStep)1832_storage)dyn_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct CunaFinanceBsc.UnlockStep[])","numberOfBytes":"32","value":"t_array(t_struct(UnlockStep)1832_storage)dyn_storage"},"t_mapping(t_address,t_array(t_struct(Vesting)1827_storage)dyn_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct CunaFinanceBsc.Vesting[])","numberOfBytes":"32","value":"t_array(t_struct(Vesting)1827_storage)dyn_storage"},"t_mapping(t_address,t_array(t_struct(WithdrawStake)1859_storage)dyn_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct CunaFinanceBsc.WithdrawStake[])","numberOfBytes":"32","value":"t_array(t_struct(WithdrawStake)1859_storage)dyn_storage"},"t_mapping(t_address,t_array(t_struct(WithdrawVesting)1841_storage)dyn_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct CunaFinanceBsc.WithdrawVesting[])","numberOfBytes":"32","value":"t_array(t_struct(WithdrawVesting)1841_storage)dyn_storage"},"t_mapping(t_address,t_bool)":{"encoding":"mapping","key":"t_address","label":"mapping(address => bool)","numberOfBytes":"32","value":"t_bool"},"t_mapping(t_address,t_mapping(t_uint256,t_struct(SellStake)1868_storage))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(uint256 => struct CunaFinanceBsc.SellStake))","numberOfBytes":"32","value":"t_mapping(t_uint256,t_struct(SellStake)1868_storage)"},"t_mapping(t_address,t_mapping(t_uint256,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(uint256 => uint256))","numberOfBytes":"32","value":"t_mapping(t_uint256,t_uint256)"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_mapping(t_uint256,t_struct(Epoch)1852_storage)":{"encoding":"mapping","key":"t_uint256","label":"mapping(uint256 => struct CunaFinanceBsc.Epoch)","numberOfBytes":"32","value":"t_struct(Epoch)1852_storage"},"t_mapping(t_uint256,t_struct(SellStake)1868_storage)":{"encoding":"mapping","key":"t_uint256","label":"mapping(uint256 => struct CunaFinanceBsc.SellStake)","numberOfBytes":"32","value":"t_struct(SellStake)1868_storage"},"t_mapping(t_uint256,t_uint256)":{"encoding":"mapping","key":"t_uint256","label":"mapping(uint256 => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_struct(Epoch)1852_storage":{"encoding":"inplace","label":"struct CunaFinanceBsc.Epoch","members":[{"astId":1843,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"estDaysRemaining","offset":0,"slot":"0","type":"t_uint256"},{"astId":1845,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"currentTreasuryTvl","offset":0,"slot":"1","type":"t_uint256"},{"astId":1847,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"totalLiability","offset":0,"slot":"2","type":"t_uint256"},{"astId":1849,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"unlockPercentage","offset":0,"slot":"3","type":"t_uint256"},{"astId":1851,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"timestamp","offset":0,"slot":"4","type":"t_uint256"}],"numberOfBytes":"160"},"t_struct(MarketplaceHistory)1886_storage":{"encoding":"inplace","label":"struct CunaFinanceBsc.MarketplaceHistory","members":[{"astId":1875,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"listTime","offset":0,"slot":"0","type":"t_uint256"},{"astId":1877,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"saleTime","offset":0,"slot":"1","type":"t_uint256"},{"astId":1879,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"origValue","offset":0,"slot":"2","type":"t_uint256"},{"astId":1881,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"saleValue","offset":0,"slot":"3","type":"t_uint256"},{"astId":1883,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"seller","offset":0,"slot":"4","type":"t_address"},{"astId":1885,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"buyer","offset":0,"slot":"5","type":"t_address"}],"numberOfBytes":"192"},"t_struct(SellStake)1868_storage":{"encoding":"inplace","label":"struct CunaFinanceBsc.SellStake","members":[{"astId":1861,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"value","offset":0,"slot":"0","type":"t_uint256"},{"astId":1863,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"salePrice","offset":0,"slot":"1","type":"t_uint256"},{"astId":1865,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"seller","offset":0,"slot":"2","type":"t_address"},{"astId":1867,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"listTime","offset":0,"slot":"3","type":"t_uint256"}],"numberOfBytes":"128"},"t_struct(SellStakeKey)1873_storage":{"encoding":"inplace","label":"struct CunaFinanceBsc.SellStakeKey","members":[{"astId":1870,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"seller","offset":0,"slot":"0","type":"t_address"},{"astId":1872,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"stakeId","offset":0,"slot":"1","type":"t_uint256"}],"numberOfBytes":"64"},"t_struct(UnlockStep)1832_storage":{"encoding":"inplace","label":"struct CunaFinanceBsc.UnlockStep","members":[{"astId":1829,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"timeOffset","offset":0,"slot":"0","type":"t_uint256"},{"astId":1831,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"percentage","offset":0,"slot":"1","type":"t_uint256"}],"numberOfBytes":"64"},"t_struct(Vesting)1827_storage":{"encoding":"inplace","label":"struct CunaFinanceBsc.Vesting","members":[{"astId":1808,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"amount","offset":0,"slot":"0","type":"t_uint256"},{"astId":1810,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"bonus","offset":0,"slot":"1","type":"t_uint256"},{"astId":1812,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"lockedUntil","offset":0,"slot":"2","type":"t_uint256"},{"astId":1814,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"claimedAmount","offset":0,"slot":"3","type":"t_uint256"},{"astId":1816,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"claimedBonus","offset":0,"slot":"4","type":"t_uint256"},{"astId":1818,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"lastClaimed","offset":0,"slot":"5","type":"t_uint256"},{"astId":1820,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"createdAt","offset":0,"slot":"6","type":"t_uint256"},{"astId":1822,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"token","offset":0,"slot":"7","type":"t_address"},{"astId":1824,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"complete","offset":20,"slot":"7","type":"t_bool"},{"astId":1826,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"usdAmount","offset":0,"slot":"8","type":"t_uint256"}],"numberOfBytes":"288"},"t_struct(WithdrawStake)1859_storage":{"encoding":"inplace","label":"struct CunaFinanceBsc.WithdrawStake","members":[{"astId":1854,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"stakeId","offset":0,"slot":"0","type":"t_uint256"},{"astId":1856,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"amount","offset":0,"slot":"1","type":"t_uint256"},{"astId":1858,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"unlockTime","offset":0,"slot":"2","type":"t_uint256"}],"numberOfBytes":"96"},"t_struct(WithdrawVesting)1841_storage":{"encoding":"inplace","label":"struct CunaFinanceBsc.WithdrawVesting","members":[{"astId":1834,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"vestingId","offset":0,"slot":"0","type":"t_uint256"},{"astId":1836,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"amount","offset":0,"slot":"1","type":"t_uint256"},{"astId":1838,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"unlockTime","offset":0,"slot":"2","type":"t_uint256"},{"astId":1840,"contract":"contracts/CunaFinanceBsc.sol:CunaFinanceBsc","label":"token","offset":0,"slot":"3","type":"t_address"}],"numberOfBytes":"128"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}},"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-upgradeable/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.sol\":{\"keccak256\":\"0x361126a17677994081cd9cb69c3f50cffff6e920d25cb7e428acdb1ae41d1866\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://19ae787a7dd001269cd60a394b1a5261b78925a0fc3a6f927beb2986a9aa56cf\",\"dweb:/ipfs/QmYLfXiuKmcRgTDBEDXMMjXU8t6JxsspUmjxYzqWS55oEv\"]},\"@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/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"contracts/CunaFinanceBsc.sol\":{\"keccak256\":\"0xb19a925898a45e3dcad396c22e1ea5ef185ce00a8465b8fbc9f8351372ec5570\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://52d53060512b37a7725b8bb4004e63f3160d5acc2afeb6e01c875ef598af3f79\",\"dweb:/ipfs/QmfWk8PkWPvTq9ozAVctdENFNXcBdetLCMqgxRDE1Qur7S\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"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":{"@_5477":{"entryPoint":null,"id":5477,"parameterSlots":3,"returnSlots":0},"@_675":{"entryPoint":null,"id":675,"parameterSlots":2,"returnSlots":0},"@_mint_978":{"entryPoint":113,"id":978,"parameterSlots":2,"returnSlots":0},"@_update_945":{"entryPoint":179,"id":945,"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:16","statements":[{"nodeType":"YulBlock","src":"6:3:16","statements":[]},{"body":{"nodeType":"YulBlock","src":"46:95:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"63:1:16","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"70:3:16","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"75:10:16","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"66:3:16"},"nodeType":"YulFunctionCall","src":"66:20:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"56:6:16"},"nodeType":"YulFunctionCall","src":"56:31:16"},"nodeType":"YulExpressionStatement","src":"56:31:16"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"103:1:16","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"106:4:16","type":"","value":"0x41"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"96:6:16"},"nodeType":"YulFunctionCall","src":"96:15:16"},"nodeType":"YulExpressionStatement","src":"96:15:16"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"127:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"130:4:16","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"120:6:16"},"nodeType":"YulFunctionCall","src":"120:15:16"},"nodeType":"YulExpressionStatement","src":"120:15:16"}]},"name":"panic_error_0x41","nodeType":"YulFunctionDefinition","src":"14:127:16"},{"body":{"nodeType":"YulBlock","src":"210:776:16","statements":[{"body":{"nodeType":"YulBlock","src":"259:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"268:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"271:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"261:6:16"},"nodeType":"YulFunctionCall","src":"261:12:16"},"nodeType":"YulExpressionStatement","src":"261:12:16"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"238:6:16"},{"kind":"number","nodeType":"YulLiteral","src":"246:4:16","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"234:3:16"},"nodeType":"YulFunctionCall","src":"234:17:16"},{"name":"end","nodeType":"YulIdentifier","src":"253:3:16"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"230:3:16"},"nodeType":"YulFunctionCall","src":"230:27:16"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"223:6:16"},"nodeType":"YulFunctionCall","src":"223:35:16"},"nodeType":"YulIf","src":"220:55:16"},{"nodeType":"YulVariableDeclaration","src":"284:23:16","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"300:6:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"294:5:16"},"nodeType":"YulFunctionCall","src":"294:13:16"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"288:2:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"316:28:16","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"334:2:16","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"338:1:16","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"330:3:16"},"nodeType":"YulFunctionCall","src":"330:10:16"},{"kind":"number","nodeType":"YulLiteral","src":"342:1:16","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"326:3:16"},"nodeType":"YulFunctionCall","src":"326:18:16"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"320:2:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"367:22:16","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"369:16:16"},"nodeType":"YulFunctionCall","src":"369:18:16"},"nodeType":"YulExpressionStatement","src":"369:18:16"}]},"condition":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"359:2:16"},{"name":"_2","nodeType":"YulIdentifier","src":"363:2:16"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"356:2:16"},"nodeType":"YulFunctionCall","src":"356:10:16"},"nodeType":"YulIf","src":"353:36:16"},{"nodeType":"YulVariableDeclaration","src":"398:17:16","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"412:2:16","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"408:3:16"},"nodeType":"YulFunctionCall","src":"408:7:16"},"variables":[{"name":"_3","nodeType":"YulTypedName","src":"402:2:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"424:23:16","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"444:2:16","type":"","value":"64"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"438:5:16"},"nodeType":"YulFunctionCall","src":"438:9:16"},"variables":[{"name":"memPtr","nodeType":"YulTypedName","src":"428:6:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"456:71:16","value":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"478:6:16"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"502:2:16"},{"kind":"number","nodeType":"YulLiteral","src":"506:4:16","type":"","value":"0x1f"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"498:3:16"},"nodeType":"YulFunctionCall","src":"498:13:16"},{"name":"_3","nodeType":"YulIdentifier","src":"513:2:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"494:3:16"},"nodeType":"YulFunctionCall","src":"494:22:16"},{"kind":"number","nodeType":"YulLiteral","src":"518:2:16","type":"","value":"63"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"490:3:16"},"nodeType":"YulFunctionCall","src":"490:31:16"},{"name":"_3","nodeType":"YulIdentifier","src":"523:2:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"486:3:16"},"nodeType":"YulFunctionCall","src":"486:40:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"474:3:16"},"nodeType":"YulFunctionCall","src":"474:53:16"},"variables":[{"name":"newFreePtr","nodeType":"YulTypedName","src":"460:10:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"586:22:16","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"588:16:16"},"nodeType":"YulFunctionCall","src":"588:18:16"},"nodeType":"YulExpressionStatement","src":"588:18:16"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"545:10:16"},{"name":"_2","nodeType":"YulIdentifier","src":"557:2:16"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"542:2:16"},"nodeType":"YulFunctionCall","src":"542:18:16"},{"arguments":[{"name":"newFreePtr","nodeType":"YulIdentifier","src":"565:10:16"},{"name":"memPtr","nodeType":"YulIdentifier","src":"577:6:16"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"562:2:16"},"nodeType":"YulFunctionCall","src":"562:22:16"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"539:2:16"},"nodeType":"YulFunctionCall","src":"539:46:16"},"nodeType":"YulIf","src":"536:72:16"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"624:2:16","type":"","value":"64"},{"name":"newFreePtr","nodeType":"YulIdentifier","src":"628:10:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"617:6:16"},"nodeType":"YulFunctionCall","src":"617:22:16"},"nodeType":"YulExpressionStatement","src":"617:22:16"},{"expression":{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"655:6:16"},{"name":"_1","nodeType":"YulIdentifier","src":"663:2:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"648:6:16"},"nodeType":"YulFunctionCall","src":"648:18:16"},"nodeType":"YulExpressionStatement","src":"648:18:16"},{"nodeType":"YulVariableDeclaration","src":"675:14:16","value":{"kind":"number","nodeType":"YulLiteral","src":"685:4:16","type":"","value":"0x20"},"variables":[{"name":"_4","nodeType":"YulTypedName","src":"679:2:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"735:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"744:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"747:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"737:6:16"},"nodeType":"YulFunctionCall","src":"737:12:16"},"nodeType":"YulExpressionStatement","src":"737:12:16"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"712:6:16"},{"name":"_1","nodeType":"YulIdentifier","src":"720:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"708:3:16"},"nodeType":"YulFunctionCall","src":"708:15:16"},{"name":"_4","nodeType":"YulIdentifier","src":"725:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"704:3:16"},"nodeType":"YulFunctionCall","src":"704:24:16"},{"name":"end","nodeType":"YulIdentifier","src":"730:3:16"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"701:2:16"},"nodeType":"YulFunctionCall","src":"701:33:16"},"nodeType":"YulIf","src":"698:53:16"},{"nodeType":"YulVariableDeclaration","src":"760:10:16","value":{"kind":"number","nodeType":"YulLiteral","src":"769:1:16","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"764:1:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"825:87:16","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"854:6:16"},{"name":"i","nodeType":"YulIdentifier","src":"862:1:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"850:3:16"},"nodeType":"YulFunctionCall","src":"850:14:16"},{"name":"_4","nodeType":"YulIdentifier","src":"866:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"846:3:16"},"nodeType":"YulFunctionCall","src":"846:23:16"},{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"885:6:16"},{"name":"i","nodeType":"YulIdentifier","src":"893:1:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"881:3:16"},"nodeType":"YulFunctionCall","src":"881:14:16"},{"name":"_4","nodeType":"YulIdentifier","src":"897:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"877:3:16"},"nodeType":"YulFunctionCall","src":"877:23:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"871:5:16"},"nodeType":"YulFunctionCall","src":"871:30:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"839:6:16"},"nodeType":"YulFunctionCall","src":"839:63:16"},"nodeType":"YulExpressionStatement","src":"839:63:16"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"790:1:16"},{"name":"_1","nodeType":"YulIdentifier","src":"793:2:16"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"787:2:16"},"nodeType":"YulFunctionCall","src":"787:9:16"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"797:19:16","statements":[{"nodeType":"YulAssignment","src":"799:15:16","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"808:1:16"},{"name":"_4","nodeType":"YulIdentifier","src":"811:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"804:3:16"},"nodeType":"YulFunctionCall","src":"804:10:16"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"799:1:16"}]}]},"pre":{"nodeType":"YulBlock","src":"783:3:16","statements":[]},"src":"779:133:16"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nodeType":"YulIdentifier","src":"936:6:16"},{"name":"_1","nodeType":"YulIdentifier","src":"944:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"932:3:16"},"nodeType":"YulFunctionCall","src":"932:15:16"},{"name":"_4","nodeType":"YulIdentifier","src":"949:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"928:3:16"},"nodeType":"YulFunctionCall","src":"928:24:16"},{"kind":"number","nodeType":"YulLiteral","src":"954:1:16","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"921:6:16"},"nodeType":"YulFunctionCall","src":"921:35:16"},"nodeType":"YulExpressionStatement","src":"921:35:16"},{"nodeType":"YulAssignment","src":"965:15:16","value":{"name":"memPtr","nodeType":"YulIdentifier","src":"974:6:16"},"variableNames":[{"name":"array","nodeType":"YulIdentifier","src":"965:5:16"}]}]},"name":"abi_decode_string_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"184:6:16","type":""},{"name":"end","nodeType":"YulTypedName","src":"192:3:16","type":""}],"returnVariables":[{"name":"array","nodeType":"YulTypedName","src":"200:5:16","type":""}],"src":"146:840:16"},{"body":{"nodeType":"YulBlock","src":"1126:488:16","statements":[{"body":{"nodeType":"YulBlock","src":"1172:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1181:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1184:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1174:6:16"},"nodeType":"YulFunctionCall","src":"1174:12:16"},"nodeType":"YulExpressionStatement","src":"1174:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1147:7:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"1156:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1143:3:16"},"nodeType":"YulFunctionCall","src":"1143:23:16"},{"kind":"number","nodeType":"YulLiteral","src":"1168:2:16","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1139:3:16"},"nodeType":"YulFunctionCall","src":"1139:32:16"},"nodeType":"YulIf","src":"1136:52:16"},{"nodeType":"YulVariableDeclaration","src":"1197:30:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1217:9:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1211:5:16"},"nodeType":"YulFunctionCall","src":"1211:16:16"},"variables":[{"name":"offset","nodeType":"YulTypedName","src":"1201:6:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"1236:28:16","value":{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1254:2:16","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"1258:1:16","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1250:3:16"},"nodeType":"YulFunctionCall","src":"1250:10:16"},{"kind":"number","nodeType":"YulLiteral","src":"1262:1:16","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1246:3:16"},"nodeType":"YulFunctionCall","src":"1246:18:16"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"1240:2:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"1291:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1300:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1303:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1293:6:16"},"nodeType":"YulFunctionCall","src":"1293:12:16"},"nodeType":"YulExpressionStatement","src":"1293:12:16"}]},"condition":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"1279:6:16"},{"name":"_1","nodeType":"YulIdentifier","src":"1287:2:16"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1276:2:16"},"nodeType":"YulFunctionCall","src":"1276:14:16"},"nodeType":"YulIf","src":"1273:34:16"},{"nodeType":"YulAssignment","src":"1316:71:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1359:9:16"},{"name":"offset","nodeType":"YulIdentifier","src":"1370:6:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1355:3:16"},"nodeType":"YulFunctionCall","src":"1355:22:16"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1379:7:16"}],"functionName":{"name":"abi_decode_string_fromMemory","nodeType":"YulIdentifier","src":"1326:28:16"},"nodeType":"YulFunctionCall","src":"1326:61:16"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1316:6:16"}]},{"nodeType":"YulVariableDeclaration","src":"1396:41:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1422:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"1433:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1418:3:16"},"nodeType":"YulFunctionCall","src":"1418:18:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1412:5:16"},"nodeType":"YulFunctionCall","src":"1412:25:16"},"variables":[{"name":"offset_1","nodeType":"YulTypedName","src":"1400:8:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"1466:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1475:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1478:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1468:6:16"},"nodeType":"YulFunctionCall","src":"1468:12:16"},"nodeType":"YulExpressionStatement","src":"1468:12:16"}]},"condition":{"arguments":[{"name":"offset_1","nodeType":"YulIdentifier","src":"1452:8:16"},{"name":"_1","nodeType":"YulIdentifier","src":"1462:2:16"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"1449:2:16"},"nodeType":"YulFunctionCall","src":"1449:16:16"},"nodeType":"YulIf","src":"1446:36:16"},{"nodeType":"YulAssignment","src":"1491:73:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1534:9:16"},{"name":"offset_1","nodeType":"YulIdentifier","src":"1545:8:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1530:3:16"},"nodeType":"YulFunctionCall","src":"1530:24:16"},{"name":"dataEnd","nodeType":"YulIdentifier","src":"1556:7:16"}],"functionName":{"name":"abi_decode_string_fromMemory","nodeType":"YulIdentifier","src":"1501:28:16"},"nodeType":"YulFunctionCall","src":"1501:63:16"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1491:6:16"}]},{"nodeType":"YulAssignment","src":"1573:35:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1593:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"1604:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1589:3:16"},"nodeType":"YulFunctionCall","src":"1589:18:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"1583:5:16"},"nodeType":"YulFunctionCall","src":"1583:25:16"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"1573:6:16"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256_fromMemory","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1076:9:16","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1087:7:16","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1099:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1107:6:16","type":""},{"name":"value2","nodeType":"YulTypedName","src":"1115:6:16","type":""}],"src":"991:623:16"},{"body":{"nodeType":"YulBlock","src":"1674:325:16","statements":[{"nodeType":"YulAssignment","src":"1684:22:16","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1698:1:16","type":"","value":"1"},{"name":"data","nodeType":"YulIdentifier","src":"1701:4:16"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"1694:3:16"},"nodeType":"YulFunctionCall","src":"1694:12:16"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"1684:6:16"}]},{"nodeType":"YulVariableDeclaration","src":"1715:38:16","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"1745:4:16"},{"kind":"number","nodeType":"YulLiteral","src":"1751:1:16","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1741:3:16"},"nodeType":"YulFunctionCall","src":"1741:12:16"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"1719:18:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"1792:31:16","statements":[{"nodeType":"YulAssignment","src":"1794:27:16","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1808:6:16"},{"kind":"number","nodeType":"YulLiteral","src":"1816:4:16","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1804:3:16"},"nodeType":"YulFunctionCall","src":"1804:17:16"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"1794:6:16"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"1772:18:16"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1765:6:16"},"nodeType":"YulFunctionCall","src":"1765:26:16"},"nodeType":"YulIf","src":"1762:61:16"},{"body":{"nodeType":"YulBlock","src":"1882:111:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1903:1:16","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1910:3:16","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"1915:10:16","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"1906:3:16"},"nodeType":"YulFunctionCall","src":"1906:20:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1896:6:16"},"nodeType":"YulFunctionCall","src":"1896:31:16"},"nodeType":"YulExpressionStatement","src":"1896:31:16"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1947:1:16","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"1950:4:16","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1940:6:16"},"nodeType":"YulFunctionCall","src":"1940:15:16"},"nodeType":"YulExpressionStatement","src":"1940:15:16"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1975:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1978:4:16","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1968:6:16"},"nodeType":"YulFunctionCall","src":"1968:15:16"},"nodeType":"YulExpressionStatement","src":"1968:15:16"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"1838:18:16"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"1861:6:16"},{"kind":"number","nodeType":"YulLiteral","src":"1869:2:16","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"1858:2:16"},"nodeType":"YulFunctionCall","src":"1858:14:16"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"1835:2:16"},"nodeType":"YulFunctionCall","src":"1835:38:16"},"nodeType":"YulIf","src":"1832:161:16"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"1654:4:16","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"1663:6:16","type":""}],"src":"1619:380:16"},{"body":{"nodeType":"YulBlock","src":"2060:65:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2077:1:16","type":"","value":"0"},{"name":"ptr","nodeType":"YulIdentifier","src":"2080:3:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2070:6:16"},"nodeType":"YulFunctionCall","src":"2070:14:16"},"nodeType":"YulExpressionStatement","src":"2070:14:16"},{"nodeType":"YulAssignment","src":"2093:26:16","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2111:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2114:4:16","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"2101:9:16"},"nodeType":"YulFunctionCall","src":"2101:18:16"},"variableNames":[{"name":"data","nodeType":"YulIdentifier","src":"2093:4:16"}]}]},"name":"array_dataslot_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nodeType":"YulTypedName","src":"2043:3:16","type":""}],"returnVariables":[{"name":"data","nodeType":"YulTypedName","src":"2051:4:16","type":""}],"src":"2004:121:16"},{"body":{"nodeType":"YulBlock","src":"2211:464:16","statements":[{"body":{"nodeType":"YulBlock","src":"2244:425:16","statements":[{"nodeType":"YulVariableDeclaration","src":"2258:11:16","value":{"kind":"number","nodeType":"YulLiteral","src":"2268:1:16","type":"","value":"0"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"2262:2:16","type":""}]},{"expression":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"2289:2:16"},{"name":"array","nodeType":"YulIdentifier","src":"2293:5:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2282:6:16"},"nodeType":"YulFunctionCall","src":"2282:17:16"},"nodeType":"YulExpressionStatement","src":"2282:17:16"},{"nodeType":"YulVariableDeclaration","src":"2312:31:16","value":{"arguments":[{"name":"_1","nodeType":"YulIdentifier","src":"2334:2:16"},{"kind":"number","nodeType":"YulLiteral","src":"2338:4:16","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nodeType":"YulIdentifier","src":"2324:9:16"},"nodeType":"YulFunctionCall","src":"2324:19:16"},"variables":[{"name":"data","nodeType":"YulTypedName","src":"2316:4:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"2356:57:16","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"2379:4:16"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2389:1:16","type":"","value":"5"},{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"2396:10:16"},{"kind":"number","nodeType":"YulLiteral","src":"2408:2:16","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2392:3:16"},"nodeType":"YulFunctionCall","src":"2392:19:16"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"2385:3:16"},"nodeType":"YulFunctionCall","src":"2385:27:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2375:3:16"},"nodeType":"YulFunctionCall","src":"2375:38:16"},"variables":[{"name":"deleteStart","nodeType":"YulTypedName","src":"2360:11:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"2450:23:16","statements":[{"nodeType":"YulAssignment","src":"2452:19:16","value":{"name":"data","nodeType":"YulIdentifier","src":"2467:4:16"},"variableNames":[{"name":"deleteStart","nodeType":"YulIdentifier","src":"2452:11:16"}]}]},"condition":{"arguments":[{"name":"startIndex","nodeType":"YulIdentifier","src":"2432:10:16"},{"kind":"number","nodeType":"YulLiteral","src":"2444:4:16","type":"","value":"0x20"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2429:2:16"},"nodeType":"YulFunctionCall","src":"2429:20:16"},"nodeType":"YulIf","src":"2426:47:16"},{"nodeType":"YulVariableDeclaration","src":"2486:41:16","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"2500:4:16"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2510:1:16","type":"","value":"5"},{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"2517:3:16"},{"kind":"number","nodeType":"YulLiteral","src":"2522:2:16","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2513:3:16"},"nodeType":"YulFunctionCall","src":"2513:12:16"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"2506:3:16"},"nodeType":"YulFunctionCall","src":"2506:20:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2496:3:16"},"nodeType":"YulFunctionCall","src":"2496:31:16"},"variables":[{"name":"_2","nodeType":"YulTypedName","src":"2490:2:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"2540:24:16","value":{"name":"deleteStart","nodeType":"YulIdentifier","src":"2553:11:16"},"variables":[{"name":"start","nodeType":"YulTypedName","src":"2544:5:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"2638:21:16","statements":[{"expression":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"2647:5:16"},{"name":"_1","nodeType":"YulIdentifier","src":"2654:2:16"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"2640:6:16"},"nodeType":"YulFunctionCall","src":"2640:17:16"},"nodeType":"YulExpressionStatement","src":"2640:17:16"}]},"condition":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"2588:5:16"},{"name":"_2","nodeType":"YulIdentifier","src":"2595:2:16"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2585:2:16"},"nodeType":"YulFunctionCall","src":"2585:13:16"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"2599:26:16","statements":[{"nodeType":"YulAssignment","src":"2601:22:16","value":{"arguments":[{"name":"start","nodeType":"YulIdentifier","src":"2614:5:16"},{"kind":"number","nodeType":"YulLiteral","src":"2621:1:16","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2610:3:16"},"nodeType":"YulFunctionCall","src":"2610:13:16"},"variableNames":[{"name":"start","nodeType":"YulIdentifier","src":"2601:5:16"}]}]},"pre":{"nodeType":"YulBlock","src":"2581:3:16","statements":[]},"src":"2577:82:16"}]},"condition":{"arguments":[{"name":"len","nodeType":"YulIdentifier","src":"2227:3:16"},{"kind":"number","nodeType":"YulLiteral","src":"2232:2:16","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2224:2:16"},"nodeType":"YulFunctionCall","src":"2224:11:16"},"nodeType":"YulIf","src":"2221:448:16"}]},"name":"clean_up_bytearray_end_slots_string_storage","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nodeType":"YulTypedName","src":"2183:5:16","type":""},{"name":"len","nodeType":"YulTypedName","src":"2190:3:16","type":""},{"name":"startIndex","nodeType":"YulTypedName","src":"2195:10:16","type":""}],"src":"2130:545:16"},{"body":{"nodeType":"YulBlock","src":"2765:81:16","statements":[{"nodeType":"YulAssignment","src":"2775:65:16","value":{"arguments":[{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"2790:4:16"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2808:1:16","type":"","value":"3"},{"name":"len","nodeType":"YulIdentifier","src":"2811:3:16"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2804:3:16"},"nodeType":"YulFunctionCall","src":"2804:11:16"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2821:1:16","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"2817:3:16"},"nodeType":"YulFunctionCall","src":"2817:6:16"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"2800:3:16"},"nodeType":"YulFunctionCall","src":"2800:24:16"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"2796:3:16"},"nodeType":"YulFunctionCall","src":"2796:29:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2786:3:16"},"nodeType":"YulFunctionCall","src":"2786:40:16"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2832:1:16","type":"","value":"1"},{"name":"len","nodeType":"YulIdentifier","src":"2835:3:16"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2828:3:16"},"nodeType":"YulFunctionCall","src":"2828:11:16"}],"functionName":{"name":"or","nodeType":"YulIdentifier","src":"2783:2:16"},"nodeType":"YulFunctionCall","src":"2783:57:16"},"variableNames":[{"name":"used","nodeType":"YulIdentifier","src":"2775:4:16"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"2742:4:16","type":""},{"name":"len","nodeType":"YulTypedName","src":"2748:3:16","type":""}],"returnVariables":[{"name":"used","nodeType":"YulTypedName","src":"2756:4:16","type":""}],"src":"2680:166:16"},{"body":{"nodeType":"YulBlock","src":"2947:1256:16","statements":[{"nodeType":"YulVariableDeclaration","src":"2957:24:16","value":{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"2977:3:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"2971:5:16"},"nodeType":"YulFunctionCall","src":"2971:10:16"},"variables":[{"name":"newLen","nodeType":"YulTypedName","src":"2961:6:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"3024:22:16","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nodeType":"YulIdentifier","src":"3026:16:16"},"nodeType":"YulFunctionCall","src":"3026:18:16"},"nodeType":"YulExpressionStatement","src":"3026:18:16"}]},"condition":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"2996:6:16"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3012:2:16","type":"","value":"64"},{"kind":"number","nodeType":"YulLiteral","src":"3016:1:16","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3008:3:16"},"nodeType":"YulFunctionCall","src":"3008:10:16"},{"kind":"number","nodeType":"YulLiteral","src":"3020:1:16","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3004:3:16"},"nodeType":"YulFunctionCall","src":"3004:18:16"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"2993:2:16"},"nodeType":"YulFunctionCall","src":"2993:30:16"},"nodeType":"YulIf","src":"2990:56:16"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"3099:4:16"},{"arguments":[{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"3137:4:16"}],"functionName":{"name":"sload","nodeType":"YulIdentifier","src":"3131:5:16"},"nodeType":"YulFunctionCall","src":"3131:11:16"}],"functionName":{"name":"extract_byte_array_length","nodeType":"YulIdentifier","src":"3105:25:16"},"nodeType":"YulFunctionCall","src":"3105:38:16"},{"name":"newLen","nodeType":"YulIdentifier","src":"3145:6:16"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nodeType":"YulIdentifier","src":"3055:43:16"},"nodeType":"YulFunctionCall","src":"3055:97:16"},"nodeType":"YulExpressionStatement","src":"3055:97:16"},{"nodeType":"YulVariableDeclaration","src":"3161:18:16","value":{"kind":"number","nodeType":"YulLiteral","src":"3178:1:16","type":"","value":"0"},"variables":[{"name":"srcOffset","nodeType":"YulTypedName","src":"3165:9:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"3188:23:16","value":{"kind":"number","nodeType":"YulLiteral","src":"3207:4:16","type":"","value":"0x20"},"variables":[{"name":"srcOffset_1","nodeType":"YulTypedName","src":"3192:11:16","type":""}]},{"nodeType":"YulAssignment","src":"3220:24:16","value":{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"3233:11:16"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"3220:9:16"}]},{"cases":[{"body":{"nodeType":"YulBlock","src":"3290:656:16","statements":[{"nodeType":"YulVariableDeclaration","src":"3304:35:16","value":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"3323:6:16"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3335:2:16","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3331:3:16"},"nodeType":"YulFunctionCall","src":"3331:7:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3319:3:16"},"nodeType":"YulFunctionCall","src":"3319:20:16"},"variables":[{"name":"loopEnd","nodeType":"YulTypedName","src":"3308:7:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"3352:49:16","value":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"3396:4:16"}],"functionName":{"name":"array_dataslot_string_storage","nodeType":"YulIdentifier","src":"3366:29:16"},"nodeType":"YulFunctionCall","src":"3366:35:16"},"variables":[{"name":"dstPtr","nodeType":"YulTypedName","src":"3356:6:16","type":""}]},{"nodeType":"YulVariableDeclaration","src":"3414:10:16","value":{"kind":"number","nodeType":"YulLiteral","src":"3423:1:16","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"3418:1:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"3501:172:16","statements":[{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"3526:6:16"},{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3544:3:16"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"3549:9:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3540:3:16"},"nodeType":"YulFunctionCall","src":"3540:19:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3534:5:16"},"nodeType":"YulFunctionCall","src":"3534:26:16"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"3519:6:16"},"nodeType":"YulFunctionCall","src":"3519:42:16"},"nodeType":"YulExpressionStatement","src":"3519:42:16"},{"nodeType":"YulAssignment","src":"3578:24:16","value":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"3592:6:16"},{"kind":"number","nodeType":"YulLiteral","src":"3600:1:16","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3588:3:16"},"nodeType":"YulFunctionCall","src":"3588:14:16"},"variableNames":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"3578:6:16"}]},{"nodeType":"YulAssignment","src":"3619:40:16","value":{"arguments":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"3636:9:16"},{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"3647:11:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3632:3:16"},"nodeType":"YulFunctionCall","src":"3632:27:16"},"variableNames":[{"name":"srcOffset","nodeType":"YulIdentifier","src":"3619:9:16"}]}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"3448:1:16"},{"name":"loopEnd","nodeType":"YulIdentifier","src":"3451:7:16"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3445:2:16"},"nodeType":"YulFunctionCall","src":"3445:14:16"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"3460:28:16","statements":[{"nodeType":"YulAssignment","src":"3462:24:16","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"3471:1:16"},{"name":"srcOffset_1","nodeType":"YulIdentifier","src":"3474:11:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3467:3:16"},"nodeType":"YulFunctionCall","src":"3467:19:16"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"3462:1:16"}]}]},"pre":{"nodeType":"YulBlock","src":"3441:3:16","statements":[]},"src":"3437:236:16"},{"body":{"nodeType":"YulBlock","src":"3721:166:16","statements":[{"nodeType":"YulVariableDeclaration","src":"3739:43:16","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"3766:3:16"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"3771:9:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3762:3:16"},"nodeType":"YulFunctionCall","src":"3762:19:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"3756:5:16"},"nodeType":"YulFunctionCall","src":"3756:26:16"},"variables":[{"name":"lastValue","nodeType":"YulTypedName","src":"3743:9:16","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nodeType":"YulIdentifier","src":"3806:6:16"},{"arguments":[{"name":"lastValue","nodeType":"YulIdentifier","src":"3818:9:16"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3845:1:16","type":"","value":"3"},{"name":"newLen","nodeType":"YulIdentifier","src":"3848:6:16"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3841:3:16"},"nodeType":"YulFunctionCall","src":"3841:14:16"},{"kind":"number","nodeType":"YulLiteral","src":"3857:3:16","type":"","value":"248"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3837:3:16"},"nodeType":"YulFunctionCall","src":"3837:24:16"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3867:1:16","type":"","value":"0"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3863:3:16"},"nodeType":"YulFunctionCall","src":"3863:6:16"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"3833:3:16"},"nodeType":"YulFunctionCall","src":"3833:37:16"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"3829:3:16"},"nodeType":"YulFunctionCall","src":"3829:42:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3814:3:16"},"nodeType":"YulFunctionCall","src":"3814:58:16"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"3799:6:16"},"nodeType":"YulFunctionCall","src":"3799:74:16"},"nodeType":"YulExpressionStatement","src":"3799:74:16"}]},"condition":{"arguments":[{"name":"loopEnd","nodeType":"YulIdentifier","src":"3692:7:16"},{"name":"newLen","nodeType":"YulIdentifier","src":"3701:6:16"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"3689:2:16"},"nodeType":"YulFunctionCall","src":"3689:19:16"},"nodeType":"YulIf","src":"3686:201:16"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"3907:4:16"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3921:1:16","type":"","value":"1"},{"name":"newLen","nodeType":"YulIdentifier","src":"3924:6:16"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3917:3:16"},"nodeType":"YulFunctionCall","src":"3917:14:16"},{"kind":"number","nodeType":"YulLiteral","src":"3933:1:16","type":"","value":"1"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3913:3:16"},"nodeType":"YulFunctionCall","src":"3913:22:16"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"3900:6:16"},"nodeType":"YulFunctionCall","src":"3900:36:16"},"nodeType":"YulExpressionStatement","src":"3900:36:16"}]},"nodeType":"YulCase","src":"3283:663:16","value":{"kind":"number","nodeType":"YulLiteral","src":"3288:1:16","type":"","value":"1"}},{"body":{"nodeType":"YulBlock","src":"3963:234:16","statements":[{"nodeType":"YulVariableDeclaration","src":"3977:14:16","value":{"kind":"number","nodeType":"YulLiteral","src":"3990:1:16","type":"","value":"0"},"variables":[{"name":"value","nodeType":"YulTypedName","src":"3981:5:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"4026:67:16","statements":[{"nodeType":"YulAssignment","src":"4044:35:16","value":{"arguments":[{"arguments":[{"name":"src","nodeType":"YulIdentifier","src":"4063:3:16"},{"name":"srcOffset","nodeType":"YulIdentifier","src":"4068:9:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4059:3:16"},"nodeType":"YulFunctionCall","src":"4059:19:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"4053:5:16"},"nodeType":"YulFunctionCall","src":"4053:26:16"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"4044:5:16"}]}]},"condition":{"name":"newLen","nodeType":"YulIdentifier","src":"4007:6:16"},"nodeType":"YulIf","src":"4004:89:16"},{"expression":{"arguments":[{"name":"slot","nodeType":"YulIdentifier","src":"4113:4:16"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"4172:5:16"},{"name":"newLen","nodeType":"YulIdentifier","src":"4179:6:16"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nodeType":"YulIdentifier","src":"4119:52:16"},"nodeType":"YulFunctionCall","src":"4119:67:16"}],"functionName":{"name":"sstore","nodeType":"YulIdentifier","src":"4106:6:16"},"nodeType":"YulFunctionCall","src":"4106:81:16"},"nodeType":"YulExpressionStatement","src":"4106:81:16"}]},"nodeType":"YulCase","src":"3955:242:16","value":"default"}],"expression":{"arguments":[{"name":"newLen","nodeType":"YulIdentifier","src":"3263:6:16"},{"kind":"number","nodeType":"YulLiteral","src":"3271:2:16","type":"","value":"31"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3260:2:16"},"nodeType":"YulFunctionCall","src":"3260:14:16"},"nodeType":"YulSwitch","src":"3253:944:16"}]},"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:16","type":""},{"name":"src","nodeType":"YulTypedName","src":"2938:3:16","type":""}],"src":"2851:1352:16"},{"body":{"nodeType":"YulBlock","src":"4309:102:16","statements":[{"nodeType":"YulAssignment","src":"4319:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4331:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"4342:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4327:3:16"},"nodeType":"YulFunctionCall","src":"4327:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4319:4:16"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4361:9:16"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4376:6:16"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4392:3:16","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"4397:1:16","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"4388:3:16"},"nodeType":"YulFunctionCall","src":"4388:11:16"},{"kind":"number","nodeType":"YulLiteral","src":"4401:1:16","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4384:3:16"},"nodeType":"YulFunctionCall","src":"4384:19:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4372:3:16"},"nodeType":"YulFunctionCall","src":"4372:32:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4354:6:16"},"nodeType":"YulFunctionCall","src":"4354:51:16"},"nodeType":"YulExpressionStatement","src":"4354:51:16"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"4278:9:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"4289:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4300:4:16","type":""}],"src":"4208:203:16"},{"body":{"nodeType":"YulBlock","src":"4464:174:16","statements":[{"nodeType":"YulAssignment","src":"4474:16:16","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"4485:1:16"},{"name":"y","nodeType":"YulIdentifier","src":"4488:1:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4481:3:16"},"nodeType":"YulFunctionCall","src":"4481:9:16"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"4474:3:16"}]},{"body":{"nodeType":"YulBlock","src":"4521:111:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4542:1:16","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4549:3:16","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"4554:10:16","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"4545:3:16"},"nodeType":"YulFunctionCall","src":"4545:20:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4535:6:16"},"nodeType":"YulFunctionCall","src":"4535:31:16"},"nodeType":"YulExpressionStatement","src":"4535:31:16"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4586:1:16","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"4589:4:16","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4579:6:16"},"nodeType":"YulFunctionCall","src":"4579:15:16"},"nodeType":"YulExpressionStatement","src":"4579:15:16"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4614:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"4617:4:16","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"4607:6:16"},"nodeType":"YulFunctionCall","src":"4607:15:16"},"nodeType":"YulExpressionStatement","src":"4607:15:16"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"4505:1:16"},{"name":"sum","nodeType":"YulIdentifier","src":"4508:3:16"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"4502:2:16"},"nodeType":"YulFunctionCall","src":"4502:10:16"},"nodeType":"YulIf","src":"4499:133:16"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"4447:1:16","type":""},{"name":"y","nodeType":"YulTypedName","src":"4450:1:16","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"4456:3:16","type":""}],"src":"4416:222:16"},{"body":{"nodeType":"YulBlock","src":"4800:188:16","statements":[{"nodeType":"YulAssignment","src":"4810:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4822:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"4833:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4818:3:16"},"nodeType":"YulFunctionCall","src":"4818:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"4810:4:16"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4852:9:16"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"4867:6:16"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"4883:3:16","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"4888:1:16","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"4879:3:16"},"nodeType":"YulFunctionCall","src":"4879:11:16"},{"kind":"number","nodeType":"YulLiteral","src":"4892:1:16","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"4875:3:16"},"nodeType":"YulFunctionCall","src":"4875:19:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"4863:3:16"},"nodeType":"YulFunctionCall","src":"4863:32:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4845:6:16"},"nodeType":"YulFunctionCall","src":"4845:51:16"},"nodeType":"YulExpressionStatement","src":"4845:51:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4916:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"4927:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4912:3:16"},"nodeType":"YulFunctionCall","src":"4912:18:16"},{"name":"value1","nodeType":"YulIdentifier","src":"4932:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4905:6:16"},"nodeType":"YulFunctionCall","src":"4905:34:16"},"nodeType":"YulExpressionStatement","src":"4905:34:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"4959:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"4970:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"4955:3:16"},"nodeType":"YulFunctionCall","src":"4955:18:16"},{"name":"value2","nodeType":"YulIdentifier","src":"4975:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"4948:6:16"},"nodeType":"YulFunctionCall","src":"4948:34:16"},"nodeType":"YulExpressionStatement","src":"4948:34:16"}]},"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:16","type":""},{"name":"value2","nodeType":"YulTypedName","src":"4764:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"4772:6:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"4780:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"4791:4:16","type":""}],"src":"4643:345:16"},{"body":{"nodeType":"YulBlock","src":"5094:76:16","statements":[{"nodeType":"YulAssignment","src":"5104:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5116:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"5127:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"5112:3:16"},"nodeType":"YulFunctionCall","src":"5112:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"5104:4:16"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"5146:9:16"},{"name":"value0","nodeType":"YulIdentifier","src":"5157:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"5139:6:16"},"nodeType":"YulFunctionCall","src":"5139:25:16"},"nodeType":"YulExpressionStatement","src":"5139:25:16"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"5063:9:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"5074:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"5085:4:16","type":""}],"src":"4993:177:16"}]},"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":16,"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:14:-:0;;;149:176;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;262:4;268:6;1648:5:6;:13;262:4:14;1648:5:6;:13;:::i;:::-;-1:-1:-1;1671:7:6;:17;1681:7;1671;:17;:::i;:::-;;1582:113;;286:32:14::1;292:10;304:13;286:5;;;:32;;:::i;:::-;149:176:::0;;;115:307;;7362:208:6;-1:-1:-1;;;;;7432:21:6;;7428:91;;7476:32;;-1:-1:-1;;;7476:32:6;;7505:1;7476:32;;;4354:51:16;4327:18;;7476:32:6;;;;;;;;7428:91;7528:35;7544:1;7548:7;7557:5;7528:7;:35::i;:::-;7362:208;;:::o;5912:1107::-;-1:-1:-1;;;;;6001:18:6;;5997:540;;6153:5;6137:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;5997:540:6;;-1:-1:-1;5997:540:6;;-1:-1:-1;;;;;6211:15:6;;6189:19;6211:15;;;;;;;;;;;6244:19;;;6240:115;;;6290:50;;-1:-1:-1;;;6290:50:6;;-1:-1:-1;;;;;4863:32:16;;6290:50:6;;;4845:51:16;4912:18;;;4905:34;;;4955:18;;;4948:34;;;4818:18;;6290:50:6;4643:345:16;6240:115:6;-1:-1:-1;;;;;6475:15:6;;:9;:15;;;;;;;;;;6493:19;;;;6475:37;;5997:540;-1:-1:-1;;;;;6551:16:6;;6547:425;;6714:12;:21;;;;;;;6547:425;;;-1:-1:-1;;;;;6925:13:6;;:9;:13;;;;;;;;;;:22;;;;;;6547:425;7002:2;-1:-1:-1;;;;;6987:25:6;6996:4;-1:-1:-1;;;;;6987:25:6;;7006:5;6987:25;;;;5139::16;;5127:2;5112:18;;4993:177;6987:25:6;;;;;;;;5912:1107;;;:::o;14:127:16:-;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:16;;;353:36;;;369:18;;:::i;:::-;444:2;438:9;412:2;498:13;;-1:-1:-1;;494:22:16;;;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:16: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:16;;;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:16;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:16;;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:16;;;4053:26;4004:89;-1:-1:-1;;2808:1:16;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:16;;;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:16;3841:14;;;3857:3;3837:24;3833:37;3829:42;3814:58;3799:74;;3686:201;-1:-1:-1;;;;;3933:1:16;3917:14;;;3913:22;3900:36;;-1:-1:-1;2851:1352:16: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:14;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_approve_1029":{"entryPoint":677,"id":1029,"parameterSlots":3,"returnSlots":0},"@_approve_1089":{"entryPoint":976,"id":1089,"parameterSlots":4,"returnSlots":0},"@_mint_978":{"entryPoint":922,"id":978,"parameterSlots":2,"returnSlots":0},"@_msgSender_1754":{"entryPoint":null,"id":1754,"parameterSlots":0,"returnSlots":1},"@_spendAllowance_1137":{"entryPoint":695,"id":1137,"parameterSlots":3,"returnSlots":0},"@_transfer_868":{"entryPoint":827,"id":868,"parameterSlots":3,"returnSlots":0},"@_update_945":{"entryPoint":1189,"id":945,"parameterSlots":3,"returnSlots":0},"@allowance_765":{"entryPoint":null,"id":765,"parameterSlots":2,"returnSlots":1},"@approve_789":{"entryPoint":572,"id":789,"parameterSlots":2,"returnSlots":1},"@balanceOf_724":{"entryPoint":null,"id":724,"parameterSlots":1,"returnSlots":1},"@decimals_702":{"entryPoint":null,"id":702,"parameterSlots":0,"returnSlots":1},"@mint_5490":{"entryPoint":634,"id":5490,"parameterSlots":2,"returnSlots":0},"@name_684":{"entryPoint":426,"id":684,"parameterSlots":0,"returnSlots":1},"@symbol_693":{"entryPoint":648,"id":693,"parameterSlots":0,"returnSlots":1},"@totalSupply_711":{"entryPoint":null,"id":711,"parameterSlots":0,"returnSlots":1},"@transferFrom_821":{"entryPoint":598,"id":821,"parameterSlots":3,"returnSlots":1},"@transfer_748":{"entryPoint":663,"id":748,"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:16","statements":[{"nodeType":"YulBlock","src":"6:3:16","statements":[]},{"body":{"nodeType":"YulBlock","src":"135:427:16","statements":[{"nodeType":"YulVariableDeclaration","src":"145:12:16","value":{"kind":"number","nodeType":"YulLiteral","src":"155:2:16","type":"","value":"32"},"variables":[{"name":"_1","nodeType":"YulTypedName","src":"149:2:16","type":""}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"173:9:16"},{"name":"_1","nodeType":"YulIdentifier","src":"184:2:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"166:6:16"},"nodeType":"YulFunctionCall","src":"166:21:16"},"nodeType":"YulExpressionStatement","src":"166:21:16"},{"nodeType":"YulVariableDeclaration","src":"196:27:16","value":{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"216:6:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"210:5:16"},"nodeType":"YulFunctionCall","src":"210:13:16"},"variables":[{"name":"length","nodeType":"YulTypedName","src":"200:6:16","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"243:9:16"},{"name":"_1","nodeType":"YulIdentifier","src":"254:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"239:3:16"},"nodeType":"YulFunctionCall","src":"239:18:16"},{"name":"length","nodeType":"YulIdentifier","src":"259:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"232:6:16"},"nodeType":"YulFunctionCall","src":"232:34:16"},"nodeType":"YulExpressionStatement","src":"232:34:16"},{"nodeType":"YulVariableDeclaration","src":"275:10:16","value":{"kind":"number","nodeType":"YulLiteral","src":"284:1:16","type":"","value":"0"},"variables":[{"name":"i","nodeType":"YulTypedName","src":"279:1:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"344:90:16","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"373:9:16"},{"name":"i","nodeType":"YulIdentifier","src":"384:1:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"369:3:16"},"nodeType":"YulFunctionCall","src":"369:17:16"},{"kind":"number","nodeType":"YulLiteral","src":"388:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"365:3:16"},"nodeType":"YulFunctionCall","src":"365:26:16"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"407:6:16"},{"name":"i","nodeType":"YulIdentifier","src":"415:1:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"403:3:16"},"nodeType":"YulFunctionCall","src":"403:14:16"},{"name":"_1","nodeType":"YulIdentifier","src":"419:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"399:3:16"},"nodeType":"YulFunctionCall","src":"399:23:16"}],"functionName":{"name":"mload","nodeType":"YulIdentifier","src":"393:5:16"},"nodeType":"YulFunctionCall","src":"393:30:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"358:6:16"},"nodeType":"YulFunctionCall","src":"358:66:16"},"nodeType":"YulExpressionStatement","src":"358:66:16"}]},"condition":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"305:1:16"},{"name":"length","nodeType":"YulIdentifier","src":"308:6:16"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"302:2:16"},"nodeType":"YulFunctionCall","src":"302:13:16"},"nodeType":"YulForLoop","post":{"nodeType":"YulBlock","src":"316:19:16","statements":[{"nodeType":"YulAssignment","src":"318:15:16","value":{"arguments":[{"name":"i","nodeType":"YulIdentifier","src":"327:1:16"},{"name":"_1","nodeType":"YulIdentifier","src":"330:2:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"323:3:16"},"nodeType":"YulFunctionCall","src":"323:10:16"},"variableNames":[{"name":"i","nodeType":"YulIdentifier","src":"318:1:16"}]}]},"pre":{"nodeType":"YulBlock","src":"298:3:16","statements":[]},"src":"294:140:16"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"458:9:16"},{"name":"length","nodeType":"YulIdentifier","src":"469:6:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"454:3:16"},"nodeType":"YulFunctionCall","src":"454:22:16"},{"kind":"number","nodeType":"YulLiteral","src":"478:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"450:3:16"},"nodeType":"YulFunctionCall","src":"450:31:16"},{"kind":"number","nodeType":"YulLiteral","src":"483:1:16","type":"","value":"0"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"443:6:16"},"nodeType":"YulFunctionCall","src":"443:42:16"},"nodeType":"YulExpressionStatement","src":"443:42:16"},{"nodeType":"YulAssignment","src":"494:62:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"510:9:16"},{"arguments":[{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"529:6:16"},{"kind":"number","nodeType":"YulLiteral","src":"537:2:16","type":"","value":"31"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"525:3:16"},"nodeType":"YulFunctionCall","src":"525:15:16"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"546:2:16","type":"","value":"31"}],"functionName":{"name":"not","nodeType":"YulIdentifier","src":"542:3:16"},"nodeType":"YulFunctionCall","src":"542:7:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"521:3:16"},"nodeType":"YulFunctionCall","src":"521:29:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"506:3:16"},"nodeType":"YulFunctionCall","src":"506:45:16"},{"kind":"number","nodeType":"YulLiteral","src":"553:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"502:3:16"},"nodeType":"YulFunctionCall","src":"502:54:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"494:4:16"}]}]},"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:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"115:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"126:4:16","type":""}],"src":"14:548:16"},{"body":{"nodeType":"YulBlock","src":"616:124:16","statements":[{"nodeType":"YulAssignment","src":"626:29:16","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"648:6:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"635:12:16"},"nodeType":"YulFunctionCall","src":"635:20:16"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"626:5:16"}]},{"body":{"nodeType":"YulBlock","src":"718:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"727:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"730:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"720:6:16"},"nodeType":"YulFunctionCall","src":"720:12:16"},"nodeType":"YulExpressionStatement","src":"720:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"677:5:16"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"688:5:16"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"703:3:16","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"708:1:16","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"699:3:16"},"nodeType":"YulFunctionCall","src":"699:11:16"},{"kind":"number","nodeType":"YulLiteral","src":"712:1:16","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"695:3:16"},"nodeType":"YulFunctionCall","src":"695:19:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"684:3:16"},"nodeType":"YulFunctionCall","src":"684:31:16"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"674:2:16"},"nodeType":"YulFunctionCall","src":"674:42:16"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"667:6:16"},"nodeType":"YulFunctionCall","src":"667:50:16"},"nodeType":"YulIf","src":"664:70:16"}]},"name":"abi_decode_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"595:6:16","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"606:5:16","type":""}],"src":"567:173:16"},{"body":{"nodeType":"YulBlock","src":"832:167:16","statements":[{"body":{"nodeType":"YulBlock","src":"878:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"887:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"890:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"880:6:16"},"nodeType":"YulFunctionCall","src":"880:12:16"},"nodeType":"YulExpressionStatement","src":"880:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"853:7:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"862:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"849:3:16"},"nodeType":"YulFunctionCall","src":"849:23:16"},{"kind":"number","nodeType":"YulLiteral","src":"874:2:16","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"845:3:16"},"nodeType":"YulFunctionCall","src":"845:32:16"},"nodeType":"YulIf","src":"842:52:16"},{"nodeType":"YulAssignment","src":"903:39:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"932:9:16"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"913:18:16"},"nodeType":"YulFunctionCall","src":"913:29:16"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"903:6:16"}]},{"nodeType":"YulAssignment","src":"951:42:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"978:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"989:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"974:3:16"},"nodeType":"YulFunctionCall","src":"974:18:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"961:12:16"},"nodeType":"YulFunctionCall","src":"961:32:16"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"951:6:16"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"790:9:16","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"801:7:16","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"813:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"821:6:16","type":""}],"src":"745:254:16"},{"body":{"nodeType":"YulBlock","src":"1099:92:16","statements":[{"nodeType":"YulAssignment","src":"1109:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1121:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"1132:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1117:3:16"},"nodeType":"YulFunctionCall","src":"1117:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1109:4:16"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1151:9:16"},{"arguments":[{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1176:6:16"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1169:6:16"},"nodeType":"YulFunctionCall","src":"1169:14:16"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"1162:6:16"},"nodeType":"YulFunctionCall","src":"1162:22:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1144:6:16"},"nodeType":"YulFunctionCall","src":"1144:41:16"},"nodeType":"YulExpressionStatement","src":"1144:41:16"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1068:9:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1079:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1090:4:16","type":""}],"src":"1004:187:16"},{"body":{"nodeType":"YulBlock","src":"1297:76:16","statements":[{"nodeType":"YulAssignment","src":"1307:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1319:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"1330:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1315:3:16"},"nodeType":"YulFunctionCall","src":"1315:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1307:4:16"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1349:9:16"},{"name":"value0","nodeType":"YulIdentifier","src":"1360:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1342:6:16"},"nodeType":"YulFunctionCall","src":"1342:25:16"},"nodeType":"YulExpressionStatement","src":"1342:25:16"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1266:9:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1277:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1288:4:16","type":""}],"src":"1196:177:16"},{"body":{"nodeType":"YulBlock","src":"1482:224:16","statements":[{"body":{"nodeType":"YulBlock","src":"1528:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"1537:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"1540:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"1530:6:16"},"nodeType":"YulFunctionCall","src":"1530:12:16"},"nodeType":"YulExpressionStatement","src":"1530:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1503:7:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"1512:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1499:3:16"},"nodeType":"YulFunctionCall","src":"1499:23:16"},{"kind":"number","nodeType":"YulLiteral","src":"1524:2:16","type":"","value":"96"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1495:3:16"},"nodeType":"YulFunctionCall","src":"1495:32:16"},"nodeType":"YulIf","src":"1492:52:16"},{"nodeType":"YulAssignment","src":"1553:39:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1582:9:16"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"1563:18:16"},"nodeType":"YulFunctionCall","src":"1563:29:16"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"1553:6:16"}]},{"nodeType":"YulAssignment","src":"1601:48:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1634:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"1645:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1630:3:16"},"nodeType":"YulFunctionCall","src":"1630:18:16"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"1611:18:16"},"nodeType":"YulFunctionCall","src":"1611:38:16"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"1601:6:16"}]},{"nodeType":"YulAssignment","src":"1658:42:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1685:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"1696:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1681:3:16"},"nodeType":"YulFunctionCall","src":"1681:18:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"1668:12:16"},"nodeType":"YulFunctionCall","src":"1668:32:16"},"variableNames":[{"name":"value2","nodeType":"YulIdentifier","src":"1658:6:16"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1432:9:16","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1443:7:16","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1455:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"1463:6:16","type":""},{"name":"value2","nodeType":"YulTypedName","src":"1471:6:16","type":""}],"src":"1378:328:16"},{"body":{"nodeType":"YulBlock","src":"1808:87:16","statements":[{"nodeType":"YulAssignment","src":"1818:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1830:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"1841:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"1826:3:16"},"nodeType":"YulFunctionCall","src":"1826:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"1818:4:16"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"1860:9:16"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"1875:6:16"},{"kind":"number","nodeType":"YulLiteral","src":"1883:4:16","type":"","value":"0xff"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"1871:3:16"},"nodeType":"YulFunctionCall","src":"1871:17:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"1853:6:16"},"nodeType":"YulFunctionCall","src":"1853:36:16"},"nodeType":"YulExpressionStatement","src":"1853:36:16"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1777:9:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"1788:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"1799:4:16","type":""}],"src":"1711:184:16"},{"body":{"nodeType":"YulBlock","src":"1970:116:16","statements":[{"body":{"nodeType":"YulBlock","src":"2016:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2025:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2028:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2018:6:16"},"nodeType":"YulFunctionCall","src":"2018:12:16"},"nodeType":"YulExpressionStatement","src":"2018:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"1991:7:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"2000:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"1987:3:16"},"nodeType":"YulFunctionCall","src":"1987:23:16"},{"kind":"number","nodeType":"YulLiteral","src":"2012:2:16","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"1983:3:16"},"nodeType":"YulFunctionCall","src":"1983:32:16"},"nodeType":"YulIf","src":"1980:52:16"},{"nodeType":"YulAssignment","src":"2041:39:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2070:9:16"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"2051:18:16"},"nodeType":"YulFunctionCall","src":"2051:29:16"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2041:6:16"}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"1936:9:16","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"1947:7:16","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"1959:6:16","type":""}],"src":"1900:186:16"},{"body":{"nodeType":"YulBlock","src":"2178:173:16","statements":[{"body":{"nodeType":"YulBlock","src":"2224:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2233:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2236:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2226:6:16"},"nodeType":"YulFunctionCall","src":"2226:12:16"},"nodeType":"YulExpressionStatement","src":"2226:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"2199:7:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"2208:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2195:3:16"},"nodeType":"YulFunctionCall","src":"2195:23:16"},{"kind":"number","nodeType":"YulLiteral","src":"2220:2:16","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"2191:3:16"},"nodeType":"YulFunctionCall","src":"2191:32:16"},"nodeType":"YulIf","src":"2188:52:16"},{"nodeType":"YulAssignment","src":"2249:39:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2278:9:16"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"2259:18:16"},"nodeType":"YulFunctionCall","src":"2259:29:16"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"2249:6:16"}]},{"nodeType":"YulAssignment","src":"2297:48:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2330:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"2341:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2326:3:16"},"nodeType":"YulFunctionCall","src":"2326:18:16"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"2307:18:16"},"nodeType":"YulFunctionCall","src":"2307:38:16"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"2297:6:16"}]}]},"name":"abi_decode_tuple_t_addresst_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"2136:9:16","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"2147:7:16","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"2159:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2167:6:16","type":""}],"src":"2091:260:16"},{"body":{"nodeType":"YulBlock","src":"2411:325:16","statements":[{"nodeType":"YulAssignment","src":"2421:22:16","value":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2435:1:16","type":"","value":"1"},{"name":"data","nodeType":"YulIdentifier","src":"2438:4:16"}],"functionName":{"name":"shr","nodeType":"YulIdentifier","src":"2431:3:16"},"nodeType":"YulFunctionCall","src":"2431:12:16"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"2421:6:16"}]},{"nodeType":"YulVariableDeclaration","src":"2452:38:16","value":{"arguments":[{"name":"data","nodeType":"YulIdentifier","src":"2482:4:16"},{"kind":"number","nodeType":"YulLiteral","src":"2488:1:16","type":"","value":"1"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2478:3:16"},"nodeType":"YulFunctionCall","src":"2478:12:16"},"variables":[{"name":"outOfPlaceEncoding","nodeType":"YulTypedName","src":"2456:18:16","type":""}]},{"body":{"nodeType":"YulBlock","src":"2529:31:16","statements":[{"nodeType":"YulAssignment","src":"2531:27:16","value":{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"2545:6:16"},{"kind":"number","nodeType":"YulLiteral","src":"2553:4:16","type":"","value":"0x7f"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2541:3:16"},"nodeType":"YulFunctionCall","src":"2541:17:16"},"variableNames":[{"name":"length","nodeType":"YulIdentifier","src":"2531:6:16"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"2509:18:16"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"2502:6:16"},"nodeType":"YulFunctionCall","src":"2502:26:16"},"nodeType":"YulIf","src":"2499:61:16"},{"body":{"nodeType":"YulBlock","src":"2619:111:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2640:1:16","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2647:3:16","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"2652:10:16","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2643:3:16"},"nodeType":"YulFunctionCall","src":"2643:20:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2633:6:16"},"nodeType":"YulFunctionCall","src":"2633:31:16"},"nodeType":"YulExpressionStatement","src":"2633:31:16"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2684:1:16","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"2687:4:16","type":"","value":"0x22"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2677:6:16"},"nodeType":"YulFunctionCall","src":"2677:15:16"},"nodeType":"YulExpressionStatement","src":"2677:15:16"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2712:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"2715:4:16","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"2705:6:16"},"nodeType":"YulFunctionCall","src":"2705:15:16"},"nodeType":"YulExpressionStatement","src":"2705:15:16"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nodeType":"YulIdentifier","src":"2575:18:16"},{"arguments":[{"name":"length","nodeType":"YulIdentifier","src":"2598:6:16"},{"kind":"number","nodeType":"YulLiteral","src":"2606:2:16","type":"","value":"32"}],"functionName":{"name":"lt","nodeType":"YulIdentifier","src":"2595:2:16"},"nodeType":"YulFunctionCall","src":"2595:14:16"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"2572:2:16"},"nodeType":"YulFunctionCall","src":"2572:38:16"},"nodeType":"YulIf","src":"2569:161:16"}]},"name":"extract_byte_array_length","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nodeType":"YulTypedName","src":"2391:4:16","type":""}],"returnVariables":[{"name":"length","nodeType":"YulTypedName","src":"2400:6:16","type":""}],"src":"2356:380:16"},{"body":{"nodeType":"YulBlock","src":"2898:188:16","statements":[{"nodeType":"YulAssignment","src":"2908:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2920:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"2931:2:16","type":"","value":"96"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"2916:3:16"},"nodeType":"YulFunctionCall","src":"2916:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"2908:4:16"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"2950:9:16"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"2965:6:16"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"2981:3:16","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"2986:1:16","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"2977:3:16"},"nodeType":"YulFunctionCall","src":"2977:11:16"},{"kind":"number","nodeType":"YulLiteral","src":"2990:1:16","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"2973:3:16"},"nodeType":"YulFunctionCall","src":"2973:19:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"2961:3:16"},"nodeType":"YulFunctionCall","src":"2961:32:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"2943:6:16"},"nodeType":"YulFunctionCall","src":"2943:51:16"},"nodeType":"YulExpressionStatement","src":"2943:51:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3014:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"3025:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3010:3:16"},"nodeType":"YulFunctionCall","src":"3010:18:16"},{"name":"value1","nodeType":"YulIdentifier","src":"3030:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3003:6:16"},"nodeType":"YulFunctionCall","src":"3003:34:16"},"nodeType":"YulExpressionStatement","src":"3003:34:16"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3057:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"3068:2:16","type":"","value":"64"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3053:3:16"},"nodeType":"YulFunctionCall","src":"3053:18:16"},{"name":"value2","nodeType":"YulIdentifier","src":"3073:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3046:6:16"},"nodeType":"YulFunctionCall","src":"3046:34:16"},"nodeType":"YulExpressionStatement","src":"3046:34:16"}]},"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:16","type":""},{"name":"value2","nodeType":"YulTypedName","src":"2862:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"2870:6:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"2878:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"2889:4:16","type":""}],"src":"2741:345:16"},{"body":{"nodeType":"YulBlock","src":"3192:102:16","statements":[{"nodeType":"YulAssignment","src":"3202:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3214:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"3225:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3210:3:16"},"nodeType":"YulFunctionCall","src":"3210:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"3202:4:16"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"3244:9:16"},{"arguments":[{"name":"value0","nodeType":"YulIdentifier","src":"3259:6:16"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3275:3:16","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"3280:1:16","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3271:3:16"},"nodeType":"YulFunctionCall","src":"3271:11:16"},{"kind":"number","nodeType":"YulLiteral","src":"3284:1:16","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"3267:3:16"},"nodeType":"YulFunctionCall","src":"3267:19:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"3255:3:16"},"nodeType":"YulFunctionCall","src":"3255:32:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3237:6:16"},"nodeType":"YulFunctionCall","src":"3237:51:16"},"nodeType":"YulExpressionStatement","src":"3237:51:16"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"3161:9:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"3172:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"3183:4:16","type":""}],"src":"3091:203:16"},{"body":{"nodeType":"YulBlock","src":"3347:174:16","statements":[{"nodeType":"YulAssignment","src":"3357:16:16","value":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"3368:1:16"},{"name":"y","nodeType":"YulIdentifier","src":"3371:1:16"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"3364:3:16"},"nodeType":"YulFunctionCall","src":"3364:9:16"},"variableNames":[{"name":"sum","nodeType":"YulIdentifier","src":"3357:3:16"}]},{"body":{"nodeType":"YulBlock","src":"3404:111:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3425:1:16","type":"","value":"0"},{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3432:3:16","type":"","value":"224"},{"kind":"number","nodeType":"YulLiteral","src":"3437:10:16","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"3428:3:16"},"nodeType":"YulFunctionCall","src":"3428:20:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3418:6:16"},"nodeType":"YulFunctionCall","src":"3418:31:16"},"nodeType":"YulExpressionStatement","src":"3418:31:16"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3469:1:16","type":"","value":"4"},{"kind":"number","nodeType":"YulLiteral","src":"3472:4:16","type":"","value":"0x11"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"3462:6:16"},"nodeType":"YulFunctionCall","src":"3462:15:16"},"nodeType":"YulExpressionStatement","src":"3462:15:16"},{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"3497:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"3500:4:16","type":"","value":"0x24"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"3490:6:16"},"nodeType":"YulFunctionCall","src":"3490:15:16"},"nodeType":"YulExpressionStatement","src":"3490:15:16"}]},"condition":{"arguments":[{"name":"x","nodeType":"YulIdentifier","src":"3388:1:16"},{"name":"sum","nodeType":"YulIdentifier","src":"3391:3:16"}],"functionName":{"name":"gt","nodeType":"YulIdentifier","src":"3385:2:16"},"nodeType":"YulFunctionCall","src":"3385:10:16"},"nodeType":"YulIf","src":"3382:133:16"}]},"name":"checked_add_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nodeType":"YulTypedName","src":"3330:1:16","type":""},{"name":"y","nodeType":"YulTypedName","src":"3333:1:16","type":""}],"returnVariables":[{"name":"sum","nodeType":"YulTypedName","src":"3339:3:16","type":""}],"src":"3299:222:16"}]},"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":16,"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:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760:89:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3902:186;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:16;;1162:22;1144:41;;1132:2;1117:18;3902:186:6;1004:187:16;2803:97:6;2881:12;;2803:97;;;1342:25:16;;;1330:2;1315:18;2803:97:6;1196:177:16;4680:244:6;;;;;;:::i;:::-;;:::i;2688:82::-;;;2761:2;1853:36:16;;1841:2;1826:18;2688:82:6;1711:184:16;335:85:14;;;;;;:::i;:::-;;:::i;:::-;;2933:116:6;;;;;;:::i;:::-;-1:-1:-1;;;;;3024:18:6;2998:7;3024:18;;;;;;;;;;;;2933:116;1962:93;;;:::i;3244:178::-;;;;;;:::i;:::-;;:::i;3455:140::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3561:18:6;;;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:11;4029:31:6;735:10:11;4045:7:6;4054:5;4029:8;:31::i;:::-;4077:4;4070:11;;;3902:186;;;;;:::o;4680:244::-;4767:4;735:10:11;4823:37:6;4839:4;735:10:11;4854:5:6;4823:15;:37::i;:::-;4870:26;4880:4;4886:2;4890:5;4870:9;:26::i;:::-;-1:-1:-1;4913:4:6;;4680:244;-1:-1:-1;;;;4680:244:6:o;335:85:14:-;396:17;402:2;406:6;396:5;:17::i;:::-;335:85;;:::o;1962:93:6:-;2009:13;2041:7;2034:14;;;;;:::i;3244:178::-;3313:4;735:10:11;3367:27:6;735:10:11;3384:2:6;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:6;;;10418:24;3561:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10484:36:6;;10480:309;;;10559:5;10540:16;:24;10536:130;;;10591:60;;-1:-1:-1;;;10591:60:6;;-1:-1:-1;;;;;2961:32:16;;10591:60:6;;;2943:51:16;3010:18;;;3003:34;;;3053:18;;;3046:34;;;2916:18;;10591:60:6;;;;;;;;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:6;;5376:86;;5421:30;;-1:-1:-1;;;5421:30:6;;5448:1;5421:30;;;3237:51:16;3210:18;;5421:30:6;3091:203:16;5376:86:6;-1:-1:-1;;;;;5475:16:6;;5471:86;;5514:32;;-1:-1:-1;;;5514:32:6;;5543:1;5514:32;;;3237:51:16;3210:18;;5514:32:6;3091:203:16;5471:86:6;5566:24;5574:4;5580:2;5584:5;5566:7;:24::i;7362:208::-;-1:-1:-1;;;;;7432:21:6;;7428:91;;7476:32;;-1:-1:-1;;;7476:32:6;;7505:1;7476:32;;;3237:51:16;3210:18;;7476:32:6;3091:203:16;7428:91:6;7528:35;7544:1;7548:7;7557:5;7528:7;:35::i;9605:432::-;-1:-1:-1;;;;;9717:19:6;;9713:89;;9759:32;;-1:-1:-1;;;9759:32:6;;9788:1;9759:32;;;3237:51:16;3210:18;;9759:32:6;3091:203:16;9713:89:6;-1:-1:-1;;;;;9815:21:6;;9811:90;;9859:31;;-1:-1:-1;;;9859:31:6;;9887:1;9859:31;;;3237:51:16;3210:18;;9859:31:6;3091:203:16;9811:90:6;-1:-1:-1;;;;;9910:18:6;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;9955:76;;;;10005:7;-1:-1:-1;;;;;9989:31:6;9998:5;-1:-1:-1;;;;;9989:31:6;;10014:5;9989:31;;;;1342:25:16;;1330:2;1315:18;;1196:177;9989:31:6;;;;;;;;9605:432;;;;:::o;5912:1107::-;-1:-1:-1;;;;;6001:18:6;;5997:540;;6153:5;6137:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;5997:540:6;;-1:-1:-1;5997:540:6;;-1:-1:-1;;;;;6211:15:6;;6189:19;6211:15;;;;;;;;;;;6244:19;;;6240:115;;;6290:50;;-1:-1:-1;;;6290:50:6;;-1:-1:-1;;;;;2961:32:16;;6290:50:6;;;2943:51:16;3010:18;;;3003:34;;;3053:18;;;3046:34;;;2916:18;;6290:50:6;2741:345:16;6240:115:6;-1:-1:-1;;;;;6475:15:6;;:9;:15;;;;;;;;;;6493:19;;;;6475:37;;5997:540;-1:-1:-1;;;;;6551:16:6;;6547:425;;6714:12;:21;;;;;;;6547:425;;;-1:-1:-1;;;;;6925:13:6;;:9;:13;;;;;;;;;;:22;;;;;;6547:425;7002:2;-1:-1:-1;;;;;6987:25:6;6996:4;-1:-1:-1;;;;;6987:25:6;;7006:5;6987:25;;;;1342::16;;1330:2;1315:18;;1196:177;6987:25:6;;;;;;;;5912:1107;;;:::o;14:548:16:-;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:16;;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:16: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:16: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}","storageLayout":{"storage":[{"astId":646,"contract":"contracts/mocks/MockERC20.sol:MockERC20","label":"_balances","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":652,"contract":"contracts/mocks/MockERC20.sol:MockERC20","label":"_allowances","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_address,t_uint256))"},{"astId":654,"contract":"contracts/mocks/MockERC20.sol:MockERC20","label":"_totalSupply","offset":0,"slot":"2","type":"t_uint256"},{"astId":656,"contract":"contracts/mocks/MockERC20.sol:MockERC20","label":"_name","offset":0,"slot":"3","type":"t_string_storage"},{"astId":658,"contract":"contracts/mocks/MockERC20.sol:MockERC20","label":"_symbol","offset":0,"slot":"4","type":"t_string_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_mapping(t_address,t_mapping(t_address,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(address => uint256))","numberOfBytes":"32","value":"t_mapping(t_address,t_uint256)"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_string_storage":{"encoding":"bytes","label":"string","numberOfBytes":"32"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"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:15:-:0;;;167:4;136:35;;58:517;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@getLatestPrice_5535":{"entryPoint":212,"id":5535,"parameterSlots":1,"returnSlots":1},"@prices_5497":{"entryPoint":null,"id":5497,"parameterSlots":0,"returnSlots":0},"@setDefaultPrice_5545":{"entryPoint":null,"id":5545,"parameterSlots":1,"returnSlots":0},"@setPrice_5514":{"entryPoint":null,"id":5514,"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:16","statements":[{"nodeType":"YulBlock","src":"6:3:16","statements":[]},{"body":{"nodeType":"YulBlock","src":"63:124:16","statements":[{"nodeType":"YulAssignment","src":"73:29:16","value":{"arguments":[{"name":"offset","nodeType":"YulIdentifier","src":"95:6:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"82:12:16"},"nodeType":"YulFunctionCall","src":"82:20:16"},"variableNames":[{"name":"value","nodeType":"YulIdentifier","src":"73:5:16"}]},{"body":{"nodeType":"YulBlock","src":"165:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"174:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"177:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"167:6:16"},"nodeType":"YulFunctionCall","src":"167:12:16"},"nodeType":"YulExpressionStatement","src":"167:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"124:5:16"},{"arguments":[{"name":"value","nodeType":"YulIdentifier","src":"135:5:16"},{"arguments":[{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"150:3:16","type":"","value":"160"},{"kind":"number","nodeType":"YulLiteral","src":"155:1:16","type":"","value":"1"}],"functionName":{"name":"shl","nodeType":"YulIdentifier","src":"146:3:16"},"nodeType":"YulFunctionCall","src":"146:11:16"},{"kind":"number","nodeType":"YulLiteral","src":"159:1:16","type":"","value":"1"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"142:3:16"},"nodeType":"YulFunctionCall","src":"142:19:16"}],"functionName":{"name":"and","nodeType":"YulIdentifier","src":"131:3:16"},"nodeType":"YulFunctionCall","src":"131:31:16"}],"functionName":{"name":"eq","nodeType":"YulIdentifier","src":"121:2:16"},"nodeType":"YulFunctionCall","src":"121:42:16"}],"functionName":{"name":"iszero","nodeType":"YulIdentifier","src":"114:6:16"},"nodeType":"YulFunctionCall","src":"114:50:16"},"nodeType":"YulIf","src":"111:70:16"}]},"name":"abi_decode_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nodeType":"YulTypedName","src":"42:6:16","type":""}],"returnVariables":[{"name":"value","nodeType":"YulTypedName","src":"53:5:16","type":""}],"src":"14:173:16"},{"body":{"nodeType":"YulBlock","src":"279:167:16","statements":[{"body":{"nodeType":"YulBlock","src":"325:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"334:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"337:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"327:6:16"},"nodeType":"YulFunctionCall","src":"327:12:16"},"nodeType":"YulExpressionStatement","src":"327:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"300:7:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"309:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"296:3:16"},"nodeType":"YulFunctionCall","src":"296:23:16"},{"kind":"number","nodeType":"YulLiteral","src":"321:2:16","type":"","value":"64"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"292:3:16"},"nodeType":"YulFunctionCall","src":"292:32:16"},"nodeType":"YulIf","src":"289:52:16"},{"nodeType":"YulAssignment","src":"350:39:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"379:9:16"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"360:18:16"},"nodeType":"YulFunctionCall","src":"360:29:16"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"350:6:16"}]},{"nodeType":"YulAssignment","src":"398:42:16","value":{"arguments":[{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"425:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"436:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"421:3:16"},"nodeType":"YulFunctionCall","src":"421:18:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"408:12:16"},"nodeType":"YulFunctionCall","src":"408:32:16"},"variableNames":[{"name":"value1","nodeType":"YulIdentifier","src":"398:6:16"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"237:9:16","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"248:7:16","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"260:6:16","type":""},{"name":"value1","nodeType":"YulTypedName","src":"268:6:16","type":""}],"src":"192:254:16"},{"body":{"nodeType":"YulBlock","src":"521:116:16","statements":[{"body":{"nodeType":"YulBlock","src":"567:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"576:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"579:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"569:6:16"},"nodeType":"YulFunctionCall","src":"569:12:16"},"nodeType":"YulExpressionStatement","src":"569:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"542:7:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"551:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"538:3:16"},"nodeType":"YulFunctionCall","src":"538:23:16"},{"kind":"number","nodeType":"YulLiteral","src":"563:2:16","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"534:3:16"},"nodeType":"YulFunctionCall","src":"534:32:16"},"nodeType":"YulIf","src":"531:52:16"},{"nodeType":"YulAssignment","src":"592:39:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"621:9:16"}],"functionName":{"name":"abi_decode_address","nodeType":"YulIdentifier","src":"602:18:16"},"nodeType":"YulFunctionCall","src":"602:29:16"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"592:6:16"}]}]},"name":"abi_decode_tuple_t_address","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"487:9:16","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"498:7:16","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"510:6:16","type":""}],"src":"451:186:16"},{"body":{"nodeType":"YulBlock","src":"743:76:16","statements":[{"nodeType":"YulAssignment","src":"753:26:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"765:9:16"},{"kind":"number","nodeType":"YulLiteral","src":"776:2:16","type":"","value":"32"}],"functionName":{"name":"add","nodeType":"YulIdentifier","src":"761:3:16"},"nodeType":"YulFunctionCall","src":"761:18:16"},"variableNames":[{"name":"tail","nodeType":"YulIdentifier","src":"753:4:16"}]},{"expression":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"795:9:16"},{"name":"value0","nodeType":"YulIdentifier","src":"806:6:16"}],"functionName":{"name":"mstore","nodeType":"YulIdentifier","src":"788:6:16"},"nodeType":"YulFunctionCall","src":"788:25:16"},"nodeType":"YulExpressionStatement","src":"788:25:16"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"712:9:16","type":""},{"name":"value0","nodeType":"YulTypedName","src":"723:6:16","type":""}],"returnVariables":[{"name":"tail","nodeType":"YulTypedName","src":"734:4:16","type":""}],"src":"642:177:16"},{"body":{"nodeType":"YulBlock","src":"894:110:16","statements":[{"body":{"nodeType":"YulBlock","src":"940:16:16","statements":[{"expression":{"arguments":[{"kind":"number","nodeType":"YulLiteral","src":"949:1:16","type":"","value":"0"},{"kind":"number","nodeType":"YulLiteral","src":"952:1:16","type":"","value":"0"}],"functionName":{"name":"revert","nodeType":"YulIdentifier","src":"942:6:16"},"nodeType":"YulFunctionCall","src":"942:12:16"},"nodeType":"YulExpressionStatement","src":"942:12:16"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nodeType":"YulIdentifier","src":"915:7:16"},{"name":"headStart","nodeType":"YulIdentifier","src":"924:9:16"}],"functionName":{"name":"sub","nodeType":"YulIdentifier","src":"911:3:16"},"nodeType":"YulFunctionCall","src":"911:23:16"},{"kind":"number","nodeType":"YulLiteral","src":"936:2:16","type":"","value":"32"}],"functionName":{"name":"slt","nodeType":"YulIdentifier","src":"907:3:16"},"nodeType":"YulFunctionCall","src":"907:32:16"},"nodeType":"YulIf","src":"904:52:16"},{"nodeType":"YulAssignment","src":"965:33:16","value":{"arguments":[{"name":"headStart","nodeType":"YulIdentifier","src":"988:9:16"}],"functionName":{"name":"calldataload","nodeType":"YulIdentifier","src":"975:12:16"},"nodeType":"YulFunctionCall","src":"975:23:16"},"variableNames":[{"name":"value0","nodeType":"YulIdentifier","src":"965:6:16"}]}]},"name":"abi_decode_tuple_t_uint256","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nodeType":"YulTypedName","src":"860:9:16","type":""},{"name":"dataEnd","nodeType":"YulTypedName","src":"871:7:16","type":""}],"returnVariables":[{"name":"value0","nodeType":"YulTypedName","src":"883:6:16","type":""}],"src":"824:180:16"}]},"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":16,"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:15:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;205:95;;;;;;:::i;:::-;-1:-1:-1;;;;;272:13:15;;;:6;:13;;;;;;;;;;:21;205:95;;;310:167;;;;;;:::i;:::-;;:::i;:::-;;;788:25:16;;;776:2;761:18;310:167:15;;;;;;;487:86;;;;;;:::i;:::-;546:12;:20;487:86;89:41;;;;;;:::i;:::-;;;;;;;;;;;;;;;310:167;-1:-1:-1;;;;;407:13:15;;372:7;407:13;;;;;;;;;;;437:10;;:33;;465:5;437:33;;;450:12;;437:33;430:40;310:167;-1:-1:-1;;;310:167:15:o;14:173:16:-;82:20;;-1:-1:-1;;;;;131:31:16;;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:16: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:16;;824:180;-1:-1:-1;824:180:16: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}","storageLayout":{"storage":[{"astId":5497,"contract":"contracts/mocks/MockPriceOracle.sol:MockPriceOracle","label":"prices","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":5500,"contract":"contracts/mocks/MockPriceOracle.sol:MockPriceOracle","label":"defaultPrice","offset":0,"slot":"1","type":"t_uint256"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_mapping(t_address,t_uint256)":{"encoding":"mapping","key":"t_address","label":"mapping(address => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}}}}} |