-
-
Save codinghistorian/2ebfd1b787a56da976779d955c16836b to your computer and use it in GitHub Desktop.
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) | |
| pragma solidity ^0.8.0; | |
| import "../utils/ContextUpgradeable.sol"; | |
| import "../proxy/utils/Initializable.sol"; | |
| /** | |
| * @dev Contract module which provides a basic access control mechanism, where | |
| * there is an account (an owner) that can be granted exclusive access to | |
| * specific functions. | |
| * | |
| * By default, the owner account will be the one that deploys the contract. This | |
| * can later be changed with {transferOwnership}. | |
| * | |
| * This module is used through inheritance. It will make available the modifier | |
| * `onlyOwner`, which can be applied to your functions to restrict their use to | |
| * the owner. | |
| */ | |
| abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { | |
| address private _owner; | |
| event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); | |
| /** | |
| * @dev Initializes the contract setting the deployer as the initial owner. | |
| */ | |
| function __Ownable_init() internal onlyInitializing { | |
| __Ownable_init_unchained(); | |
| } | |
| function __Ownable_init_unchained() internal onlyInitializing { | |
| _transferOwnership(_msgSender()); | |
| } | |
| /** | |
| * @dev Throws if called by any account other than the owner. | |
| */ | |
| modifier onlyOwner() { | |
| _checkOwner(); | |
| _; | |
| } | |
| /** | |
| * @dev Returns the address of the current owner. | |
| */ | |
| function owner() public view virtual returns (address) { | |
| return _owner; | |
| } | |
| /** | |
| * @dev Throws if the sender is not the owner. | |
| */ | |
| function _checkOwner() internal view virtual { | |
| require(owner() == _msgSender(), "Ownable: caller is not the owner"); | |
| } | |
| /** | |
| * @dev Leaves the contract without owner. It will not be possible to call | |
| * `onlyOwner` functions. Can only be called by the current owner. | |
| * | |
| * NOTE: Renouncing ownership will leave the contract without an owner, | |
| * thereby disabling any functionality that is only available to the owner. | |
| */ | |
| function renounceOwnership() public virtual onlyOwner { | |
| _transferOwnership(address(0)); | |
| } | |
| /** | |
| * @dev Transfers ownership of the contract to a new account (`newOwner`). | |
| * Can only be called by the current owner. | |
| */ | |
| function transferOwnership(address newOwner) public virtual onlyOwner { | |
| require(newOwner != address(0), "Ownable: new owner is the zero address"); | |
| _transferOwnership(newOwner); | |
| } | |
| /** | |
| * @dev Transfers ownership of the contract to a new account (`newOwner`). | |
| * Internal function without access restriction. | |
| */ | |
| function _transferOwnership(address newOwner) internal virtual { | |
| address oldOwner = _owner; | |
| _owner = newOwner; | |
| emit OwnershipTransferred(oldOwner, newOwner); | |
| } | |
| /** | |
| * @dev This empty reserved space is put in place to allow future versions to add new | |
| * variables without shifting down storage in the inheritance chain. | |
| * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps | |
| */ | |
| uint256[49] private __gap; | |
| } |
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol) | |
| pragma solidity ^0.8.2; | |
| import "../../utils/AddressUpgradeable.sol"; | |
| /** | |
| * @dev 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] | |
| * ``` | |
| * /// @custom:oz-upgrades-unsafe-allow constructor | |
| * constructor() { | |
| * _disableInitializers(); | |
| * } | |
| * ``` | |
| * ==== | |
| */ | |
| abstract contract Initializable { | |
| /** | |
| * @dev Indicates that the contract has been initialized. | |
| * @custom:oz-retyped-from bool | |
| */ | |
| uint8 private _initialized; | |
| /** | |
| * @dev Indicates that the contract is in the process of being initialized. | |
| */ | |
| bool private _initializing; | |
| /** | |
| * @dev Triggered when the contract has been initialized or reinitialized. | |
| */ | |
| event Initialized(uint8 version); | |
| /** | |
| * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, | |
| * `onlyInitializing` functions can be used to initialize parent contracts. | |
| * | |
| * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a | |
| * constructor. | |
| * | |
| * Emits an {Initialized} event. | |
| */ | |
| modifier initializer() { | |
| bool isTopLevelCall = !_initializing; | |
| require( | |
| (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), | |
| "Initializable: contract is already initialized" | |
| ); | |
| _initialized = 1; | |
| if (isTopLevelCall) { | |
| _initializing = true; | |
| } | |
| _; | |
| if (isTopLevelCall) { | |
| _initializing = false; | |
| emit Initialized(1); | |
| } | |
| } | |
| /** | |
| * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the | |
| * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be | |
| * used to initialize parent contracts. | |
| * | |
| * A reinitializer may be used after the original initialization step. This is essential to configure modules that | |
| * are added through upgrades and that require initialization. | |
| * | |
| * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` | |
| * cannot be nested. If one is invoked in the context of another, execution will revert. | |
| * | |
| * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in | |
| * a contract, executing them in the right order is up to the developer or operator. | |
| * | |
| * WARNING: setting the version to 255 will prevent any future reinitialization. | |
| * | |
| * Emits an {Initialized} event. | |
| */ | |
| modifier reinitializer(uint8 version) { | |
| require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); | |
| _initialized = version; | |
| _initializing = true; | |
| _; | |
| _initializing = false; | |
| emit Initialized(version); | |
| } | |
| /** | |
| * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the | |
| * {initializer} and {reinitializer} modifiers, directly or indirectly. | |
| */ | |
| modifier onlyInitializing() { | |
| require(_initializing, "Initializable: contract is not initializing"); | |
| _; | |
| } | |
| /** | |
| * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. | |
| * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized | |
| * to any version. It is recommended to use this to lock implementation contracts that are designed to be called | |
| * through proxies. | |
| * | |
| * Emits an {Initialized} event the first time it is successfully executed. | |
| */ | |
| function _disableInitializers() internal virtual { | |
| require(!_initializing, "Initializable: contract is initializing"); | |
| if (_initialized != type(uint8).max) { | |
| _initialized = type(uint8).max; | |
| emit Initialized(type(uint8).max); | |
| } | |
| } | |
| /** | |
| * @dev Returns the highest version that has been initialized. See {reinitializer}. | |
| */ | |
| function _getInitializedVersion() internal view returns (uint8) { | |
| return _initialized; | |
| } | |
| /** | |
| * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. | |
| */ | |
| function _isInitializing() internal view returns (bool) { | |
| return _initializing; | |
| } | |
| } |
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) | |
| pragma solidity ^0.8.0; | |
| import "../utils/ContextUpgradeable.sol"; | |
| import "../proxy/utils/Initializable.sol"; | |
| /** | |
| * @dev Contract module which allows children to implement an emergency stop | |
| * mechanism that can be triggered by an authorized account. | |
| * | |
| * This module is used through inheritance. It will make available the | |
| * modifiers `whenNotPaused` and `whenPaused`, which can be applied to | |
| * the functions of your contract. Note that they will not be pausable by | |
| * simply including this module, only once the modifiers are put in place. | |
| */ | |
| abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { | |
| /** | |
| * @dev Emitted when the pause is triggered by `account`. | |
| */ | |
| event Paused(address account); | |
| /** | |
| * @dev Emitted when the pause is lifted by `account`. | |
| */ | |
| event Unpaused(address account); | |
| bool private _paused; | |
| /** | |
| * @dev Initializes the contract in unpaused state. | |
| */ | |
| function __Pausable_init() internal onlyInitializing { | |
| __Pausable_init_unchained(); | |
| } | |
| function __Pausable_init_unchained() internal onlyInitializing { | |
| _paused = false; | |
| } | |
| /** | |
| * @dev Modifier to make a function callable only when the contract is not paused. | |
| * | |
| * Requirements: | |
| * | |
| * - The contract must not be paused. | |
| */ | |
| modifier whenNotPaused() { | |
| _requireNotPaused(); | |
| _; | |
| } | |
| /** | |
| * @dev Modifier to make a function callable only when the contract is paused. | |
| * | |
| * Requirements: | |
| * | |
| * - The contract must be paused. | |
| */ | |
| modifier whenPaused() { | |
| _requirePaused(); | |
| _; | |
| } | |
| /** | |
| * @dev Returns true if the contract is paused, and false otherwise. | |
| */ | |
| function paused() public view virtual returns (bool) { | |
| return _paused; | |
| } | |
| /** | |
| * @dev Throws if the contract is paused. | |
| */ | |
| function _requireNotPaused() internal view virtual { | |
| require(!paused(), "Pausable: paused"); | |
| } | |
| /** | |
| * @dev Throws if the contract is not paused. | |
| */ | |
| function _requirePaused() internal view virtual { | |
| require(paused(), "Pausable: not paused"); | |
| } | |
| /** | |
| * @dev Triggers stopped state. | |
| * | |
| * Requirements: | |
| * | |
| * - The contract must not be paused. | |
| */ | |
| function _pause() internal virtual whenNotPaused { | |
| _paused = true; | |
| emit Paused(_msgSender()); | |
| } | |
| /** | |
| * @dev Returns to normal state. | |
| * | |
| * Requirements: | |
| * | |
| * - The contract must be paused. | |
| */ | |
| function _unpause() internal virtual whenPaused { | |
| _paused = false; | |
| emit Unpaused(_msgSender()); | |
| } | |
| /** | |
| * @dev This empty reserved space is put in place to allow future versions to add new | |
| * variables without shifting down storage in the inheritance chain. | |
| * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps | |
| */ | |
| uint256[49] private __gap; | |
| } |
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) | |
| pragma solidity ^0.8.0; | |
| import "../proxy/utils/Initializable.sol"; | |
| /** | |
| * @dev Contract module that helps prevent reentrant calls to a function. | |
| * | |
| * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier | |
| * available, which can be applied to functions to make sure there are no nested | |
| * (reentrant) calls to them. | |
| * | |
| * Note that because there is a single `nonReentrant` guard, functions marked as | |
| * `nonReentrant` may not call one another. This can be worked around by making | |
| * those functions `private`, and then adding `external` `nonReentrant` entry | |
| * points to them. | |
| * | |
| * TIP: If you would like to learn more about reentrancy and alternative ways | |
| * to protect against it, check out our blog post | |
| * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. | |
| */ | |
| abstract contract ReentrancyGuardUpgradeable is Initializable { | |
| // Booleans are more expensive than uint256 or any type that takes up a full | |
| // word because each write operation emits an extra SLOAD to first read the | |
| // slot's contents, replace the bits taken up by the boolean, and then write | |
| // back. This is the compiler's defense against contract upgrades and | |
| // pointer aliasing, and it cannot be disabled. | |
| // The values being non-zero value makes deployment a bit more expensive, | |
| // but in exchange the refund on every call to nonReentrant will be lower in | |
| // amount. Since refunds are capped to a percentage of the total | |
| // transaction's gas, it is best to keep them low in cases like this one, to | |
| // increase the likelihood of the full refund coming into effect. | |
| uint256 private constant _NOT_ENTERED = 1; | |
| uint256 private constant _ENTERED = 2; | |
| uint256 private _status; | |
| function __ReentrancyGuard_init() internal onlyInitializing { | |
| __ReentrancyGuard_init_unchained(); | |
| } | |
| function __ReentrancyGuard_init_unchained() internal onlyInitializing { | |
| _status = _NOT_ENTERED; | |
| } | |
| /** | |
| * @dev Prevents a contract from calling itself, directly or indirectly. | |
| * Calling a `nonReentrant` function from another `nonReentrant` | |
| * function is not supported. It is possible to prevent this from happening | |
| * by making the `nonReentrant` function external, and making it call a | |
| * `private` function that does the actual work. | |
| */ | |
| modifier nonReentrant() { | |
| _nonReentrantBefore(); | |
| _; | |
| _nonReentrantAfter(); | |
| } | |
| function _nonReentrantBefore() private { | |
| // On the first call to nonReentrant, _status will be _NOT_ENTERED | |
| require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); | |
| // Any calls to nonReentrant after this point will fail | |
| _status = _ENTERED; | |
| } | |
| function _nonReentrantAfter() private { | |
| // By storing the original value once again, a refund is triggered (see | |
| // https://eips.ethereum.org/EIPS/eip-2200) | |
| _status = _NOT_ENTERED; | |
| } | |
| /** | |
| * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a | |
| * `nonReentrant` function in the call stack. | |
| */ | |
| function _reentrancyGuardEntered() internal view returns (bool) { | |
| return _status == _ENTERED; | |
| } | |
| /** | |
| * @dev This empty reserved space is put in place to allow future versions to add new | |
| * variables without shifting down storage in the inheritance chain. | |
| * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps | |
| */ | |
| uint256[49] private __gap; | |
| } |
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) | |
| pragma solidity ^0.8.1; | |
| /** | |
| * @dev Collection of functions related to the address type | |
| */ | |
| library AddressUpgradeable { | |
| /** | |
| * @dev Returns true if `account` is a contract. | |
| * | |
| * [IMPORTANT] | |
| * ==== | |
| * It is unsafe to assume that an address for which this function returns | |
| * false is an externally-owned account (EOA) and not a contract. | |
| * | |
| * Among others, `isContract` will return false for the following | |
| * types of addresses: | |
| * | |
| * - an externally-owned account | |
| * - a contract in construction | |
| * - an address where a contract will be created | |
| * - an address where a contract lived, but was destroyed | |
| * | |
| * Furthermore, `isContract` will also return true if the target contract within | |
| * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, | |
| * which only has an effect at the end of a transaction. | |
| * ==== | |
| * | |
| * [IMPORTANT] | |
| * ==== | |
| * You shouldn't rely on `isContract` to protect against flash loan attacks! | |
| * | |
| * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets | |
| * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract | |
| * constructor. | |
| * ==== | |
| */ | |
| function isContract(address account) internal view returns (bool) { | |
| // This method relies on extcodesize/address.code.length, which returns 0 | |
| // for contracts in construction, since the code is only stored at the end | |
| // of the constructor execution. | |
| return account.code.length > 0; | |
| } | |
| /** | |
| * @dev Replacement for Solidity's `transfer`: sends `amount` wei to | |
| * `recipient`, forwarding all available gas and reverting on errors. | |
| * | |
| * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost | |
| * of certain opcodes, possibly making contracts go over the 2300 gas limit | |
| * imposed by `transfer`, making them unable to receive funds via | |
| * `transfer`. {sendValue} removes this limitation. | |
| * | |
| * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. | |
| * | |
| * IMPORTANT: because control is transferred to `recipient`, care must be | |
| * taken to not create reentrancy vulnerabilities. Consider using | |
| * {ReentrancyGuard} or the | |
| * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. | |
| */ | |
| function sendValue(address payable recipient, uint256 amount) internal { | |
| require(address(this).balance >= amount, "Address: insufficient balance"); | |
| (bool success, ) = recipient.call{value: amount}(""); | |
| require(success, "Address: unable to send value, recipient may have reverted"); | |
| } | |
| /** | |
| * @dev Performs a Solidity function call using a low level `call`. A | |
| * plain `call` is an unsafe replacement for a function call: use this | |
| * function instead. | |
| * | |
| * If `target` reverts with a revert reason, it is bubbled up by this | |
| * function (like regular Solidity function calls). | |
| * | |
| * Returns the raw returned data. To convert to the expected return value, | |
| * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. | |
| * | |
| * Requirements: | |
| * | |
| * - `target` must be a contract. | |
| * - calling `target` with `data` must not revert. | |
| * | |
| * _Available since v3.1._ | |
| */ | |
| function functionCall(address target, bytes memory data) internal returns (bytes memory) { | |
| return functionCallWithValue(target, data, 0, "Address: low-level call failed"); | |
| } | |
| /** | |
| * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with | |
| * `errorMessage` as a fallback revert reason when `target` reverts. | |
| * | |
| * _Available since v3.1._ | |
| */ | |
| function functionCall( | |
| address target, | |
| bytes memory data, | |
| string memory errorMessage | |
| ) internal returns (bytes memory) { | |
| return functionCallWithValue(target, data, 0, errorMessage); | |
| } | |
| /** | |
| * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], | |
| * but also transferring `value` wei to `target`. | |
| * | |
| * Requirements: | |
| * | |
| * - the calling contract must have an ETH balance of at least `value`. | |
| * - the called Solidity function must be `payable`. | |
| * | |
| * _Available since v3.1._ | |
| */ | |
| function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { | |
| return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); | |
| } | |
| /** | |
| * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but | |
| * with `errorMessage` as a fallback revert reason when `target` reverts. | |
| * | |
| * _Available since v3.1._ | |
| */ | |
| function functionCallWithValue( | |
| address target, | |
| bytes memory data, | |
| uint256 value, | |
| string memory errorMessage | |
| ) internal returns (bytes memory) { | |
| require(address(this).balance >= value, "Address: insufficient balance for call"); | |
| (bool success, bytes memory returndata) = target.call{value: value}(data); | |
| return verifyCallResultFromTarget(target, success, returndata, errorMessage); | |
| } | |
| /** | |
| * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], | |
| * but performing a static call. | |
| * | |
| * _Available since v3.3._ | |
| */ | |
| function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { | |
| return functionStaticCall(target, data, "Address: low-level static call failed"); | |
| } | |
| /** | |
| * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], | |
| * but performing a static call. | |
| * | |
| * _Available since v3.3._ | |
| */ | |
| function functionStaticCall( | |
| address target, | |
| bytes memory data, | |
| string memory errorMessage | |
| ) internal view returns (bytes memory) { | |
| (bool success, bytes memory returndata) = target.staticcall(data); | |
| return verifyCallResultFromTarget(target, success, returndata, errorMessage); | |
| } | |
| /** | |
| * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], | |
| * but performing a delegate call. | |
| * | |
| * _Available since v3.4._ | |
| */ | |
| function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { | |
| return functionDelegateCall(target, data, "Address: low-level delegate call failed"); | |
| } | |
| /** | |
| * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], | |
| * but performing a delegate call. | |
| * | |
| * _Available since v3.4._ | |
| */ | |
| function functionDelegateCall( | |
| address target, | |
| bytes memory data, | |
| string memory errorMessage | |
| ) internal returns (bytes memory) { | |
| (bool success, bytes memory returndata) = target.delegatecall(data); | |
| return verifyCallResultFromTarget(target, success, returndata, errorMessage); | |
| } | |
| /** | |
| * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling | |
| * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. | |
| * | |
| * _Available since v4.8._ | |
| */ | |
| function verifyCallResultFromTarget( | |
| address target, | |
| bool success, | |
| bytes memory returndata, | |
| string memory errorMessage | |
| ) internal view returns (bytes memory) { | |
| if (success) { | |
| if (returndata.length == 0) { | |
| // only check isContract if the call was successful and the return data is empty | |
| // otherwise we already know that it was a contract | |
| require(isContract(target), "Address: call to non-contract"); | |
| } | |
| return returndata; | |
| } else { | |
| _revert(returndata, errorMessage); | |
| } | |
| } | |
| /** | |
| * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the | |
| * revert reason or using the provided one. | |
| * | |
| * _Available since v4.3._ | |
| */ | |
| function verifyCallResult( | |
| bool success, | |
| bytes memory returndata, | |
| string memory errorMessage | |
| ) internal pure returns (bytes memory) { | |
| if (success) { | |
| return returndata; | |
| } else { | |
| _revert(returndata, errorMessage); | |
| } | |
| } | |
| function _revert(bytes memory returndata, string memory errorMessage) private pure { | |
| // Look for revert reason and bubble it up if present | |
| if (returndata.length > 0) { | |
| // The easiest way to bubble the revert reason is using memory via assembly | |
| /// @solidity memory-safe-assembly | |
| assembly { | |
| let returndata_size := mload(returndata) | |
| revert(add(32, returndata), returndata_size) | |
| } | |
| } else { | |
| revert(errorMessage); | |
| } | |
| } | |
| } |
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) | |
| pragma solidity ^0.8.0; | |
| import "../proxy/utils/Initializable.sol"; | |
| /** | |
| * @dev Provides information about the current execution context, including the | |
| * sender of the transaction and its data. While these are generally available | |
| * via msg.sender and msg.data, they should not be accessed in such a direct | |
| * manner, since when dealing with meta-transactions the account sending and | |
| * paying for execution may not be the actual sender (as far as an application | |
| * is concerned). | |
| * | |
| * This contract is only required for intermediate, library-like contracts. | |
| */ | |
| abstract contract ContextUpgradeable is Initializable { | |
| function __Context_init() internal onlyInitializing { | |
| } | |
| function __Context_init_unchained() internal onlyInitializing { | |
| } | |
| function _msgSender() internal view virtual returns (address) { | |
| return msg.sender; | |
| } | |
| function _msgData() internal view virtual returns (bytes calldata) { | |
| return msg.data; | |
| } | |
| /** | |
| * @dev This empty reserved space is put in place to allow future versions to add new | |
| * variables without shifting down storage in the inheritance chain. | |
| * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps | |
| */ | |
| uint256[50] private __gap; | |
| } |
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) | |
| pragma solidity ^0.8.0; | |
| // CAUTION | |
| // This version of SafeMath should only be used with Solidity 0.8 or later, | |
| // because it relies on the compiler's built in overflow checks. | |
| /** | |
| * @dev Wrappers over Solidity's arithmetic operations. | |
| * | |
| * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler | |
| * now has built in overflow checking. | |
| */ | |
| library SafeMathUpgradeable { | |
| /** | |
| * @dev Returns the addition of two unsigned integers, with an overflow flag. | |
| * | |
| * _Available since v3.4._ | |
| */ | |
| function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { | |
| unchecked { | |
| uint256 c = a + b; | |
| if (c < a) return (false, 0); | |
| return (true, c); | |
| } | |
| } | |
| /** | |
| * @dev Returns the subtraction of two unsigned integers, with an overflow flag. | |
| * | |
| * _Available since v3.4._ | |
| */ | |
| function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { | |
| unchecked { | |
| if (b > a) return (false, 0); | |
| return (true, a - b); | |
| } | |
| } | |
| /** | |
| * @dev Returns the multiplication of two unsigned integers, with an overflow flag. | |
| * | |
| * _Available since v3.4._ | |
| */ | |
| function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { | |
| unchecked { | |
| // Gas optimization: this is cheaper than requiring 'a' not being zero, but the | |
| // benefit is lost if 'b' is also tested. | |
| // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 | |
| if (a == 0) return (true, 0); | |
| uint256 c = a * b; | |
| if (c / a != b) return (false, 0); | |
| return (true, c); | |
| } | |
| } | |
| /** | |
| * @dev Returns the division of two unsigned integers, with a division by zero flag. | |
| * | |
| * _Available since v3.4._ | |
| */ | |
| function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { | |
| unchecked { | |
| if (b == 0) return (false, 0); | |
| return (true, a / b); | |
| } | |
| } | |
| /** | |
| * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. | |
| * | |
| * _Available since v3.4._ | |
| */ | |
| function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { | |
| unchecked { | |
| if (b == 0) return (false, 0); | |
| return (true, a % b); | |
| } | |
| } | |
| /** | |
| * @dev Returns the addition of two unsigned integers, reverting on | |
| * overflow. | |
| * | |
| * Counterpart to Solidity's `+` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - Addition cannot overflow. | |
| */ | |
| function add(uint256 a, uint256 b) internal pure returns (uint256) { | |
| return a + b; | |
| } | |
| /** | |
| * @dev Returns the subtraction of two unsigned integers, reverting on | |
| * overflow (when the result is negative). | |
| * | |
| * Counterpart to Solidity's `-` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - Subtraction cannot overflow. | |
| */ | |
| function sub(uint256 a, uint256 b) internal pure returns (uint256) { | |
| return a - b; | |
| } | |
| /** | |
| * @dev Returns the multiplication of two unsigned integers, reverting on | |
| * overflow. | |
| * | |
| * Counterpart to Solidity's `*` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - Multiplication cannot overflow. | |
| */ | |
| function mul(uint256 a, uint256 b) internal pure returns (uint256) { | |
| return a * b; | |
| } | |
| /** | |
| * @dev Returns the integer division of two unsigned integers, reverting on | |
| * division by zero. The result is rounded towards zero. | |
| * | |
| * Counterpart to Solidity's `/` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - The divisor cannot be zero. | |
| */ | |
| function div(uint256 a, uint256 b) internal pure returns (uint256) { | |
| return a / b; | |
| } | |
| /** | |
| * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), | |
| * reverting when dividing by zero. | |
| * | |
| * Counterpart to Solidity's `%` operator. This function uses a `revert` | |
| * opcode (which leaves remaining gas untouched) while Solidity uses an | |
| * invalid opcode to revert (consuming all remaining gas). | |
| * | |
| * Requirements: | |
| * | |
| * - The divisor cannot be zero. | |
| */ | |
| function mod(uint256 a, uint256 b) internal pure returns (uint256) { | |
| return a % b; | |
| } | |
| /** | |
| * @dev Returns the subtraction of two unsigned integers, reverting with custom message on | |
| * overflow (when the result is negative). | |
| * | |
| * CAUTION: This function is deprecated because it requires allocating memory for the error | |
| * message unnecessarily. For custom revert reasons use {trySub}. | |
| * | |
| * Counterpart to Solidity's `-` operator. | |
| * | |
| * Requirements: | |
| * | |
| * - Subtraction cannot overflow. | |
| */ | |
| function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { | |
| unchecked { | |
| require(b <= a, errorMessage); | |
| return a - b; | |
| } | |
| } | |
| /** | |
| * @dev Returns the integer division of two unsigned integers, reverting with custom message on | |
| * division by zero. The result is rounded towards zero. | |
| * | |
| * Counterpart to Solidity's `/` operator. Note: this function uses a | |
| * `revert` opcode (which leaves remaining gas untouched) while Solidity | |
| * uses an invalid opcode to revert (consuming all remaining gas). | |
| * | |
| * Requirements: | |
| * | |
| * - The divisor cannot be zero. | |
| */ | |
| function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { | |
| unchecked { | |
| require(b > 0, errorMessage); | |
| return a / b; | |
| } | |
| } | |
| /** | |
| * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), | |
| * reverting with custom message when dividing by zero. | |
| * | |
| * CAUTION: This function is deprecated because it requires allocating memory for the error | |
| * message unnecessarily. For custom revert reasons use {tryMod}. | |
| * | |
| * Counterpart to Solidity's `%` operator. This function uses a `revert` | |
| * opcode (which leaves remaining gas untouched) while Solidity uses an | |
| * invalid opcode to revert (consuming all remaining gas). | |
| * | |
| * Requirements: | |
| * | |
| * - The divisor cannot be zero. | |
| */ | |
| function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { | |
| unchecked { | |
| require(b > 0, errorMessage); | |
| return a % b; | |
| } | |
| } | |
| } |
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol) | |
| pragma solidity ^0.8.0; | |
| import "./IAccessControl.sol"; | |
| import "../utils/Context.sol"; | |
| import "../utils/Strings.sol"; | |
| import "../utils/introspection/ERC165.sol"; | |
| /** | |
| * @dev Contract module that allows children to implement role-based access | |
| * control mechanisms. This is a lightweight version that doesn't allow enumerating role | |
| * members except through off-chain means by accessing the contract event logs. Some | |
| * applications may benefit from on-chain enumerability, for those cases see | |
| * {AccessControlEnumerable}. | |
| * | |
| * Roles are referred to by their `bytes32` identifier. These should be exposed | |
| * in the external API and be unique. The best way to achieve this is by | |
| * using `public constant` hash digests: | |
| * | |
| * ``` | |
| * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); | |
| * ``` | |
| * | |
| * Roles can be used to represent a set of permissions. To restrict access to a | |
| * function call, use {hasRole}: | |
| * | |
| * ``` | |
| * function foo() public { | |
| * require(hasRole(MY_ROLE, msg.sender)); | |
| * ... | |
| * } | |
| * ``` | |
| * | |
| * Roles can be granted and revoked dynamically via the {grantRole} and | |
| * {revokeRole} functions. Each role has an associated admin role, and only | |
| * accounts that have a role's admin role can call {grantRole} and {revokeRole}. | |
| * | |
| * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means | |
| * that only accounts with this role will be able to grant or revoke other | |
| * roles. More complex role relationships can be created by using | |
| * {_setRoleAdmin}. | |
| * | |
| * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to | |
| * grant and revoke this role. Extra precautions should be taken to secure | |
| * accounts that have been granted it. | |
| */ | |
| abstract contract AccessControl is Context, IAccessControl, ERC165 { | |
| struct RoleData { | |
| mapping(address => bool) members; | |
| bytes32 adminRole; | |
| } | |
| mapping(bytes32 => RoleData) private _roles; | |
| bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; | |
| /** | |
| * @dev Modifier that checks that an account has a specific role. Reverts | |
| * with a standardized message including the required role. | |
| * | |
| * The format of the revert reason is given by the following regular expression: | |
| * | |
| * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ | |
| * | |
| * _Available since v4.1._ | |
| */ | |
| modifier onlyRole(bytes32 role) { | |
| _checkRole(role); | |
| _; | |
| } | |
| /** | |
| * @dev See {IERC165-supportsInterface}. | |
| */ | |
| function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { | |
| return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); | |
| } | |
| /** | |
| * @dev Returns `true` if `account` has been granted `role`. | |
| */ | |
| function hasRole(bytes32 role, address account) public view virtual override returns (bool) { | |
| return _roles[role].members[account]; | |
| } | |
| /** | |
| * @dev Revert with a standard message if `_msgSender()` is missing `role`. | |
| * Overriding this function changes the behavior of the {onlyRole} modifier. | |
| * | |
| * Format of the revert message is described in {_checkRole}. | |
| * | |
| * _Available since v4.6._ | |
| */ | |
| function _checkRole(bytes32 role) internal view virtual { | |
| _checkRole(role, _msgSender()); | |
| } | |
| /** | |
| * @dev Revert with a standard message if `account` is missing `role`. | |
| * | |
| * The format of the revert reason is given by the following regular expression: | |
| * | |
| * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ | |
| */ | |
| function _checkRole(bytes32 role, address account) internal view virtual { | |
| if (!hasRole(role, account)) { | |
| revert( | |
| string( | |
| abi.encodePacked( | |
| "AccessControl: account ", | |
| Strings.toHexString(account), | |
| " is missing role ", | |
| Strings.toHexString(uint256(role), 32) | |
| ) | |
| ) | |
| ); | |
| } | |
| } | |
| /** | |
| * @dev Returns the admin role that controls `role`. See {grantRole} and | |
| * {revokeRole}. | |
| * | |
| * To change a role's admin, use {_setRoleAdmin}. | |
| */ | |
| function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { | |
| return _roles[role].adminRole; | |
| } | |
| /** | |
| * @dev Grants `role` to `account`. | |
| * | |
| * If `account` had not been already granted `role`, emits a {RoleGranted} | |
| * event. | |
| * | |
| * Requirements: | |
| * | |
| * - the caller must have ``role``'s admin role. | |
| * | |
| * May emit a {RoleGranted} event. | |
| */ | |
| function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { | |
| _grantRole(role, account); | |
| } | |
| /** | |
| * @dev Revokes `role` from `account`. | |
| * | |
| * If `account` had been granted `role`, emits a {RoleRevoked} event. | |
| * | |
| * Requirements: | |
| * | |
| * - the caller must have ``role``'s admin role. | |
| * | |
| * May emit a {RoleRevoked} event. | |
| */ | |
| function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { | |
| _revokeRole(role, account); | |
| } | |
| /** | |
| * @dev Revokes `role` from the calling account. | |
| * | |
| * Roles are often managed via {grantRole} and {revokeRole}: this function's | |
| * purpose is to provide a mechanism for accounts to lose their privileges | |
| * if they are compromised (such as when a trusted device is misplaced). | |
| * | |
| * If the calling account had been revoked `role`, emits a {RoleRevoked} | |
| * event. | |
| * | |
| * Requirements: | |
| * | |
| * - the caller must be `account`. | |
| * | |
| * May emit a {RoleRevoked} event. | |
| */ | |
| function renounceRole(bytes32 role, address account) public virtual override { | |
| require(account == _msgSender(), "AccessControl: can only renounce roles for self"); | |
| _revokeRole(role, account); | |
| } | |
| /** | |
| * @dev Grants `role` to `account`. | |
| * | |
| * If `account` had not been already granted `role`, emits a {RoleGranted} | |
| * event. Note that unlike {grantRole}, this function doesn't perform any | |
| * checks on the calling account. | |
| * | |
| * May emit a {RoleGranted} event. | |
| * | |
| * [WARNING] | |
| * ==== | |
| * This function should only be called from the constructor when setting | |
| * up the initial roles for the system. | |
| * | |
| * Using this function in any other way is effectively circumventing the admin | |
| * system imposed by {AccessControl}. | |
| * ==== | |
| * | |
| * NOTE: This function is deprecated in favor of {_grantRole}. | |
| */ | |
| function _setupRole(bytes32 role, address account) internal virtual { | |
| _grantRole(role, account); | |
| } | |
| /** | |
| * @dev Sets `adminRole` as ``role``'s admin role. | |
| * | |
| * Emits a {RoleAdminChanged} event. | |
| */ | |
| function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { | |
| bytes32 previousAdminRole = getRoleAdmin(role); | |
| _roles[role].adminRole = adminRole; | |
| emit RoleAdminChanged(role, previousAdminRole, adminRole); | |
| } | |
| /** | |
| * @dev Grants `role` to `account`. | |
| * | |
| * Internal function without access restriction. | |
| * | |
| * May emit a {RoleGranted} event. | |
| */ | |
| function _grantRole(bytes32 role, address account) internal virtual { | |
| if (!hasRole(role, account)) { | |
| _roles[role].members[account] = true; | |
| emit RoleGranted(role, account, _msgSender()); | |
| } | |
| } | |
| /** | |
| * @dev Revokes `role` from `account`. | |
| * | |
| * Internal function without access restriction. | |
| * | |
| * May emit a {RoleRevoked} event. | |
| */ | |
| function _revokeRole(bytes32 role, address account) internal virtual { | |
| if (hasRole(role, account)) { | |
| _roles[role].members[account] = false; | |
| emit RoleRevoked(role, account, _msgSender()); | |
| } | |
| } | |
| } |
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) | |
| pragma solidity ^0.8.0; | |
| /** | |
| * @dev External interface of AccessControl declared to support ERC165 detection. | |
| */ | |
| interface IAccessControl { | |
| /** | |
| * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` | |
| * | |
| * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite | |
| * {RoleAdminChanged} not being emitted signaling this. | |
| * | |
| * _Available since v3.1._ | |
| */ | |
| event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); | |
| /** | |
| * @dev Emitted when `account` is granted `role`. | |
| * | |
| * `sender` is the account that originated the contract call, an admin role | |
| * bearer except when using {AccessControl-_setupRole}. | |
| */ | |
| event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); | |
| /** | |
| * @dev Emitted when `account` is revoked `role`. | |
| * | |
| * `sender` is the account that originated the contract call: | |
| * - if using `revokeRole`, it is the admin role bearer | |
| * - if using `renounceRole`, it is the role bearer (i.e. `account`) | |
| */ | |
| event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); | |
| /** | |
| * @dev Returns `true` if `account` has been granted `role`. | |
| */ | |
| function hasRole(bytes32 role, address account) external view returns (bool); | |
| /** | |
| * @dev Returns the admin role that controls `role`. See {grantRole} and | |
| * {revokeRole}. | |
| * | |
| * To change a role's admin, use {AccessControl-_setRoleAdmin}. | |
| */ | |
| function getRoleAdmin(bytes32 role) external view returns (bytes32); | |
| /** | |
| * @dev Grants `role` to `account`. | |
| * | |
| * If `account` had not been already granted `role`, emits a {RoleGranted} | |
| * event. | |
| * | |
| * Requirements: | |
| * | |
| * - the caller must have ``role``'s admin role. | |
| */ | |
| function grantRole(bytes32 role, address account) external; | |
| /** | |
| * @dev Revokes `role` from `account`. | |
| * | |
| * If `account` had been granted `role`, emits a {RoleRevoked} event. | |
| * | |
| * Requirements: | |
| * | |
| * - the caller must have ``role``'s admin role. | |
| */ | |
| function revokeRole(bytes32 role, address account) external; | |
| /** | |
| * @dev Revokes `role` from the calling account. | |
| * | |
| * Roles are often managed via {grantRole} and {revokeRole}: this function's | |
| * purpose is to provide a mechanism for accounts to lose their privileges | |
| * if they are compromised (such as when a trusted device is misplaced). | |
| * | |
| * If the calling account had been granted `role`, emits a {RoleRevoked} | |
| * event. | |
| * | |
| * Requirements: | |
| * | |
| * - the caller must be `account`. | |
| */ | |
| function renounceRole(bytes32 role, address account) external; | |
| } |
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) | |
| pragma solidity ^0.8.0; | |
| import "../utils/Context.sol"; | |
| /** | |
| * @dev Contract module which allows children to implement an emergency stop | |
| * mechanism that can be triggered by an authorized account. | |
| * | |
| * This module is used through inheritance. It will make available the | |
| * modifiers `whenNotPaused` and `whenPaused`, which can be applied to | |
| * the functions of your contract. Note that they will not be pausable by | |
| * simply including this module, only once the modifiers are put in place. | |
| */ | |
| abstract contract Pausable is Context { | |
| /** | |
| * @dev Emitted when the pause is triggered by `account`. | |
| */ | |
| event Paused(address account); | |
| /** | |
| * @dev Emitted when the pause is lifted by `account`. | |
| */ | |
| event Unpaused(address account); | |
| bool private _paused; | |
| /** | |
| * @dev Initializes the contract in unpaused state. | |
| */ | |
| constructor() { | |
| _paused = false; | |
| } | |
| /** | |
| * @dev Modifier to make a function callable only when the contract is not paused. | |
| * | |
| * Requirements: | |
| * | |
| * - The contract must not be paused. | |
| */ | |
| modifier whenNotPaused() { | |
| _requireNotPaused(); | |
| _; | |
| } | |
| /** | |
| * @dev Modifier to make a function callable only when the contract is paused. | |
| * | |
| * Requirements: | |
| * | |
| * - The contract must be paused. | |
| */ | |
| modifier whenPaused() { | |
| _requirePaused(); | |
| _; | |
| } | |
| /** | |
| * @dev Returns true if the contract is paused, and false otherwise. | |
| */ | |
| function paused() public view virtual returns (bool) { | |
| return _paused; | |
| } | |
| /** | |
| * @dev Throws if the contract is paused. | |
| */ | |
| function _requireNotPaused() internal view virtual { | |
| require(!paused(), "Pausable: paused"); | |
| } | |
| /** | |
| * @dev Throws if the contract is not paused. | |
| */ | |
| function _requirePaused() internal view virtual { | |
| require(paused(), "Pausable: not paused"); | |
| } | |
| /** | |
| * @dev Triggers stopped state. | |
| * | |
| * Requirements: | |
| * | |
| * - The contract must not be paused. | |
| */ | |
| function _pause() internal virtual whenNotPaused { | |
| _paused = true; | |
| emit Paused(_msgSender()); | |
| } | |
| /** | |
| * @dev Returns to normal state. | |
| * | |
| * Requirements: | |
| * | |
| * - The contract must be paused. | |
| */ | |
| function _unpause() internal virtual whenPaused { | |
| _paused = false; | |
| emit Unpaused(_msgSender()); | |
| } | |
| } |
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) | |
| pragma solidity ^0.8.0; | |
| /** | |
| * @dev Contract module that helps prevent reentrant calls to a function. | |
| * | |
| * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier | |
| * available, which can be applied to functions to make sure there are no nested | |
| * (reentrant) calls to them. | |
| * | |
| * Note that because there is a single `nonReentrant` guard, functions marked as | |
| * `nonReentrant` may not call one another. This can be worked around by making | |
| * those functions `private`, and then adding `external` `nonReentrant` entry | |
| * points to them. | |
| * | |
| * TIP: If you would like to learn more about reentrancy and alternative ways | |
| * to protect against it, check out our blog post | |
| * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. | |
| */ | |
| abstract contract ReentrancyGuard { | |
| // Booleans are more expensive than uint256 or any type that takes up a full | |
| // word because each write operation emits an extra SLOAD to first read the | |
| // slot's contents, replace the bits taken up by the boolean, and then write | |
| // back. This is the compiler's defense against contract upgrades and | |
| // pointer aliasing, and it cannot be disabled. | |
| // The values being non-zero value makes deployment a bit more expensive, | |
| // but in exchange the refund on every call to nonReentrant will be lower in | |
| // amount. Since refunds are capped to a percentage of the total | |
| // transaction's gas, it is best to keep them low in cases like this one, to | |
| // increase the likelihood of the full refund coming into effect. | |
| uint256 private constant _NOT_ENTERED = 1; | |
| uint256 private constant _ENTERED = 2; | |
| uint256 private _status; | |
| constructor() { | |
| _status = _NOT_ENTERED; | |
| } | |
| /** | |
| * @dev Prevents a contract from calling itself, directly or indirectly. | |
| * Calling a `nonReentrant` function from another `nonReentrant` | |
| * function is not supported. It is possible to prevent this from happening | |
| * by making the `nonReentrant` function external, and making it call a | |
| * `private` function that does the actual work. | |
| */ | |
| modifier nonReentrant() { | |
| _nonReentrantBefore(); | |
| _; | |
| _nonReentrantAfter(); | |
| } | |
| function _nonReentrantBefore() private { | |
| // On the first call to nonReentrant, _status will be _NOT_ENTERED | |
| require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); | |
| // Any calls to nonReentrant after this point will fail | |
| _status = _ENTERED; | |
| } | |
| function _nonReentrantAfter() private { | |
| // By storing the original value once again, a refund is triggered (see | |
| // https://eips.ethereum.org/EIPS/eip-2200) | |
| _status = _NOT_ENTERED; | |
| } | |
| } |
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) | |
| pragma solidity ^0.8.0; | |
| /** | |
| * @dev Provides information about the current execution context, including the | |
| * sender of the transaction and its data. While these are generally available | |
| * via msg.sender and msg.data, they should not be accessed in such a direct | |
| * manner, since when dealing with meta-transactions the account sending and | |
| * paying for execution may not be the actual sender (as far as an application | |
| * is concerned). | |
| * | |
| * This contract is only required for intermediate, library-like contracts. | |
| */ | |
| abstract contract Context { | |
| function _msgSender() internal view virtual returns (address) { | |
| return msg.sender; | |
| } | |
| function _msgData() internal view virtual returns (bytes calldata) { | |
| return msg.data; | |
| } | |
| } |
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) | |
| pragma solidity ^0.8.0; | |
| import "./IERC165.sol"; | |
| /** | |
| * @dev Implementation of the {IERC165} interface. | |
| * | |
| * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check | |
| * for the additional interface id that will be supported. For example: | |
| * | |
| * ```solidity | |
| * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { | |
| * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); | |
| * } | |
| * ``` | |
| * | |
| * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. | |
| */ | |
| abstract contract ERC165 is IERC165 { | |
| /** | |
| * @dev See {IERC165-supportsInterface}. | |
| */ | |
| function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { | |
| return interfaceId == type(IERC165).interfaceId; | |
| } | |
| } |
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) | |
| pragma solidity ^0.8.0; | |
| /** | |
| * @dev Interface of the ERC165 standard, as defined in the | |
| * https://eips.ethereum.org/EIPS/eip-165[EIP]. | |
| * | |
| * Implementers can declare support of contract interfaces, which can then be | |
| * queried by others ({ERC165Checker}). | |
| * | |
| * For an implementation, see {ERC165}. | |
| */ | |
| interface IERC165 { | |
| /** | |
| * @dev Returns true if this contract implements the interface defined by | |
| * `interfaceId`. See the corresponding | |
| * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] | |
| * to learn more about how these ids are created. | |
| * | |
| * This function call must use less than 30 000 gas. | |
| */ | |
| function supportsInterface(bytes4 interfaceId) external view returns (bool); | |
| } |
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) | |
| pragma solidity ^0.8.0; | |
| /** | |
| * @dev Standard math utilities missing in the Solidity language. | |
| */ | |
| library Math { | |
| enum Rounding { | |
| Down, // Toward negative infinity | |
| Up, // Toward infinity | |
| Zero // Toward zero | |
| } | |
| /** | |
| * @dev Returns the largest of two numbers. | |
| */ | |
| function max(uint256 a, uint256 b) internal pure returns (uint256) { | |
| return a > b ? a : b; | |
| } | |
| /** | |
| * @dev Returns the smallest of two numbers. | |
| */ | |
| function min(uint256 a, uint256 b) internal pure returns (uint256) { | |
| return a < b ? a : b; | |
| } | |
| /** | |
| * @dev Returns the average of two numbers. The result is rounded towards | |
| * zero. | |
| */ | |
| function average(uint256 a, uint256 b) internal pure returns (uint256) { | |
| // (a + b) / 2 can overflow. | |
| return (a & b) + (a ^ b) / 2; | |
| } | |
| /** | |
| * @dev Returns the ceiling of the division of two numbers. | |
| * | |
| * This differs from standard division with `/` in that it rounds up instead | |
| * of rounding down. | |
| */ | |
| function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { | |
| // (a + b - 1) / b can overflow on addition, so we distribute. | |
| return a == 0 ? 0 : (a - 1) / b + 1; | |
| } | |
| /** | |
| * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 | |
| * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) | |
| * with further edits by Uniswap Labs also under MIT license. | |
| */ | |
| function mulDiv( | |
| uint256 x, | |
| uint256 y, | |
| uint256 denominator | |
| ) internal pure returns (uint256 result) { | |
| unchecked { | |
| // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use | |
| // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 | |
| // variables such that product = prod1 * 2^256 + prod0. | |
| uint256 prod0; // Least significant 256 bits of the product | |
| uint256 prod1; // Most significant 256 bits of the product | |
| assembly { | |
| let mm := mulmod(x, y, not(0)) | |
| prod0 := mul(x, y) | |
| prod1 := sub(sub(mm, prod0), lt(mm, prod0)) | |
| } | |
| // Handle non-overflow cases, 256 by 256 division. | |
| if (prod1 == 0) { | |
| return prod0 / denominator; | |
| } | |
| // Make sure the result is less than 2^256. Also prevents denominator == 0. | |
| require(denominator > prod1); | |
| /////////////////////////////////////////////// | |
| // 512 by 256 division. | |
| /////////////////////////////////////////////// | |
| // Make division exact by subtracting the remainder from [prod1 prod0]. | |
| uint256 remainder; | |
| assembly { | |
| // Compute remainder using mulmod. | |
| remainder := mulmod(x, y, denominator) | |
| // Subtract 256 bit number from 512 bit number. | |
| prod1 := sub(prod1, gt(remainder, prod0)) | |
| prod0 := sub(prod0, remainder) | |
| } | |
| // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. | |
| // See https://cs.stackexchange.com/q/138556/92363. | |
| // Does not overflow because the denominator cannot be zero at this stage in the function. | |
| uint256 twos = denominator & (~denominator + 1); | |
| assembly { | |
| // Divide denominator by twos. | |
| denominator := div(denominator, twos) | |
| // Divide [prod1 prod0] by twos. | |
| prod0 := div(prod0, twos) | |
| // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. | |
| twos := add(div(sub(0, twos), twos), 1) | |
| } | |
| // Shift in bits from prod1 into prod0. | |
| prod0 |= prod1 * twos; | |
| // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such | |
| // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for | |
| // four bits. That is, denominator * inv = 1 mod 2^4. | |
| uint256 inverse = (3 * denominator) ^ 2; | |
| // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works | |
| // in modular arithmetic, doubling the correct bits in each step. | |
| inverse *= 2 - denominator * inverse; // inverse mod 2^8 | |
| inverse *= 2 - denominator * inverse; // inverse mod 2^16 | |
| inverse *= 2 - denominator * inverse; // inverse mod 2^32 | |
| inverse *= 2 - denominator * inverse; // inverse mod 2^64 | |
| inverse *= 2 - denominator * inverse; // inverse mod 2^128 | |
| inverse *= 2 - denominator * inverse; // inverse mod 2^256 | |
| // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. | |
| // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is | |
| // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 | |
| // is no longer required. | |
| result = prod0 * inverse; | |
| return result; | |
| } | |
| } | |
| /** | |
| * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. | |
| */ | |
| function mulDiv( | |
| uint256 x, | |
| uint256 y, | |
| uint256 denominator, | |
| Rounding rounding | |
| ) internal pure returns (uint256) { | |
| uint256 result = mulDiv(x, y, denominator); | |
| if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { | |
| result += 1; | |
| } | |
| return result; | |
| } | |
| /** | |
| * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. | |
| * | |
| * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). | |
| */ | |
| function sqrt(uint256 a) internal pure returns (uint256) { | |
| if (a == 0) { | |
| return 0; | |
| } | |
| // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. | |
| // | |
| // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have | |
| // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. | |
| // | |
| // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` | |
| // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` | |
| // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` | |
| // | |
| // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. | |
| uint256 result = 1 << (log2(a) >> 1); | |
| // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, | |
| // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at | |
| // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision | |
| // into the expected uint128 result. | |
| unchecked { | |
| result = (result + a / result) >> 1; | |
| result = (result + a / result) >> 1; | |
| result = (result + a / result) >> 1; | |
| result = (result + a / result) >> 1; | |
| result = (result + a / result) >> 1; | |
| result = (result + a / result) >> 1; | |
| result = (result + a / result) >> 1; | |
| return min(result, a / result); | |
| } | |
| } | |
| /** | |
| * @notice Calculates sqrt(a), following the selected rounding direction. | |
| */ | |
| function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { | |
| unchecked { | |
| uint256 result = sqrt(a); | |
| return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); | |
| } | |
| } | |
| /** | |
| * @dev Return the log in base 2, rounded down, of a positive value. | |
| * Returns 0 if given 0. | |
| */ | |
| function log2(uint256 value) internal pure returns (uint256) { | |
| uint256 result = 0; | |
| unchecked { | |
| if (value >> 128 > 0) { | |
| value >>= 128; | |
| result += 128; | |
| } | |
| if (value >> 64 > 0) { | |
| value >>= 64; | |
| result += 64; | |
| } | |
| if (value >> 32 > 0) { | |
| value >>= 32; | |
| result += 32; | |
| } | |
| if (value >> 16 > 0) { | |
| value >>= 16; | |
| result += 16; | |
| } | |
| if (value >> 8 > 0) { | |
| value >>= 8; | |
| result += 8; | |
| } | |
| if (value >> 4 > 0) { | |
| value >>= 4; | |
| result += 4; | |
| } | |
| if (value >> 2 > 0) { | |
| value >>= 2; | |
| result += 2; | |
| } | |
| if (value >> 1 > 0) { | |
| result += 1; | |
| } | |
| } | |
| return result; | |
| } | |
| /** | |
| * @dev Return the log in base 2, following the selected rounding direction, of a positive value. | |
| * Returns 0 if given 0. | |
| */ | |
| function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { | |
| unchecked { | |
| uint256 result = log2(value); | |
| return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); | |
| } | |
| } | |
| /** | |
| * @dev Return the log in base 10, rounded down, of a positive value. | |
| * Returns 0 if given 0. | |
| */ | |
| function log10(uint256 value) internal pure returns (uint256) { | |
| uint256 result = 0; | |
| unchecked { | |
| if (value >= 10**64) { | |
| value /= 10**64; | |
| result += 64; | |
| } | |
| if (value >= 10**32) { | |
| value /= 10**32; | |
| result += 32; | |
| } | |
| if (value >= 10**16) { | |
| value /= 10**16; | |
| result += 16; | |
| } | |
| if (value >= 10**8) { | |
| value /= 10**8; | |
| result += 8; | |
| } | |
| if (value >= 10**4) { | |
| value /= 10**4; | |
| result += 4; | |
| } | |
| if (value >= 10**2) { | |
| value /= 10**2; | |
| result += 2; | |
| } | |
| if (value >= 10**1) { | |
| result += 1; | |
| } | |
| } | |
| return result; | |
| } | |
| /** | |
| * @dev Return the log in base 10, following the selected rounding direction, of a positive value. | |
| * Returns 0 if given 0. | |
| */ | |
| function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { | |
| unchecked { | |
| uint256 result = log10(value); | |
| return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); | |
| } | |
| } | |
| /** | |
| * @dev Return the log in base 256, rounded down, of a positive value. | |
| * Returns 0 if given 0. | |
| * | |
| * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. | |
| */ | |
| function log256(uint256 value) internal pure returns (uint256) { | |
| uint256 result = 0; | |
| unchecked { | |
| if (value >> 128 > 0) { | |
| value >>= 128; | |
| result += 16; | |
| } | |
| if (value >> 64 > 0) { | |
| value >>= 64; | |
| result += 8; | |
| } | |
| if (value >> 32 > 0) { | |
| value >>= 32; | |
| result += 4; | |
| } | |
| if (value >> 16 > 0) { | |
| value >>= 16; | |
| result += 2; | |
| } | |
| if (value >> 8 > 0) { | |
| result += 1; | |
| } | |
| } | |
| return result; | |
| } | |
| /** | |
| * @dev Return the log in base 10, following the selected rounding direction, of a positive value. | |
| * Returns 0 if given 0. | |
| */ | |
| function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { | |
| unchecked { | |
| uint256 result = log256(value); | |
| return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); | |
| } | |
| } | |
| } |
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) | |
| pragma solidity ^0.8.0; | |
| import "./math/Math.sol"; | |
| /** | |
| * @dev String operations. | |
| */ | |
| library Strings { | |
| bytes16 private constant _SYMBOLS = "0123456789abcdef"; | |
| uint8 private constant _ADDRESS_LENGTH = 20; | |
| /** | |
| * @dev Converts a `uint256` to its ASCII `string` decimal representation. | |
| */ | |
| function toString(uint256 value) internal pure returns (string memory) { | |
| unchecked { | |
| uint256 length = Math.log10(value) + 1; | |
| string memory buffer = new string(length); | |
| uint256 ptr; | |
| /// @solidity memory-safe-assembly | |
| assembly { | |
| ptr := add(buffer, add(32, length)) | |
| } | |
| while (true) { | |
| ptr--; | |
| /// @solidity memory-safe-assembly | |
| assembly { | |
| mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) | |
| } | |
| value /= 10; | |
| if (value == 0) break; | |
| } | |
| return buffer; | |
| } | |
| } | |
| /** | |
| * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. | |
| */ | |
| function toHexString(uint256 value) internal pure returns (string memory) { | |
| unchecked { | |
| return toHexString(value, Math.log256(value) + 1); | |
| } | |
| } | |
| /** | |
| * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. | |
| */ | |
| function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { | |
| bytes memory buffer = new bytes(2 * length + 2); | |
| buffer[0] = "0"; | |
| buffer[1] = "x"; | |
| for (uint256 i = 2 * length + 1; i > 1; --i) { | |
| buffer[i] = _SYMBOLS[value & 0xf]; | |
| value >>= 4; | |
| } | |
| require(value == 0, "Strings: hex length insufficient"); | |
| return string(buffer); | |
| } | |
| /** | |
| * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. | |
| */ | |
| function toHexString(address addr) internal pure returns (string memory) { | |
| return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); | |
| } | |
| } |
| { | |
| "overrides": [ | |
| { | |
| "files": "*.sol", | |
| "options": { | |
| "printWidth": 80, | |
| "tabWidth": 4, | |
| "useTabs": false, | |
| "singleQuote": false, | |
| "bracketSpacing": false | |
| } | |
| }, | |
| { | |
| "files": "*.yml", | |
| "options": {} | |
| }, | |
| { | |
| "files": "*.yaml", | |
| "options": {} | |
| }, | |
| { | |
| "files": "*.toml", | |
| "options": {} | |
| }, | |
| { | |
| "files": "*.json", | |
| "options": {} | |
| }, | |
| { | |
| "files": "*.js", | |
| "options": {} | |
| }, | |
| { | |
| "files": "*.ts", | |
| "options": {} | |
| } | |
| ] | |
| } |
| REMIX DEFAULT WORKSPACE | |
| Remix default workspace is present when: | |
| i. Remix loads for the very first time | |
| ii. A new workspace is created with 'Default' template | |
| iii. There are no files existing in the File Explorer | |
| This workspace contains 3 directories: | |
| 1. 'contracts': Holds three contracts with increasing levels of complexity. | |
| 2. 'scripts': Contains four typescript files to deploy a contract. It is explained below. | |
| 3. 'tests': Contains one Solidity test file for 'Ballot' contract & one JS test file for 'Storage' contract. | |
| SCRIPTS | |
| The 'scripts' folder has four typescript files which help to deploy the 'Storage' contract using 'web3.js' and 'ethers.js' libraries. | |
| For the deployment of any other contract, just update the contract's name from 'Storage' to the desired contract and provide constructor arguments accordingly | |
| in the file `deploy_with_ethers.ts` or `deploy_with_web3.ts` | |
| In the 'tests' folder there is a script containing Mocha-Chai unit tests for 'Storage' contract. | |
| To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled. | |
| Output from script will appear in remix terminal. | |
| Please note, require/import is supported in a limited manner for Remix supported modules. | |
| For now, modules supported by Remix are ethers, web3, swarmgw, chai, multihashes, remix and hardhat only for hardhat.ethers object/plugin. | |
| For unsupported modules, an error like this will be thrown: '<module_name> module require is not supported by Remix IDE' will be shown. |
| // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity >=0.7.0 <0.9.0; | |
| contract OverflowTest { | |
| function addOverflow(uint256 x, int256 y) external pure returns (uint256 z) { | |
| unchecked { | |
| z = x + uint256(y); | |
| } | |
| // require(y >= 0 || z <= x); | |
| // require(y <= 0 || z >= x); | |
| } | |
| function addProtected(uint256 x, int256 y) external pure returns (uint256 z) { | |
| unchecked { | |
| z = x + uint256(y); | |
| } | |
| require(y >= 0 || z <= x, "hurdle#1"); | |
| require(y <= 0 || z >= x, "hurdle#2"); | |
| } | |
| } |
| // SPDX-License-Identifier: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| import "@openzeppelin/contracts/security/Pausable.sol"; | |
| import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; | |
| import "@openzeppelin/contracts/access/AccessControl.sol"; | |
| import "./IVault.sol"; | |
| import "./IAccessControlConfig.sol"; | |
| contract Vault is IVault, Pausable, ReentrancyGuard { | |
| address accessControlConfig; | |
| event LogLockXDC(uint256 amount); | |
| event LogUnlockXDC(address indexed _destination, uint256 amount); | |
| // modifier onlyOwnerOrGov() { | |
| // IAccessControlConfig _accessControlConfig = IAccessControlConfig(accessControlConfig); | |
| // require( | |
| // _accessControlConfig.hasRole(_accessControlConfig.OWNER_ROLE(), msg.sender) || | |
| // _accessControlConfig.hasRole(_accessControlConfig.GOV_ROLE(), msg.sender), | |
| // "!(ownerRole or govRole)" | |
| // ); | |
| // _; | |
| // } | |
| // modifier onlyVanillaAdapter() { | |
| // IAccessControlConfig _accessControlConfig = IAccessControlConfig(accessControlConfig); | |
| // require( | |
| // _accessControlConfig.hasRole(_accessControlConfig.VANILLA_ADAPTER_ROLE(), msg.sender), | |
| // "!(ownerRole or govRole)" | |
| // ); | |
| // _; | |
| // } | |
| // constructor( | |
| // address _accessControlConfig | |
| // ) { | |
| // accessControlConfig = _accessControlConfig; | |
| // } | |
| function lockXDC( | |
| bytes calldata data | |
| ) external payable nonReentrant whenNotPaused { | |
| emit LogLockXDC(msg.value); | |
| } | |
| function unlockXDC( | |
| address destination, | |
| uint256 wad, | |
| bytes calldata data | |
| ) external nonReentrant whenNotPaused | |
| // onlyVanillaAdapter | |
| { | |
| (bool success2, ) = destination.call{value: wad}(""); | |
| require(success2, "Vault/XDC-withdrawl-fail"); | |
| emit LogUnlockXDC(destination, wad); | |
| } | |
| function pause() external | |
| // onlyOwnerOrGov | |
| { | |
| _pause(); | |
| } | |
| function unpause() external | |
| // onlyOwnerOrGov | |
| { | |
| _unpause(); | |
| } | |
| receive() external payable { | |
| } | |
| } |
| { | |
| "deploy": { | |
| "VM:-": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "main:1": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "ropsten:3": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "rinkeby:4": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "kovan:42": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "goerli:5": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "Custom": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| } | |
| }, | |
| "data": { | |
| "bytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "linkReferences": {}, | |
| "object": "608060405234801561001057600080fd5b5060b28061001f6000396000f3fe6080604052348015600f57600080fd5b506004361060285760003560e01c80633f624e3414602d575b600080fd5b60336047565b604051603e91906063565b60405180910390f35b600090565b6000819050919050565b605d81604c565b82525050565b6000602082019050607660008301846056565b9291505056fea264697066735822122058481ccd4342d972b0066c0a4d42e72570e2ef421a192b7b2e57d7f9091e856a64736f6c63430008120033", | |
| "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xB2 DUP1 PUSH2 0x1F PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH1 0x28 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3F624E34 EQ PUSH1 0x2D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x33 PUSH1 0x47 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x3E SWAP2 SWAP1 PUSH1 0x63 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x5D DUP2 PUSH1 0x4C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x76 PUSH1 0x0 DUP4 ADD DUP5 PUSH1 0x56 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PC BASEFEE SHR 0xCD NUMBER TIMESTAMP 0xD9 PUSH19 0xB0066C0A4D42E72570E2EF421A192B7B2E57D7 0xF9 MULMOD 0x1E DUP6 PUSH11 0x64736F6C63430008120033 ", | |
| "sourceMap": "749:133:0:-:0;;;;;;;;;;;;;;;;;;;" | |
| }, | |
| "deployedBytecode": { | |
| "functionDebugData": { | |
| "@NotTotalStablecoinIssued_50": { | |
| "entryPoint": 71, | |
| "id": 50, | |
| "parameterSlots": 0, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_uint256_to_t_uint256_fromStack": { | |
| "entryPoint": 86, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": { | |
| "entryPoint": 99, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_uint256": { | |
| "entryPoint": 76, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| } | |
| }, | |
| "generatedSources": [ | |
| { | |
| "ast": { | |
| "nodeType": "YulBlock", | |
| "src": "0:439:1", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "52:32:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "62:16:1", | |
| "value": { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "73:5:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "62:7:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_uint256", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "34:5:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "44:7:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "7:77:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "155:53:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "172:3:1" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "195:5:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "177:17:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "177:24:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "165:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "165:37:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "165:37:1" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "143:5:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "150:3:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "90:118:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "312:124:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "322:26:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "334:9:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "345:2:1", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "330:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "330:18:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "322:4:1" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "402:6:1" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "415:9:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "426:1:1", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "411:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "411:17:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "358:43:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "358:71:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "358:71:1" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "284:9:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "296:6:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "307:4:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "214:222:1" | |
| } | |
| ] | |
| }, | |
| "contents": "{\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n}\n", | |
| "id": 1, | |
| "language": "Yul", | |
| "name": "#utility.yul" | |
| } | |
| ], | |
| "immutableReferences": {}, | |
| "linkReferences": {}, | |
| "object": "6080604052348015600f57600080fd5b506004361060285760003560e01c80633f624e3414602d575b600080fd5b60336047565b604051603e91906063565b60405180910390f35b600090565b6000819050919050565b605d81604c565b82525050565b6000602082019050607660008301846056565b9291505056fea264697066735822122058481ccd4342d972b0066c0a4d42e72570e2ef421a192b7b2e57d7f9091e856a64736f6c63430008120033", | |
| "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH1 0x28 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3F624E34 EQ PUSH1 0x2D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x33 PUSH1 0x47 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x3E SWAP2 SWAP1 PUSH1 0x63 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x5D DUP2 PUSH1 0x4C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x76 PUSH1 0x0 DUP4 ADD DUP5 PUSH1 0x56 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PC BASEFEE SHR 0xCD NUMBER TIMESTAMP 0xD9 PUSH19 0xB0066C0A4D42E72570E2EF421A192B7B2E57D7 0xF9 MULMOD 0x1E DUP6 PUSH11 0x64736F6C63430008120033 ", | |
| "sourceMap": "749:133:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;787:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;846:7;787:93;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o" | |
| }, | |
| "gasEstimates": { | |
| "creation": { | |
| "codeDepositCost": "35600", | |
| "executionCost": "87", | |
| "totalCost": "35687" | |
| }, | |
| "external": { | |
| "NotTotalStablecoinIssued()": "307" | |
| } | |
| }, | |
| "methodIdentifiers": { | |
| "NotTotalStablecoinIssued()": "3f624e34" | |
| } | |
| }, | |
| "abi": [ | |
| { | |
| "inputs": [], | |
| "name": "NotTotalStablecoinIssued", | |
| "outputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "", | |
| "type": "uint256" | |
| } | |
| ], | |
| "stateMutability": "pure", | |
| "type": "function" | |
| } | |
| ] | |
| } |
| { | |
| "compiler": { | |
| "version": "0.8.18+commit.87f61d96" | |
| }, | |
| "language": "Solidity", | |
| "output": { | |
| "abi": [ | |
| { | |
| "inputs": [], | |
| "name": "NotTotalStablecoinIssued", | |
| "outputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "", | |
| "type": "uint256" | |
| } | |
| ], | |
| "stateMutability": "pure", | |
| "type": "function" | |
| } | |
| ], | |
| "devdoc": { | |
| "kind": "dev", | |
| "methods": {}, | |
| "version": 1 | |
| }, | |
| "userdoc": { | |
| "kind": "user", | |
| "methods": {}, | |
| "version": 1 | |
| } | |
| }, | |
| "settings": { | |
| "compilationTarget": { | |
| "contracts/Test.sol": "BookKeeperWithNoMethod" | |
| }, | |
| "evmVersion": "paris", | |
| "libraries": {}, | |
| "metadata": { | |
| "bytecodeHash": "ipfs" | |
| }, | |
| "optimizer": { | |
| "enabled": false, | |
| "runs": 200 | |
| }, | |
| "remappings": [] | |
| }, | |
| "sources": { | |
| "contracts/Test.sol": { | |
| "keccak256": "0xc3f79707495880d21109790405fa8b07855e9f85f188c809998f6f97a172d113", | |
| "license": "AGPL-3.0-or-later", | |
| "urls": [ | |
| "bzz-raw://2d7b607281ddf2d5541918446a49664929de40900f883e0637867c71b7aca36a", | |
| "dweb:/ipfs/QmNZQSELRGCpEpBWKnMM1Xh9N7DHq8PE6w3oAsj12WAgyK" | |
| ] | |
| } | |
| }, | |
| "version": 1 | |
| } |
| { | |
| "deploy": { | |
| "VM:-": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "main:1": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "ropsten:3": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "rinkeby:4": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "kovan:42": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "goerli:5": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "Custom": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| } | |
| }, | |
| "data": { | |
| "bytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "linkReferences": {}, | |
| "object": "608060405234801561001057600080fd5b5060b68061001f6000396000f3fe6080604052348015600f57600080fd5b506004361060285760003560e01c80636f3a3bfc14602d575b600080fd5b60336047565b604051603e91906067565b60405180910390f35b60006005905090565b6000819050919050565b6061816050565b82525050565b6000602082019050607a6000830184605a565b9291505056fea2646970667358221220b8f3ac6cf92899ec2a4559e09ea0f92181e9ae6fdf25cb4e7cdf5ef101d3419c64736f6c63430008120033", | |
| "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xB6 DUP1 PUSH2 0x1F PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH1 0x28 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6F3A3BFC EQ PUSH1 0x2D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x33 PUSH1 0x47 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x3E SWAP2 SWAP1 PUSH1 0x67 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH1 0x5 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x61 DUP2 PUSH1 0x50 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x7A PUSH1 0x0 DUP4 ADD DUP5 PUSH1 0x5A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB8 RETURN 0xAC PUSH13 0xF92899EC2A4559E09EA0F92181 0xE9 0xAE PUSH16 0xDF25CB4E7CDF5EF101D3419C64736F6C PUSH4 0x43000812 STOP CALLER ", | |
| "sourceMap": "884:136:0:-:0;;;;;;;;;;;;;;;;;;;" | |
| }, | |
| "deployedBytecode": { | |
| "functionDebugData": { | |
| "@totalStablecoinIssued_59": { | |
| "entryPoint": 71, | |
| "id": 59, | |
| "parameterSlots": 0, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_uint256_to_t_uint256_fromStack": { | |
| "entryPoint": 90, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": { | |
| "entryPoint": 103, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_uint256": { | |
| "entryPoint": 80, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| } | |
| }, | |
| "generatedSources": [ | |
| { | |
| "ast": { | |
| "nodeType": "YulBlock", | |
| "src": "0:439:1", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "52:32:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "62:16:1", | |
| "value": { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "73:5:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "62:7:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_uint256", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "34:5:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "44:7:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "7:77:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "155:53:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "172:3:1" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "195:5:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "177:17:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "177:24:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "165:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "165:37:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "165:37:1" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "143:5:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "150:3:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "90:118:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "312:124:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "322:26:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "334:9:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "345:2:1", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "330:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "330:18:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "322:4:1" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "402:6:1" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "415:9:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "426:1:1", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "411:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "411:17:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "358:43:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "358:71:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "358:71:1" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "284:9:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "296:6:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "307:4:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "214:222:1" | |
| } | |
| ] | |
| }, | |
| "contents": "{\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n}\n", | |
| "id": 1, | |
| "language": "Yul", | |
| "name": "#utility.yul" | |
| } | |
| ], | |
| "immutableReferences": {}, | |
| "linkReferences": {}, | |
| "object": "6080604052348015600f57600080fd5b506004361060285760003560e01c80636f3a3bfc14602d575b600080fd5b60336047565b604051603e91906067565b60405180910390f35b60006005905090565b6000819050919050565b6061816050565b82525050565b6000602082019050607a6000830184605a565b9291505056fea2646970667358221220b8f3ac6cf92899ec2a4559e09ea0f92181e9ae6fdf25cb4e7cdf5ef101d3419c64736f6c63430008120033", | |
| "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH1 0x28 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6F3A3BFC EQ PUSH1 0x2D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x33 PUSH1 0x47 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x3E SWAP2 SWAP1 PUSH1 0x67 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH1 0x5 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x61 DUP2 PUSH1 0x50 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x7A PUSH1 0x0 DUP4 ADD DUP5 PUSH1 0x5A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB8 RETURN 0xAC PUSH13 0xF92899EC2A4559E09EA0F92181 0xE9 0xAE PUSH16 0xDF25CB4E7CDF5EF101D3419C64736F6C PUSH4 0x43000812 STOP CALLER ", | |
| "sourceMap": "884:136:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;928:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;984:7;1010:1;1003:8;;928:90;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o" | |
| }, | |
| "gasEstimates": { | |
| "creation": { | |
| "codeDepositCost": "36400", | |
| "executionCost": "87", | |
| "totalCost": "36487" | |
| }, | |
| "external": { | |
| "totalStablecoinIssued()": "315" | |
| } | |
| }, | |
| "methodIdentifiers": { | |
| "totalStablecoinIssued()": "6f3a3bfc" | |
| } | |
| }, | |
| "abi": [ | |
| { | |
| "inputs": [], | |
| "name": "totalStablecoinIssued", | |
| "outputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "", | |
| "type": "uint256" | |
| } | |
| ], | |
| "stateMutability": "pure", | |
| "type": "function" | |
| } | |
| ] | |
| } |
| { | |
| "compiler": { | |
| "version": "0.8.18+commit.87f61d96" | |
| }, | |
| "language": "Solidity", | |
| "output": { | |
| "abi": [ | |
| { | |
| "inputs": [], | |
| "name": "totalStablecoinIssued", | |
| "outputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "", | |
| "type": "uint256" | |
| } | |
| ], | |
| "stateMutability": "pure", | |
| "type": "function" | |
| } | |
| ], | |
| "devdoc": { | |
| "kind": "dev", | |
| "methods": {}, | |
| "version": 1 | |
| }, | |
| "userdoc": { | |
| "kind": "user", | |
| "methods": {}, | |
| "version": 1 | |
| } | |
| }, | |
| "settings": { | |
| "compilationTarget": { | |
| "contracts/Test.sol": "BookKeeperWithTooSmallNumber" | |
| }, | |
| "evmVersion": "paris", | |
| "libraries": {}, | |
| "metadata": { | |
| "bytecodeHash": "ipfs" | |
| }, | |
| "optimizer": { | |
| "enabled": false, | |
| "runs": 200 | |
| }, | |
| "remappings": [] | |
| }, | |
| "sources": { | |
| "contracts/Test.sol": { | |
| "keccak256": "0xc3f79707495880d21109790405fa8b07855e9f85f188c809998f6f97a172d113", | |
| "license": "AGPL-3.0-or-later", | |
| "urls": [ | |
| "bzz-raw://2d7b607281ddf2d5541918446a49664929de40900f883e0637867c71b7aca36a", | |
| "dweb:/ipfs/QmNZQSELRGCpEpBWKnMM1Xh9N7DHq8PE6w3oAsj12WAgyK" | |
| ] | |
| } | |
| }, | |
| "version": 1 | |
| } |
| { | |
| "deploy": { | |
| "VM:-": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "main:1": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "ropsten:3": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "rinkeby:4": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "kovan:42": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "goerli:5": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "Custom": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| } | |
| }, | |
| "data": { | |
| "bytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "linkReferences": {}, | |
| "object": "60566050600b82828239805160001a6073146043577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122016f683a1ffdb125f55fa82fb0f57f3887f5d7d275f2ad58a52b82e58dbe0507064736f6c63430008110033", | |
| "opcodes": "PUSH1 0x56 PUSH1 0x50 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x43 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 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 AND 0xF6 DUP4 LOG1 SELFDESTRUCT 0xDB SLT 0x5F SSTORE STATICCALL DUP3 0xFB 0xF JUMPI RETURN DUP9 PUSH32 0x5D7D275F2AD58A52B82E58DBE0507064736F6C63430008110033000000000000 ", | |
| "sourceMap": "20083:26050:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;" | |
| }, | |
| "deployedBytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "immutableReferences": {}, | |
| "linkReferences": {}, | |
| "object": "73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122016f683a1ffdb125f55fa82fb0f57f3887f5d7d275f2ad58a52b82e58dbe0507064736f6c63430008110033", | |
| "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 AND 0xF6 DUP4 LOG1 SELFDESTRUCT 0xDB SLT 0x5F SSTORE STATICCALL DUP3 0xFB 0xF JUMPI RETURN DUP9 PUSH32 0x5D7D275F2AD58A52B82E58DBE0507064736F6C63430008110033000000000000 ", | |
| "sourceMap": "20083:26050:7:-:0;;;;;;;;" | |
| }, | |
| "gasEstimates": { | |
| "creation": { | |
| "codeDepositCost": "17200", | |
| "executionCost": "97", | |
| "totalCost": "17297" | |
| }, | |
| "internal": { | |
| "_addressArrayToBytes(address[] memory)": "infinite", | |
| "_addressToASCIIBytes(address)": "infinite", | |
| "_addressToBytes(address)": "infinite", | |
| "_addressToBytes32(address)": "infinite", | |
| "_addressToBytes32ShiftLeft(address)": "infinite", | |
| "_addressToBytesPacked(address)": "infinite", | |
| "_addressToBytesShiftLeft(address)": "infinite", | |
| "_append(bytes memory[] memory,string memory)": "infinite", | |
| "_append(string memory[] memory,string memory)": "infinite", | |
| "_asciiBytesToInt(bytes memory)": "infinite", | |
| "_asciiBytesToUInt(bytes memory)": "infinite", | |
| "_asciiBytesToUIntImpl(bytes memory)": "infinite", | |
| "_boolArrayToBytes(bool[] memory)": "infinite", | |
| "_boolToBytes(bool)": "infinite", | |
| "_boolToBytesArray(bool)": "infinite", | |
| "_bytes32ArrayToASCIIBytes(bytes32[] memory)": "infinite", | |
| "_bytes32ArrayToBytes(bytes32[] memory)": "infinite", | |
| "_bytes32ToASCIIBytes(bytes32)": "infinite", | |
| "_bytes32ToAddress(bytes32)": "infinite", | |
| "_bytes32ToAddressShiftRight(bytes32)": "infinite", | |
| "_bytes32ToBytes(bytes32)": "infinite", | |
| "_bytes32toUpper(bytes32)": "infinite", | |
| "_bytesArrayToBoolArray(bytes memory[] memory)": "infinite", | |
| "_bytesArrayToBytes(bytes memory[] memory)": "infinite", | |
| "_bytesArrayToBytes32Array(bytes memory[] memory)": "infinite", | |
| "_bytesArrayToIntArray(bytes memory[] memory)": "infinite", | |
| "_bytesArrayToStringArray(bytes memory[] memory)": "infinite", | |
| "_bytesArrayToUIntArray(bytes memory[] memory)": "infinite", | |
| "_bytesToASCIIBytes(bytes memory)": "infinite", | |
| "_bytesToAddress(bytes memory)": "infinite", | |
| "_bytesToAddressArray(bytes memory)": "infinite", | |
| "_bytesToAddressShiftRight(bytes memory)": "infinite", | |
| "_bytesToBool(bytes memory)": "infinite", | |
| "_bytesToBoolArray(bytes memory)": "infinite", | |
| "_bytesToBytes32(bytes memory)": "infinite", | |
| "_bytesToBytes32Array(bytes memory)": "infinite", | |
| "_bytesToBytesArray(bytes memory)": "infinite", | |
| "_bytesToInt(bytes memory)": "infinite", | |
| "_bytesToIntArray(bytes memory)": "infinite", | |
| "_bytesToString(bytes memory)": "infinite", | |
| "_bytesToStringArray(bytes memory)": "infinite", | |
| "_bytesToUInt(bytes memory)": "infinite", | |
| "_bytesToUInt8(bytes memory,uint256)": "infinite", | |
| "_bytesToUInt8UNSAFE(bytes memory)": "infinite", | |
| "_bytesToUIntArray(bytes memory)": "infinite", | |
| "_countPureLengthForBytes32(bytes32)": "infinite", | |
| "_extractBytes32(bytes memory,uint256)": "infinite", | |
| "_getPointer(bytes memory)": "infinite", | |
| "_getSlice(bytes memory,uint256,uint256)": "infinite", | |
| "_getSlice(bytes memory[] memory,uint256,uint256)": "infinite", | |
| "_getSliceBytes32(bytes32[] memory,uint256,uint256)": "infinite", | |
| "_intArrayToBytes(int256[] memory)": "infinite", | |
| "_intToBytes(int256)": "infinite", | |
| "_isEqual(bytes memory[] memory,bytes memory[] memory)": "infinite", | |
| "_popAddress(address[] memory)": "infinite", | |
| "_popBytes(bytes memory[] memory)": "infinite", | |
| "_popBytes32(bytes32[] memory)": "infinite", | |
| "_pushAddress(address[] memory,address)": "infinite", | |
| "_pushBytes(bytes memory[] memory,bytes memory)": "infinite", | |
| "_pushBytes32(bytes32[] memory,bytes32)": "infinite", | |
| "_stringArrayToBytes(string memory[] memory)": "infinite", | |
| "_stringToBytes(string memory)": "infinite", | |
| "_trimBytes32(bytes32)": "infinite", | |
| "_uint8ArrayToBytes(uint8[] memory)": "infinite", | |
| "_uint8ConvertToAscii(uint8)": "infinite", | |
| "_uint8ToBytes(uint8)": "infinite", | |
| "_uintArrayToBytes(uint256[] memory)": "infinite", | |
| "_uintToASCIIBytes(uint256)": "infinite", | |
| "_uintToBytes(uint256)": "infinite", | |
| "_uintToBytes32(uint256)": "infinite" | |
| } | |
| }, | |
| "methodIdentifiers": {} | |
| }, | |
| "abi": [] | |
| } |
| { | |
| "compiler": { | |
| "version": "0.8.17+commit.8df45f5f" | |
| }, | |
| "language": "Solidity", | |
| "output": { | |
| "abi": [], | |
| "devdoc": { | |
| "details": "Different operations with bytes", | |
| "kind": "dev", | |
| "methods": {}, | |
| "title": "Bytes Helper", | |
| "version": 1 | |
| }, | |
| "userdoc": { | |
| "kind": "user", | |
| "methods": {}, | |
| "version": 1 | |
| } | |
| }, | |
| "settings": { | |
| "compilationTarget": { | |
| "contracts/FlashLiquidator.sol": "BytesHelper" | |
| }, | |
| "evmVersion": "london", | |
| "libraries": {}, | |
| "metadata": { | |
| "bytecodeHash": "ipfs" | |
| }, | |
| "optimizer": { | |
| "enabled": false, | |
| "runs": 200 | |
| }, | |
| "remappings": [] | |
| }, | |
| "sources": { | |
| "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol": { | |
| "keccak256": "0x4075622496acc77fd6d4de4cc30a8577a744d5c75afad33fdeacf1704d6eda98", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://99c8cb3cd19a44bbfb6612605affb7d8b06cee1f6aa9362a37a8672b4f7eeaf8", | |
| "dweb:/ipfs/QmasyxFDBUp7k5KFgfDWEzM8PYSKEq7GVznzMJ1VxVRF4B" | |
| ] | |
| }, | |
| "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol": { | |
| "keccak256": "0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://f103ee2e4aecd37aac6ceefe670709cdd7613dee25fa2d4d9feaf7fc0aaa155e", | |
| "dweb:/ipfs/QmRiNZLoJk5k3HPMYGPGjZFd2ke1ZxjhJZkM45Ec9GH9hv" | |
| ] | |
| }, | |
| "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol": { | |
| "keccak256": "0x40c636b4572ff5f1dc50cf22097e93c0723ee14eff87e99ac2b02636eeca1250", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://9c7d1f5e15633ab912b74c2f57e24559e66b03232300d4b27ff0f25bc452ecad", | |
| "dweb:/ipfs/QmYTJkc1cntYkKQ1Tu11nBcJLakiy93Tjytc4XHELo4GmR" | |
| ] | |
| }, | |
| "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol": { | |
| "keccak256": "0xb82ef33f43b6b96109687d91b39c94573fdccaaa423fe28e8ba0977b31c023e0", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://ec9c629f63e66379f9c868a74f971064701cc6e30583872aa653f8b932518025", | |
| "dweb:/ipfs/QmY4MnZF2VMFwJkAwpdQwxEWA3KcGbNBKEmAVYePMVQWUR" | |
| ] | |
| }, | |
| "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol": { | |
| "keccak256": "0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://310136ad60820af4177a11a61d77a3686faf5fca4942b600e08fc940db38396b", | |
| "dweb:/ipfs/QmbCzMNSTL7Zi7M4UCSqBrkHtp4jjxUnGbkneCZKdR1qeq" | |
| ] | |
| }, | |
| "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol": { | |
| "keccak256": "0x963ea7f0b48b032eef72fe3a7582edf78408d6f834115b9feadd673a4d5bd149", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://d6520943ea55fdf5f0bafb39ed909f64de17051bc954ff3e88c9e5621412c79c", | |
| "dweb:/ipfs/QmWZ4rAKTQbNG2HxGs46AcTXShsVytKeLs7CUCdCSv5N7a" | |
| ] | |
| }, | |
| "@openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol": { | |
| "keccak256": "0xb1561a6950b1aaa504c8f81b7d46bccfa77ccd10de3eb865cf34b1acd5ad505e", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://9a56cb91629dacd161be24908fbf94315f3f45dd6fee8dad82b27af853cbc4ee", | |
| "dweb:/ipfs/QmNfEzdf4NTpxyhzWKAmeDwwSpJ6ZjNizK3GXw3TEuTTgn" | |
| ] | |
| }, | |
| "contracts/FlashLiquidator.sol": { | |
| "keccak256": "0xc25bd5e47e982df9423525f9d200040f9fb38c7452baf49f3c904bf1a4301699", | |
| "urls": [ | |
| "bzz-raw://31ea053099740751cf3aaa6a606afbdd28c8ad8e13452d008bc3c16732eb6f93", | |
| "dweb:/ipfs/QmY1nfhF67uDfwfEFZkdFqZMc7i6PzFDY5JTu6oy4HJkUs" | |
| ] | |
| } | |
| }, | |
| "version": 1 | |
| } |
| { | |
| "deploy": { | |
| "VM:-": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "main:1": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "ropsten:3": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "rinkeby:4": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "kovan:42": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "goerli:5": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "Custom": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| } | |
| }, | |
| "data": { | |
| "bytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "linkReferences": {}, | |
| "object": "608060405234801561001057600080fd5b50610188806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063650500c114610030575b600080fd5b61003861004e565b6040516100459190610130565b60405180910390f35b6060600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505090508091505090565b600081519050919050565b600082825260208201905092915050565b60005b838110156100da5780820151818401526020810190506100bf565b60008484015250505050565b6000601f19601f8301169050919050565b6000610102826100a0565b61010c81856100ab565b935061011c8185602086016100bc565b610125816100e6565b840191505092915050565b6000602082019050818103600083015261014a81846100f7565b90509291505056fea2646970667358221220d8a9785a3a97facdafac2312f9ef2f9467676a5afffa7ee027a92e0c79ab5fc164736f6c63430008110033", | |
| "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x188 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x2B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x650500C1 EQ PUSH2 0x30 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x38 PUSH2 0x4E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x45 SWAP2 SWAP1 PUSH2 0x130 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 CALLDATASIZE DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH1 0x0 DUP2 DUP5 ADD MSTORE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND SWAP1 POP DUP1 DUP4 ADD SWAP3 POP POP POP POP POP POP POP SWAP1 POP DUP1 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xDA JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xBF JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x102 DUP3 PUSH2 0xA0 JUMP JUMPDEST PUSH2 0x10C DUP2 DUP6 PUSH2 0xAB JUMP JUMPDEST SWAP4 POP PUSH2 0x11C DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xBC JUMP JUMPDEST PUSH2 0x125 DUP2 PUSH2 0xE6 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x14A DUP2 DUP5 PUSH2 0xF7 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD8 0xA9 PUSH25 0x5A3A97FACDAFAC2312F9EF2F9467676A5AFFFA7EE027A92E0C PUSH26 0xAB5FC164736F6C63430008110033000000000000000000000000 ", | |
| "sourceMap": "71:177:0:-:0;;;;;;;;;;;;;;;;;;;" | |
| }, | |
| "deployedBytecode": { | |
| "functionDebugData": { | |
| "@whatIsTheMeaningOfLife_14": { | |
| "entryPoint": 78, | |
| "id": 14, | |
| "parameterSlots": 0, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": { | |
| "entryPoint": 247, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 304, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "array_length_t_bytes_memory_ptr": { | |
| "entryPoint": 160, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": { | |
| "entryPoint": 171, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "copy_memory_to_memory_with_cleanup": { | |
| "entryPoint": 188, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 0 | |
| }, | |
| "round_up_to_mul_of_32": { | |
| "entryPoint": 230, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| } | |
| }, | |
| "generatedSources": [ | |
| { | |
| "ast": { | |
| "nodeType": "YulBlock", | |
| "src": "0:1336:1", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "65:40:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "76:22:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "92:5:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "86:5:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "86:12:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "76:6:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_length_t_bytes_memory_ptr", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "48:5:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "58:6:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "7:98:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "206:73:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "223:3:1" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "228:6:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "216:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "216:19:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "216:19:1" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "244:29:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "263:3:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "268:4:1", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "259:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "259:14:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "updated_pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "244:11:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "178:3:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "183:6:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "updated_pos", | |
| "nodeType": "YulTypedName", | |
| "src": "194:11:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "111:168:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "347:184:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "357:10:1", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "366:1:1", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulTypedName", | |
| "src": "361:1:1", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "426:63:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dst", | |
| "nodeType": "YulIdentifier", | |
| "src": "451:3:1" | |
| }, | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "456:1:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "447:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "447:11:1" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "src", | |
| "nodeType": "YulIdentifier", | |
| "src": "470:3:1" | |
| }, | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "475:1:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "466:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "466:11:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "460:5:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "460:18:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "440:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "440:39:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "440:39:1" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "387:1:1" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "390:6:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "lt", | |
| "nodeType": "YulIdentifier", | |
| "src": "384:2:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "384:13:1" | |
| }, | |
| "nodeType": "YulForLoop", | |
| "post": { | |
| "nodeType": "YulBlock", | |
| "src": "398:19:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "400:15:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "409:1:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "412:2:1", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "405:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "405:10:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "400:1:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "pre": { | |
| "nodeType": "YulBlock", | |
| "src": "380:3:1", | |
| "statements": [] | |
| }, | |
| "src": "376:113:1" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dst", | |
| "nodeType": "YulIdentifier", | |
| "src": "509:3:1" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "514:6:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "505:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "505:16:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "523:1:1", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "498:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "498:27:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "498:27:1" | |
| } | |
| ] | |
| }, | |
| "name": "copy_memory_to_memory_with_cleanup", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "src", | |
| "nodeType": "YulTypedName", | |
| "src": "329:3:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dst", | |
| "nodeType": "YulTypedName", | |
| "src": "334:3:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "339:6:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "285:246:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "585:54:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "595:38:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "613:5:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "620:2:1", | |
| "type": "", | |
| "value": "31" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "609:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "609:14:1" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "629:2:1", | |
| "type": "", | |
| "value": "31" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "not", | |
| "nodeType": "YulIdentifier", | |
| "src": "625:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "625:7:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nodeType": "YulIdentifier", | |
| "src": "605:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "605:28:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "result", | |
| "nodeType": "YulIdentifier", | |
| "src": "595:6:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "round_up_to_mul_of_32", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "568:5:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "result", | |
| "nodeType": "YulTypedName", | |
| "src": "578:6:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "537:102:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "735:283:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "745:52:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "791:5:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_length_t_bytes_memory_ptr", | |
| "nodeType": "YulIdentifier", | |
| "src": "759:31:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "759:38:1" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "749:6:1", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "806:77:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "871:3:1" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "876:6:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "813:57:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "813:70:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "806:3:1" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "931:5:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "938:4:1", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "927:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "927:16:1" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "945:3:1" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "950:6:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "copy_memory_to_memory_with_cleanup", | |
| "nodeType": "YulIdentifier", | |
| "src": "892:34:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "892:65:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "892:65:1" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "966:46:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "977:3:1" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "1004:6:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "round_up_to_mul_of_32", | |
| "nodeType": "YulIdentifier", | |
| "src": "982:21:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "982:29:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "973:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "973:39:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "966:3:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "716:5:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "723:3:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "731:3:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "645:373:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1140:193:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1150:26:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1162:9:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1173:2:1", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1158:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1158:18:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "1150:4:1" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1197:9:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1208:1:1", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1193:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1193:17:1" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "1216:4:1" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1222:9:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "1212:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1212:20:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "1186:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1186:47:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1186:47:1" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1242:84:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "1312:6:1" | |
| }, | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "1321:4:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "1250:61:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1250:76:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "1242:4:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "1112:9:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "1124:6:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "1135:4:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1024:309:1" | |
| } | |
| ] | |
| }, | |
| "contents": "{\n\n function array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory_with_cleanup(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n mstore(add(dst, length), 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_bytes_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value0, tail)\n\n }\n\n}\n", | |
| "id": 1, | |
| "language": "Yul", | |
| "name": "#utility.yul" | |
| } | |
| ], | |
| "immutableReferences": {}, | |
| "linkReferences": {}, | |
| "object": "608060405234801561001057600080fd5b506004361061002b5760003560e01c8063650500c114610030575b600080fd5b61003861004e565b6040516100459190610130565b60405180910390f35b6060600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505090508091505090565b600081519050919050565b600082825260208201905092915050565b60005b838110156100da5780820151818401526020810190506100bf565b60008484015250505050565b6000601f19601f8301169050919050565b6000610102826100a0565b61010c81856100ab565b935061011c8185602086016100bc565b610125816100e6565b840191505092915050565b6000602082019050818103600083015261014a81846100f7565b90509291505056fea2646970667358221220d8a9785a3a97facdafac2312f9ef2f9467676a5afffa7ee027a92e0c79ab5fc164736f6c63430008110033", | |
| "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x2B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x650500C1 EQ PUSH2 0x30 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x38 PUSH2 0x4E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x45 SWAP2 SWAP1 PUSH2 0x130 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 CALLDATASIZE DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH1 0x0 DUP2 DUP5 ADD MSTORE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND SWAP1 POP DUP1 DUP4 ADD SWAP3 POP POP POP POP POP POP POP SWAP1 POP DUP1 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xDA JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xBF JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x102 DUP3 PUSH2 0xA0 JUMP JUMPDEST PUSH2 0x10C DUP2 DUP6 PUSH2 0xAB JUMP JUMPDEST SWAP4 POP PUSH2 0x11C DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xBC JUMP JUMPDEST PUSH2 0x125 DUP2 PUSH2 0xE6 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x14A DUP2 DUP5 PUSH2 0xF7 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD8 0xA9 PUSH25 0x5A3A97FACDAFAC2312F9EF2F9467676A5AFFFA7EE027A92E0C PUSH26 0xAB5FC164736F6C63430008110033000000000000000000000000 ", | |
| "sourceMap": "71:177:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95:151;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;152:12;176:24;203:8;;176:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;228:11;221:18;;;95:151;:::o;7:98:1:-;58:6;92:5;86:12;76:22;;7:98;;;:::o;111:168::-;194:11;228:6;223:3;216:19;268:4;263:3;259:14;244:29;;111:168;;;;:::o;285:246::-;366:1;376:113;390:6;387:1;384:13;376:113;;;475:1;470:3;466:11;460:18;456:1;451:3;447:11;440:39;412:2;409:1;405:10;400:15;;376:113;;;523:1;514:6;509:3;505:16;498:27;347:184;285:246;;;:::o;537:102::-;578:6;629:2;625:7;620:2;613:5;609:14;605:28;595:38;;537:102;;;:::o;645:373::-;731:3;759:38;791:5;759:38;:::i;:::-;813:70;876:6;871:3;813:70;:::i;:::-;806:77;;892:65;950:6;945:3;938:4;931:5;927:16;892:65;:::i;:::-;982:29;1004:6;982:29;:::i;:::-;977:3;973:39;966:46;;735:283;645:373;;;;:::o;1024:309::-;1135:4;1173:2;1162:9;1158:18;1150:26;;1222:9;1216:4;1212:20;1208:1;1197:9;1193:17;1186:47;1250:76;1321:4;1312:6;1250:76;:::i;:::-;1242:84;;1024:309;;;;:::o" | |
| }, | |
| "gasEstimates": { | |
| "creation": { | |
| "codeDepositCost": "78400", | |
| "executionCost": "129", | |
| "totalCost": "78529" | |
| }, | |
| "external": { | |
| "whatIsTheMeaningOfLife()": "infinite" | |
| } | |
| }, | |
| "methodIdentifiers": { | |
| "whatIsTheMeaningOfLife()": "650500c1" | |
| } | |
| }, | |
| "abi": [ | |
| { | |
| "inputs": [], | |
| "name": "whatIsTheMeaningOfLife", | |
| "outputs": [ | |
| { | |
| "internalType": "bytes", | |
| "name": "", | |
| "type": "bytes" | |
| } | |
| ], | |
| "stateMutability": "pure", | |
| "type": "function" | |
| } | |
| ] | |
| } |
| { | |
| "compiler": { | |
| "version": "0.8.17+commit.8df45f5f" | |
| }, | |
| "language": "Solidity", | |
| "output": { | |
| "abi": [ | |
| { | |
| "inputs": [], | |
| "name": "whatIsTheMeaningOfLife", | |
| "outputs": [ | |
| { | |
| "internalType": "bytes", | |
| "name": "", | |
| "type": "bytes" | |
| } | |
| ], | |
| "stateMutability": "pure", | |
| "type": "function" | |
| } | |
| ], | |
| "devdoc": { | |
| "kind": "dev", | |
| "methods": {}, | |
| "version": 1 | |
| }, | |
| "userdoc": { | |
| "kind": "user", | |
| "methods": {}, | |
| "version": 1 | |
| } | |
| }, | |
| "settings": { | |
| "compilationTarget": { | |
| "contracts/Calldata.sol": "Calldata" | |
| }, | |
| "evmVersion": "london", | |
| "libraries": {}, | |
| "metadata": { | |
| "bytecodeHash": "ipfs" | |
| }, | |
| "optimizer": { | |
| "enabled": false, | |
| "runs": 200 | |
| }, | |
| "remappings": [] | |
| }, | |
| "sources": { | |
| "contracts/Calldata.sol": { | |
| "keccak256": "0x901553618fa29db558218ddff32098f5f0633e2fa82f0598221ea8f3d7874b6e", | |
| "license": "AGPL-3.0-or-later", | |
| "urls": [ | |
| "bzz-raw://56d584f7b24c48203224c59f63a9d4ea588a6196c7cba6e98251bf77b14103f4", | |
| "dweb:/ipfs/QmaRsxP18K5J8Qjy5SFzV4FYm9Vmwig7VeV28QQvGVqJAP" | |
| ] | |
| } | |
| }, | |
| "version": 1 | |
| } |
| { | |
| "deploy": { | |
| "VM:-": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "main:1": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "ropsten:3": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "rinkeby:4": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "kovan:42": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "goerli:5": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "Custom": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| } | |
| }, | |
| "data": { | |
| "bytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "linkReferences": {}, | |
| "object": "608060405234801561001057600080fd5b50610397806100206000396000f3fe608060405234801561001057600080fd5b506004361061002a5760003560e01c80627743601461002f575b600080fd5b6100496004803603810190610044919061023f565b61005f565b60405161005691906102c9565b60405180910390f35b6000808251602084016000f09050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036100dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100d390610341565b60405180910390fd5b80915050919050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61014c82610103565b810181811067ffffffffffffffff8211171561016b5761016a610114565b5b80604052505050565b600061017e6100e5565b905061018a8282610143565b919050565b600067ffffffffffffffff8211156101aa576101a9610114565b5b6101b382610103565b9050602081019050919050565b82818337600083830152505050565b60006101e26101dd8461018f565b610174565b9050828152602081018484840111156101fe576101fd6100fe565b5b6102098482856101c0565b509392505050565b600082601f830112610226576102256100f9565b5b81356102368482602086016101cf565b91505092915050565b600060208284031215610255576102546100ef565b5b600082013567ffffffffffffffff811115610273576102726100f4565b5b61027f84828501610211565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006102b382610288565b9050919050565b6102c3816102a8565b82525050565b60006020820190506102de60008301846102ba565b92915050565b600082825260208201905092915050565b7f4661696c656420746f206465706c6f7920636f6e747261637400000000000000600082015250565b600061032b6019836102e4565b9150610336826102f5565b602082019050919050565b6000602082019050818103600083015261035a8161031e565b905091905056fea2646970667358221220a545d25274233be2e2ebe456b6b3ceb9919a2cbc32d8e44e659adf1bbd26c2bd64736f6c63430008110033", | |
| "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x397 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x2A JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH3 0x774360 EQ PUSH2 0x2F JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x49 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x44 SWAP2 SWAP1 PUSH2 0x23F JUMP JUMPDEST PUSH2 0x5F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x56 SWAP2 SWAP1 PUSH2 0x2C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 DUP3 MLOAD PUSH1 0x20 DUP5 ADD PUSH1 0x0 CREATE SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xDC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD3 SWAP1 PUSH2 0x341 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x14C DUP3 PUSH2 0x103 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x16B JUMPI PUSH2 0x16A PUSH2 0x114 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17E PUSH2 0xE5 JUMP JUMPDEST SWAP1 POP PUSH2 0x18A DUP3 DUP3 PUSH2 0x143 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1AA JUMPI PUSH2 0x1A9 PUSH2 0x114 JUMP JUMPDEST JUMPDEST PUSH2 0x1B3 DUP3 PUSH2 0x103 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E2 PUSH2 0x1DD DUP5 PUSH2 0x18F JUMP JUMPDEST PUSH2 0x174 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1FE JUMPI PUSH2 0x1FD PUSH2 0xFE JUMP JUMPDEST JUMPDEST PUSH2 0x209 DUP5 DUP3 DUP6 PUSH2 0x1C0 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x226 JUMPI PUSH2 0x225 PUSH2 0xF9 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x236 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1CF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x255 JUMPI PUSH2 0x254 PUSH2 0xEF JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x273 JUMPI PUSH2 0x272 PUSH2 0xF4 JUMP JUMPDEST JUMPDEST PUSH2 0x27F DUP5 DUP3 DUP6 ADD PUSH2 0x211 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B3 DUP3 PUSH2 0x288 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2C3 DUP2 PUSH2 0x2A8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2DE PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2BA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4661696C656420746F206465706C6F7920636F6E747261637400000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32B PUSH1 0x19 DUP4 PUSH2 0x2E4 JUMP JUMPDEST SWAP2 POP PUSH2 0x336 DUP3 PUSH2 0x2F5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x35A DUP2 PUSH2 0x31E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xA5 GASLIMIT 0xD2 MSTORE PUSH21 0x233BE2E2EBE456B6B3CEB9919A2CBC32D8E44E659A 0xDF SHL 0xBD 0x26 0xC2 0xBD PUSH5 0x736F6C6343 STOP ADDMOD GT STOP CALLER ", | |
| "sourceMap": "57:364:0:-:0;;;;;;;;;;;;;;;;;;;" | |
| }, | |
| "deployedBytecode": { | |
| "functionDebugData": { | |
| "@deploy_25": { | |
| "entryPoint": 95, | |
| "id": 25, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_available_length_t_bytes_memory_ptr": { | |
| "entryPoint": 463, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_t_bytes_memory_ptr": { | |
| "entryPoint": 529, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_tuple_t_bytes_memory_ptr": { | |
| "entryPoint": 575, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_address_to_t_address_fromStack": { | |
| "entryPoint": 698, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_encode_t_stringliteral_a52efd5fc7abcaedfe6da622199610c9d847c639d1cc33141b93504fb0422dd1_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 798, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": { | |
| "entryPoint": 713, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_stringliteral_a52efd5fc7abcaedfe6da622199610c9d847c639d1cc33141b93504fb0422dd1__to_t_string_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 833, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "allocate_memory": { | |
| "entryPoint": 372, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "allocate_unbounded": { | |
| "entryPoint": 229, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 1 | |
| }, | |
| "array_allocation_size_t_bytes_memory_ptr": { | |
| "entryPoint": 399, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "array_storeLengthForEncoding_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 740, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_address": { | |
| "entryPoint": 680, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_uint160": { | |
| "entryPoint": 648, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "copy_calldata_to_memory_with_cleanup": { | |
| "entryPoint": 448, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 0 | |
| }, | |
| "finalize_allocation": { | |
| "entryPoint": 323, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "panic_error_0x41": { | |
| "entryPoint": 276, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": { | |
| "entryPoint": 249, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": { | |
| "entryPoint": 254, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": { | |
| "entryPoint": 244, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": { | |
| "entryPoint": 239, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "round_up_to_mul_of_32": { | |
| "entryPoint": 259, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "store_literal_in_memory_a52efd5fc7abcaedfe6da622199610c9d847c639d1cc33141b93504fb0422dd1": { | |
| "entryPoint": 757, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| } | |
| }, | |
| "generatedSources": [ | |
| { | |
| "ast": { | |
| "nodeType": "YulBlock", | |
| "src": "0:4796:1", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "47:35:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "57:19:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "73:2:1", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "67:5:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "67:9:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "57:6:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "allocate_unbounded", | |
| "nodeType": "YulFunctionDefinition", | |
| "returnVariables": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "40:6:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "7:75:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "177:28:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "194:1:1", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "197:1:1", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "187:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "187:12:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "187:12:1" | |
| } | |
| ] | |
| }, | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "88:117:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "300:28:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "317:1:1", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "320:1:1", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "310:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "310:12:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "310:12:1" | |
| } | |
| ] | |
| }, | |
| "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "211:117:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "423:28:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "440:1:1", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "443:1:1", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "433:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "433:12:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "433:12:1" | |
| } | |
| ] | |
| }, | |
| "name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "334:117:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "546:28:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "563:1:1", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "566:1:1", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "556:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "556:12:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "556:12:1" | |
| } | |
| ] | |
| }, | |
| "name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "457:117:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "628:54:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "638:38:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "656:5:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "663:2:1", | |
| "type": "", | |
| "value": "31" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "652:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "652:14:1" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "672:2:1", | |
| "type": "", | |
| "value": "31" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "not", | |
| "nodeType": "YulIdentifier", | |
| "src": "668:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "668:7:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nodeType": "YulIdentifier", | |
| "src": "648:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "648:28:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "result", | |
| "nodeType": "YulIdentifier", | |
| "src": "638:6:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "round_up_to_mul_of_32", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "611:5:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "result", | |
| "nodeType": "YulTypedName", | |
| "src": "621:6:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "580:102:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "716:152:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "733:1:1", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "736:77:1", | |
| "type": "", | |
| "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "726:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "726:88:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "726:88:1" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "830:1:1", | |
| "type": "", | |
| "value": "4" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "833:4:1", | |
| "type": "", | |
| "value": "0x41" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "823:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "823:15:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "823:15:1" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "854:1:1", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "857:4:1", | |
| "type": "", | |
| "value": "0x24" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "847:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "847:15:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "847:15:1" | |
| } | |
| ] | |
| }, | |
| "name": "panic_error_0x41", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "688:180:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "917:238:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "927:58:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "949:6:1" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "size", | |
| "nodeType": "YulIdentifier", | |
| "src": "979:4:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "round_up_to_mul_of_32", | |
| "nodeType": "YulIdentifier", | |
| "src": "957:21:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "957:27:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "945:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "945:40:1" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "newFreePtr", | |
| "nodeType": "YulTypedName", | |
| "src": "931:10:1", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1096:22:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "panic_error_0x41", | |
| "nodeType": "YulIdentifier", | |
| "src": "1098:16:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1098:18:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1098:18:1" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "newFreePtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "1039:10:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1051:18:1", | |
| "type": "", | |
| "value": "0xffffffffffffffff" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nodeType": "YulIdentifier", | |
| "src": "1036:2:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1036:34:1" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "newFreePtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "1075:10:1" | |
| }, | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "1087:6:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "lt", | |
| "nodeType": "YulIdentifier", | |
| "src": "1072:2:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1072:22:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "or", | |
| "nodeType": "YulIdentifier", | |
| "src": "1033:2:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1033:62:1" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "1030:88:1" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1134:2:1", | |
| "type": "", | |
| "value": "64" | |
| }, | |
| { | |
| "name": "newFreePtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "1138:10:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "1127:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1127:22:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1127:22:1" | |
| } | |
| ] | |
| }, | |
| "name": "finalize_allocation", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "903:6:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "size", | |
| "nodeType": "YulTypedName", | |
| "src": "911:4:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "874:281:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1202:88:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1212:30:1", | |
| "value": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "allocate_unbounded", | |
| "nodeType": "YulIdentifier", | |
| "src": "1222:18:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1222:20:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "1212:6:1" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "1271:6:1" | |
| }, | |
| { | |
| "name": "size", | |
| "nodeType": "YulIdentifier", | |
| "src": "1279:4:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "finalize_allocation", | |
| "nodeType": "YulIdentifier", | |
| "src": "1251:19:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1251:33:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1251:33:1" | |
| } | |
| ] | |
| }, | |
| "name": "allocate_memory", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "size", | |
| "nodeType": "YulTypedName", | |
| "src": "1186:4:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "1195:6:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1161:129:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1362:241:1", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1467:22:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "panic_error_0x41", | |
| "nodeType": "YulIdentifier", | |
| "src": "1469:16:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1469:18:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1469:18:1" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "1439:6:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1447:18:1", | |
| "type": "", | |
| "value": "0xffffffffffffffff" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nodeType": "YulIdentifier", | |
| "src": "1436:2:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1436:30:1" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "1433:56:1" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1499:37:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "1529:6:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "round_up_to_mul_of_32", | |
| "nodeType": "YulIdentifier", | |
| "src": "1507:21:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1507:29:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "size", | |
| "nodeType": "YulIdentifier", | |
| "src": "1499:4:1" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1573:23:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "size", | |
| "nodeType": "YulIdentifier", | |
| "src": "1585:4:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1591:4:1", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1581:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1581:15:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "size", | |
| "nodeType": "YulIdentifier", | |
| "src": "1573:4:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_allocation_size_t_bytes_memory_ptr", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "1346:6:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "size", | |
| "nodeType": "YulTypedName", | |
| "src": "1357:4:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1296:307:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1673:82:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "dst", | |
| "nodeType": "YulIdentifier", | |
| "src": "1696:3:1" | |
| }, | |
| { | |
| "name": "src", | |
| "nodeType": "YulIdentifier", | |
| "src": "1701:3:1" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "1706:6:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "calldatacopy", | |
| "nodeType": "YulIdentifier", | |
| "src": "1683:12:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1683:30:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1683:30:1" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dst", | |
| "nodeType": "YulIdentifier", | |
| "src": "1733:3:1" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "1738:6:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1729:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1729:16:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1747:1:1", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "1722:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1722:27:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1722:27:1" | |
| } | |
| ] | |
| }, | |
| "name": "copy_calldata_to_memory_with_cleanup", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "src", | |
| "nodeType": "YulTypedName", | |
| "src": "1655:3:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dst", | |
| "nodeType": "YulTypedName", | |
| "src": "1660:3:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "1665:6:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1609:146:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1844:340:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1854:74:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "1920:6:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_allocation_size_t_bytes_memory_ptr", | |
| "nodeType": "YulIdentifier", | |
| "src": "1879:40:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1879:48:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "allocate_memory", | |
| "nodeType": "YulIdentifier", | |
| "src": "1863:15:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1863:65:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "array", | |
| "nodeType": "YulIdentifier", | |
| "src": "1854:5:1" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "array", | |
| "nodeType": "YulIdentifier", | |
| "src": "1944:5:1" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "1951:6:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "1937:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1937:21:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1937:21:1" | |
| }, | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "1967:27:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "array", | |
| "nodeType": "YulIdentifier", | |
| "src": "1982:5:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1989:4:1", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1978:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1978:16:1" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "dst", | |
| "nodeType": "YulTypedName", | |
| "src": "1971:3:1", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "2032:83:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae", | |
| "nodeType": "YulIdentifier", | |
| "src": "2034:77:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2034:79:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2034:79:1" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "src", | |
| "nodeType": "YulIdentifier", | |
| "src": "2013:3:1" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "2018:6:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "2009:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2009:16:1" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "2027:3:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nodeType": "YulIdentifier", | |
| "src": "2006:2:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2006:25:1" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "2003:112:1" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "src", | |
| "nodeType": "YulIdentifier", | |
| "src": "2161:3:1" | |
| }, | |
| { | |
| "name": "dst", | |
| "nodeType": "YulIdentifier", | |
| "src": "2166:3:1" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "2171:6:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "copy_calldata_to_memory_with_cleanup", | |
| "nodeType": "YulIdentifier", | |
| "src": "2124:36:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2124:54:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2124:54:1" | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_available_length_t_bytes_memory_ptr", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "src", | |
| "nodeType": "YulTypedName", | |
| "src": "1817:3:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "1822:6:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "1830:3:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "array", | |
| "nodeType": "YulTypedName", | |
| "src": "1838:5:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1761:423:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "2264:277:1", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "2313:83:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", | |
| "nodeType": "YulIdentifier", | |
| "src": "2315:77:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2315:79:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2315:79:1" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "2292:6:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2300:4:1", | |
| "type": "", | |
| "value": "0x1f" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "2288:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2288:17:1" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "2307:3:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nodeType": "YulIdentifier", | |
| "src": "2284:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2284:27:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nodeType": "YulIdentifier", | |
| "src": "2277:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2277:35:1" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "2274:122:1" | |
| }, | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "2405:34:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "2432:6:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "calldataload", | |
| "nodeType": "YulIdentifier", | |
| "src": "2419:12:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2419:20:1" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "2409:6:1", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "2448:87:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "2508:6:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2516:4:1", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "2504:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2504:17:1" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "2523:6:1" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "2531:3:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_available_length_t_bytes_memory_ptr", | |
| "nodeType": "YulIdentifier", | |
| "src": "2457:46:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2457:78:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "array", | |
| "nodeType": "YulIdentifier", | |
| "src": "2448:5:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_t_bytes_memory_ptr", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "2242:6:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "2250:3:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "array", | |
| "nodeType": "YulTypedName", | |
| "src": "2258:5:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "2203:338:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "2622:432:1", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "2668:83:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nodeType": "YulIdentifier", | |
| "src": "2670:77:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2670:79:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2670:79:1" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "2643:7:1" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "2652:9:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "2639:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2639:23:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2664:2:1", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nodeType": "YulIdentifier", | |
| "src": "2635:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2635:32:1" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "2632:119:1" | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "2761:286:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "2776:45:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "2807:9:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2818:1:1", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "2803:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2803:17:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "calldataload", | |
| "nodeType": "YulIdentifier", | |
| "src": "2790:12:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2790:31:1" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "2780:6:1", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "2868:83:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
| "nodeType": "YulIdentifier", | |
| "src": "2870:77:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2870:79:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2870:79:1" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "2840:6:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2848:18:1", | |
| "type": "", | |
| "value": "0xffffffffffffffff" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nodeType": "YulIdentifier", | |
| "src": "2837:2:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2837:30:1" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "2834:117:1" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "2965:72:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "3009:9:1" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "3020:6:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "3005:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3005:22:1" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "3029:7:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_bytes_memory_ptr", | |
| "nodeType": "YulIdentifier", | |
| "src": "2975:29:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2975:62:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "2965:6:1" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_tuple_t_bytes_memory_ptr", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "2592:9:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulTypedName", | |
| "src": "2603:7:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "2615:6:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "2547:507:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "3105:81:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "3115:65:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "3130:5:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "3137:42:1", | |
| "type": "", | |
| "value": "0xffffffffffffffffffffffffffffffffffffffff" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nodeType": "YulIdentifier", | |
| "src": "3126:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3126:54:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "3115:7:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_uint160", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "3087:5:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "3097:7:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3060:126:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "3237:51:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "3247:35:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "3276:5:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint160", | |
| "nodeType": "YulIdentifier", | |
| "src": "3258:17:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3258:24:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "3247:7:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_address", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "3219:5:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "3229:7:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3192:96:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "3359:53:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "3376:3:1" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "3399:5:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "3381:17:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3381:24:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "3369:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3369:37:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "3369:37:1" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_address_to_t_address_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "3347:5:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "3354:3:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3294:118:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "3516:124:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "3526:26:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "3538:9:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "3549:2:1", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "3534:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3534:18:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "3526:4:1" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "3606:6:1" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "3619:9:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "3630:1:1", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "3615:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3615:17:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_address_to_t_address_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "3562:43:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3562:71:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "3562:71:1" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "3488:9:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "3500:6:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "3511:4:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3418:222:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "3742:73:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "3759:3:1" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "3764:6:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "3752:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3752:19:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "3752:19:1" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "3780:29:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "3799:3:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "3804:4:1", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "3795:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3795:14:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "updated_pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "3780:11:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "3714:3:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "3719:6:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "updated_pos", | |
| "nodeType": "YulTypedName", | |
| "src": "3730:11:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3646:169:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "3927:69:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "3949:6:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "3957:1:1", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "3945:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3945:14:1" | |
| }, | |
| { | |
| "hexValue": "4661696c656420746f206465706c6f7920636f6e7472616374", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "3961:27:1", | |
| "type": "", | |
| "value": "Failed to deploy contract" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "3938:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3938:51:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "3938:51:1" | |
| } | |
| ] | |
| }, | |
| "name": "store_literal_in_memory_a52efd5fc7abcaedfe6da622199610c9d847c639d1cc33141b93504fb0422dd1", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "3919:6:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3821:175:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "4148:220:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "4158:74:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "4224:3:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "4229:2:1", | |
| "type": "", | |
| "value": "25" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "4165:58:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4165:67:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "4158:3:1" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "4330:3:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "store_literal_in_memory_a52efd5fc7abcaedfe6da622199610c9d847c639d1cc33141b93504fb0422dd1", | |
| "nodeType": "YulIdentifier", | |
| "src": "4241:88:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4241:93:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4241:93:1" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "4343:19:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "4354:3:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "4359:2:1", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "4350:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4350:12:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "4343:3:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_stringliteral_a52efd5fc7abcaedfe6da622199610c9d847c639d1cc33141b93504fb0422dd1_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "4136:3:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "4144:3:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "4002:366:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "4545:248:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "4555:26:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "4567:9:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "4578:2:1", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "4563:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4563:18:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "4555:4:1" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "4602:9:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "4613:1:1", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "4598:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4598:17:1" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "4621:4:1" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "4627:9:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "4617:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4617:20:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "4591:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4591:47:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4591:47:1" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "4647:139:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "4781:4:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_stringliteral_a52efd5fc7abcaedfe6da622199610c9d847c639d1cc33141b93504fb0422dd1_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "4655:124:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4655:131:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "4647:4:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_stringliteral_a52efd5fc7abcaedfe6da622199610c9d847c639d1cc33141b93504fb0422dd1__to_t_string_memory_ptr__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "4525:9:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "4540:4:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "4374:419:1" | |
| } | |
| ] | |
| }, | |
| "contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_bytes_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory_with_cleanup(src, dst, length) {\n calldatacopy(dst, src, length)\n mstore(add(dst, length), 0)\n }\n\n function abi_decode_available_length_t_bytes_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_bytes_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory_with_cleanup(src, dst, length)\n }\n\n // bytes\n function abi_decode_t_bytes_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_bytes_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_bytes_memory_ptr(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_a52efd5fc7abcaedfe6da622199610c9d847c639d1cc33141b93504fb0422dd1(memPtr) {\n\n mstore(add(memPtr, 0), \"Failed to deploy contract\")\n\n }\n\n function abi_encode_t_stringliteral_a52efd5fc7abcaedfe6da622199610c9d847c639d1cc33141b93504fb0422dd1_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_a52efd5fc7abcaedfe6da622199610c9d847c639d1cc33141b93504fb0422dd1(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_a52efd5fc7abcaedfe6da622199610c9d847c639d1cc33141b93504fb0422dd1__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_a52efd5fc7abcaedfe6da622199610c9d847c639d1cc33141b93504fb0422dd1_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n", | |
| "id": 1, | |
| "language": "Yul", | |
| "name": "#utility.yul" | |
| } | |
| ], | |
| "immutableReferences": {}, | |
| "linkReferences": {}, | |
| "object": "608060405234801561001057600080fd5b506004361061002a5760003560e01c80627743601461002f575b600080fd5b6100496004803603810190610044919061023f565b61005f565b60405161005691906102c9565b60405180910390f35b6000808251602084016000f09050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036100dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100d390610341565b60405180910390fd5b80915050919050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61014c82610103565b810181811067ffffffffffffffff8211171561016b5761016a610114565b5b80604052505050565b600061017e6100e5565b905061018a8282610143565b919050565b600067ffffffffffffffff8211156101aa576101a9610114565b5b6101b382610103565b9050602081019050919050565b82818337600083830152505050565b60006101e26101dd8461018f565b610174565b9050828152602081018484840111156101fe576101fd6100fe565b5b6102098482856101c0565b509392505050565b600082601f830112610226576102256100f9565b5b81356102368482602086016101cf565b91505092915050565b600060208284031215610255576102546100ef565b5b600082013567ffffffffffffffff811115610273576102726100f4565b5b61027f84828501610211565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006102b382610288565b9050919050565b6102c3816102a8565b82525050565b60006020820190506102de60008301846102ba565b92915050565b600082825260208201905092915050565b7f4661696c656420746f206465706c6f7920636f6e747261637400000000000000600082015250565b600061032b6019836102e4565b9150610336826102f5565b602082019050919050565b6000602082019050818103600083015261035a8161031e565b905091905056fea2646970667358221220a545d25274233be2e2ebe456b6b3ceb9919a2cbc32d8e44e659adf1bbd26c2bd64736f6c63430008110033", | |
| "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x2A JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH3 0x774360 EQ PUSH2 0x2F JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x49 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x44 SWAP2 SWAP1 PUSH2 0x23F JUMP JUMPDEST PUSH2 0x5F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x56 SWAP2 SWAP1 PUSH2 0x2C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 DUP3 MLOAD PUSH1 0x20 DUP5 ADD PUSH1 0x0 CREATE SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xDC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD3 SWAP1 PUSH2 0x341 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x14C DUP3 PUSH2 0x103 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x16B JUMPI PUSH2 0x16A PUSH2 0x114 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17E PUSH2 0xE5 JUMP JUMPDEST SWAP1 POP PUSH2 0x18A DUP3 DUP3 PUSH2 0x143 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1AA JUMPI PUSH2 0x1A9 PUSH2 0x114 JUMP JUMPDEST JUMPDEST PUSH2 0x1B3 DUP3 PUSH2 0x103 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E2 PUSH2 0x1DD DUP5 PUSH2 0x18F JUMP JUMPDEST PUSH2 0x174 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1FE JUMPI PUSH2 0x1FD PUSH2 0xFE JUMP JUMPDEST JUMPDEST PUSH2 0x209 DUP5 DUP3 DUP6 PUSH2 0x1C0 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x226 JUMPI PUSH2 0x225 PUSH2 0xF9 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x236 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1CF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x255 JUMPI PUSH2 0x254 PUSH2 0xEF JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x273 JUMPI PUSH2 0x272 PUSH2 0xF4 JUMP JUMPDEST JUMPDEST PUSH2 0x27F DUP5 DUP3 DUP6 ADD PUSH2 0x211 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B3 DUP3 PUSH2 0x288 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2C3 DUP2 PUSH2 0x2A8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2DE PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2BA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4661696C656420746F206465706C6F7920636F6E747261637400000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32B PUSH1 0x19 DUP4 PUSH2 0x2E4 JUMP JUMPDEST SWAP2 POP PUSH2 0x336 DUP3 PUSH2 0x2F5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x35A DUP2 PUSH2 0x31E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xA5 GASLIMIT 0xD2 MSTORE PUSH21 0x233BE2E2EBE456B6B3CEB9919A2CBC32D8E44E659A 0xDF SHL 0xBD 0x26 0xC2 0xBD PUSH5 0x736F6C6343 STOP ADDMOD GT STOP CALLER ", | |
| "sourceMap": "57:364:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81:338;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;137:7;156:24;280:9;274:16;267:4;256:9;252:20;249:1;242:49;222:69;;347:1;319:30;;:16;:30;;;311:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;396:16;389:23;;;81:338;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:102;621:6;672:2;668:7;663:2;656:5;652:14;648:28;638:38;;580:102;;;:::o;688:180::-;736:77;733:1;726:88;833:4;830:1;823:15;857:4;854:1;847:15;874:281;957:27;979:4;957:27;:::i;:::-;949:6;945:40;1087:6;1075:10;1072:22;1051:18;1039:10;1036:34;1033:62;1030:88;;;1098:18;;:::i;:::-;1030:88;1138:10;1134:2;1127:22;917:238;874:281;;:::o;1161:129::-;1195:6;1222:20;;:::i;:::-;1212:30;;1251:33;1279:4;1271:6;1251:33;:::i;:::-;1161:129;;;:::o;1296:307::-;1357:4;1447:18;1439:6;1436:30;1433:56;;;1469:18;;:::i;:::-;1433:56;1507:29;1529:6;1507:29;:::i;:::-;1499:37;;1591:4;1585;1581:15;1573:23;;1296:307;;;:::o;1609:146::-;1706:6;1701:3;1696;1683:30;1747:1;1738:6;1733:3;1729:16;1722:27;1609:146;;;:::o;1761:423::-;1838:5;1863:65;1879:48;1920:6;1879:48;:::i;:::-;1863:65;:::i;:::-;1854:74;;1951:6;1944:5;1937:21;1989:4;1982:5;1978:16;2027:3;2018:6;2013:3;2009:16;2006:25;2003:112;;;2034:79;;:::i;:::-;2003:112;2124:54;2171:6;2166:3;2161;2124:54;:::i;:::-;1844:340;1761:423;;;;;:::o;2203:338::-;2258:5;2307:3;2300:4;2292:6;2288:17;2284:27;2274:122;;2315:79;;:::i;:::-;2274:122;2432:6;2419:20;2457:78;2531:3;2523:6;2516:4;2508:6;2504:17;2457:78;:::i;:::-;2448:87;;2264:277;2203:338;;;;:::o;2547:507::-;2615:6;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2818:1;2807:9;2803:17;2790:31;2848:18;2840:6;2837:30;2834:117;;;2870:79;;:::i;:::-;2834:117;2975:62;3029:7;3020:6;3009:9;3005:22;2975:62;:::i;:::-;2965:72;;2761:286;2547:507;;;;:::o;3060:126::-;3097:7;3137:42;3130:5;3126:54;3115:65;;3060:126;;;:::o;3192:96::-;3229:7;3258:24;3276:5;3258:24;:::i;:::-;3247:35;;3192:96;;;:::o;3294:118::-;3381:24;3399:5;3381:24;:::i;:::-;3376:3;3369:37;3294:118;;:::o;3418:222::-;3511:4;3549:2;3538:9;3534:18;3526:26;;3562:71;3630:1;3619:9;3615:17;3606:6;3562:71;:::i;:::-;3418:222;;;;:::o;3646:169::-;3730:11;3764:6;3759:3;3752:19;3804:4;3799:3;3795:14;3780:29;;3646:169;;;;:::o;3821:175::-;3961:27;3957:1;3949:6;3945:14;3938:51;3821:175;:::o;4002:366::-;4144:3;4165:67;4229:2;4224:3;4165:67;:::i;:::-;4158:74;;4241:93;4330:3;4241:93;:::i;:::-;4359:2;4354:3;4350:12;4343:19;;4002:366;;;:::o;4374:419::-;4540:4;4578:2;4567:9;4563:18;4555:26;;4627:9;4621:4;4617:20;4613:1;4602:9;4598:17;4591:47;4655:131;4781:4;4655:131;:::i;:::-;4647:139;;4374:419;;;:::o" | |
| }, | |
| "gasEstimates": { | |
| "creation": { | |
| "codeDepositCost": "183800", | |
| "executionCost": "226", | |
| "totalCost": "184026" | |
| }, | |
| "external": { | |
| "deploy(bytes)": "infinite" | |
| } | |
| }, | |
| "methodIdentifiers": { | |
| "deploy(bytes)": "00774360" | |
| } | |
| }, | |
| "abi": [ | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "bytes", | |
| "name": "_bytecode", | |
| "type": "bytes" | |
| } | |
| ], | |
| "name": "deploy", | |
| "outputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "", | |
| "type": "address" | |
| } | |
| ], | |
| "stateMutability": "nonpayable", | |
| "type": "function" | |
| } | |
| ] | |
| } |
| { | |
| "compiler": { | |
| "version": "0.8.17+commit.8df45f5f" | |
| }, | |
| "language": "Solidity", | |
| "output": { | |
| "abi": [ | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "bytes", | |
| "name": "_bytecode", | |
| "type": "bytes" | |
| } | |
| ], | |
| "name": "deploy", | |
| "outputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "", | |
| "type": "address" | |
| } | |
| ], | |
| "stateMutability": "nonpayable", | |
| "type": "function" | |
| } | |
| ], | |
| "devdoc": { | |
| "kind": "dev", | |
| "methods": {}, | |
| "version": 1 | |
| }, | |
| "userdoc": { | |
| "kind": "user", | |
| "methods": {}, | |
| "version": 1 | |
| } | |
| }, | |
| "settings": { | |
| "compilationTarget": { | |
| "contracts/Deployer.sol": "Deployer" | |
| }, | |
| "evmVersion": "london", | |
| "libraries": {}, | |
| "metadata": { | |
| "bytecodeHash": "ipfs" | |
| }, | |
| "optimizer": { | |
| "enabled": false, | |
| "runs": 200 | |
| }, | |
| "remappings": [] | |
| }, | |
| "sources": { | |
| "contracts/Deployer.sol": { | |
| "keccak256": "0x1b3f23f440be1e0de31ef8701716c3ce561cd8fe4cc3911c460b7b42f25eff84", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://40ac8df67944dc662919927ae3ffe9164b5c8975c2baa89f49691df79cebc551", | |
| "dweb:/ipfs/QmTAc2xMdu5NiyAiVtjkZmMVph2FE5R8eTqepKJfS9sREg" | |
| ] | |
| } | |
| }, | |
| "version": 1 | |
| } |
| { | |
| "deploy": { | |
| "VM:-": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "main:1": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "ropsten:3": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "rinkeby:4": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "kovan:42": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "goerli:5": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "Custom": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| } | |
| }, | |
| "data": { | |
| "bytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "linkReferences": {}, | |
| "object": "608060405234801561001057600080fd5b506101b1806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063e006805214610030575b600080fd5b61004a600480360381019061004591906100b1565b610060565b6040516100579190610100565b60405180910390f35b6000818361006e919061014a565b905092915050565b600080fd5b6000819050919050565b61008e8161007b565b811461009957600080fd5b50565b6000813590506100ab81610085565b92915050565b600080604083850312156100c8576100c7610076565b5b60006100d68582860161009c565b92505060206100e78582860161009c565b9150509250929050565b6100fa8161007b565b82525050565b600060208201905061011560008301846100f1565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006101558261007b565b91506101608361007b565b9250826101705761016f61011b565b5b82820490509291505056fea2646970667358221220e538b63c3a01362eea710fe2784a49f401a0eb32726ad921b96bef44e95272c964736f6c63430008120033", | |
| "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1B1 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x2B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xE0068052 EQ PUSH2 0x30 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x45 SWAP2 SWAP1 PUSH2 0xB1 JUMP JUMPDEST PUSH2 0x60 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x57 SWAP2 SWAP1 PUSH2 0x100 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP2 DUP4 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x14A JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x8E DUP2 PUSH2 0x7B JUMP JUMPDEST DUP2 EQ PUSH2 0x99 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xAB DUP2 PUSH2 0x85 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xC8 JUMPI PUSH2 0xC7 PUSH2 0x76 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD6 DUP6 DUP3 DUP7 ADD PUSH2 0x9C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xE7 DUP6 DUP3 DUP7 ADD PUSH2 0x9C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xFA DUP2 PUSH2 0x7B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x115 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xF1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x155 DUP3 PUSH2 0x7B JUMP JUMPDEST SWAP2 POP PUSH2 0x160 DUP4 PUSH2 0x7B JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x170 JUMPI PUSH2 0x16F PUSH2 0x11B JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE5 CODESIZE 0xB6 EXTCODECOPY GASPRICE ADD CALLDATASIZE 0x2E 0xEA PUSH18 0xFE2784A49F401A0EB32726AD921B96BEF44 0xE9 MSTORE PUSH19 0xC964736F6C6343000812003300000000000000 ", | |
| "sourceMap": "71:131:0:-:0;;;;;;;;;;;;;;;;;;;" | |
| }, | |
| "deployedBytecode": { | |
| "functionDebugData": { | |
| "@division_15": { | |
| "entryPoint": 96, | |
| "id": 15, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_t_uint256": { | |
| "entryPoint": 156, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_tuple_t_uint256t_uint256": { | |
| "entryPoint": 177, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 2 | |
| }, | |
| "abi_encode_t_uint256_to_t_uint256_fromStack": { | |
| "entryPoint": 241, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": { | |
| "entryPoint": 256, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "allocate_unbounded": { | |
| "entryPoint": null, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 1 | |
| }, | |
| "checked_div_t_uint256": { | |
| "entryPoint": 330, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_uint256": { | |
| "entryPoint": 123, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "panic_error_0x11": { | |
| "entryPoint": null, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "panic_error_0x12": { | |
| "entryPoint": 283, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": { | |
| "entryPoint": null, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": { | |
| "entryPoint": 118, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "validator_revert_t_uint256": { | |
| "entryPoint": 133, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| } | |
| }, | |
| "generatedSources": [ | |
| { | |
| "ast": { | |
| "nodeType": "YulBlock", | |
| "src": "0:2082:1", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "47:35:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "57:19:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "73:2:1", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "67:5:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "67:9:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "57:6:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "allocate_unbounded", | |
| "nodeType": "YulFunctionDefinition", | |
| "returnVariables": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "40:6:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "7:75:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "177:28:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "194:1:1", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "197:1:1", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "187:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "187:12:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "187:12:1" | |
| } | |
| ] | |
| }, | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "88:117:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "300:28:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "317:1:1", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "320:1:1", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "310:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "310:12:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "310:12:1" | |
| } | |
| ] | |
| }, | |
| "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "211:117:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "379:32:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "389:16:1", | |
| "value": { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "400:5:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "389:7:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_uint256", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "361:5:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "371:7:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "334:77:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "460:79:1", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "517:16:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "526:1:1", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "529:1:1", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "519:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "519:12:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "519:12:1" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "483:5:1" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "508:5:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "490:17:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "490:24:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "eq", | |
| "nodeType": "YulIdentifier", | |
| "src": "480:2:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "480:35:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nodeType": "YulIdentifier", | |
| "src": "473:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "473:43:1" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "470:63:1" | |
| } | |
| ] | |
| }, | |
| "name": "validator_revert_t_uint256", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "453:5:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "417:122:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "597:87:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "607:29:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "629:6:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "calldataload", | |
| "nodeType": "YulIdentifier", | |
| "src": "616:12:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "616:20:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "607:5:1" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "672:5:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "validator_revert_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "645:26:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "645:33:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "645:33:1" | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_t_uint256", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "575:6:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "583:3:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "591:5:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "545:139:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "773:391:1", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "819:83:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nodeType": "YulIdentifier", | |
| "src": "821:77:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "821:79:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "821:79:1" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "794:7:1" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "803:9:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "790:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "790:23:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "815:2:1", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nodeType": "YulIdentifier", | |
| "src": "786:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "786:32:1" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "783:119:1" | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "912:117:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "927:15:1", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "941:1:1", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "931:6:1", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "956:63:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "991:9:1" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "1002:6:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "987:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "987:22:1" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "1011:7:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "966:20:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "966:53:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "956:6:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "1039:118:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "1054:16:1", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1068:2:1", | |
| "type": "", | |
| "value": "32" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "1058:6:1", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1084:63:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1119:9:1" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "1130:6:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1115:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1115:22:1" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "1139:7:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "1094:20:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1094:53:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value1", | |
| "nodeType": "YulIdentifier", | |
| "src": "1084:6:1" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_tuple_t_uint256t_uint256", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "735:9:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulTypedName", | |
| "src": "746:7:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "758:6:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value1", | |
| "nodeType": "YulTypedName", | |
| "src": "766:6:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "690:474:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1235:53:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "1252:3:1" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "1275:5:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "1257:17:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1257:24:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "1245:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1245:37:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1245:37:1" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "1223:5:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "1230:3:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1170:118:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1392:124:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1402:26:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1414:9:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1425:2:1", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1410:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1410:18:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "1402:4:1" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "1482:6:1" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1495:9:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1506:1:1", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1491:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1491:17:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "1438:43:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1438:71:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1438:71:1" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "1364:9:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "1376:6:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "1387:4:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1294:222:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1550:152:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1567:1:1", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1570:77:1", | |
| "type": "", | |
| "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "1560:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1560:88:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1560:88:1" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1664:1:1", | |
| "type": "", | |
| "value": "4" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1667:4:1", | |
| "type": "", | |
| "value": "0x12" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "1657:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1657:15:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1657:15:1" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1688:1:1", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1691:4:1", | |
| "type": "", | |
| "value": "0x24" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "1681:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1681:15:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1681:15:1" | |
| } | |
| ] | |
| }, | |
| "name": "panic_error_0x12", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "1522:180:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1736:152:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1753:1:1", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1756:77:1", | |
| "type": "", | |
| "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "1746:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1746:88:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1746:88:1" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1850:1:1", | |
| "type": "", | |
| "value": "4" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1853:4:1", | |
| "type": "", | |
| "value": "0x11" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "1843:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1843:15:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1843:15:1" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1874:1:1", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1877:4:1", | |
| "type": "", | |
| "value": "0x24" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "1867:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1867:15:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1867:15:1" | |
| } | |
| ] | |
| }, | |
| "name": "panic_error_0x11", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "1708:180:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1936:143:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1946:25:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "x", | |
| "nodeType": "YulIdentifier", | |
| "src": "1969:1:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "1951:17:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1951:20:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "x", | |
| "nodeType": "YulIdentifier", | |
| "src": "1946:1:1" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1980:25:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "y", | |
| "nodeType": "YulIdentifier", | |
| "src": "2003:1:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "1985:17:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1985:20:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "y", | |
| "nodeType": "YulIdentifier", | |
| "src": "1980:1:1" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "2027:22:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "panic_error_0x12", | |
| "nodeType": "YulIdentifier", | |
| "src": "2029:16:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2029:18:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2029:18:1" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "y", | |
| "nodeType": "YulIdentifier", | |
| "src": "2024:1:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nodeType": "YulIdentifier", | |
| "src": "2017:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2017:9:1" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "2014:35:1" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "2059:14:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "x", | |
| "nodeType": "YulIdentifier", | |
| "src": "2068:1:1" | |
| }, | |
| { | |
| "name": "y", | |
| "nodeType": "YulIdentifier", | |
| "src": "2071:1:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "div", | |
| "nodeType": "YulIdentifier", | |
| "src": "2064:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2064:9:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "r", | |
| "nodeType": "YulIdentifier", | |
| "src": "2059:1:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "checked_div_t_uint256", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "x", | |
| "nodeType": "YulTypedName", | |
| "src": "1925:1:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "y", | |
| "nodeType": "YulTypedName", | |
| "src": "1928:1:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "r", | |
| "nodeType": "YulTypedName", | |
| "src": "1934:1:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1894:185:1" | |
| } | |
| ] | |
| }, | |
| "contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256t_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n}\n", | |
| "id": 1, | |
| "language": "Yul", | |
| "name": "#utility.yul" | |
| } | |
| ], | |
| "immutableReferences": {}, | |
| "linkReferences": {}, | |
| "object": "608060405234801561001057600080fd5b506004361061002b5760003560e01c8063e006805214610030575b600080fd5b61004a600480360381019061004591906100b1565b610060565b6040516100579190610100565b60405180910390f35b6000818361006e919061014a565b905092915050565b600080fd5b6000819050919050565b61008e8161007b565b811461009957600080fd5b50565b6000813590506100ab81610085565b92915050565b600080604083850312156100c8576100c7610076565b5b60006100d68582860161009c565b92505060206100e78582860161009c565b9150509250929050565b6100fa8161007b565b82525050565b600060208201905061011560008301846100f1565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006101558261007b565b91506101608361007b565b9250826101705761016f61011b565b5b82820490509291505056fea2646970667358221220e538b63c3a01362eea710fe2784a49f401a0eb32726ad921b96bef44e95272c964736f6c63430008120033", | |
| "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x2B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xE0068052 EQ PUSH2 0x30 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x45 SWAP2 SWAP1 PUSH2 0xB1 JUMP JUMPDEST PUSH2 0x60 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x57 SWAP2 SWAP1 PUSH2 0x100 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP2 DUP4 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x14A JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x8E DUP2 PUSH2 0x7B JUMP JUMPDEST DUP2 EQ PUSH2 0x99 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xAB DUP2 PUSH2 0x85 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xC8 JUMPI PUSH2 0xC7 PUSH2 0x76 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD6 DUP6 DUP3 DUP7 ADD PUSH2 0x9C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xE7 DUP6 DUP3 DUP7 ADD PUSH2 0x9C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xFA DUP2 PUSH2 0x7B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x115 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xF1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x155 DUP3 PUSH2 0x7B JUMP JUMPDEST SWAP2 POP PUSH2 0x160 DUP4 PUSH2 0x7B JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x170 JUMPI PUSH2 0x16F PUSH2 0x11B JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE5 CODESIZE 0xB6 EXTCODECOPY GASPRICE ADD CALLDATASIZE 0x2E 0xEA PUSH18 0xFE2784A49F401A0EB32726AD921B96BEF44 0xE9 MSTORE PUSH19 0xC964736F6C6343000812003300000000000000 ", | |
| "sourceMap": "71:131:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99:101;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;162:7;192:1;188;:5;;;;:::i;:::-;181:12;;99:101;;;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:118::-;1257:24;1275:5;1257:24;:::i;:::-;1252:3;1245:37;1170:118;;:::o;1294:222::-;1387:4;1425:2;1414:9;1410:18;1402:26;;1438:71;1506:1;1495:9;1491:17;1482:6;1438:71;:::i;:::-;1294:222;;;;:::o;1522:180::-;1570:77;1567:1;1560:88;1667:4;1664:1;1657:15;1691:4;1688:1;1681:15;1894:185;1934:1;1951:20;1969:1;1951:20;:::i;:::-;1946:25;;1985:20;2003:1;1985:20;:::i;:::-;1980:25;;2024:1;2014:35;;2029:18;;:::i;:::-;2014:35;2071:1;2068;2064:9;2059:14;;1894:185;;;;:::o" | |
| }, | |
| "gasEstimates": { | |
| "creation": { | |
| "codeDepositCost": "86600", | |
| "executionCost": "135", | |
| "totalCost": "86735" | |
| }, | |
| "external": { | |
| "division(uint256,uint256)": "infinite" | |
| } | |
| }, | |
| "methodIdentifiers": { | |
| "division(uint256,uint256)": "e0068052" | |
| } | |
| }, | |
| "abi": [ | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "a", | |
| "type": "uint256" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "b", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "division", | |
| "outputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "", | |
| "type": "uint256" | |
| } | |
| ], | |
| "stateMutability": "pure", | |
| "type": "function" | |
| } | |
| ] | |
| } |
| { | |
| "compiler": { | |
| "version": "0.8.18+commit.87f61d96" | |
| }, | |
| "language": "Solidity", | |
| "output": { | |
| "abi": [ | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "a", | |
| "type": "uint256" | |
| }, | |
| { | |
| "internalType": "uint256", | |
| "name": "b", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "division", | |
| "outputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "", | |
| "type": "uint256" | |
| } | |
| ], | |
| "stateMutability": "pure", | |
| "type": "function" | |
| } | |
| ], | |
| "devdoc": { | |
| "kind": "dev", | |
| "methods": {}, | |
| "version": 1 | |
| }, | |
| "userdoc": { | |
| "kind": "user", | |
| "methods": {}, | |
| "version": 1 | |
| } | |
| }, | |
| "settings": { | |
| "compilationTarget": { | |
| "contracts/DivisionLoss.sol": "DivisionLoss" | |
| }, | |
| "evmVersion": "paris", | |
| "libraries": {}, | |
| "metadata": { | |
| "bytecodeHash": "ipfs" | |
| }, | |
| "optimizer": { | |
| "enabled": false, | |
| "runs": 200 | |
| }, | |
| "remappings": [] | |
| }, | |
| "sources": { | |
| "contracts/DivisionLoss.sol": { | |
| "keccak256": "0xd11849aea1cf2ea96f2041098e6544fb4bee51248fc5a593f95883b2797fa90a", | |
| "license": "AGPL-3.0-or-later", | |
| "urls": [ | |
| "bzz-raw://4555362de844bd2e51069b6dd853424d212ead049deabf73747a8ad643e703ce", | |
| "dweb:/ipfs/QmVrLBD3D2mMGyHosNvrFy1SJCbm6PUY5UqP9kYS5xY4T2" | |
| ] | |
| } | |
| }, | |
| "version": 1 | |
| } |
| { | |
| "deploy": { | |
| "VM:-": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "main:1": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "ropsten:3": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "rinkeby:4": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "kovan:42": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "goerli:5": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "Custom": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| } | |
| }, | |
| "data": { | |
| "bytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "linkReferences": {}, | |
| "object": "", | |
| "opcodes": "", | |
| "sourceMap": "" | |
| }, | |
| "deployedBytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "immutableReferences": {}, | |
| "linkReferences": {}, | |
| "object": "", | |
| "opcodes": "", | |
| "sourceMap": "" | |
| }, | |
| "gasEstimates": null, | |
| "methodIdentifiers": { | |
| "balanceOf(address)": "70a08231" | |
| } | |
| }, | |
| "abi": [ | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "user", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "balanceOf", | |
| "outputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "", | |
| "type": "uint256" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| } | |
| ] | |
| } |
| { | |
| "compiler": { | |
| "version": "0.8.17+commit.8df45f5f" | |
| }, | |
| "language": "Solidity", | |
| "output": { | |
| "abi": [ | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "user", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "balanceOf", | |
| "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/FlashLiquidator.sol": "ERC20Interface" | |
| }, | |
| "evmVersion": "london", | |
| "libraries": {}, | |
| "metadata": { | |
| "bytecodeHash": "ipfs" | |
| }, | |
| "optimizer": { | |
| "enabled": false, | |
| "runs": 200 | |
| }, | |
| "remappings": [] | |
| }, | |
| "sources": { | |
| "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol": { | |
| "keccak256": "0x4075622496acc77fd6d4de4cc30a8577a744d5c75afad33fdeacf1704d6eda98", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://99c8cb3cd19a44bbfb6612605affb7d8b06cee1f6aa9362a37a8672b4f7eeaf8", | |
| "dweb:/ipfs/QmasyxFDBUp7k5KFgfDWEzM8PYSKEq7GVznzMJ1VxVRF4B" | |
| ] | |
| }, | |
| "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol": { | |
| "keccak256": "0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://f103ee2e4aecd37aac6ceefe670709cdd7613dee25fa2d4d9feaf7fc0aaa155e", | |
| "dweb:/ipfs/QmRiNZLoJk5k3HPMYGPGjZFd2ke1ZxjhJZkM45Ec9GH9hv" | |
| ] | |
| }, | |
| "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol": { | |
| "keccak256": "0x40c636b4572ff5f1dc50cf22097e93c0723ee14eff87e99ac2b02636eeca1250", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://9c7d1f5e15633ab912b74c2f57e24559e66b03232300d4b27ff0f25bc452ecad", | |
| "dweb:/ipfs/QmYTJkc1cntYkKQ1Tu11nBcJLakiy93Tjytc4XHELo4GmR" | |
| ] | |
| }, | |
| "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol": { | |
| "keccak256": "0xb82ef33f43b6b96109687d91b39c94573fdccaaa423fe28e8ba0977b31c023e0", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://ec9c629f63e66379f9c868a74f971064701cc6e30583872aa653f8b932518025", | |
| "dweb:/ipfs/QmY4MnZF2VMFwJkAwpdQwxEWA3KcGbNBKEmAVYePMVQWUR" | |
| ] | |
| }, | |
| "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol": { | |
| "keccak256": "0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://310136ad60820af4177a11a61d77a3686faf5fca4942b600e08fc940db38396b", | |
| "dweb:/ipfs/QmbCzMNSTL7Zi7M4UCSqBrkHtp4jjxUnGbkneCZKdR1qeq" | |
| ] | |
| }, | |
| "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol": { | |
| "keccak256": "0x963ea7f0b48b032eef72fe3a7582edf78408d6f834115b9feadd673a4d5bd149", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://d6520943ea55fdf5f0bafb39ed909f64de17051bc954ff3e88c9e5621412c79c", | |
| "dweb:/ipfs/QmWZ4rAKTQbNG2HxGs46AcTXShsVytKeLs7CUCdCSv5N7a" | |
| ] | |
| }, | |
| "@openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol": { | |
| "keccak256": "0xb1561a6950b1aaa504c8f81b7d46bccfa77ccd10de3eb865cf34b1acd5ad505e", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://9a56cb91629dacd161be24908fbf94315f3f45dd6fee8dad82b27af853cbc4ee", | |
| "dweb:/ipfs/QmNfEzdf4NTpxyhzWKAmeDwwSpJ6ZjNizK3GXw3TEuTTgn" | |
| ] | |
| }, | |
| "contracts/FlashLiquidator.sol": { | |
| "keccak256": "0xc25bd5e47e982df9423525f9d200040f9fb38c7452baf49f3c904bf1a4301699", | |
| "urls": [ | |
| "bzz-raw://31ea053099740751cf3aaa6a606afbdd28c8ad8e13452d008bc3c16732eb6f93", | |
| "dweb:/ipfs/QmY1nfhF67uDfwfEFZkdFqZMc7i6PzFDY5JTu6oy4HJkUs" | |
| ] | |
| } | |
| }, | |
| "version": 1 | |
| } |
| { | |
| "deploy": { | |
| "VM:-": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "main:1": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "ropsten:3": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "rinkeby:4": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "kovan:42": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "goerli:5": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "Custom": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| } | |
| }, | |
| "data": { | |
| "bytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "linkReferences": {}, | |
| "object": "60566050600b82828239805160001a6073146043577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220b6ac32aef46b1cd44578f919b1a67e55822d4b0ae092811faa79f8ecb8048dea64736f6c63430008110033", | |
| "opcodes": "PUSH1 0x56 PUSH1 0x50 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x43 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 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 0xB6 0xAC ORIGIN 0xAE DELEGATECALL PUSH12 0x1CD44578F919B1A67E55822D 0x4B EXP 0xE0 SWAP3 DUP2 0x1F 0xAA PUSH26 0xF8ECB8048DEA64736F6C63430008110033000000000000000000 ", | |
| "sourceMap": "18785:961:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;" | |
| }, | |
| "deployedBytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "immutableReferences": {}, | |
| "linkReferences": {}, | |
| "object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220b6ac32aef46b1cd44578f919b1a67e55822d4b0ae092811faa79f8ecb8048dea64736f6c63430008110033", | |
| "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xB6 0xAC ORIGIN 0xAE DELEGATECALL PUSH12 0x1CD44578F919B1A67E55822D 0x4B EXP 0xE0 SWAP3 DUP2 0x1F 0xAA PUSH26 0xF8ECB8048DEA64736F6C63430008110033000000000000000000 ", | |
| "sourceMap": "18785:961:7:-:0;;;;;;;;" | |
| }, | |
| "gasEstimates": { | |
| "creation": { | |
| "codeDepositCost": "17200", | |
| "executionCost": "97", | |
| "totalCost": "17297" | |
| }, | |
| "internal": { | |
| "_convertDecimals(uint256,uint256,uint256)": "infinite", | |
| "_getStableSwapTokenToStablecoinAmountOut(address,uint256)": "infinite" | |
| } | |
| }, | |
| "methodIdentifiers": {} | |
| }, | |
| "abi": [] | |
| } |
| { | |
| "compiler": { | |
| "version": "0.8.17+commit.8df45f5f" | |
| }, | |
| "language": "Solidity", | |
| "output": { | |
| "abi": [], | |
| "devdoc": { | |
| "kind": "dev", | |
| "methods": {}, | |
| "version": 1 | |
| }, | |
| "userdoc": { | |
| "kind": "user", | |
| "methods": {}, | |
| "version": 1 | |
| } | |
| }, | |
| "settings": { | |
| "compilationTarget": { | |
| "contracts/FlashLiquidator.sol": "FathomLibrary" | |
| }, | |
| "evmVersion": "london", | |
| "libraries": {}, | |
| "metadata": { | |
| "bytecodeHash": "ipfs" | |
| }, | |
| "optimizer": { | |
| "enabled": false, | |
| "runs": 200 | |
| }, | |
| "remappings": [] | |
| }, | |
| "sources": { | |
| "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol": { | |
| "keccak256": "0x4075622496acc77fd6d4de4cc30a8577a744d5c75afad33fdeacf1704d6eda98", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://99c8cb3cd19a44bbfb6612605affb7d8b06cee1f6aa9362a37a8672b4f7eeaf8", | |
| "dweb:/ipfs/QmasyxFDBUp7k5KFgfDWEzM8PYSKEq7GVznzMJ1VxVRF4B" | |
| ] | |
| }, | |
| "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol": { | |
| "keccak256": "0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://f103ee2e4aecd37aac6ceefe670709cdd7613dee25fa2d4d9feaf7fc0aaa155e", | |
| "dweb:/ipfs/QmRiNZLoJk5k3HPMYGPGjZFd2ke1ZxjhJZkM45Ec9GH9hv" | |
| ] | |
| }, | |
| "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol": { | |
| "keccak256": "0x40c636b4572ff5f1dc50cf22097e93c0723ee14eff87e99ac2b02636eeca1250", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://9c7d1f5e15633ab912b74c2f57e24559e66b03232300d4b27ff0f25bc452ecad", | |
| "dweb:/ipfs/QmYTJkc1cntYkKQ1Tu11nBcJLakiy93Tjytc4XHELo4GmR" | |
| ] | |
| }, | |
| "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol": { | |
| "keccak256": "0xb82ef33f43b6b96109687d91b39c94573fdccaaa423fe28e8ba0977b31c023e0", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://ec9c629f63e66379f9c868a74f971064701cc6e30583872aa653f8b932518025", | |
| "dweb:/ipfs/QmY4MnZF2VMFwJkAwpdQwxEWA3KcGbNBKEmAVYePMVQWUR" | |
| ] | |
| }, | |
| "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol": { | |
| "keccak256": "0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://310136ad60820af4177a11a61d77a3686faf5fca4942b600e08fc940db38396b", | |
| "dweb:/ipfs/QmbCzMNSTL7Zi7M4UCSqBrkHtp4jjxUnGbkneCZKdR1qeq" | |
| ] | |
| }, | |
| "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol": { | |
| "keccak256": "0x963ea7f0b48b032eef72fe3a7582edf78408d6f834115b9feadd673a4d5bd149", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://d6520943ea55fdf5f0bafb39ed909f64de17051bc954ff3e88c9e5621412c79c", | |
| "dweb:/ipfs/QmWZ4rAKTQbNG2HxGs46AcTXShsVytKeLs7CUCdCSv5N7a" | |
| ] | |
| }, | |
| "@openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol": { | |
| "keccak256": "0xb1561a6950b1aaa504c8f81b7d46bccfa77ccd10de3eb865cf34b1acd5ad505e", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://9a56cb91629dacd161be24908fbf94315f3f45dd6fee8dad82b27af853cbc4ee", | |
| "dweb:/ipfs/QmNfEzdf4NTpxyhzWKAmeDwwSpJ6ZjNizK3GXw3TEuTTgn" | |
| ] | |
| }, | |
| "contracts/FlashLiquidator.sol": { | |
| "keccak256": "0xc25bd5e47e982df9423525f9d200040f9fb38c7452baf49f3c904bf1a4301699", | |
| "urls": [ | |
| "bzz-raw://31ea053099740751cf3aaa6a606afbdd28c8ad8e13452d008bc3c16732eb6f93", | |
| "dweb:/ipfs/QmY1nfhF67uDfwfEFZkdFqZMc7i6PzFDY5JTu6oy4HJkUs" | |
| ] | |
| } | |
| }, | |
| "version": 1 | |
| } |
| // SPDX-License-Identifier: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| contract Calldata { | |
| function whatIsTheMeaningOfLife() external pure returns (bytes memory) { | |
| bytes memory calldataVal = msg.data; | |
| return calldataVal; | |
| } | |
| } |
| // SPDX-License-Identifier: MIT | |
| pragma solidity 0.8.17; | |
| contract Deployer { | |
| function deploy(bytes memory _bytecode) public returns (address) { | |
| address deployedContract; | |
| assembly { | |
| deployedContract := create(0, add(_bytecode, 0x20), mload(_bytecode)) | |
| } | |
| require(deployedContract != address(0), "Failed to deploy contract"); | |
| return deployedContract; | |
| } | |
| } |
| // SPDX-License-Identifier: AGPL-3.0-or-later | |
| pragma solidity 0.8.18; | |
| contract DivisionLoss { | |
| function division(uint256 a, uint256 b) external pure returns (uint256) { | |
| return a / b; | |
| } | |
| } |
| /** | |
| * SourceUnit: /Users/sangjun.lee/Sangjun/fathom-stablecoin-liquidation-bot/src/smart-contracts/flash-liquidator-contracts/contracts/FlashLiquidator.sol | |
| */ | |
| ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| interface IToken { | |
| function decimals() external view returns (uint8); | |
| function balanceOf(address) external view returns (uint256); | |
| function transfer(address, uint256) external returns (bool); | |
| function transferFrom(address, address, uint256) external returns (bool); | |
| function approve(address, uint256) external returns (bool); | |
| } | |
| /** | |
| * SourceUnit: /Users/sangjun.lee/Sangjun/fathom-stablecoin-liquidation-bot/src/smart-contracts/flash-liquidator-contracts/contracts/FlashLiquidator.sol | |
| */ | |
| ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| interface ILiquidationStrategy { | |
| function execute( | |
| bytes32 collateralPoolId, | |
| uint256 positionDebtShare, // Debt Value [rad] | |
| uint256 positionCollateralAmount, // Collateral Amount [wad] | |
| address positionAddress, // Address that will receive any leftover collateral | |
| uint256 debtShareToBeLiquidated, // The value of debt to be liquidated as specified by the liquidator [rad] | |
| uint256 maxDebtShareToBeLiquidated, // The maximum value of debt to be liquidated as specified by the liquidator in case of full liquidation for slippage control [rad] | |
| address _liquidatorAddress, | |
| address collateralRecipient, | |
| bytes calldata data | |
| ) external; | |
| } | |
| /** | |
| * SourceUnit: /Users/sangjun.lee/Sangjun/fathom-stablecoin-liquidation-bot/src/smart-contracts/flash-liquidator-contracts/contracts/FlashLiquidator.sol | |
| */ | |
| ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| ////import "../interfaces/IToken.sol"; | |
| interface IGenericTokenAdapter { | |
| function decimals() external returns (uint256); | |
| function deposit(address positionAddress, uint256 wad, bytes calldata data) external payable; | |
| function withdraw(address positionAddress, uint256 wad, bytes calldata data) external; | |
| function onAdjustPosition( | |
| address src, | |
| address dst, | |
| int256 collateralValue, | |
| int256 debtShare, | |
| bytes calldata data | |
| ) external; | |
| function onMoveCollateral(address src, address dst, uint256 wad, bytes calldata data) external; | |
| function collateralPoolId() external view returns (bytes32); | |
| function collateralToken() external returns (address); | |
| } | |
| /** | |
| * SourceUnit: /Users/sangjun.lee/Sangjun/fathom-stablecoin-liquidation-bot/src/smart-contracts/flash-liquidator-contracts/contracts/FlashLiquidator.sol | |
| */ | |
| ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| interface IPriceFeed { | |
| function readPrice() external view returns (bytes32); // [wad] | |
| function peekPrice() external returns (bytes32, bool); // [wad] | |
| function isPriceOk() external view returns (bool); | |
| function poolId() external view returns (bytes32); | |
| function setPrice(uint256 _price) external; | |
| } | |
| /** | |
| * SourceUnit: /Users/sangjun.lee/Sangjun/fathom-stablecoin-liquidation-bot/src/smart-contracts/flash-liquidator-contracts/contracts/FlashLiquidator.sol | |
| */ | |
| ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| interface IAccessControlConfig { | |
| function hasRole(bytes32 role, address account) external view returns (bool); | |
| function OWNER_ROLE() external view returns (bytes32); | |
| function GOV_ROLE() external view returns (bytes32); | |
| function PRICE_ORACLE_ROLE() external view returns (bytes32); | |
| function ADAPTER_ROLE() external view returns (bytes32); | |
| function LIQUIDATION_ENGINE_ROLE() external view returns (bytes32); | |
| function STABILITY_FEE_COLLECTOR_ROLE() external view returns (bytes32); | |
| function SHOW_STOPPER_ROLE() external view returns (bytes32); | |
| function POSITION_MANAGER_ROLE() external view returns (bytes32); | |
| function MINTABLE_ROLE() external view returns (bytes32); | |
| function BOOK_KEEPER_ROLE() external view returns (bytes32); | |
| function COLLATERAL_MANAGER_ROLE() external view returns (bytes32); | |
| } | |
| /** | |
| * SourceUnit: /Users/sangjun.lee/Sangjun/fathom-stablecoin-liquidation-bot/src/smart-contracts/flash-liquidator-contracts/contracts/FlashLiquidator.sol | |
| */ | |
| ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| ////import "./IPriceFeed.sol"; | |
| ////import "./IGenericTokenAdapter.sol"; | |
| ////import "./ILiquidationStrategy.sol"; | |
| interface ICollateralPoolConfig { | |
| struct CollateralPool { | |
| uint256 totalDebtShare; // Total debt share of Fathom Stablecoin of this collateral pool [wad] | |
| uint256 debtAccumulatedRate; // Accumulated rates (equivalent to ibToken Price) [ray] | |
| uint256 priceWithSafetyMargin; // Price with safety margin (taken into account the Collateral Ratio) [ray] | |
| uint256 debtCeiling; // Debt ceiling of this collateral pool [rad] | |
| uint256 debtFloor; // Position debt floor of this collateral pool [rad] | |
| address priceFeed; // Price Feed | |
| uint256 liquidationRatio; // Liquidation ratio or Collateral ratio [ray] | |
| uint256 stabilityFeeRate; // Collateral-specific, per-second stability fee debtAccumulatedRate or mint interest debtAccumulatedRate [ray] | |
| uint256 lastAccumulationTime; // Time of last call to `collect` [unix epoch time] | |
| address adapter; | |
| uint256 closeFactorBps; // Percentage (BPS) of how much of debt could be liquidated in a single liquidation | |
| uint256 liquidatorIncentiveBps; // Percentage (BPS) of how much additional collateral will be given to the liquidator incentive | |
| uint256 treasuryFeesBps; // Percentage (BPS) of how much additional collateral will be transferred to the treasury | |
| address strategy; // Liquidation strategy for this collateral pool | |
| } | |
| struct CollateralPoolInfo { | |
| uint256 debtAccumulatedRate; // [ray] | |
| uint256 totalDebtShare; // [wad] | |
| uint256 debtCeiling; // [rad] | |
| uint256 priceWithSafetyMargin; // [ray] | |
| uint256 debtFloor; // [rad] | |
| } | |
| function setPriceWithSafetyMargin(bytes32 collateralPoolId, uint256 priceWithSafetyMargin) external; | |
| function collateralPools(bytes32 _collateralPoolId) external view returns (CollateralPool memory); | |
| function setTotalDebtShare(bytes32 _collateralPoolId, uint256 _totalDebtShare) external; | |
| function setDebtAccumulatedRate(bytes32 _collateralPoolId, uint256 _debtAccumulatedRate) external; | |
| function updateLastAccumulationTime(bytes32 _collateralPoolId) external; | |
| function getTotalDebtShare(bytes32 _collateralPoolId) external view returns (uint256); | |
| function getDebtAccumulatedRate(bytes32 _collateralPoolId) external view returns (uint256); | |
| function getPriceWithSafetyMargin(bytes32 _collateralPoolId) external view returns (uint256); | |
| function getDebtCeiling(bytes32 _collateralPoolId) external view returns (uint256); | |
| function getDebtFloor(bytes32 _collateralPoolId) external view returns (uint256); | |
| function getPriceFeed(bytes32 _collateralPoolId) external view returns (address); | |
| function getLiquidationRatio(bytes32 _collateralPoolId) external view returns (uint256); | |
| function getStabilityFeeRate(bytes32 _collateralPoolId) external view returns (uint256); | |
| function getLastAccumulationTime(bytes32 _collateralPoolId) external view returns (uint256); | |
| function getAdapter(bytes32 _collateralPoolId) external view returns (address); | |
| function getCloseFactorBps(bytes32 _collateralPoolId) external view returns (uint256); | |
| function getLiquidatorIncentiveBps(bytes32 _collateralPoolId) external view returns (uint256); | |
| function getTreasuryFeesBps(bytes32 _collateralPoolId) external view returns (uint256); | |
| function getStrategy(bytes32 _collateralPoolId) external view returns (address); | |
| function getCollateralPoolInfo(bytes32 _collateralPoolId) external view returns (CollateralPoolInfo memory); | |
| } | |
| /** | |
| * SourceUnit: /Users/sangjun.lee/Sangjun/fathom-stablecoin-liquidation-bot/src/smart-contracts/flash-liquidator-contracts/contracts/FlashLiquidator.sol | |
| */ | |
| ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| ////import "./IToken.sol"; | |
| interface IStablecoin is IToken { | |
| function mint(address, uint256) external; | |
| function burn(address, uint256) external; | |
| function increaseAllowance(address, uint256) external returns (bool); | |
| function decreaseAllowance(address, uint256) external returns (bool); | |
| } | |
| /** | |
| * SourceUnit: /Users/sangjun.lee/Sangjun/fathom-stablecoin-liquidation-bot/src/smart-contracts/flash-liquidator-contracts/contracts/FlashLiquidator.sol | |
| */ | |
| ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| ////import "../interfaces/ICollateralPoolConfig.sol"; | |
| ////import "../interfaces/IAccessControlConfig.sol"; | |
| interface IBookKeeper { | |
| function collateralToken(bytes32 collateralPoolId, address ownerAddress) external view returns (uint256); | |
| function addCollateral( | |
| bytes32 collateralPoolId, | |
| address ownerAddress, | |
| int256 amount // [wad] | |
| ) external; | |
| function movePosition( | |
| bytes32 collateralPoolId, | |
| address src, | |
| address dst, | |
| int256 collateralAmount, | |
| int256 debtShare | |
| ) external; | |
| function positionWhitelist(address positionAddress, address whitelistedAddress) external view returns (uint256); | |
| function adjustPosition( | |
| bytes32 collateralPoolId, | |
| address positionAddress, | |
| address collateralOwner, | |
| address stablecoinOwner, | |
| int256 collateralValue, | |
| int256 debtShare | |
| ) external; | |
| function stablecoin(address ownerAddress) external view returns (uint256); | |
| function positions( | |
| bytes32 collateralPoolId, | |
| address positionAddress | |
| ) | |
| external | |
| view | |
| returns ( | |
| uint256 lockedCollateral, // [wad] | |
| uint256 debtShare // [wad] | |
| ); | |
| function totalStablecoinIssued() external returns (uint256); | |
| function moveStablecoin( | |
| address src, | |
| address dst, | |
| uint256 value // [rad] | |
| ) external; | |
| function moveCollateral( | |
| bytes32 collateralPoolId, | |
| address src, | |
| address dst, | |
| uint256 amount // [wad] | |
| ) external; | |
| function confiscatePosition( | |
| bytes32 collateralPoolId, | |
| address positionAddress, | |
| address collateralCreditor, | |
| address stablecoinDebtor, | |
| int256 collateralAmount, // [wad] | |
| int256 debtShare // [wad] | |
| ) external; | |
| function mintUnbackedStablecoin( | |
| address from, | |
| address to, | |
| uint256 value // [rad] | |
| ) external; | |
| function accrueStabilityFee( | |
| bytes32 collateralPoolId, | |
| address stabilityFeeRecipient, | |
| int256 debtAccumulatedRate // [ray] | |
| ) external; | |
| function systemBadDebt(address ownerAddress) external view returns (uint256); // [rad] | |
| function settleSystemBadDebt(uint256 value) external; // [rad] | |
| function poolStablecoinIssued(bytes32 collateralPoolId) external view returns (uint256); // [rad] | |
| function whitelist(address toBeWhitelistedAddress) external; | |
| function blacklist(address toBeBlacklistedAddress) external; | |
| function collateralPoolConfig() external view returns (address); | |
| function accessControlConfig() external view returns (address); | |
| } | |
| /** | |
| * SourceUnit: /Users/sangjun.lee/Sangjun/fathom-stablecoin-liquidation-bot/src/smart-contracts/flash-liquidator-contracts/contracts/FlashLiquidator.sol | |
| */ | |
| ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| ////import "../interfaces/IBookKeeper.sol"; | |
| ////import "../interfaces/IStablecoin.sol"; | |
| interface IStablecoinAdapter { | |
| function bookKeeper() external returns (IBookKeeper); | |
| function stablecoin() external returns (IStablecoin); | |
| function deposit(address positionAddress, uint256 wad, bytes calldata data) external payable; | |
| function depositRAD(address positionAddress, uint256 wad, bytes calldata data) external payable; | |
| function withdraw(address positionAddress, uint256 wad, bytes calldata data) external; | |
| } | |
| /** | |
| * SourceUnit: /Users/sangjun.lee/Sangjun/fathom-stablecoin-liquidation-bot/src/smart-contracts/flash-liquidator-contracts/contracts/FlashLiquidator.sol | |
| */ | |
| /////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| // a library for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math) | |
| library SafeMath { | |
| function add(uint x, uint y) internal pure returns (uint z) { | |
| require((z = x + y) >= x, "ds-math-add-overflow"); | |
| } | |
| function sub(uint x, uint y) internal pure returns (uint z) { | |
| require((z = x - y) <= x, "ds-math-sub-underflow"); | |
| } | |
| function mul(uint x, uint y) internal pure returns (uint z) { | |
| require(y == 0 || (z = x * y) / y == x, "ds-math-mul-overflow"); | |
| } | |
| } | |
| /** | |
| * SourceUnit: /Users/sangjun.lee/Sangjun/fathom-stablecoin-liquidation-bot/src/smart-contracts/flash-liquidator-contracts/contracts/FlashLiquidator.sol | |
| */ | |
| ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| ////import "../interfaces/IStablecoinAdapter.sol"; | |
| interface IStableSwapModule { | |
| function swapTokenToStablecoin(address _usr, uint256 _tokenAmount) external; | |
| function swapStablecoinToToken(address _usr, uint256 _tokenAmount) external; | |
| function depositToken(address _token, uint256 _amount) external; | |
| function withdrawFees(address _account) external; | |
| function emergencyWithdraw(address _account) external; | |
| function feeIn() external view returns (uint256); | |
| function token() external view returns (address); | |
| } | |
| /** | |
| * SourceUnit: /Users/sangjun.lee/Sangjun/fathom-stablecoin-liquidation-bot/src/smart-contracts/flash-liquidator-contracts/contracts/FlashLiquidator.sol | |
| */ | |
| /////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| interface IUniswapV2Router01 { | |
| function factory() external pure returns (address); | |
| function WETH() external pure returns (address); | |
| function addLiquidity( | |
| address tokenA, | |
| address tokenB, | |
| uint amountADesired, | |
| uint amountBDesired, | |
| uint amountAMin, | |
| uint amountBMin, | |
| address to, | |
| uint deadline | |
| ) external returns (uint amountA, uint amountB, uint liquidity); | |
| function addLiquidityETH( | |
| address token, | |
| uint amountTokenDesired, | |
| uint amountTokenMin, | |
| uint amountETHMin, | |
| address to, | |
| uint deadline | |
| ) external payable returns (uint amountToken, uint amountETH, uint liquidity); | |
| function removeLiquidity( | |
| address tokenA, | |
| address tokenB, | |
| uint liquidity, | |
| uint amountAMin, | |
| uint amountBMin, | |
| address to, | |
| uint deadline | |
| ) external returns (uint amountA, uint amountB); | |
| function removeLiquidityETH( | |
| address token, | |
| uint liquidity, | |
| uint amountTokenMin, | |
| uint amountETHMin, | |
| address to, | |
| uint deadline | |
| ) external returns (uint amountToken, uint amountETH); | |
| function removeLiquidityWithPermit( | |
| address tokenA, | |
| address tokenB, | |
| uint liquidity, | |
| uint amountAMin, | |
| uint amountBMin, | |
| address to, | |
| uint deadline, | |
| bool approveMax, | |
| uint8 v, | |
| bytes32 r, | |
| bytes32 s | |
| ) external returns (uint amountA, uint amountB); | |
| function removeLiquidityETHWithPermit( | |
| address token, | |
| uint liquidity, | |
| uint amountTokenMin, | |
| uint amountETHMin, | |
| address to, | |
| uint deadline, | |
| bool approveMax, | |
| uint8 v, | |
| bytes32 r, | |
| bytes32 s | |
| ) external returns (uint amountToken, uint amountETH); | |
| function swapExactTokensForTokens( | |
| uint amountIn, | |
| uint amountOutMin, | |
| address[] calldata path, | |
| address to, | |
| uint deadline | |
| ) external returns (uint[] memory amounts); | |
| function swapTokensForExactTokens( | |
| uint amountOut, | |
| uint amountInMax, | |
| address[] calldata path, | |
| address to, | |
| uint deadline | |
| ) external returns (uint[] memory amounts); | |
| function swapExactETHForTokens( | |
| uint amountOutMin, | |
| address[] calldata path, | |
| address to, | |
| uint deadline | |
| ) external payable returns (uint[] memory amounts); | |
| function swapTokensForExactETH( | |
| uint amountOut, | |
| uint amountInMax, | |
| address[] calldata path, | |
| address to, | |
| uint deadline | |
| ) external returns (uint[] memory amounts); | |
| function swapExactTokensForETH( | |
| uint amountIn, | |
| uint amountOutMin, | |
| address[] calldata path, | |
| address to, | |
| uint deadline | |
| ) external returns (uint[] memory amounts); | |
| function swapETHForExactTokens( | |
| uint amountOut, | |
| address[] calldata path, | |
| address to, | |
| uint deadline | |
| ) external payable returns (uint[] memory amounts); | |
| function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); | |
| function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); | |
| function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); | |
| function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); | |
| function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); | |
| } | |
| /** | |
| * SourceUnit: /Users/sangjun.lee/Sangjun/fathom-stablecoin-liquidation-bot/src/smart-contracts/flash-liquidator-contracts/contracts/FlashLiquidator.sol | |
| */ | |
| /////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| ////import "../interfaces/IStableSwapModule.sol"; | |
| ////import "../interfaces/IToken.sol"; | |
| ////import "./SafeMath.sol"; | |
| library FathomLibrary { | |
| using SafeMath for uint; | |
| uint256 internal constant WAD = 10 ** 18; | |
| function _getStableSwapTokenToStablecoinAmountOut( | |
| address _stableSwap, | |
| uint256 _amountIn | |
| ) internal view returns (uint256) { | |
| address token = IStableSwapModule(_stableSwap).token(); | |
| uint256 feeIn = IStableSwapModule(_stableSwap).feeIn(); | |
| uint256 tokenAmount18 = _convertDecimals(_amountIn, IToken(token).decimals(), 18); | |
| uint256 fee = (tokenAmount18 * feeIn) / WAD; | |
| uint256 stablecoinAmount = tokenAmount18 - fee; | |
| return stablecoinAmount; | |
| } | |
| function _convertDecimals( | |
| uint256 _amount, | |
| uint256 _fromDecimals, | |
| uint256 _toDecimals | |
| ) internal pure returns (uint256 result) { | |
| result = _toDecimals >= _fromDecimals | |
| ? _amount * (10 ** (_toDecimals - _fromDecimals)) | |
| : _amount / (10 ** (_fromDecimals - _toDecimals)); | |
| } | |
| } | |
| /** | |
| * SourceUnit: /Users/sangjun.lee/Sangjun/fathom-stablecoin-liquidation-bot/src/smart-contracts/flash-liquidator-contracts/contracts/FlashLiquidator.sol | |
| */ | |
| ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT | |
| pragma solidity 0.8.17; | |
| /** | |
| * @title Bytes Helper | |
| * @dev Different operations with bytes | |
| */ | |
| library BytesHelper { | |
| /** | |
| * @notice Get pointer to bytes array | |
| * @param bts Bytes array | |
| */ | |
| function _getPointer(bytes memory bts) internal pure returns (uint) { | |
| uint ptr; | |
| assembly { | |
| ptr := bts | |
| } | |
| return ptr; | |
| } | |
| // MARK: - Bytes operations | |
| /** | |
| * @notice Bytes -> bytes array | |
| * @param data Bytes array | |
| */ | |
| function _bytesToBytesArray(bytes memory data) internal pure returns (bytes[] memory result) { | |
| return abi.decode(data, (bytes[])); | |
| } | |
| /** | |
| * @notice Cut first 32 bytes | |
| * @param data Bytes array | |
| */ | |
| function _bytesToBytes32(bytes memory data) internal pure returns (bytes32 result) { | |
| assembly { | |
| result := mload(add(data, 0x20)) | |
| } | |
| } | |
| /** | |
| * @notice Bytes -> bytes32 array | |
| * @param data Bytes array | |
| */ | |
| function _bytesToBytes32Array(bytes memory data) internal pure returns (bytes32[] memory result) { | |
| return abi.decode(data, (bytes32[])); | |
| } | |
| /** | |
| * @notice bytes value to address | |
| * @param value Value to be converted to address | |
| */ | |
| function _bytesToAddress(bytes memory value) internal pure returns (address) { | |
| return address(uint160(uint(_bytesToBytes32(value)))); | |
| } | |
| /** | |
| * @notice Bytes -> address array | |
| * @param data Bytes array | |
| */ | |
| function _bytesToAddressArray(bytes memory data) internal pure returns (address[] memory result) { | |
| return abi.decode(data, (address[])); | |
| } | |
| /** | |
| * @notice bytes value to address | |
| * @param value Value to be converted to address | |
| */ | |
| function _bytesToAddressShiftRight(bytes memory value) internal pure returns (address) { | |
| return address(uint160(uint(_bytesToBytes32(value)) >> 96)); | |
| } | |
| /** | |
| * @notice Cut first 32 bytes and converts it to uint | |
| * @param data Bytes array | |
| */ | |
| function _bytesToUInt(bytes memory data) internal pure returns (uint result) { | |
| assembly { | |
| result := mload(add(data, 0x20)) | |
| } | |
| } | |
| /** | |
| * @notice Bytes -> uint array | |
| * @param data Bytes array | |
| */ | |
| function _bytesToUIntArray(bytes memory data) internal pure returns (uint[] memory result) { | |
| return abi.decode(data, (uint[])); | |
| } | |
| /** | |
| * @notice Converts bytes to uint8 | |
| * @param data Bytes array | |
| * @param start Start index | |
| */ | |
| function _bytesToUInt8(bytes memory data, uint start) internal pure returns (uint8 result) { | |
| require(data.length >= (start + 1), "_bytesToUInt8: Wrong start"); | |
| assembly { | |
| result := mload(add(add(data, 0x1), start)) | |
| } | |
| } | |
| /** | |
| * @notice Converts bytes to uint8 unsafely | |
| * @param data Bytes array | |
| */ | |
| function _bytesToUInt8UNSAFE(bytes memory data) internal pure returns (uint8 result) { | |
| assembly { | |
| result := mload(add(data, 0x1)) | |
| } | |
| } | |
| /** | |
| * @notice Cut first 32 bytes and converts it to int | |
| * @param data Bytes array | |
| */ | |
| function _bytesToInt(bytes memory data) internal pure returns (int result) { | |
| assembly { | |
| result := mload(add(data, 0x20)) | |
| } | |
| } | |
| /** | |
| * @notice Cut first 32 bytes and converts it to int array | |
| * @param data Bytes array | |
| */ | |
| function _bytesToIntArray(bytes memory data) internal pure returns (int[] memory result) { | |
| return abi.decode(data, (int[])); | |
| } | |
| /** | |
| * @notice Converts bytes to bool | |
| * @param data Bytes array | |
| */ | |
| function _bytesToBool(bytes memory data) internal pure returns (bool result) { | |
| return abi.decode(data, (bool)); | |
| } | |
| /** | |
| * @notice Converts bytes to bool array | |
| * @param data Bytes array | |
| */ | |
| function _bytesToBoolArray(bytes memory data) internal pure returns (bool[] memory result) { | |
| return abi.decode(data, (bool[])); | |
| } | |
| /** | |
| * @notice Converts bytes to string | |
| * @param data Bytes array | |
| */ | |
| function _bytesToString(bytes memory data) internal pure returns (string memory result) { | |
| return string(data); | |
| } | |
| /** | |
| * @notice Converts bytes to string array | |
| * @param data Bytes array | |
| */ | |
| function _bytesToStringArray(bytes memory data) internal pure returns (string[] memory result) { | |
| return abi.decode(data, (string[])); | |
| } | |
| /** | |
| * @notice Converts 32 bytes to uint | |
| * @param data Bytes array | |
| */ | |
| function _asciiBytesToUInt(bytes memory data) internal pure returns (uint result) { | |
| require(data.length <= 32, "_asciiBytesToUInt: Overflow"); | |
| return _asciiBytesToUIntImpl(data); | |
| } | |
| /** | |
| * @notice Converts 32 bytes to int | |
| * @param data Bytes array | |
| */ | |
| function _asciiBytesToInt(bytes memory data) internal pure returns (int result) { | |
| require(data.length > 0 && data.length <= 32, "_asciiBytesToInt: Overflow"); | |
| bool isNegative = false; | |
| if (data[0] == "-") { | |
| isNegative = true; | |
| data[0] = "0"; | |
| } | |
| uint uintResult = _asciiBytesToUIntImpl(data); | |
| return isNegative ? int(uintResult) * -1 : int(uintResult); | |
| } | |
| function _asciiBytesToUIntImpl(bytes memory data) internal pure returns (uint result) { | |
| for (uint i = 0; i < data.length; i++) { | |
| uint char = uint(uint8(data[i])); | |
| require(char >= 48 && char <= 57, "_asciiBytesToUInt: Wrong char"); | |
| result = result * 10 + (char - 48); | |
| } | |
| return result; | |
| } | |
| /** | |
| * @notice Modified version from https://gitter.im/ethereum/solidity?at=56b085b5eaf741c118d65198 | |
| * @notice In the original there is no necessary conversion in ASCII. Also added leading 0x | |
| */ | |
| function _bytesToASCIIBytes(bytes memory input) internal pure returns (bytes memory) { | |
| uint inputLen = input.length; | |
| bytes memory res = new bytes(inputLen * 2); | |
| for (uint i = 0; i < inputLen; i++) { | |
| uint8 symbol = uint8(input[i]); | |
| (bytes1 high, bytes1 low) = _uint8ConvertToAscii(symbol); | |
| res[2 * i] = high; | |
| res[2 * i + 1] = low; | |
| } | |
| return abi.encodePacked("0x", res); | |
| } | |
| // MARK: - Bytes32 operation | |
| /** | |
| * @notice Convert uint type to the bytes32 type | |
| * @param value Uint to convert | |
| */ | |
| function _uintToBytes32(uint value) internal pure returns (bytes32 bts) { | |
| return bytes32(value); | |
| } | |
| /** | |
| * @notice Convert address type to the bytes type shifting left | |
| * @param addr Address to convert | |
| */ | |
| function _addressToBytes32ShiftLeft(address addr) internal pure returns (bytes32 bts) { | |
| return bytes32(uint(uint160(addr)) << 96); | |
| } | |
| /** | |
| * @notice Convert address type to the bytes32 type | |
| * @param addr Address to convert | |
| */ | |
| function _addressToBytes32(address addr) internal pure returns (bytes32 bts) { | |
| return bytes32(uint(uint160(addr))); | |
| } | |
| /** | |
| * @notice Change bytes32 to upper case | |
| * @param data Bytes | |
| */ | |
| function _bytes32toUpper(bytes32 data) internal pure returns (bytes32 bts) { | |
| bytes32 pointer; | |
| assembly { | |
| pointer := mload(0x40) | |
| } | |
| bytes memory baseBytes = new bytes(32); | |
| for (uint i = 0; i < 32; i++) { | |
| bytes1 b1 = data[i]; | |
| if (b1 >= 0x61 && b1 <= 0x7A) { | |
| b1 = bytes1(uint8(b1) - 32); | |
| } | |
| baseBytes[i] = b1; | |
| } | |
| assembly { | |
| bts := mload(add(pointer, 0x20)) | |
| } | |
| } | |
| /** | |
| * @notice Bytes32 value to address | |
| * @param value Value to be converted to address | |
| */ | |
| function _bytes32ToAddressShiftRight(bytes32 value) internal pure returns (address) { | |
| return address(uint160(uint(value) >> 96)); | |
| } | |
| /** | |
| * @notice Bytes32 value to address | |
| * @param value Value to be converted to address | |
| */ | |
| function _bytes32ToAddress(bytes32 value) internal pure returns (address) { | |
| return address(uint160(uint(value))); | |
| } | |
| /** | |
| * @notice Extract 32 bytes from the bytes array by provided offset | |
| * @param input Input bytes | |
| * @param offset Offset from which will be extracted 32 bytes | |
| */ | |
| function _extractBytes32(bytes memory input, uint offset) internal pure returns (bytes32 result) { | |
| require(offset + 32 <= input.length, "_extractBytes32: Wrong offset"); | |
| assembly { | |
| result := mload(add(add(0x20, input), offset)) | |
| } | |
| } | |
| /** | |
| * @notice Calculates length without empty bytes | |
| * @param x Value | |
| */ | |
| function _countPureLengthForBytes32(bytes32 x) internal pure returns (uint) { | |
| uint charCount = 0; | |
| for (uint j = 0; j < 32; j++) { | |
| bytes1 char = bytes1(bytes32(uint(x) << (j * 8))); | |
| if (char != 0) { | |
| charCount++; | |
| } | |
| } | |
| return charCount; | |
| } | |
| /** | |
| * @notice removes empty bytes from the 32 bytes value | |
| * @param x Value to be converted | |
| * @return trimmed value bytes | |
| */ | |
| function _trimBytes32(bytes32 x) internal pure returns (bytes memory) { | |
| bytes memory bytesArray = new bytes(32); | |
| uint charCount = 0; | |
| for (uint j = 0; j < 32; j++) { | |
| bytes1 char = bytes1(bytes32(uint(x) << (j * 8))); | |
| if (char != 0) { | |
| bytesArray[charCount] = char; | |
| charCount++; | |
| } | |
| } | |
| bytes memory bytesTrimmed = new bytes(charCount); | |
| for (uint j = 0; j < charCount; j++) { | |
| bytesTrimmed[j] = bytesArray[j]; | |
| } | |
| return bytesTrimmed; | |
| } | |
| // MARK: - To bytes conversions | |
| /** | |
| * @notice Convert address type to the bytes type | |
| * @param addr Address to convert | |
| */ | |
| function _addressToBytesPacked(address addr) internal pure returns (bytes memory bts) { | |
| assembly { | |
| let m := mload(0x40) | |
| mstore(add(m, 20), xor(0x140000000000000000000000000000000000000000, addr)) | |
| mstore(0x40, add(m, 52)) | |
| bts := m | |
| } | |
| } | |
| /** | |
| * @notice Convert bytes32 type to the bytes type | |
| * @param value Bytes32 to convert | |
| */ | |
| function _bytes32ToBytes(bytes32 value) internal pure returns (bytes memory bts) { | |
| return abi.encode(value); | |
| } | |
| /** | |
| * @notice Convert bytes32 array type to the bytes type | |
| * @param value Bytes32 to convert | |
| */ | |
| function _bytes32ArrayToBytes(bytes32[] memory value) internal pure returns (bytes memory bts) { | |
| return abi.encode(value); | |
| } | |
| /** | |
| * @notice Convert address type to the bytes type | |
| * @param addr Address to convert | |
| */ | |
| function _addressToBytes(address addr) internal pure returns (bytes memory bts) { | |
| return abi.encode(addr); | |
| } | |
| /** | |
| * @notice Convert address array type to the bytes type | |
| * @param addr Address to convert | |
| */ | |
| function _addressArrayToBytes(address[] memory addr) internal pure returns (bytes memory bts) { | |
| return abi.encode(addr); | |
| } | |
| function _addressToBytesShiftLeft(address addr) internal pure returns (bytes memory bts) { | |
| return abi.encode(_addressToBytes32ShiftLeft(addr)); | |
| } | |
| /** | |
| * @notice Converts uint to bytes | |
| * @param value Uint value | |
| */ | |
| function _uintToBytes(uint value) internal pure returns (bytes memory) { | |
| return abi.encode(value); | |
| } | |
| /** | |
| * @notice Converts uint8 to bytes | |
| * @param value Uint8 value | |
| */ | |
| function _uint8ToBytes(uint8 value) internal pure returns (bytes memory) { | |
| return abi.encode(value); | |
| } | |
| /** | |
| * @notice Converts uint array to bytes | |
| * @param value Uint array value | |
| */ | |
| function _uintArrayToBytes(uint[] memory value) internal pure returns (bytes memory) { | |
| return abi.encode(value); | |
| } | |
| /** | |
| * @notice Converts uint array to bytes | |
| * @param value Uint8 array value | |
| */ | |
| function _uint8ArrayToBytes(uint8[] memory value) internal pure returns (bytes memory) { | |
| return abi.encode(value); | |
| } | |
| /** | |
| * @notice Converts int to bytes | |
| * @param value Int value | |
| */ | |
| function _intToBytes(int value) internal pure returns (bytes memory) { | |
| return abi.encode(value); | |
| } | |
| /** | |
| * @notice Converts int array to bytes | |
| * @param value Int array value | |
| */ | |
| function _intArrayToBytes(int[] memory value) internal pure returns (bytes memory) { | |
| return abi.encode(value); | |
| } | |
| /** | |
| * @notice Converts boolean to bytes | |
| * @param value Boolean value | |
| */ | |
| function _boolToBytes(bool value) internal pure returns (bytes memory) { | |
| return abi.encode(value); | |
| } | |
| /** | |
| * @notice Converts boolean array to bytes | |
| * @param value Boolean array value | |
| */ | |
| function _boolArrayToBytes(bool[] memory value) internal pure returns (bytes memory) { | |
| return abi.encode(value); | |
| } | |
| /** | |
| * @notice Converts string to bytes | |
| * @param value string value | |
| */ | |
| function _stringToBytes(string memory value) internal pure returns (bytes memory) { | |
| return bytes(value); | |
| } | |
| /** | |
| * @notice Converts string array to bytes | |
| * @param value string array value | |
| */ | |
| function _stringArrayToBytes(string[] memory value) internal pure returns (bytes memory) { | |
| return abi.encode(value); | |
| } | |
| /** | |
| * @notice Converts bytes array to bytes | |
| * @param value bytes value | |
| */ | |
| function _bytesArrayToBytes(bytes[] memory value) internal pure returns (bytes memory) { | |
| return abi.encode(value); | |
| } | |
| /** | |
| * @notice Original Copyright (c) 2015-2016 Oraclize SRL | |
| * @notice Original Copyright (c) 2016 Oraclize LTD | |
| * @notice Modified Copyright (c) 2020 SECURRENCY INC. | |
| * @dev Converts an unsigned integer to its bytes representation | |
| * @notice https://github.com/provable-things/ethereum-api/blob/master/oraclizeAPI_0.5.sol#L1045 | |
| * @param num The number to be converted | |
| * @return Bytes representation of the number | |
| */ | |
| function _uintToASCIIBytes(uint num) internal pure returns (bytes memory) { | |
| uint _i = num; | |
| if (_i == 0) { | |
| return "0"; | |
| } | |
| uint j = _i; | |
| uint len; | |
| while (j != 0) { | |
| len++; | |
| j /= 10; | |
| } | |
| bytes memory bstr = new bytes(len); | |
| while (_i != 0) { | |
| bstr[len - 1] = bytes1(uint8(48 + (_i % 10))); | |
| _i /= 10; | |
| len--; | |
| } | |
| return bstr; | |
| } | |
| /** | |
| * @notice Modified version from https://gitter.im/ethereum/solidity?at=56b085b5eaf741c118d65198 | |
| * @notice In the original there is no necessary conversion in ASCII. Also added leading 0x | |
| */ | |
| function _addressToASCIIBytes(address addr) internal pure returns (bytes memory) { | |
| bytes memory res = new bytes(40); | |
| for (uint i = 0; i < 20; i++) { | |
| uint8 symbol = uint8(uint(uint160(addr)) >> (8 * (19 - i))); | |
| (bytes1 high, bytes1 low) = _uint8ConvertToAscii(symbol); | |
| res[2 * i] = high; | |
| res[2 * i + 1] = low; | |
| } | |
| return abi.encodePacked("0x", res); | |
| } | |
| /** | |
| * @notice Converts bytes32 array to ASCII Bytes | |
| */ | |
| function _bytes32ArrayToASCIIBytes(bytes32[] memory input) internal pure returns (bytes memory) { | |
| bytes memory result; | |
| uint length = input.length; | |
| if (length > 0) { | |
| result = abi.encodePacked(_bytes32ToASCIIBytes(input[0])); | |
| for (uint i = 1; i < length; i++) { | |
| result = abi.encodePacked(result, ", ", _bytes32ToASCIIBytes(input[i])); | |
| } | |
| } | |
| return result; | |
| } | |
| /** | |
| * @notice Modified version from https://gitter.im/ethereum/solidity?at=56b085b5eaf741c118d65198 | |
| * @notice In the original there is no necessary conversion in ASCII. Also added leading 0x | |
| */ | |
| function _bytes32ToASCIIBytes(bytes32 input) internal pure returns (bytes memory) { | |
| bytes memory res = new bytes(64); | |
| for (uint i = 0; i < 32; i++) { | |
| uint8 symbol = uint8(uint(input) >> (8 * (31 - i))); | |
| (bytes1 high, bytes1 low) = _uint8ConvertToAscii(symbol); | |
| res[2 * i] = high; | |
| res[2 * i + 1] = low; | |
| } | |
| return abi.encodePacked("0x", res); | |
| } | |
| // MARK: - Slices | |
| /** | |
| * @notice Returns slice from bytes with fixed length | |
| * @param data Bytes array | |
| * @param start Start index | |
| * @param length Slice length | |
| */ | |
| function _getSlice(bytes memory data, uint start, uint length) internal pure returns (bytes memory result) { | |
| require(data.length >= (start + length), "_getSlice: Wrong start or length"); | |
| assembly { | |
| switch iszero(length) | |
| case 0 { | |
| result := mload(0x40) | |
| let lengthmod := and(length, 31) | |
| let mc := add(add(result, lengthmod), mul(0x20, iszero(lengthmod))) | |
| let end := add(mc, length) | |
| for { | |
| let cc := add(add(add(data, lengthmod), mul(0x20, iszero(lengthmod))), start) | |
| } lt(mc, end) { | |
| mc := add(mc, 0x20) | |
| cc := add(cc, 0x20) | |
| } { | |
| mstore(mc, mload(cc)) | |
| } | |
| mstore(result, length) | |
| mstore(0x40, and(add(mc, 31), not(31))) | |
| } | |
| default { | |
| result := mload(0x40) | |
| mstore(0x40, add(result, 0x20)) | |
| } | |
| } | |
| } | |
| /** | |
| * @notice Returns slice of bytes32 array from range | |
| * @param data Bytes32 array | |
| * @param start Start index | |
| * @param end End index | |
| */ | |
| function _getSliceBytes32(bytes32[] memory data, uint start, uint end) internal pure returns (bytes32[] memory) { | |
| bytes32[] memory result = new bytes32[](end - start); | |
| for (uint i = 0; i < end - start; i++) { | |
| result[i] = data[i + start]; | |
| } | |
| return result; | |
| } | |
| /** | |
| * @notice Returns slice from range | |
| * @param data Bytes array | |
| * @param start Start index | |
| * @param end End index | |
| */ | |
| function _getSlice(bytes[] memory data, uint start, uint end) internal pure returns (bytes[] memory) { | |
| bytes[] memory result = new bytes[](end - start); | |
| for (uint i = 0; i < end - start; i++) { | |
| result[i] = data[i + start]; | |
| } | |
| return result; | |
| } | |
| // MARK: - Strings | |
| /** | |
| * @notice takes an array of strings and a separator | |
| * @notice and merge all strings into a single string | |
| * @param strArray, array containing all the strings to be concatenated | |
| * @param separator, separator to place between each concatenation | |
| * @return res string merged with separators | |
| */ | |
| function _append(string[] memory strArray, string memory separator) internal pure returns (string memory res) { | |
| uint length = strArray.length; | |
| if (length > 0) { | |
| for (uint i = 0; i < length; i++) { | |
| if (i == 0) { | |
| res = string(abi.encodePacked(res, strArray[i])); | |
| } else { | |
| res = string(abi.encodePacked(res, separator, strArray[i])); | |
| } | |
| } | |
| } else { | |
| res = ""; | |
| } | |
| } | |
| /** | |
| * @notice takes an array of bytes and a separator | |
| * @notice and merge all bytes into a single string | |
| * @param bytesArray, array containing all the bytes to be concatenated | |
| * @param separator, separator to place between each concatenation | |
| * @return res string merged with separators | |
| */ | |
| function _append(bytes[] memory bytesArray, string memory separator) internal pure returns (string memory res) { | |
| uint length = bytesArray.length; | |
| if (length > 0) { | |
| for (uint i = 0; i < length; i++) { | |
| if (i == 0) { | |
| res = string(abi.encodePacked(res, string(bytesArray[i]))); | |
| } else { | |
| res = string(abi.encodePacked(res, separator, string(bytesArray[i]))); | |
| } | |
| } | |
| } else { | |
| res = ""; | |
| } | |
| } | |
| // MARK: - Bytes[] values conversions | |
| /** | |
| * @notice Converts boolean to bytes array | |
| * @param value Boolean value | |
| */ | |
| function _boolToBytesArray(bool value) internal pure returns (bytes[] memory) { | |
| bytes[] memory bvalue = new bytes[](1); | |
| bvalue[0] = abi.encodePacked(value); | |
| return bvalue; | |
| } | |
| /** | |
| * @notice Converts bytes[] value to uint[] | |
| * @param valuesArray Value to convert | |
| * @return uint[] value | |
| */ | |
| function _bytesArrayToUIntArray(bytes[] memory valuesArray) internal pure returns (uint[] memory) { | |
| uint length = valuesArray.length; | |
| uint[] memory result = new uint[](length); | |
| for (uint i = 0; i < length; i++) { | |
| result[i] = _bytesToUInt(valuesArray[i]); | |
| } | |
| return result; | |
| } | |
| /** | |
| * @notice Converts bytes[] value to int[] | |
| * @param valuesArray Value to convert | |
| * @return int[] value | |
| */ | |
| function _bytesArrayToIntArray(bytes[] memory valuesArray) internal pure returns (int[] memory) { | |
| uint length = valuesArray.length; | |
| int[] memory result = new int[](length); | |
| for (uint i = 0; i < length; i++) { | |
| result[i] = _bytesToInt(valuesArray[i]); | |
| } | |
| return result; | |
| } | |
| /** | |
| * @notice Converts bytes[] value to bool[] | |
| * @param valuesArray Value to convert | |
| * @return bool[] value | |
| */ | |
| function _bytesArrayToBoolArray(bytes[] memory valuesArray) internal pure returns (bool[] memory) { | |
| uint length = valuesArray.length; | |
| bool[] memory result = new bool[](length); | |
| for (uint i = 0; i < length; i++) { | |
| require(valuesArray[i].length == 1, "_bytesArrayToBoolArray: Wrong values length"); | |
| result[i] = (valuesArray[i][0] == bytes1(0x01)) ? true : false; | |
| } | |
| return result; | |
| } | |
| /** | |
| * @notice Converts bytes[] value to bytes32[] | |
| * @param valuesArray Value to convert | |
| * @return bytes32[] value | |
| */ | |
| function _bytesArrayToBytes32Array(bytes[] memory valuesArray) internal pure returns (bytes32[] memory) { | |
| uint length = valuesArray.length; | |
| bytes32[] memory result = new bytes32[](length); | |
| for (uint i = 0; i < length; i++) { | |
| result[i] = _bytesToBytes32(valuesArray[i]); | |
| } | |
| return result; | |
| } | |
| /** | |
| * @notice Converts bytes[] value to string[] | |
| * @param valuesArray Value to convert | |
| * @return string[] value | |
| */ | |
| function _bytesArrayToStringArray(bytes[] memory valuesArray) internal pure returns (string[] memory) { | |
| uint length = valuesArray.length; | |
| string[] memory result = new string[](length); | |
| for (uint i = 0; i < length; i++) { | |
| result[i] = string(valuesArray[i]); | |
| } | |
| return result; | |
| } | |
| // MARK: - Comparizon | |
| /** | |
| * @return bool - true if values are equal | |
| * @param expectedValue Value expected | |
| * @param gotValue Value got | |
| */ | |
| function _isEqual(bytes[] memory expectedValue, bytes[] memory gotValue) internal pure returns (bool) { | |
| return keccak256(abi.encode(expectedValue)) == keccak256(abi.encode(gotValue)); | |
| } | |
| // MARK: - Memory manipulations | |
| /** | |
| * @dev Adds val to the list | |
| */ | |
| function _pushBytes(bytes[] memory arr, bytes memory val) internal pure returns (bytes[] memory) { | |
| uint length = arr.length; | |
| assembly { | |
| mstore(arr, add(mload(arr), 1)) | |
| mstore(0x40, add(mload(0x40), 0x32)) | |
| } | |
| arr[length] = val; | |
| return arr; | |
| } | |
| /** | |
| * @dev Adds val to the list | |
| */ | |
| function _pushBytes32(bytes32[] memory arr, bytes32 val) internal pure returns (bytes32[] memory) { | |
| uint length = arr.length; | |
| assembly { | |
| mstore(arr, add(mload(arr), 1)) | |
| mstore(0x40, add(mload(0x40), 0x32)) | |
| } | |
| arr[length] = val; | |
| return arr; | |
| } | |
| /** | |
| * @dev Adds val to the list | |
| */ | |
| function _pushAddress(address[] memory arr, address val) internal pure returns (address[] memory) { | |
| uint length = arr.length; | |
| assembly { | |
| mstore(arr, add(mload(arr), 1)) | |
| mstore(0x40, add(mload(0x40), 0x32)) | |
| } | |
| arr[length] = val; | |
| return arr; | |
| } | |
| /** | |
| * @dev Removes val from the list | |
| */ | |
| function _popBytes(bytes[] memory arr) internal pure returns (bytes[] memory) { | |
| require(arr.length > 0, "_popByte2: empty"); | |
| assembly { | |
| mstore(arr, sub(mload(arr), 1)) | |
| } | |
| return arr; | |
| } | |
| /** | |
| * @dev Removes val from the list | |
| */ | |
| function _popBytes32(bytes32[] memory arr) internal pure returns (bytes32[] memory) { | |
| require(arr.length > 0, "_popBytes32: empty"); | |
| assembly { | |
| mstore(arr, sub(mload(arr), 1)) | |
| } | |
| return arr; | |
| } | |
| /** | |
| * @dev Removes val from the list | |
| */ | |
| function _popAddress(address[] memory arr) internal pure returns (address[] memory) { | |
| require(arr.length > 0, "_popAddress: empty"); | |
| assembly { | |
| mstore(arr, sub(mload(arr), 1)) | |
| } | |
| return arr; | |
| } | |
| // MARK: - Letters | |
| /** | |
| * @notice Converts symbol to acsii | |
| */ | |
| function _uint8ConvertToAscii(uint8 symbol) private pure returns (bytes1 high, bytes1 low) { | |
| uint8 _high = symbol / 16; | |
| uint8 _low = symbol - 16 * _high; | |
| high = _high < 10 ? bytes1(_high + 0x30) : bytes1(_high + 0x57); | |
| low = _low < 10 ? bytes1(_low + 0x30) : bytes1(_low + 0x57); | |
| } | |
| } | |
| /** | |
| * SourceUnit: /Users/sangjun.lee/Sangjun/fathom-stablecoin-liquidation-bot/src/smart-contracts/flash-liquidator-contracts/contracts/FlashLiquidator.sol | |
| */ | |
| ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT | |
| pragma solidity >=0.6.6; | |
| interface ERC20Interface { | |
| function balanceOf(address user) external view returns (uint256); | |
| } | |
| library SafeToken { | |
| function myBalance(address token) internal view returns (uint256) { | |
| return ERC20Interface(token).balanceOf(address(this)); | |
| } | |
| function balanceOf(address token, address user) internal view returns (uint256) { | |
| return ERC20Interface(token).balanceOf(user); | |
| } | |
| function safeApprove(address token, address to, uint256 value) internal { | |
| (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x095ea7b3, to, value)); // bytes4(keccak256(bytes('approve(address,uint256)'))); | |
| require(success && (data.length == 0 || abi.decode(data, (bool))), "!safeApprove"); | |
| } | |
| function safeTransfer(address token, address to, uint256 value) internal { | |
| (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0xa9059cbb, to, value)); // bytes4(keccak256(bytes('transfer(address,uint256)'))); | |
| require(success && (data.length == 0 || abi.decode(data, (bool))), "!safeTransfer"); | |
| } | |
| function safeTransferFrom(address token, address from, address to, uint256 value) internal { | |
| (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x23b872dd, from, to, value)); // bytes4(keccak256(bytes('transferFrom(address,address,uint256)'))); | |
| require(success && (data.length == 0 || abi.decode(data, (bool))), "!safeTransferFrom"); | |
| } | |
| function safeTransferETH(address to, uint256 value) internal { | |
| (bool success, ) = to.call{ value: value }(new bytes(0)); | |
| require(success, "!safeTransferETH"); | |
| } | |
| } | |
| /** | |
| * SourceUnit: /Users/sangjun.lee/Sangjun/fathom-stablecoin-liquidation-bot/src/smart-contracts/flash-liquidator-contracts/contracts/FlashLiquidator.sol | |
| */ | |
| ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT | |
| pragma solidity 0.8.17; | |
| interface IERC165 { | |
| /** | |
| * @dev Returns true if this contract implements the interface defined by | |
| * `interfaceId`. See the corresponding | |
| * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] | |
| * to learn more about how these ids are created. | |
| * | |
| * This function call must use less than 30 000 gas. | |
| */ | |
| function supportsInterface(bytes4 interfaceId) external view returns (bool); | |
| } | |
| /** | |
| * SourceUnit: /Users/sangjun.lee/Sangjun/fathom-stablecoin-liquidation-bot/src/smart-contracts/flash-liquidator-contracts/contracts/FlashLiquidator.sol | |
| */ | |
| ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| interface IFlashLendingCallee { | |
| function flashLendingCall( | |
| address caller, | |
| uint256 debtValueToRepay, // [rad] | |
| uint256 collateralAmountToLiquidate, // [wad] | |
| bytes calldata | |
| ) external; | |
| } | |
| /** | |
| * SourceUnit: /Users/sangjun.lee/Sangjun/fathom-stablecoin-liquidation-bot/src/smart-contracts/flash-liquidator-contracts/contracts/FlashLiquidator.sol | |
| */ | |
| /////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: AGPL-3.0-or-later | |
| pragma solidity >=0.5.0; | |
| interface IUniswapV2Factory { | |
| event PairCreated(address indexed token0, address indexed token1, address pair, uint); | |
| function feeTo() external view returns (address); | |
| function feeToSetter() external view returns (address); | |
| function getPair(address tokenA, address tokenB) external view returns (address pair); | |
| function allPairs(uint) external view returns (address pair); | |
| function allPairsLength() external view returns (uint); | |
| function createPair(address tokenA, address tokenB) external returns (address pair); | |
| function setFeeTo(address) external; | |
| function setFeeToSetter(address) external; | |
| } | |
| /** | |
| * SourceUnit: /Users/sangjun.lee/Sangjun/fathom-stablecoin-liquidation-bot/src/smart-contracts/flash-liquidator-contracts/contracts/FlashLiquidator.sol | |
| */ | |
| /////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| ////import "./IUniswapV2Router01.sol"; | |
| interface IUniswapV2Router02 is IUniswapV2Router01 { | |
| function factory() external pure override returns (address); | |
| function removeLiquidityETHSupportingFeeOnTransferTokens( | |
| address token, | |
| uint liquidity, | |
| uint amountTokenMin, | |
| uint amountETHMin, | |
| address to, | |
| uint deadline | |
| ) external returns (uint amountETH); | |
| function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( | |
| address token, | |
| uint liquidity, | |
| uint amountTokenMin, | |
| uint amountETHMin, | |
| address to, | |
| uint deadline, | |
| bool approveMax, | |
| uint8 v, | |
| bytes32 r, | |
| bytes32 s | |
| ) external returns (uint amountETH); | |
| function swapExactTokensForTokensSupportingFeeOnTransferTokens( | |
| uint amountIn, | |
| uint amountOutMin, | |
| address[] calldata path, | |
| address to, | |
| uint deadline | |
| ) external; | |
| function swapExactETHForTokensSupportingFeeOnTransferTokens( | |
| uint amountOutMin, | |
| address[] calldata path, | |
| address to, | |
| uint deadline | |
| ) external payable; | |
| function swapExactTokensForETHSupportingFeeOnTransferTokens( | |
| uint amountIn, | |
| uint amountOutMin, | |
| address[] calldata path, | |
| address to, | |
| uint deadline | |
| ) external; | |
| function getAmountsOut( | |
| uint amountIn, | |
| address[] calldata path | |
| ) external view override returns (uint[] memory amounts); | |
| } | |
| /** | |
| * SourceUnit: /Users/sangjun.lee/Sangjun/fathom-stablecoin-liquidation-bot/src/smart-contracts/flash-liquidator-contracts/contracts/FlashLiquidator.sol | |
| */ | |
| /////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: AGPL-3.0-or-later | |
| pragma solidity >=0.5.0; | |
| interface IERC20 { | |
| function approve(address spender, uint value) external returns (bool); | |
| function balanceOf(address owner) external view returns (uint); | |
| function transfer(address to, uint value) external returns (bool); | |
| function allowance(address owner, address spender) external view returns (uint); | |
| /** | |
| * @dev Moves `amount` tokens from `from` to `to` using the | |
| * allowance mechanism. `amount` is then deducted from the caller's | |
| * allowance. | |
| * | |
| * Returns a boolean value indicating whether the operation succeeded. | |
| * | |
| * Emits a {Transfer} event. | |
| */ | |
| function transferFrom(address from, address to, uint256 amount) external returns (bool); | |
| } | |
| /** | |
| * SourceUnit: /Users/sangjun.lee/Sangjun/fathom-stablecoin-liquidation-bot/src/smart-contracts/flash-liquidator-contracts/contracts/FlashLiquidator.sol | |
| */ | |
| /////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; | |
| import "@openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol"; | |
| import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; | |
| import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol"; | |
| ////import "./interfaces/IERC20.sol"; | |
| ////import "./interfaces/IUniswapV2Router02.sol"; | |
| ////import "./interfaces/IUniswapV2Factory.sol"; | |
| ////import "./interfaces/IFlashLendingCallee.sol"; | |
| ////import "./interfaces/IGenericTokenAdapter.sol"; | |
| ////import "./interfaces/IBookKeeper.sol"; | |
| ////import "./interfaces/IStablecoinAdapter.sol"; | |
| ////import "./interfaces/IERC165.sol"; | |
| ////import "./utils/SafeToken.sol"; | |
| ////import "./libraries/BytesHelper.sol"; | |
| ////import "./libraries/FathomLibrary.sol"; | |
| contract FlashLiquidator is | |
| OwnableUpgradeable, | |
| PausableUpgradeable, | |
| ReentrancyGuardUpgradeable, | |
| IFlashLendingCallee, | |
| IERC165 | |
| { | |
| using SafeToken for address; | |
| using SafeMathUpgradeable for uint256; | |
| using BytesHelper for *; | |
| struct LocalVars { | |
| address liquidatorAddress; | |
| IGenericTokenAdapter tokenAdapter; | |
| IUniswapV2Router02 router; | |
| } | |
| event LogFlashLiquidationSuccess( | |
| address indexed liquidatorAddress, | |
| uint256 indexed debtValueToRepay, | |
| uint256 indexed collateralAmountToLiquidate, | |
| uint256 liquidationProfit, | |
| uint256 dexAmountOut, | |
| uint256 stableSwapAmountOut, | |
| uint256 fundsUsedFromLiquidator, | |
| address[] path | |
| ); | |
| // --- Math --- | |
| uint256 constant WAD = 10 ** 18; | |
| uint256 constant RAY = 10 ** 27; | |
| IBookKeeper public bookKeeper; | |
| IStablecoinAdapter public stablecoinAdapter; | |
| address public fixedSpreadLiquidationStrategy; | |
| address public fathomStablecoin; | |
| address public profitRecipient; | |
| address public usdToken; | |
| address public stableSwap; | |
| function initialize( | |
| address _bookKeeper, | |
| address _fathomStablecoin, | |
| address _stablecoinAdapter, | |
| address _fixedSpreadLiquidationStrategy, | |
| address _profitRecipient, | |
| address _usdToken, | |
| address _stableSwap | |
| ) external initializer { | |
| OwnableUpgradeable.__Ownable_init(); | |
| PausableUpgradeable.__Pausable_init(); | |
| ReentrancyGuardUpgradeable.__ReentrancyGuard_init(); | |
| bookKeeper = IBookKeeper(_bookKeeper); | |
| fathomStablecoin = _fathomStablecoin; | |
| stablecoinAdapter = IStablecoinAdapter(_stablecoinAdapter); | |
| fixedSpreadLiquidationStrategy = _fixedSpreadLiquidationStrategy; | |
| profitRecipient = _profitRecipient; | |
| usdToken = _usdToken; | |
| stableSwap = _stableSwap; | |
| } | |
| function pause() external onlyOwner { | |
| _pause(); | |
| } | |
| function unpause() external onlyOwner { | |
| _unpause(); | |
| } | |
| function flashLendingCall( | |
| address, | |
| uint256 _debtValueToRepay, // [rad] | |
| uint256 _collateralAmountToLiquidate, // [wad] | |
| bytes calldata data | |
| ) external override whenNotPaused nonReentrant { | |
| require(msg.sender == fixedSpreadLiquidationStrategy, "flashLendingCall: invalid sender"); | |
| LocalVars memory _vars; | |
| (_vars.liquidatorAddress, _vars.tokenAdapter, _vars.router) = abi.decode( | |
| data, | |
| (address, IGenericTokenAdapter, IUniswapV2Router02) | |
| ); | |
| // Retrieve collateral token | |
| _retrieveCollateral(_vars.tokenAdapter, _collateralAmountToLiquidate); | |
| uint256 amountNeededToPayDebt = _debtValueToRepay.div(RAY) + 1; | |
| (address[] memory path, uint256 dexAmountOut, uint256 stableSwapAmountOut) = _computeMostProfitablePath( | |
| _vars.router, | |
| _vars.tokenAdapter.collateralToken(), | |
| _collateralAmountToLiquidate | |
| ); | |
| // If the most profitable path does not return what we need, still swap for what we can get. | |
| // The difference will be paid by the liquidator. | |
| uint256 minAmountOut = dexAmountOut < amountNeededToPayDebt ? dexAmountOut : amountNeededToPayDebt; | |
| uint256 fathomStablecoinReceived = _sellCollateral( | |
| _vars.tokenAdapter.collateralToken(), | |
| path, | |
| _vars.router, | |
| _collateralAmountToLiquidate, | |
| minAmountOut | |
| ); | |
| // If we didn't receive enough to repay the debt - send the amount we received | |
| // and the liquidator will try to pay the difference with its own funds. | |
| uint256 fundsUsedFromLiquidator; | |
| if (fathomStablecoinReceived < amountNeededToPayDebt) { | |
| uint256 balance = fathomStablecoin.balanceOf(_vars.liquidatorAddress); | |
| uint256 remainder = amountNeededToPayDebt - fathomStablecoinReceived; | |
| if (balance >= remainder) { | |
| fathomStablecoin.safeTransferFrom(_vars.liquidatorAddress, address(this), remainder); | |
| fundsUsedFromLiquidator = remainder; | |
| } | |
| } | |
| require( | |
| fathomStablecoin.balanceOf(address(this)) >= amountNeededToPayDebt, | |
| "flashLendingCall: not enough to repay debt" | |
| ); | |
| // Deposit Fathom Stablecoin for liquidatorAddress | |
| uint256 liquidationProfit = _depositStablecoin(amountNeededToPayDebt, _vars.liquidatorAddress); | |
| // transfer profit to profit recipient. There may not be any profit in some cases. | |
| if (liquidationProfit > 0) { | |
| fathomStablecoin.safeTransfer(profitRecipient, fathomStablecoin.balanceOf(address(this))); | |
| } | |
| emit LogFlashLiquidationSuccess( | |
| _vars.liquidatorAddress, | |
| _debtValueToRepay, | |
| _collateralAmountToLiquidate, | |
| liquidationProfit, | |
| dexAmountOut, | |
| stableSwapAmountOut, | |
| fundsUsedFromLiquidator, | |
| path | |
| ); | |
| } | |
| function _retrieveCollateral(IGenericTokenAdapter _tokenAdapter, uint256 _amount) internal { | |
| bookKeeper.whitelist(address(_tokenAdapter)); | |
| _tokenAdapter.withdraw(address(this), _amount, abi.encode(address(this))); | |
| } | |
| function _computeMostProfitablePath( | |
| IUniswapV2Router02 _router, | |
| address _collateralToken, | |
| uint256 _collateralAmountToLiquidate | |
| ) internal view returns (address[] memory, uint256, uint256) { | |
| // DEX (Collateral -> FXD) | |
| address[] memory path1 = new address[](2); | |
| path1[0] = _collateralToken; | |
| path1[1] = fathomStablecoin; | |
| uint256 scenarioOneAmountOut = _getDexAmountOut(_collateralAmountToLiquidate, path1, _router); | |
| // DEX (Collateral -> USDT) -> DEX (USDT -> FXD) | |
| address[] memory path2 = new address[](3); | |
| path2[0] = _collateralToken; | |
| path2[1] = usdToken; | |
| path2[2] = fathomStablecoin; | |
| uint256 scenarioTwoAmountOut = _getDexAmountOut(_collateralAmountToLiquidate, path2, _router); | |
| // DEX (Collateral -> USDT) -> Stable Swap (USDT -> FXD) | |
| address[] memory path3 = new address[](2); | |
| path3[0] = _collateralToken; | |
| path3[1] = usdToken; | |
| uint256 quotedUsdAmountOut = _getDexAmountOut(_collateralAmountToLiquidate, path3, _router); | |
| uint256 scenarioThreeAmountOut = FathomLibrary._getStableSwapTokenToStablecoinAmountOut( | |
| stableSwap, | |
| quotedUsdAmountOut | |
| ); | |
| if (scenarioOneAmountOut >= scenarioTwoAmountOut && scenarioOneAmountOut >= scenarioThreeAmountOut) { | |
| // DEX (Collateral -> FXD) | |
| return (path1, scenarioOneAmountOut, 0); | |
| } else if (scenarioTwoAmountOut >= scenarioOneAmountOut && scenarioTwoAmountOut >= scenarioThreeAmountOut) { | |
| // DEX (Collateral -> USDT) -> DEX (USDT -> FXD) | |
| return (path2, scenarioTwoAmountOut, 0); | |
| } else { | |
| // DEX (Collateral -> USDT) -> Stable Swap (USDT -> FXD) | |
| return (path3, quotedUsdAmountOut, scenarioThreeAmountOut); | |
| } | |
| } | |
| function _getDexAmountOut( | |
| uint256 _collateralAmountToLiquidate, | |
| address[] memory _path, | |
| IUniswapV2Router02 _router | |
| ) internal view returns (uint256) { | |
| uint256[] memory amounts = _router.getAmountsOut(_collateralAmountToLiquidate, _path); | |
| uint256 amountToReceive = amounts[amounts.length - 1]; | |
| return amountToReceive; | |
| } | |
| function _sellCollateral( | |
| address _token, | |
| address[] memory _path, | |
| IUniswapV2Router02 _router, | |
| uint256 _amount, | |
| uint256 _minAmountOut | |
| ) internal returns (uint256 receivedAmount) { | |
| if (_path.length != 0) { | |
| address _tokencoinAddress = _path[_path.length - 1]; | |
| uint256 _tokencoinBalanceBefore = _tokencoinAddress.balanceOf(address(this)); | |
| // Check if enough FXD will be returned from the DEX to complete flash liquidation | |
| uint256[] memory amounts = _router.getAmountsOut(_amount, _path); | |
| uint256 amountToReceive = amounts[amounts.length - 1]; | |
| if (amountToReceive < _minAmountOut) { | |
| revert( | |
| string( | |
| abi.encodePacked( | |
| " collateralReceived : ", | |
| string(_token.balanceOf(address(this))._uintToASCIIBytes()), | |
| " collaterallToSell : ", | |
| string(_amount._uintToASCIIBytes()), | |
| " amountNeeded : ", | |
| string((_minAmountOut)._uintToASCIIBytes()), | |
| " actualAmountReceived : ", | |
| string(amountToReceive._uintToASCIIBytes()), | |
| " output token : ", | |
| string(_path[_path.length - 1]._addressToASCIIBytes()) | |
| ) | |
| ) | |
| ); | |
| } | |
| _token.safeApprove(address(_router), type(uint).max); | |
| _router.swapExactTokensForTokens( | |
| _amount, // xdc | |
| _minAmountOut, // fxd | |
| _path, | |
| address(this), | |
| block.timestamp + 1000 | |
| ); | |
| _token.safeApprove(address(_router), 0); | |
| uint256 _tokencoinBalanceAfter = _tokencoinAddress.balanceOf(address(this)); | |
| receivedAmount = _tokencoinBalanceAfter.sub(_tokencoinBalanceBefore); | |
| if (_tokencoinAddress == usdToken) { | |
| receivedAmount = _stableSwapTokenToStablecoin(receivedAmount); | |
| } | |
| } | |
| } | |
| function _stableSwapTokenToStablecoin(uint256 _usdAmount) internal returns (uint256 stablecoinBalance) { | |
| // Approve the stable swap module to transfer USD | |
| IERC20(usdToken).approve(stableSwap, _usdAmount); | |
| uint256 balanceBefore = IERC20(fathomStablecoin).balanceOf(address(this)); | |
| // Stable swap USD to stablecoin 1:1 | |
| IStableSwapModule(stableSwap).swapTokenToStablecoin(address(this), _usdAmount); | |
| uint256 balanceAfter = IERC20(fathomStablecoin).balanceOf(address(this)); | |
| stablecoinBalance = balanceAfter.sub(balanceBefore); | |
| } | |
| function _depositStablecoin( | |
| uint256 _amount, | |
| address _liquidatorAddress | |
| ) internal returns (uint256 _liquidationProfit) { | |
| uint256 balanceBefore = fathomStablecoin.myBalance(); | |
| fathomStablecoin.safeApprove(address(stablecoinAdapter), type(uint).max); | |
| stablecoinAdapter.deposit(_liquidatorAddress, _amount, abi.encode(0)); | |
| fathomStablecoin.safeApprove(address(stablecoinAdapter), 0); | |
| _liquidationProfit = balanceBefore.sub(_amount); | |
| } | |
| function setProfitRecipient(address _profitRecipient) external onlyOwner whenNotPaused { | |
| profitRecipient = _profitRecipient; | |
| } | |
| function supportsInterface(bytes4 _interfaceId) external pure returns (bool) { | |
| return type(IFlashLendingCallee).interfaceId == _interfaceId; | |
| } | |
| fallback() external payable { | |
| revert(); | |
| } | |
| receive() external payable { | |
| revert(); | |
| } | |
| } | |
| // SPDX-License-Identifier: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| interface IAccessControlConfig { | |
| function hasRole(bytes32 role, address account) external view returns (bool); | |
| function OWNER_ROLE() external view returns (bytes32); | |
| function GOV_ROLE() external view returns (bytes32); | |
| function PRICE_ORACLE_ROLE() external view returns (bytes32); | |
| function ADAPTER_ROLE() external view returns (bytes32); | |
| function LIQUIDATION_ENGINE_ROLE() external view returns (bytes32); | |
| function STABILITY_FEE_COLLECTOR_ROLE() external view returns (bytes32); | |
| function SHOW_STOPPER_ROLE() external view returns (bytes32); | |
| function POSITION_MANAGER_ROLE() external view returns (bytes32); | |
| function MINTABLE_ROLE() external view returns (bytes32); | |
| function BOOK_KEEPER_ROLE() external view returns (bytes32); | |
| function COLLATERAL_MANAGER_ROLE() external view returns (bytes32); | |
| function VANILLA_ADAPTER_ROLE() external view returns (bytes32); | |
| } |
| // SPDX-License-Identifier: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| struct Position { | |
| uint256 lockedCollateral; // Locked collateral inside this position (used for minting) [wad] | |
| uint256 debtShare; // The debt share of this position or the share amount of minted Fathom Stablecoin [wad] | |
| } | |
| interface IERC20 { | |
| function positions(bytes32 CollateralID, address _owner) external view returns (Position memory); | |
| } |
| // SPDX-License-Identifier: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| interface IColPoolConfig { | |
| function getAdapter(bytes32) external view returns(address); | |
| } |
| // SPDX-License-Identifier: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| interface ICollateralTokenAdapter { | |
| function bookKeeper() external view returns (address); | |
| } |
| // SPDX-License-Identifier: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| interface ICounter { | |
| function counter() external view returns(uint256); | |
| } |
| // SPDX-License-Identifier: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| interface IERC20 { | |
| function balanceOf(address _owner) external view returns (uint256); | |
| function approve(address _spender, uint256 amount) external; | |
| } |
| // SPDX-License-Identifier: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| interface ILiqEngn { | |
| function liquidate( | |
| bytes32 _collateralPoolId, | |
| address _positionAddress, | |
| uint256 _debtShareToBeLiquidated, // [rad] | |
| uint256 _maxDebtShareToBeLiquidated, // [wad] | |
| address _collateralRecipient, | |
| bytes calldata _data | |
| ) external; | |
| } |
| // SPDX-License-Identifier: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| interface IPeekPrice { | |
| function peekPrice() external; | |
| } |
| // SPDX-License-Identifier: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| interface ILiqEngn { | |
| function positions( | |
| uint256 _kk | |
| ) external view returns (address); | |
| } |
| // SPDX-License-Identifier: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| interface PriceOracle { | |
| function setPrice(bytes32 colId) external; | |
| } |
| // SPDX-License-Identifier: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| interface IProxyWallet { | |
| function execute(bytes memory _data) external payable returns (bytes memory _response); | |
| } |
| // SPDX-License-Identifier: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| interface IProxyWalletRegistry { | |
| function build(address owner) external returns (address payable _proxy); | |
| function proxies(address owner) external view returns (address _proxy); | |
| } |
| // SPDX-License-Identifier: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| interface IVault { | |
| function lockXDC(bytes calldata data) external payable; | |
| function unlockXDC(address destination, uint256 wad, bytes calldata data) external; | |
| } |
| // SPDX-License-Identifier: AGPL-3.0-or-later | |
| pragma solidity 0.8.17; | |
| interface IWL { | |
| function whitelist( | |
| uint256 _kk | |
| ) external view returns (address); | |
| } |
| // SPDX-License-Identifier: AGPL-3.0-or-later | |
| pragma solidity 0.8.18; | |
| interface IBookKeeper { | |
| function totalStablecoinIssued() external view returns (uint256); | |
| } | |
| contract LittleTest { | |
| function testRevert(address _bookKeeper) external view returns (uint256) { | |
| // require(IBookKeeper(_bookKeeper).totalStablecoinIssued() >= 0, "ProxyWalletFactory/invalid-bookKeeper"); // Sanity Check Cal | |
| require(IBookKeeper(_bookKeeper).totalStablecoinIssued() > 10, "ProxyWalletFactory/invalid-bookKeeper"); // Sanity Check Cal | |
| return IBookKeeper(_bookKeeper).totalStablecoinIssued(); | |
| } | |
| } | |
| contract RightBookKeeper { | |
| function totalStablecoinIssued() external pure returns (uint256) { | |
| return 123123123123; | |
| } | |
| } | |
| contract BookKeeperWithNoMethod { | |
| function NotTotalStablecoinIssued() external pure returns (uint256) { | |
| return 0; | |
| } | |
| } | |
| contract BookKeeperWithTooSmallNumber { | |
| function totalStablecoinIssued() external pure returns (uint256) { | |
| return 5; | |
| } | |
| } | |
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
| { | |
| "deploy": { | |
| "VM:-": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "main:1": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "ropsten:3": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "rinkeby:4": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "kovan:42": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "goerli:5": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "Custom": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| } | |
| }, | |
| "data": { | |
| "bytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "linkReferences": {}, | |
| "object": "608060405234801561001057600080fd5b50614718806100206000396000f3fe6080604052600436106101025760003560e01c80638456cb5911610095578063e3b3932a11610064578063e3b3932a146102e5578063f03fbc0b14610310578063f2fde38b1461033b578063f842dd6014610364578063f897a22b1461038f5761010c565b80638456cb591461024f5780638da5cb5b146102665780639e548b7f14610291578063af7bd142146102bc5761010c565b80634795084f116100d15780634795084f146101b95780635c975abb146101e2578063715018a61461020d5780637e2bad1e146102245761010c565b806301ffc9a714610111578063358764761461014e5780633f4ba83a1461017757806346a311d31461018e5761010c565b3661010c57600080fd5b600080fd5b34801561011d57600080fd5b5061013860048036038101906101339190612e73565b6103ba565b6040516101459190612ebb565b60405180910390f35b34801561015a57600080fd5b5061017560048036038101906101709190612f34565b610424565b005b34801561018357600080fd5b5061018c610740565b005b34801561019a57600080fd5b506101a3610752565b6040516101b09190613035565b60405180910390f35b3480156101c557600080fd5b506101e060048036038101906101db9190613050565b610778565b005b3480156101ee57600080fd5b506101f76107cc565b6040516102049190612ebb565b60405180910390f35b34801561021957600080fd5b506102226107e3565b005b34801561023057600080fd5b506102396107f7565b604051610246919061308c565b60405180910390f35b34801561025b57600080fd5b5061026461081d565b005b34801561027257600080fd5b5061027b61082f565b604051610288919061308c565b60405180910390f35b34801561029d57600080fd5b506102a6610859565b6040516102b3919061308c565b60405180910390f35b3480156102c857600080fd5b506102e360048036038101906102de9190613142565b61087f565b005b3480156102f157600080fd5b506102fa610de0565b60405161030791906131eb565b60405180910390f35b34801561031c57600080fd5b50610325610e06565b604051610332919061308c565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d9190613050565b610e2c565b005b34801561037057600080fd5b50610379610eaf565b604051610386919061308c565b60405180910390f35b34801561039b57600080fd5b506103a4610ed5565b6040516103b1919061308c565b60405180910390f35b6000817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167faf7bd142000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060019054906101000a900460ff161590508080156104555750600160008054906101000a900460ff1660ff16105b80610482575061046430610efb565b1580156104815750600160008054906101000a900460ff1660ff16145b5b6104c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b890613289565b60405180910390fd5b60016000806101000a81548160ff021916908360ff16021790555080156104fe576001600060016101000a81548160ff0219169083151502179055505b610506610f1e565b61050e610f77565b610516610fd0565b8760c960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508660cc60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508560ca60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508460cb60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508360cd60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508260ce60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160cf60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080156107365760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498600160405161072d91906132f1565b60405180910390a15b5050505050505050565b610748611029565b6107506110a7565b565b60ca60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610780611029565b61078861110a565b8060cd60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000606560009054906101000a900460ff16905090565b6107eb611029565b6107f56000611154565b565b60cd60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610825611029565b61082d61121a565b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61088761110a565b61088f61127d565b60cb60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461091f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091690613358565b60405180910390fd5b610927612da4565b82828101906109369190613432565b8360000184602001856040018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152508373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152508373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505050506109e38160200151856112cc565b60006001610a066b033b2e3c9fd0803ce8000000886113eb90919063ffffffff16565b610a1091906134b4565b90506000806000610a9a8560400151866020015173ffffffffffffffffffffffffffffffffffffffff1663b2016bd46040518163ffffffff1660e01b81526004016020604051808303816000875af1158015610a70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a9491906134fd565b8a611401565b9250925092506000848310610aaf5784610ab1565b825b90506000610b3a876020015173ffffffffffffffffffffffffffffffffffffffff1663b2016bd46040518163ffffffff1660e01b81526004016020604051808303816000875af1158015610b09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2d91906134fd565b8689604001518d8661186e565b9050600086821015610c0a576000610b97896000015160cc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611c3b90919063ffffffff16565b905060008389610ba7919061352a565b9050808210610c0757610c038a60000151308360cc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611cbf909392919063ffffffff16565b8092505b50505b86610c563060cc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611c3b90919063ffffffff16565b1015610c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8e906135d0565b60405180910390fd5b6000610ca7888a60000151611df8565b90506000811115610d6c57610d6b60cd60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d233060cc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611c3b90919063ffffffff16565b60cc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661200a9092919063ffffffff16565b5b8b8d8a6000015173ffffffffffffffffffffffffffffffffffffffff167fad96ebd4c410c28e404ff28e613f5ac09d6da05f781599334334d50e73897c0a848a8a888e604051610dc09594939291906136bd565b60405180910390a4505050505050505050610dd9612140565b5050505050565b60c960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60cc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e34611029565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a90613789565b60405180910390fd5b610eac81611154565b50565b60cb60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60ce60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff16610f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f649061381b565b60405180910390fd5b610f7561214a565b565b600060019054906101000a900460ff16610fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbd9061381b565b60405180910390fd5b610fce6121ab565b565b600060019054906101000a900460ff1661101f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110169061381b565b60405180910390fd5b611027612217565b565b611031612270565b73ffffffffffffffffffffffffffffffffffffffff1661104f61082f565b73ffffffffffffffffffffffffffffffffffffffff16146110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c90613887565b60405180910390fd5b565b6110af612278565b6000606560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6110f3612270565b604051611100919061308c565b60405180910390a1565b6111126107cc565b15611152576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611149906138f3565b60405180910390fd5b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61122261110a565b6001606560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611266612270565b604051611273919061308c565b60405180910390a1565b6002609754036112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b99061395f565b60405180910390fd5b6002609781905550565b60c960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639b19251a836040518263ffffffff1660e01b8152600401611327919061308c565b600060405180830381600087803b15801561134157600080fd5b505af1158015611355573d6000803e3d6000fd5b505050508173ffffffffffffffffffffffffffffffffffffffff166331f09265308330604051602001611388919061308c565b6040516020818303038152906040526040518463ffffffff1660e01b81526004016113b593929190613a0f565b600060405180830381600087803b1580156113cf57600080fd5b505af11580156113e3573d6000803e3d6000fd5b505050505050565b600081836113f99190613a7c565b905092915050565b60606000806000600267ffffffffffffffff81111561142357611422613aad565b5b6040519080825280602002602001820160405280156114515781602001602082028036833780820191505090505b509050858160008151811061146957611468613adc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060cc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816001815181106114da576114d9613adc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600061152186838a6122c1565b90506000600367ffffffffffffffff8111156115405761153f613aad565b5b60405190808252806020026020018201604052801561156e5781602001602082028036833780820191505090505b509050878160008151811061158657611585613adc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060ce60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816001815181106115f7576115f6613adc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060cc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160028151811061166857611667613adc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060006116af88838c6122c1565b90506000600267ffffffffffffffff8111156116ce576116cd613aad565b5b6040519080825280602002602001820160405280156116fc5781602001602082028036833780820191505090505b509050898160008151811061171457611713613adc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060ce60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811061178557611784613adc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060006117cc8a838e6122c1565b905060006117fc60cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361237f565b905083861015801561180e5750808610155b15611829578686600099509950995050505050505050611865565b8584101580156118395750808410155b15611854578484600099509950995050505050505050611865565b828282995099509950505050505050505b93509350939050565b600080855114611c325760008560018751611889919061352a565b8151811061189a57611899613adc565b5b6020026020010151905060006118cf308373ffffffffffffffffffffffffffffffffffffffff16611c3b90919063ffffffff16565b905060008673ffffffffffffffffffffffffffffffffffffffff1663d06ca61f878a6040518363ffffffff1660e01b815260040161190e929190613b0b565b600060405180830381865afa15801561192b573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906119549190613c5f565b905060008160018351611967919061352a565b8151811061197857611977613adc565b5b6020026020010151905085811015611a7b576119bb6119b6308c73ffffffffffffffffffffffffffffffffffffffff16611c3b90919063ffffffff16565b612528565b6119c488612528565b6119cd88612528565b6119d684612528565b611a1c8d60018f516119e8919061352a565b815181106119f9576119f8613adc565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1661269a565b604051602001611a30959493929190613e6b565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a729190613f26565b60405180910390fd5b611ac6887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8c73ffffffffffffffffffffffffffffffffffffffff166128299092919063ffffffff16565b8773ffffffffffffffffffffffffffffffffffffffff166338ed173988888c306103e842611af491906134b4565b6040518663ffffffff1660e01b8152600401611b14959493929190613f48565b6000604051808303816000875af1158015611b33573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611b5c9190613c5f565b50611b898860008c73ffffffffffffffffffffffffffffffffffffffff166128299092919063ffffffff16565b6000611bb4308673ffffffffffffffffffffffffffffffffffffffff16611c3b90919063ffffffff16565b9050611bc9848261295f90919063ffffffff16565b955060ce60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611c2c57611c2986612975565b95505b50505050505b95945050505050565b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401611c76919061308c565b602060405180830381865afa158015611c93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cb79190613fa2565b905092915050565b6000808573ffffffffffffffffffffffffffffffffffffffff166323b872dd868686604051602401611cf393929190613fcf565b6040516020818303038152906040529060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051611d419190614042565b6000604051808303816000865af19150503d8060008114611d7e576040519150601f19603f3d011682016040523d82523d6000602084013e611d83565b606091505b5091509150818015611db15750600081511480611db0575080806020019051810190611daf9190614085565b5b5b611df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de7906140fe565b60405180910390fd5b505050505050565b600080611e3c60cc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612c25565b9050611ecd60ca60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60cc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166128299092919063ffffffff16565b60ca60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166349bdc2b884866000604051602001611f1f9190614159565b6040516020818303038152906040526040518463ffffffff1660e01b8152600401611f4c93929190613a0f565b600060405180830381600087803b158015611f6657600080fd5b505af1158015611f7a573d6000803e3d6000fd5b50505050611fee60ca60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600060cc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166128299092919063ffffffff16565b612001848261295f90919063ffffffff16565b91505092915050565b6000808473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb858560405160240161203c929190614174565b6040516020818303038152906040529060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405161208a9190614042565b6000604051808303816000865af19150503d80600081146120c7576040519150601f19603f3d011682016040523d82523d6000602084013e6120cc565b606091505b50915091508180156120fa57506000815114806120f95750808060200190518101906120f89190614085565b5b5b612139576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612130906141e9565b60405180910390fd5b5050505050565b6001609781905550565b600060019054906101000a900460ff16612199576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121909061381b565b60405180910390fd5b6121a96121a4612270565b611154565b565b600060019054906101000a900460ff166121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f19061381b565b60405180910390fd5b6000606560006101000a81548160ff021916908315150217905550565b600060019054906101000a900460ff16612266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225d9061381b565b60405180910390fd5b6001609781905550565b600033905090565b6122806107cc565b6122bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b690614255565b60405180910390fd5b565b6000808273ffffffffffffffffffffffffffffffffffffffff1663d06ca61f86866040518363ffffffff1660e01b81526004016122ff929190613b0b565b600060405180830381865afa15801561231c573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906123459190613c5f565b905060008160018351612358919061352a565b8151811061236957612368613adc565b5b6020026020010151905080925050509392505050565b6000808373ffffffffffffffffffffffffffffffffffffffff1663fc0c546a6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123f191906134fd565b905060008473ffffffffffffffffffffffffffffffffffffffff1663769a48d96040518163ffffffff1660e01b8152600401602060405180830381865afa158015612440573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124649190613fa2565b905060006124e5858473ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124db91906142a1565b60ff166012612ca8565b90506000670de0b6b3a764000083836124fe91906142ce565b6125089190613a7c565b905060008183612518919061352a565b9050809550505050505092915050565b6060600082905060008103612575576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250915050612695565b600081905060005b600082146125a757808061259090614310565b915050600a826125a09190613a7c565b915061257d565b60008167ffffffffffffffff8111156125c3576125c2613aad565b5b6040519080825280601f01601f1916602001820160405280156125f55781602001600182028036833780820191505090505b5090505b6000841461268d57600a8461260e9190614358565b603061261a91906134b4565b60f81b8160018461262b919061352a565b8151811061263c5761263b613adc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a846126789190613a7c565b9350818061268590614389565b9250506125f9565b809450505050505b919050565b60606000602867ffffffffffffffff8111156126b9576126b8613aad565b5b6040519080825280601f01601f1916602001820160405280156126eb5781602001600182028036833780820191505090505b50905060005b6014811015612800576000816013612709919061352a565b600861271591906142ce565b8573ffffffffffffffffffffffffffffffffffffffff16901c905060008061273c83612d07565b91509150818585600261274f91906142ce565b815181106127605761275f613adc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808560018660026127a091906142ce565b6127aa91906134b4565b815181106127bb576127ba613adc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535050505080806127f890614310565b9150506126f1565b508060405160200161281291906143fe565b604051602081830303815290604052915050919050565b6000808473ffffffffffffffffffffffffffffffffffffffff1663095ea7b3858560405160240161285b929190614174565b6040516020818303038152906040529060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516128a99190614042565b6000604051808303816000865af19150503d80600081146128e6576040519150601f19603f3d011682016040523d82523d6000602084013e6128eb565b606091505b509150915081801561291957506000815114806129185750808060200190518101906129179190614085565b5b5b612958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294f9061446c565b60405180910390fd5b5050505050565b6000818361296d919061352a565b905092915050565b600060ce60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b360cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b81526004016129f6929190614174565b6020604051808303816000875af1158015612a15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a399190614085565b50600060cc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612a97919061308c565b602060405180830381865afa158015612ab4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ad89190613fa2565b905060cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340853dce30856040518363ffffffff1660e01b8152600401612b37929190614174565b600060405180830381600087803b158015612b5157600080fd5b505af1158015612b65573d6000803e3d6000fd5b50505050600060cc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612bc6919061308c565b602060405180830381865afa158015612be3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c079190613fa2565b9050612c1c828261295f90919063ffffffff16565b92505050919050565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612c60919061308c565b602060405180830381865afa158015612c7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ca19190613fa2565b9050919050565b600082821015612cda578183612cbe919061352a565b600a612cca91906145bf565b84612cd59190613a7c565b612cfe565b8282612ce6919061352a565b600a612cf291906145bf565b84612cfd91906142ce565b5b90509392505050565b6000806000601084612d19919061460a565b90506000816010612d2a919061463b565b85612d359190614678565b9050600a8260ff1610612d5757605782612d4f91906146ad565b60f81b612d68565b603082612d6491906146ad565b60f81b5b9350600a8160ff1610612d8a57605781612d8291906146ad565b60f81b612d9b565b603081612d9791906146ad565b60f81b5b92505050915091565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e5081612e1b565b8114612e5b57600080fd5b50565b600081359050612e6d81612e47565b92915050565b600060208284031215612e8957612e88612e11565b5b6000612e9784828501612e5e565b91505092915050565b60008115159050919050565b612eb581612ea0565b82525050565b6000602082019050612ed06000830184612eac565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f0182612ed6565b9050919050565b612f1181612ef6565b8114612f1c57600080fd5b50565b600081359050612f2e81612f08565b92915050565b600080600080600080600060e0888a031215612f5357612f52612e11565b5b6000612f618a828b01612f1f565b9750506020612f728a828b01612f1f565b9650506040612f838a828b01612f1f565b9550506060612f948a828b01612f1f565b9450506080612fa58a828b01612f1f565b93505060a0612fb68a828b01612f1f565b92505060c0612fc78a828b01612f1f565b91505092959891949750929550565b6000819050919050565b6000612ffb612ff6612ff184612ed6565b612fd6565b612ed6565b9050919050565b600061300d82612fe0565b9050919050565b600061301f82613002565b9050919050565b61302f81613014565b82525050565b600060208201905061304a6000830184613026565b92915050565b60006020828403121561306657613065612e11565b5b600061307484828501612f1f565b91505092915050565b61308681612ef6565b82525050565b60006020820190506130a1600083018461307d565b92915050565b6000819050919050565b6130ba816130a7565b81146130c557600080fd5b50565b6000813590506130d7816130b1565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613102576131016130dd565b5b8235905067ffffffffffffffff81111561311f5761311e6130e2565b5b60208301915083600182028301111561313b5761313a6130e7565b5b9250929050565b60008060008060006080868803121561315e5761315d612e11565b5b600061316c88828901612f1f565b955050602061317d888289016130c8565b945050604061318e888289016130c8565b935050606086013567ffffffffffffffff8111156131af576131ae612e16565b5b6131bb888289016130ec565b92509250509295509295909350565b60006131d582613002565b9050919050565b6131e5816131ca565b82525050565b600060208201905061320060008301846131dc565b92915050565b600082825260208201905092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000613273602e83613206565b915061327e82613217565b604082019050919050565b600060208201905081810360008301526132a281613266565b9050919050565b6000819050919050565b600060ff82169050919050565b60006132db6132d66132d1846132a9565b612fd6565b6132b3565b9050919050565b6132eb816132c0565b82525050565b600060208201905061330660008301846132e2565b92915050565b7f666c6173684c656e64696e6743616c6c3a20696e76616c69642073656e646572600082015250565b6000613342602083613206565b915061334d8261330c565b602082019050919050565b6000602082019050818103600083015261337181613335565b9050919050565b600061338382612ed6565b9050919050565b61339381613378565b811461339e57600080fd5b50565b6000813590506133b08161338a565b92915050565b60006133c182612ef6565b9050919050565b6133d1816133b6565b81146133dc57600080fd5b50565b6000813590506133ee816133c8565b92915050565b60006133ff82612ef6565b9050919050565b61340f816133f4565b811461341a57600080fd5b50565b60008135905061342c81613406565b92915050565b60008060006060848603121561344b5761344a612e11565b5b6000613459868287016133a1565b935050602061346a868287016133df565b925050604061347b8682870161341d565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134bf826130a7565b91506134ca836130a7565b92508282019050808211156134e2576134e1613485565b5b92915050565b6000815190506134f781612f08565b92915050565b60006020828403121561351357613512612e11565b5b6000613521848285016134e8565b91505092915050565b6000613535826130a7565b9150613540836130a7565b925082820390508181111561355857613557613485565b5b92915050565b7f666c6173684c656e64696e6743616c6c3a206e6f7420656e6f75676820746f2060008201527f7265706179206465627400000000000000000000000000000000000000000000602082015250565b60006135ba602a83613206565b91506135c58261355e565b604082019050919050565b600060208201905081810360008301526135e9816135ad565b9050919050565b6135f9816130a7565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61363481612ef6565b82525050565b6000613646838361362b565b60208301905092915050565b6000602082019050919050565b600061366a826135ff565b613674818561360a565b935061367f8361361b565b8060005b838110156136b0578151613697888261363a565b97506136a283613652565b925050600181019050613683565b5085935050505092915050565b600060a0820190506136d260008301886135f0565b6136df60208301876135f0565b6136ec60408301866135f0565b6136f960608301856135f0565b818103608083015261370b818461365f565b90509695505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613773602683613206565b915061377e82613717565b604082019050919050565b600060208201905081810360008301526137a281613766565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000613805602b83613206565b9150613810826137a9565b604082019050919050565b60006020820190508181036000830152613834816137f8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613871602083613206565b915061387c8261383b565b602082019050919050565b600060208201905081810360008301526138a081613864565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006138dd601083613206565b91506138e8826138a7565b602082019050919050565b6000602082019050818103600083015261390c816138d0565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613949601f83613206565b915061395482613913565b602082019050919050565b600060208201905081810360008301526139788161393c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139b957808201518184015260208101905061399e565b60008484015250505050565b6000601f19601f8301169050919050565b60006139e18261397f565b6139eb818561398a565b93506139fb81856020860161399b565b613a04816139c5565b840191505092915050565b6000606082019050613a24600083018661307d565b613a3160208301856135f0565b8181036040830152613a4381846139d6565b9050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a87826130a7565b9150613a92836130a7565b925082613aa257613aa1613a4d565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000604082019050613b2060008301856135f0565b8181036020830152613b32818461365f565b90509392505050565b613b44826139c5565b810181811067ffffffffffffffff82111715613b6357613b62613aad565b5b80604052505050565b6000613b76612e07565b9050613b828282613b3b565b919050565b600067ffffffffffffffff821115613ba257613ba1613aad565b5b602082029050602081019050919050565b600081519050613bc2816130b1565b92915050565b6000613bdb613bd684613b87565b613b6c565b90508083825260208201905060208402830185811115613bfe57613bfd6130e7565b5b835b81811015613c275780613c138882613bb3565b845260208401935050602081019050613c00565b5050509392505050565b600082601f830112613c4657613c456130dd565b5b8151613c56848260208601613bc8565b91505092915050565b600060208284031215613c7557613c74612e11565b5b600082015167ffffffffffffffff811115613c9357613c92612e16565b5b613c9f84828501613c31565b91505092915050565b600081905092915050565b7f20636f6c6c61746572616c5265636569766564203a2000000000000000000000600082015250565b6000613ce9601683613ca8565b9150613cf482613cb3565b601682019050919050565b600081519050919050565b6000613d1582613cff565b613d1f8185613ca8565b9350613d2f81856020860161399b565b80840191505092915050565b7f20636f6c6c61746572616c6c546f53656c6c203a200000000000000000000000600082015250565b6000613d71601583613ca8565b9150613d7c82613d3b565b601582019050919050565b7f20616d6f756e744e6565646564203a2000000000000000000000000000000000600082015250565b6000613dbd601083613ca8565b9150613dc882613d87565b601082019050919050565b7f2061637475616c416d6f756e745265636569766564203a200000000000000000600082015250565b6000613e09601883613ca8565b9150613e1482613dd3565b601882019050919050565b7f206f757470757420746f6b656e203a2000000000000000000000000000000000600082015250565b6000613e55601083613ca8565b9150613e6082613e1f565b601082019050919050565b6000613e7682613cdc565b9150613e828288613d0a565b9150613e8d82613d64565b9150613e998287613d0a565b9150613ea482613db0565b9150613eb08286613d0a565b9150613ebb82613dfc565b9150613ec78285613d0a565b9150613ed282613e48565b9150613ede8284613d0a565b91508190509695505050505050565b6000613ef882613cff565b613f028185613206565b9350613f1281856020860161399b565b613f1b816139c5565b840191505092915050565b60006020820190508181036000830152613f408184613eed565b905092915050565b600060a082019050613f5d60008301886135f0565b613f6a60208301876135f0565b8181036040830152613f7c818661365f565b9050613f8b606083018561307d565b613f9860808301846135f0565b9695505050505050565b600060208284031215613fb857613fb7612e11565b5b6000613fc684828501613bb3565b91505092915050565b6000606082019050613fe4600083018661307d565b613ff1602083018561307d565b613ffe60408301846135f0565b949350505050565b600081905092915050565b600061401c8261397f565b6140268185614006565b935061403681856020860161399b565b80840191505092915050565b600061404e8284614011565b915081905092915050565b61406281612ea0565b811461406d57600080fd5b50565b60008151905061407f81614059565b92915050565b60006020828403121561409b5761409a612e11565b5b60006140a984828501614070565b91505092915050565b7f21736166655472616e7366657246726f6d000000000000000000000000000000600082015250565b60006140e8601183613206565b91506140f3826140b2565b602082019050919050565b60006020820190508181036000830152614117816140db565b9050919050565b6000819050919050565b600061414361413e6141398461411e565b612fd6565b6132b3565b9050919050565b61415381614128565b82525050565b600060208201905061416e600083018461414a565b92915050565b6000604082019050614189600083018561307d565b61419660208301846135f0565b9392505050565b7f21736166655472616e7366657200000000000000000000000000000000000000600082015250565b60006141d3600d83613206565b91506141de8261419d565b602082019050919050565b60006020820190508181036000830152614202816141c6565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061423f601483613206565b915061424a82614209565b602082019050919050565b6000602082019050818103600083015261426e81614232565b9050919050565b61427e816132b3565b811461428957600080fd5b50565b60008151905061429b81614275565b92915050565b6000602082840312156142b7576142b6612e11565b5b60006142c58482850161428c565b91505092915050565b60006142d9826130a7565b91506142e4836130a7565b92508282026142f2816130a7565b9150828204841483151761430957614308613485565b5b5092915050565b600061431b826130a7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361434d5761434c613485565b5b600182019050919050565b6000614363826130a7565b915061436e836130a7565b92508261437e5761437d613a4d565b5b828206905092915050565b6000614394826130a7565b9150600082036143a7576143a6613485565b5b600182039050919050565b7f3078000000000000000000000000000000000000000000000000000000000000600082015250565b60006143e8600283613ca8565b91506143f3826143b2565b600282019050919050565b6000614409826143db565b91506144158284614011565b915081905092915050565b7f2173616665417070726f76650000000000000000000000000000000000000000600082015250565b6000614456600c83613206565b915061446182614420565b602082019050919050565b6000602082019050818103600083015261448581614449565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156144e3578086048111156144bf576144be613485565b5b60018516156144ce5780820291505b80810290506144dc8561448c565b94506144a3565b94509492505050565b6000826144fc57600190506145b8565b8161450a57600090506145b8565b8160018114614520576002811461452a57614559565b60019150506145b8565b60ff84111561453c5761453b613485565b5b8360020a91508482111561455357614552613485565b5b506145b8565b5060208310610133831016604e8410600b841016171561458e5782820a90508381111561458957614588613485565b5b6145b8565b61459b8484846001614499565b925090508184048111156145b2576145b1613485565b5b81810290505b9392505050565b60006145ca826130a7565b91506145d5836130a7565b92506146027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846144ec565b905092915050565b6000614615826132b3565b9150614620836132b3565b9250826146305761462f613a4d565b5b828204905092915050565b6000614646826132b3565b9150614651836132b3565b925082820261465f816132b3565b915080821461467157614670613485565b5b5092915050565b6000614683826132b3565b915061468e836132b3565b9250828203905060ff8111156146a7576146a6613485565b5b92915050565b60006146b8826132b3565b91506146c3836132b3565b9250828201905060ff8111156146dc576146db613485565b5b9291505056fea264697066735822122068b31f5d50e7c02ee0c6d7960c1a7e877e4356e3c1d07a8db8f26443441c268a64736f6c63430008110033", | |
| "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x4718 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x102 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8456CB59 GT PUSH2 0x95 JUMPI DUP1 PUSH4 0xE3B3932A GT PUSH2 0x64 JUMPI DUP1 PUSH4 0xE3B3932A EQ PUSH2 0x2E5 JUMPI DUP1 PUSH4 0xF03FBC0B EQ PUSH2 0x310 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x33B JUMPI DUP1 PUSH4 0xF842DD60 EQ PUSH2 0x364 JUMPI DUP1 PUSH4 0xF897A22B EQ PUSH2 0x38F JUMPI PUSH2 0x10C JUMP JUMPDEST DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x24F JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x266 JUMPI DUP1 PUSH4 0x9E548B7F EQ PUSH2 0x291 JUMPI DUP1 PUSH4 0xAF7BD142 EQ PUSH2 0x2BC JUMPI PUSH2 0x10C JUMP JUMPDEST DUP1 PUSH4 0x4795084F GT PUSH2 0xD1 JUMPI DUP1 PUSH4 0x4795084F EQ PUSH2 0x1B9 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x1E2 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x20D JUMPI DUP1 PUSH4 0x7E2BAD1E EQ PUSH2 0x224 JUMPI PUSH2 0x10C JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x111 JUMPI DUP1 PUSH4 0x35876476 EQ PUSH2 0x14E JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x177 JUMPI DUP1 PUSH4 0x46A311D3 EQ PUSH2 0x18E JUMPI PUSH2 0x10C JUMP JUMPDEST CALLDATASIZE PUSH2 0x10C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x11D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x138 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x133 SWAP2 SWAP1 PUSH2 0x2E73 JUMP JUMPDEST PUSH2 0x3BA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x145 SWAP2 SWAP1 PUSH2 0x2EBB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x15A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x175 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x170 SWAP2 SWAP1 PUSH2 0x2F34 JUMP JUMPDEST PUSH2 0x424 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x183 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x18C PUSH2 0x740 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x19A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1A3 PUSH2 0x752 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1B0 SWAP2 SWAP1 PUSH2 0x3035 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1E0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1DB SWAP2 SWAP1 PUSH2 0x3050 JUMP JUMPDEST PUSH2 0x778 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1F7 PUSH2 0x7CC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x204 SWAP2 SWAP1 PUSH2 0x2EBB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x219 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x222 PUSH2 0x7E3 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x230 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x239 PUSH2 0x7F7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x246 SWAP2 SWAP1 PUSH2 0x308C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x264 PUSH2 0x81D JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x272 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x27B PUSH2 0x82F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x288 SWAP2 SWAP1 PUSH2 0x308C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x29D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A6 PUSH2 0x859 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B3 SWAP2 SWAP1 PUSH2 0x308C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2E3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2DE SWAP2 SWAP1 PUSH2 0x3142 JUMP JUMPDEST PUSH2 0x87F JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2FA PUSH2 0xDE0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x307 SWAP2 SWAP1 PUSH2 0x31EB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x31C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x325 PUSH2 0xE06 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x332 SWAP2 SWAP1 PUSH2 0x308C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x347 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x362 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x35D SWAP2 SWAP1 PUSH2 0x3050 JUMP JUMPDEST PUSH2 0xE2C JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x370 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x379 PUSH2 0xEAF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x386 SWAP2 SWAP1 PUSH2 0x308C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x39B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3A4 PUSH2 0xED5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3B1 SWAP2 SWAP1 PUSH2 0x308C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH32 0xAF7BD14200000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x455 JUMPI POP PUSH1 0x1 PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND LT JUMPDEST DUP1 PUSH2 0x482 JUMPI POP PUSH2 0x464 ADDRESS PUSH2 0xEFB JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0x481 JUMPI POP PUSH1 0x1 PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH1 0xFF AND EQ JUMPDEST JUMPDEST PUSH2 0x4C1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4B8 SWAP1 PUSH2 0x3289 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP DUP1 ISZERO PUSH2 0x4FE JUMPI PUSH1 0x1 PUSH1 0x0 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMPDEST PUSH2 0x506 PUSH2 0xF1E JUMP JUMPDEST PUSH2 0x50E PUSH2 0xF77 JUMP JUMPDEST PUSH2 0x516 PUSH2 0xFD0 JUMP JUMPDEST DUP8 PUSH1 0xC9 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP7 PUSH1 0xCC PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP6 PUSH1 0xCA PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP5 PUSH1 0xCB PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP4 PUSH1 0xCD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP3 PUSH1 0xCE PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH1 0xCF PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 ISZERO PUSH2 0x736 JUMPI PUSH1 0x0 DUP1 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x7F26B83FF96E1F2B6A682F133852F6798A09C465DA95921460CEFB3847402498 PUSH1 0x1 PUSH1 0x40 MLOAD PUSH2 0x72D SWAP2 SWAP1 PUSH2 0x32F1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x748 PUSH2 0x1029 JUMP JUMPDEST PUSH2 0x750 PUSH2 0x10A7 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0xCA PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH2 0x780 PUSH2 0x1029 JUMP JUMPDEST PUSH2 0x788 PUSH2 0x110A JUMP JUMPDEST DUP1 PUSH1 0xCD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x65 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x7EB PUSH2 0x1029 JUMP JUMPDEST PUSH2 0x7F5 PUSH1 0x0 PUSH2 0x1154 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0xCD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH2 0x825 PUSH2 0x1029 JUMP JUMPDEST PUSH2 0x82D PUSH2 0x121A JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x33 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0xCF PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH2 0x887 PUSH2 0x110A JUMP JUMPDEST PUSH2 0x88F PUSH2 0x127D JUMP JUMPDEST PUSH1 0xCB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x91F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x916 SWAP1 PUSH2 0x3358 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x927 PUSH2 0x2DA4 JUMP JUMPDEST DUP3 DUP3 DUP2 ADD SWAP1 PUSH2 0x936 SWAP2 SWAP1 PUSH2 0x3432 JUMP JUMPDEST DUP4 PUSH1 0x0 ADD DUP5 PUSH1 0x20 ADD DUP6 PUSH1 0x40 ADD DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP POP POP PUSH2 0x9E3 DUP2 PUSH1 0x20 ADD MLOAD DUP6 PUSH2 0x12CC JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH2 0xA06 PUSH12 0x33B2E3C9FD0803CE8000000 DUP9 PUSH2 0x13EB SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH2 0xA10 SWAP2 SWAP1 PUSH2 0x34B4 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0xA9A DUP6 PUSH1 0x40 ADD MLOAD DUP7 PUSH1 0x20 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xB2016BD4 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xA70 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 0xA94 SWAP2 SWAP1 PUSH2 0x34FD JUMP JUMPDEST DUP11 PUSH2 0x1401 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH1 0x0 DUP5 DUP4 LT PUSH2 0xAAF JUMPI DUP5 PUSH2 0xAB1 JUMP JUMPDEST DUP3 JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xB3A DUP8 PUSH1 0x20 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xB2016BD4 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xB09 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 0xB2D SWAP2 SWAP1 PUSH2 0x34FD JUMP JUMPDEST DUP7 DUP10 PUSH1 0x40 ADD MLOAD DUP14 DUP7 PUSH2 0x186E JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP7 DUP3 LT ISZERO PUSH2 0xC0A JUMPI PUSH1 0x0 PUSH2 0xB97 DUP10 PUSH1 0x0 ADD MLOAD PUSH1 0xCC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1C3B SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP4 DUP10 PUSH2 0xBA7 SWAP2 SWAP1 PUSH2 0x352A JUMP JUMPDEST SWAP1 POP DUP1 DUP3 LT PUSH2 0xC07 JUMPI PUSH2 0xC03 DUP11 PUSH1 0x0 ADD MLOAD ADDRESS DUP4 PUSH1 0xCC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1CBF SWAP1 SWAP4 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 SWAP3 POP JUMPDEST POP POP JUMPDEST DUP7 PUSH2 0xC56 ADDRESS PUSH1 0xCC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1C3B SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST LT ISZERO PUSH2 0xC97 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC8E SWAP1 PUSH2 0x35D0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xCA7 DUP9 DUP11 PUSH1 0x0 ADD MLOAD PUSH2 0x1DF8 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 GT ISZERO PUSH2 0xD6C JUMPI PUSH2 0xD6B PUSH1 0xCD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD23 ADDRESS PUSH1 0xCC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1C3B SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0xCC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x200A SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST JUMPDEST DUP12 DUP14 DUP11 PUSH1 0x0 ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xAD96EBD4C410C28E404FF28E613F5AC09D6DA05F781599334334D50E73897C0A DUP5 DUP11 DUP11 DUP9 DUP15 PUSH1 0x40 MLOAD PUSH2 0xDC0 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x36BD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP POP POP POP POP POP PUSH2 0xDD9 PUSH2 0x2140 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0xC9 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0xCC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH2 0xE34 PUSH2 0x1029 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xEA3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE9A SWAP1 PUSH2 0x3789 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xEAC DUP2 PUSH2 0x1154 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0xCB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0xCE PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0xF6D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF64 SWAP1 PUSH2 0x381B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xF75 PUSH2 0x214A JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0xFC6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFBD SWAP1 PUSH2 0x381B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xFCE PUSH2 0x21AB JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x101F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1016 SWAP1 PUSH2 0x381B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1027 PUSH2 0x2217 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x1031 PUSH2 0x2270 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x104F PUSH2 0x82F JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x10A5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x109C SWAP1 PUSH2 0x3887 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x10AF PUSH2 0x2278 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x65 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x10F3 PUSH2 0x2270 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1100 SWAP2 SWAP1 PUSH2 0x308C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH2 0x1112 PUSH2 0x7CC JUMP JUMPDEST ISZERO PUSH2 0x1152 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1149 SWAP1 PUSH2 0x38F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x33 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x33 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x1222 PUSH2 0x110A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x65 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x1266 PUSH2 0x2270 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1273 SWAP2 SWAP1 PUSH2 0x308C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x97 SLOAD SUB PUSH2 0x12C2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12B9 SWAP1 PUSH2 0x395F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x97 DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0xC9 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x9B19251A DUP4 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1327 SWAP2 SWAP1 PUSH2 0x308C JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1341 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1355 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x31F09265 ADDRESS DUP4 ADDRESS PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1388 SWAP2 SWAP1 PUSH2 0x308C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13B5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3A0F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x13CF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x13E3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP4 PUSH2 0x13F9 SWAP2 SWAP1 PUSH2 0x3A7C JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1423 JUMPI PUSH2 0x1422 PUSH2 0x3AAD JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1451 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP DUP6 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1469 JUMPI PUSH2 0x1468 PUSH2 0x3ADC JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP PUSH1 0xCC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x14DA JUMPI PUSH2 0x14D9 PUSH2 0x3ADC JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP PUSH1 0x0 PUSH2 0x1521 DUP7 DUP4 DUP11 PUSH2 0x22C1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x3 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1540 JUMPI PUSH2 0x153F PUSH2 0x3AAD JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x156E JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP DUP8 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1586 JUMPI PUSH2 0x1585 PUSH2 0x3ADC JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP PUSH1 0xCE PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x15F7 JUMPI PUSH2 0x15F6 PUSH2 0x3ADC JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP PUSH1 0xCC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x2 DUP2 MLOAD DUP2 LT PUSH2 0x1668 JUMPI PUSH2 0x1667 PUSH2 0x3ADC JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP PUSH1 0x0 PUSH2 0x16AF DUP9 DUP4 DUP13 PUSH2 0x22C1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x16CE JUMPI PUSH2 0x16CD PUSH2 0x3AAD JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x16FC JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP DUP10 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1714 JUMPI PUSH2 0x1713 PUSH2 0x3ADC JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP PUSH1 0xCE PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x1785 JUMPI PUSH2 0x1784 PUSH2 0x3ADC JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP PUSH1 0x0 PUSH2 0x17CC DUP11 DUP4 DUP15 PUSH2 0x22C1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x17FC PUSH1 0xCF PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH2 0x237F JUMP JUMPDEST SWAP1 POP DUP4 DUP7 LT ISZERO DUP1 ISZERO PUSH2 0x180E JUMPI POP DUP1 DUP7 LT ISZERO JUMPDEST ISZERO PUSH2 0x1829 JUMPI DUP7 DUP7 PUSH1 0x0 SWAP10 POP SWAP10 POP SWAP10 POP POP POP POP POP POP POP POP PUSH2 0x1865 JUMP JUMPDEST DUP6 DUP5 LT ISZERO DUP1 ISZERO PUSH2 0x1839 JUMPI POP DUP1 DUP5 LT ISZERO JUMPDEST ISZERO PUSH2 0x1854 JUMPI DUP5 DUP5 PUSH1 0x0 SWAP10 POP SWAP10 POP SWAP10 POP POP POP POP POP POP POP POP PUSH2 0x1865 JUMP JUMPDEST DUP3 DUP3 DUP3 SWAP10 POP SWAP10 POP SWAP10 POP POP POP POP POP POP POP POP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP6 MLOAD EQ PUSH2 0x1C32 JUMPI PUSH1 0x0 DUP6 PUSH1 0x1 DUP8 MLOAD PUSH2 0x1889 SWAP2 SWAP1 PUSH2 0x352A JUMP JUMPDEST DUP2 MLOAD DUP2 LT PUSH2 0x189A JUMPI PUSH2 0x1899 PUSH2 0x3ADC JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x0 PUSH2 0x18CF ADDRESS DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1C3B SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD06CA61F DUP8 DUP11 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x190E SWAP3 SWAP2 SWAP1 PUSH2 0x3B0B JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x192B JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1954 SWAP2 SWAP1 PUSH2 0x3C5F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x1 DUP4 MLOAD PUSH2 0x1967 SWAP2 SWAP1 PUSH2 0x352A JUMP JUMPDEST DUP2 MLOAD DUP2 LT PUSH2 0x1978 JUMPI PUSH2 0x1977 PUSH2 0x3ADC JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP DUP6 DUP2 LT ISZERO PUSH2 0x1A7B JUMPI PUSH2 0x19BB PUSH2 0x19B6 ADDRESS DUP13 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1C3B SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH2 0x2528 JUMP JUMPDEST PUSH2 0x19C4 DUP9 PUSH2 0x2528 JUMP JUMPDEST PUSH2 0x19CD DUP9 PUSH2 0x2528 JUMP JUMPDEST PUSH2 0x19D6 DUP5 PUSH2 0x2528 JUMP JUMPDEST PUSH2 0x1A1C DUP14 PUSH1 0x1 DUP16 MLOAD PUSH2 0x19E8 SWAP2 SWAP1 PUSH2 0x352A JUMP JUMPDEST DUP2 MLOAD DUP2 LT PUSH2 0x19F9 JUMPI PUSH2 0x19F8 PUSH2 0x3ADC JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x269A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1A30 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3E6B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A72 SWAP2 SWAP1 PUSH2 0x3F26 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1AC6 DUP9 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP13 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x2829 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x38ED1739 DUP9 DUP9 DUP13 ADDRESS PUSH2 0x3E8 TIMESTAMP PUSH2 0x1AF4 SWAP2 SWAP1 PUSH2 0x34B4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP7 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B14 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3F48 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1B33 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1B5C SWAP2 SWAP1 PUSH2 0x3C5F JUMP JUMPDEST POP PUSH2 0x1B89 DUP9 PUSH1 0x0 DUP13 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x2829 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1BB4 ADDRESS DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1C3B SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP1 POP PUSH2 0x1BC9 DUP5 DUP3 PUSH2 0x295F SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP6 POP PUSH1 0xCE PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1C2C JUMPI PUSH2 0x1C29 DUP7 PUSH2 0x2975 JUMP JUMPDEST SWAP6 POP JUMPDEST POP POP POP POP POP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 DUP4 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C76 SWAP2 SWAP1 PUSH2 0x308C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1C93 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 0x1CB7 SWAP2 SWAP1 PUSH2 0x3FA2 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD DUP7 DUP7 DUP7 PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x1CF3 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3FCF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP1 PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP PUSH1 0x40 MLOAD PUSH2 0x1D41 SWAP2 SWAP1 PUSH2 0x4042 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP7 GAS CALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1D7E JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1D83 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP DUP2 DUP1 ISZERO PUSH2 0x1DB1 JUMPI POP PUSH1 0x0 DUP2 MLOAD EQ DUP1 PUSH2 0x1DB0 JUMPI POP DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x1DAF SWAP2 SWAP1 PUSH2 0x4085 JUMP JUMPDEST JUMPDEST JUMPDEST PUSH2 0x1DF0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1DE7 SWAP1 PUSH2 0x40FE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x1E3C PUSH1 0xCC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x2C25 JUMP JUMPDEST SWAP1 POP PUSH2 0x1ECD PUSH1 0xCA PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xCC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x2829 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0xCA PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x49BDC2B8 DUP5 DUP7 PUSH1 0x0 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1F1F SWAP2 SWAP1 PUSH2 0x4159 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F4C SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3A0F JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1F66 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1F7A JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH2 0x1FEE PUSH1 0xCA PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH1 0xCC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x2829 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH2 0x2001 DUP5 DUP3 PUSH2 0x295F SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP6 DUP6 PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x203C SWAP3 SWAP2 SWAP1 PUSH2 0x4174 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP1 PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP PUSH1 0x40 MLOAD PUSH2 0x208A SWAP2 SWAP1 PUSH2 0x4042 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP7 GAS CALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x20C7 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x20CC JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP DUP2 DUP1 ISZERO PUSH2 0x20FA JUMPI POP PUSH1 0x0 DUP2 MLOAD EQ DUP1 PUSH2 0x20F9 JUMPI POP DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x20F8 SWAP2 SWAP1 PUSH2 0x4085 JUMP JUMPDEST JUMPDEST JUMPDEST PUSH2 0x2139 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2130 SWAP1 PUSH2 0x41E9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x97 DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2199 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2190 SWAP1 PUSH2 0x381B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x21A9 PUSH2 0x21A4 PUSH2 0x2270 JUMP JUMPDEST PUSH2 0x1154 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x21FA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x21F1 SWAP1 PUSH2 0x381B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x65 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2266 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x225D SWAP1 PUSH2 0x381B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x97 DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x2280 PUSH2 0x7CC JUMP JUMPDEST PUSH2 0x22BF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x22B6 SWAP1 PUSH2 0x4255 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xD06CA61F DUP7 DUP7 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x22FF SWAP3 SWAP2 SWAP1 PUSH2 0x3B0B JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x231C JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x0 DUP3 RETURNDATACOPY RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2345 SWAP2 SWAP1 PUSH2 0x3C5F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x1 DUP4 MLOAD PUSH2 0x2358 SWAP2 SWAP1 PUSH2 0x352A JUMP JUMPDEST DUP2 MLOAD DUP2 LT PUSH2 0x2369 JUMPI PUSH2 0x2368 PUSH2 0x3ADC JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP DUP1 SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xFC0C546A PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x23CD 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 0x23F1 SWAP2 SWAP1 PUSH2 0x34FD JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x769A48D9 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2440 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 0x2464 SWAP2 SWAP1 PUSH2 0x3FA2 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x24E5 DUP6 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x313CE567 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x24B7 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 0x24DB SWAP2 SWAP1 PUSH2 0x42A1 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x12 PUSH2 0x2CA8 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 DUP4 DUP4 PUSH2 0x24FE SWAP2 SWAP1 PUSH2 0x42CE JUMP JUMPDEST PUSH2 0x2508 SWAP2 SWAP1 PUSH2 0x3A7C JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 DUP4 PUSH2 0x2518 SWAP2 SWAP1 PUSH2 0x352A JUMP JUMPDEST SWAP1 POP DUP1 SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 DUP2 SUB PUSH2 0x2575 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP2 POP POP PUSH2 0x2695 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x25A7 JUMPI DUP1 DUP1 PUSH2 0x2590 SWAP1 PUSH2 0x4310 JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x25A0 SWAP2 SWAP1 PUSH2 0x3A7C JUMP JUMPDEST SWAP2 POP PUSH2 0x257D JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x25C3 JUMPI PUSH2 0x25C2 PUSH2 0x3AAD JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x25F5 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP5 EQ PUSH2 0x268D JUMPI PUSH1 0xA DUP5 PUSH2 0x260E SWAP2 SWAP1 PUSH2 0x4358 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x261A SWAP2 SWAP1 PUSH2 0x34B4 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 PUSH1 0x1 DUP5 PUSH2 0x262B SWAP2 SWAP1 PUSH2 0x352A JUMP JUMPDEST DUP2 MLOAD DUP2 LT PUSH2 0x263C JUMPI PUSH2 0x263B PUSH2 0x3ADC JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP5 PUSH2 0x2678 SWAP2 SWAP1 PUSH2 0x3A7C JUMP JUMPDEST SWAP4 POP DUP2 DUP1 PUSH2 0x2685 SWAP1 PUSH2 0x4389 JUMP JUMPDEST SWAP3 POP POP PUSH2 0x25F9 JUMP JUMPDEST DUP1 SWAP5 POP POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x28 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x26B9 JUMPI PUSH2 0x26B8 PUSH2 0x3AAD JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x26EB JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x14 DUP2 LT ISZERO PUSH2 0x2800 JUMPI PUSH1 0x0 DUP2 PUSH1 0x13 PUSH2 0x2709 SWAP2 SWAP1 PUSH2 0x352A JUMP JUMPDEST PUSH1 0x8 PUSH2 0x2715 SWAP2 SWAP1 PUSH2 0x42CE JUMP JUMPDEST DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 SHR SWAP1 POP PUSH1 0x0 DUP1 PUSH2 0x273C DUP4 PUSH2 0x2D07 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 DUP6 DUP6 PUSH1 0x2 PUSH2 0x274F SWAP2 SWAP1 PUSH2 0x42CE JUMP JUMPDEST DUP2 MLOAD DUP2 LT PUSH2 0x2760 JUMPI PUSH2 0x275F PUSH2 0x3ADC JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP DUP1 DUP6 PUSH1 0x1 DUP7 PUSH1 0x2 PUSH2 0x27A0 SWAP2 SWAP1 PUSH2 0x42CE JUMP JUMPDEST PUSH2 0x27AA SWAP2 SWAP1 PUSH2 0x34B4 JUMP JUMPDEST DUP2 MLOAD DUP2 LT PUSH2 0x27BB JUMPI PUSH2 0x27BA PUSH2 0x3ADC JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP POP POP POP DUP1 DUP1 PUSH2 0x27F8 SWAP1 PUSH2 0x4310 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x26F1 JUMP JUMPDEST POP DUP1 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2812 SWAP2 SWAP1 PUSH2 0x43FE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x95EA7B3 DUP6 DUP6 PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x285B SWAP3 SWAP2 SWAP1 PUSH2 0x4174 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP1 PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP PUSH1 0x40 MLOAD PUSH2 0x28A9 SWAP2 SWAP1 PUSH2 0x4042 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP7 GAS CALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x28E6 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x28EB JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP DUP2 DUP1 ISZERO PUSH2 0x2919 JUMPI POP PUSH1 0x0 DUP2 MLOAD EQ DUP1 PUSH2 0x2918 JUMPI POP DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x2917 SWAP2 SWAP1 PUSH2 0x4085 JUMP JUMPDEST JUMPDEST JUMPDEST PUSH2 0x2958 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x294F SWAP1 PUSH2 0x446C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP4 PUSH2 0x296D SWAP2 SWAP1 PUSH2 0x352A JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xCE PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x95EA7B3 PUSH1 0xCF PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x29F6 SWAP3 SWAP2 SWAP1 PUSH2 0x4174 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2A15 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 0x2A39 SWAP2 SWAP1 PUSH2 0x4085 JUMP JUMPDEST POP PUSH1 0x0 PUSH1 0xCC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2A97 SWAP2 SWAP1 PUSH2 0x308C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2AB4 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 0x2AD8 SWAP2 SWAP1 PUSH2 0x3FA2 JUMP JUMPDEST SWAP1 POP PUSH1 0xCF PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x40853DCE ADDRESS DUP6 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2B37 SWAP3 SWAP2 SWAP1 PUSH2 0x4174 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2B51 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2B65 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x0 PUSH1 0xCC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2BC6 SWAP2 SWAP1 PUSH2 0x308C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2BE3 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 0x2C07 SWAP2 SWAP1 PUSH2 0x3FA2 JUMP JUMPDEST SWAP1 POP PUSH2 0x2C1C DUP3 DUP3 PUSH2 0x295F SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP3 POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2C60 SWAP2 SWAP1 PUSH2 0x308C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2C7D 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 0x2CA1 SWAP2 SWAP1 PUSH2 0x3FA2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x2CDA JUMPI DUP2 DUP4 PUSH2 0x2CBE SWAP2 SWAP1 PUSH2 0x352A JUMP JUMPDEST PUSH1 0xA PUSH2 0x2CCA SWAP2 SWAP1 PUSH2 0x45BF JUMP JUMPDEST DUP5 PUSH2 0x2CD5 SWAP2 SWAP1 PUSH2 0x3A7C JUMP JUMPDEST PUSH2 0x2CFE JUMP JUMPDEST DUP3 DUP3 PUSH2 0x2CE6 SWAP2 SWAP1 PUSH2 0x352A JUMP JUMPDEST PUSH1 0xA PUSH2 0x2CF2 SWAP2 SWAP1 PUSH2 0x45BF JUMP JUMPDEST DUP5 PUSH2 0x2CFD SWAP2 SWAP1 PUSH2 0x42CE JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x10 DUP5 PUSH2 0x2D19 SWAP2 SWAP1 PUSH2 0x460A JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x10 PUSH2 0x2D2A SWAP2 SWAP1 PUSH2 0x463B JUMP JUMPDEST DUP6 PUSH2 0x2D35 SWAP2 SWAP1 PUSH2 0x4678 JUMP JUMPDEST SWAP1 POP PUSH1 0xA DUP3 PUSH1 0xFF AND LT PUSH2 0x2D57 JUMPI PUSH1 0x57 DUP3 PUSH2 0x2D4F SWAP2 SWAP1 PUSH2 0x46AD JUMP JUMPDEST PUSH1 0xF8 SHL PUSH2 0x2D68 JUMP JUMPDEST PUSH1 0x30 DUP3 PUSH2 0x2D64 SWAP2 SWAP1 PUSH2 0x46AD JUMP JUMPDEST PUSH1 0xF8 SHL JUMPDEST SWAP4 POP PUSH1 0xA DUP2 PUSH1 0xFF AND LT PUSH2 0x2D8A JUMPI PUSH1 0x57 DUP2 PUSH2 0x2D82 SWAP2 SWAP1 PUSH2 0x46AD JUMP JUMPDEST PUSH1 0xF8 SHL PUSH2 0x2D9B JUMP JUMPDEST PUSH1 0x30 DUP2 PUSH2 0x2D97 SWAP2 SWAP1 PUSH2 0x46AD JUMP JUMPDEST PUSH1 0xF8 SHL JUMPDEST SWAP3 POP POP POP SWAP2 POP SWAP2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2E50 DUP2 PUSH2 0x2E1B JUMP JUMPDEST DUP2 EQ PUSH2 0x2E5B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2E6D DUP2 PUSH2 0x2E47 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2E89 JUMPI PUSH2 0x2E88 PUSH2 0x2E11 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2E97 DUP5 DUP3 DUP6 ADD PUSH2 0x2E5E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2EB5 DUP2 PUSH2 0x2EA0 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2ED0 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2EAC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2F01 DUP3 PUSH2 0x2ED6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2F11 DUP2 PUSH2 0x2EF6 JUMP JUMPDEST DUP2 EQ PUSH2 0x2F1C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2F2E DUP2 PUSH2 0x2F08 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x2F53 JUMPI PUSH2 0x2F52 PUSH2 0x2E11 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2F61 DUP11 DUP3 DUP12 ADD PUSH2 0x2F1F JUMP JUMPDEST SWAP8 POP POP PUSH1 0x20 PUSH2 0x2F72 DUP11 DUP3 DUP12 ADD PUSH2 0x2F1F JUMP JUMPDEST SWAP7 POP POP PUSH1 0x40 PUSH2 0x2F83 DUP11 DUP3 DUP12 ADD PUSH2 0x2F1F JUMP JUMPDEST SWAP6 POP POP PUSH1 0x60 PUSH2 0x2F94 DUP11 DUP3 DUP12 ADD PUSH2 0x2F1F JUMP JUMPDEST SWAP5 POP POP PUSH1 0x80 PUSH2 0x2FA5 DUP11 DUP3 DUP12 ADD PUSH2 0x2F1F JUMP JUMPDEST SWAP4 POP POP PUSH1 0xA0 PUSH2 0x2FB6 DUP11 DUP3 DUP12 ADD PUSH2 0x2F1F JUMP JUMPDEST SWAP3 POP POP PUSH1 0xC0 PUSH2 0x2FC7 DUP11 DUP3 DUP12 ADD PUSH2 0x2F1F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FFB PUSH2 0x2FF6 PUSH2 0x2FF1 DUP5 PUSH2 0x2ED6 JUMP JUMPDEST PUSH2 0x2FD6 JUMP JUMPDEST PUSH2 0x2ED6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x300D DUP3 PUSH2 0x2FE0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x301F DUP3 PUSH2 0x3002 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x302F DUP2 PUSH2 0x3014 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x304A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3026 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3066 JUMPI PUSH2 0x3065 PUSH2 0x2E11 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3074 DUP5 DUP3 DUP6 ADD PUSH2 0x2F1F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3086 DUP2 PUSH2 0x2EF6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x30A1 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x307D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x30BA DUP2 PUSH2 0x30A7 JUMP JUMPDEST DUP2 EQ PUSH2 0x30C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x30D7 DUP2 PUSH2 0x30B1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x3102 JUMPI PUSH2 0x3101 PUSH2 0x30DD JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x311F JUMPI PUSH2 0x311E PUSH2 0x30E2 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x313B JUMPI PUSH2 0x313A PUSH2 0x30E7 JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x315E JUMPI PUSH2 0x315D PUSH2 0x2E11 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x316C DUP9 DUP3 DUP10 ADD PUSH2 0x2F1F JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0x317D DUP9 DUP3 DUP10 ADD PUSH2 0x30C8 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 PUSH2 0x318E DUP9 DUP3 DUP10 ADD PUSH2 0x30C8 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x31AF JUMPI PUSH2 0x31AE PUSH2 0x2E16 JUMP JUMPDEST JUMPDEST PUSH2 0x31BB DUP9 DUP3 DUP10 ADD PUSH2 0x30EC JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x31D5 DUP3 PUSH2 0x3002 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x31E5 DUP2 PUSH2 0x31CA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3200 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x31DC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E747261637420697320616C726561 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x647920696E697469616C697A6564000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3273 PUSH1 0x2E DUP4 PUSH2 0x3206 JUMP JUMPDEST SWAP2 POP PUSH2 0x327E DUP3 PUSH2 0x3217 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x32A2 DUP2 PUSH2 0x3266 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32DB PUSH2 0x32D6 PUSH2 0x32D1 DUP5 PUSH2 0x32A9 JUMP JUMPDEST PUSH2 0x2FD6 JUMP JUMPDEST PUSH2 0x32B3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x32EB DUP2 PUSH2 0x32C0 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3306 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x32E2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x666C6173684C656E64696E6743616C6C3A20696E76616C69642073656E646572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3342 PUSH1 0x20 DUP4 PUSH2 0x3206 JUMP JUMPDEST SWAP2 POP PUSH2 0x334D DUP3 PUSH2 0x330C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3371 DUP2 PUSH2 0x3335 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3383 DUP3 PUSH2 0x2ED6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3393 DUP2 PUSH2 0x3378 JUMP JUMPDEST DUP2 EQ PUSH2 0x339E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x33B0 DUP2 PUSH2 0x338A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33C1 DUP3 PUSH2 0x2EF6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x33D1 DUP2 PUSH2 0x33B6 JUMP JUMPDEST DUP2 EQ PUSH2 0x33DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x33EE DUP2 PUSH2 0x33C8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33FF DUP3 PUSH2 0x2EF6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x340F DUP2 PUSH2 0x33F4 JUMP JUMPDEST DUP2 EQ PUSH2 0x341A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x342C DUP2 PUSH2 0x3406 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x344B JUMPI PUSH2 0x344A PUSH2 0x2E11 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3459 DUP7 DUP3 DUP8 ADD PUSH2 0x33A1 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x346A DUP7 DUP3 DUP8 ADD PUSH2 0x33DF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x347B DUP7 DUP3 DUP8 ADD PUSH2 0x341D JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x34BF DUP3 PUSH2 0x30A7 JUMP JUMPDEST SWAP2 POP PUSH2 0x34CA DUP4 PUSH2 0x30A7 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x34E2 JUMPI PUSH2 0x34E1 PUSH2 0x3485 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x34F7 DUP2 PUSH2 0x2F08 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3513 JUMPI PUSH2 0x3512 PUSH2 0x2E11 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3521 DUP5 DUP3 DUP6 ADD PUSH2 0x34E8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3535 DUP3 PUSH2 0x30A7 JUMP JUMPDEST SWAP2 POP PUSH2 0x3540 DUP4 PUSH2 0x30A7 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x3558 JUMPI PUSH2 0x3557 PUSH2 0x3485 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x666C6173684C656E64696E6743616C6C3A206E6F7420656E6F75676820746F20 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265706179206465627400000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35BA PUSH1 0x2A DUP4 PUSH2 0x3206 JUMP JUMPDEST SWAP2 POP PUSH2 0x35C5 DUP3 PUSH2 0x355E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x35E9 DUP2 PUSH2 0x35AD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x35F9 DUP2 PUSH2 0x30A7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3634 DUP2 PUSH2 0x2EF6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3646 DUP4 DUP4 PUSH2 0x362B JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x366A DUP3 PUSH2 0x35FF JUMP JUMPDEST PUSH2 0x3674 DUP2 DUP6 PUSH2 0x360A JUMP JUMPDEST SWAP4 POP PUSH2 0x367F DUP4 PUSH2 0x361B JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x36B0 JUMPI DUP2 MLOAD PUSH2 0x3697 DUP9 DUP3 PUSH2 0x363A JUMP JUMPDEST SWAP8 POP PUSH2 0x36A2 DUP4 PUSH2 0x3652 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x3683 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x36D2 PUSH1 0x0 DUP4 ADD DUP9 PUSH2 0x35F0 JUMP JUMPDEST PUSH2 0x36DF PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x35F0 JUMP JUMPDEST PUSH2 0x36EC PUSH1 0x40 DUP4 ADD DUP7 PUSH2 0x35F0 JUMP JUMPDEST PUSH2 0x36F9 PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x35F0 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x80 DUP4 ADD MSTORE PUSH2 0x370B DUP2 DUP5 PUSH2 0x365F JUMP JUMPDEST SWAP1 POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3773 PUSH1 0x26 DUP4 PUSH2 0x3206 JUMP JUMPDEST SWAP2 POP PUSH2 0x377E DUP3 PUSH2 0x3717 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x37A2 DUP2 PUSH2 0x3766 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E697469616C697A61626C653A20636F6E7472616374206973206E6F742069 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E697469616C697A696E67000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3805 PUSH1 0x2B DUP4 PUSH2 0x3206 JUMP JUMPDEST SWAP2 POP PUSH2 0x3810 DUP3 PUSH2 0x37A9 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3834 DUP2 PUSH2 0x37F8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3871 PUSH1 0x20 DUP4 PUSH2 0x3206 JUMP JUMPDEST SWAP2 POP PUSH2 0x387C DUP3 PUSH2 0x383B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x38A0 DUP2 PUSH2 0x3864 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x38DD PUSH1 0x10 DUP4 PUSH2 0x3206 JUMP JUMPDEST SWAP2 POP PUSH2 0x38E8 DUP3 PUSH2 0x38A7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x390C DUP2 PUSH2 0x38D0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3949 PUSH1 0x1F DUP4 PUSH2 0x3206 JUMP JUMPDEST SWAP2 POP PUSH2 0x3954 DUP3 PUSH2 0x3913 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3978 DUP2 PUSH2 0x393C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x39B9 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x399E JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x39E1 DUP3 PUSH2 0x397F JUMP JUMPDEST PUSH2 0x39EB DUP2 DUP6 PUSH2 0x398A JUMP JUMPDEST SWAP4 POP PUSH2 0x39FB DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x399B JUMP JUMPDEST PUSH2 0x3A04 DUP2 PUSH2 0x39C5 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3A24 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x307D JUMP JUMPDEST PUSH2 0x3A31 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x35F0 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x3A43 DUP2 DUP5 PUSH2 0x39D6 JUMP JUMPDEST SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x3A87 DUP3 PUSH2 0x30A7 JUMP JUMPDEST SWAP2 POP PUSH2 0x3A92 DUP4 PUSH2 0x30A7 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x3AA2 JUMPI PUSH2 0x3AA1 PUSH2 0x3A4D JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x3B20 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x35F0 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x3B32 DUP2 DUP5 PUSH2 0x365F JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x3B44 DUP3 PUSH2 0x39C5 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x3B63 JUMPI PUSH2 0x3B62 PUSH2 0x3AAD JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B76 PUSH2 0x2E07 JUMP JUMPDEST SWAP1 POP PUSH2 0x3B82 DUP3 DUP3 PUSH2 0x3B3B JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x3BA2 JUMPI PUSH2 0x3BA1 PUSH2 0x3AAD JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x3BC2 DUP2 PUSH2 0x30B1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3BDB PUSH2 0x3BD6 DUP5 PUSH2 0x3B87 JUMP JUMPDEST PUSH2 0x3B6C JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x20 DUP5 MUL DUP4 ADD DUP6 DUP2 GT ISZERO PUSH2 0x3BFE JUMPI PUSH2 0x3BFD PUSH2 0x30E7 JUMP JUMPDEST JUMPDEST DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x3C27 JUMPI DUP1 PUSH2 0x3C13 DUP9 DUP3 PUSH2 0x3BB3 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x3C00 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x3C46 JUMPI PUSH2 0x3C45 PUSH2 0x30DD JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH2 0x3C56 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x3BC8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3C75 JUMPI PUSH2 0x3C74 PUSH2 0x2E11 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3C93 JUMPI PUSH2 0x3C92 PUSH2 0x2E16 JUMP JUMPDEST JUMPDEST PUSH2 0x3C9F DUP5 DUP3 DUP6 ADD PUSH2 0x3C31 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x20636F6C6C61746572616C5265636569766564203A2000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3CE9 PUSH1 0x16 DUP4 PUSH2 0x3CA8 JUMP JUMPDEST SWAP2 POP PUSH2 0x3CF4 DUP3 PUSH2 0x3CB3 JUMP JUMPDEST PUSH1 0x16 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D15 DUP3 PUSH2 0x3CFF JUMP JUMPDEST PUSH2 0x3D1F DUP2 DUP6 PUSH2 0x3CA8 JUMP JUMPDEST SWAP4 POP PUSH2 0x3D2F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x399B JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x20636F6C6C61746572616C6C546F53656C6C203A200000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D71 PUSH1 0x15 DUP4 PUSH2 0x3CA8 JUMP JUMPDEST SWAP2 POP PUSH2 0x3D7C DUP3 PUSH2 0x3D3B JUMP JUMPDEST PUSH1 0x15 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x20616D6F756E744E6565646564203A2000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3DBD PUSH1 0x10 DUP4 PUSH2 0x3CA8 JUMP JUMPDEST SWAP2 POP PUSH2 0x3DC8 DUP3 PUSH2 0x3D87 JUMP JUMPDEST PUSH1 0x10 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x2061637475616C416D6F756E745265636569766564203A200000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E09 PUSH1 0x18 DUP4 PUSH2 0x3CA8 JUMP JUMPDEST SWAP2 POP PUSH2 0x3E14 DUP3 PUSH2 0x3DD3 JUMP JUMPDEST PUSH1 0x18 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x206F757470757420746F6B656E203A2000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E55 PUSH1 0x10 DUP4 PUSH2 0x3CA8 JUMP JUMPDEST SWAP2 POP PUSH2 0x3E60 DUP3 PUSH2 0x3E1F JUMP JUMPDEST PUSH1 0x10 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E76 DUP3 PUSH2 0x3CDC JUMP JUMPDEST SWAP2 POP PUSH2 0x3E82 DUP3 DUP9 PUSH2 0x3D0A JUMP JUMPDEST SWAP2 POP PUSH2 0x3E8D DUP3 PUSH2 0x3D64 JUMP JUMPDEST SWAP2 POP PUSH2 0x3E99 DUP3 DUP8 PUSH2 0x3D0A JUMP JUMPDEST SWAP2 POP PUSH2 0x3EA4 DUP3 PUSH2 0x3DB0 JUMP JUMPDEST SWAP2 POP PUSH2 0x3EB0 DUP3 DUP7 PUSH2 0x3D0A JUMP JUMPDEST SWAP2 POP PUSH2 0x3EBB DUP3 PUSH2 0x3DFC JUMP JUMPDEST SWAP2 POP PUSH2 0x3EC7 DUP3 DUP6 PUSH2 0x3D0A JUMP JUMPDEST SWAP2 POP PUSH2 0x3ED2 DUP3 PUSH2 0x3E48 JUMP JUMPDEST SWAP2 POP PUSH2 0x3EDE DUP3 DUP5 PUSH2 0x3D0A JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3EF8 DUP3 PUSH2 0x3CFF JUMP JUMPDEST PUSH2 0x3F02 DUP2 DUP6 PUSH2 0x3206 JUMP JUMPDEST SWAP4 POP PUSH2 0x3F12 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x399B JUMP JUMPDEST PUSH2 0x3F1B DUP2 PUSH2 0x39C5 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3F40 DUP2 DUP5 PUSH2 0x3EED JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x3F5D PUSH1 0x0 DUP4 ADD DUP9 PUSH2 0x35F0 JUMP JUMPDEST PUSH2 0x3F6A PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x35F0 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x3F7C DUP2 DUP7 PUSH2 0x365F JUMP JUMPDEST SWAP1 POP PUSH2 0x3F8B PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x307D JUMP JUMPDEST PUSH2 0x3F98 PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0x35F0 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3FB8 JUMPI PUSH2 0x3FB7 PUSH2 0x2E11 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3FC6 DUP5 DUP3 DUP6 ADD PUSH2 0x3BB3 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x3FE4 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x307D JUMP JUMPDEST PUSH2 0x3FF1 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x307D JUMP JUMPDEST PUSH2 0x3FFE PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x35F0 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x401C DUP3 PUSH2 0x397F JUMP JUMPDEST PUSH2 0x4026 DUP2 DUP6 PUSH2 0x4006 JUMP JUMPDEST SWAP4 POP PUSH2 0x4036 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x399B JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x404E DUP3 DUP5 PUSH2 0x4011 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x4062 DUP2 PUSH2 0x2EA0 JUMP JUMPDEST DUP2 EQ PUSH2 0x406D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x407F DUP2 PUSH2 0x4059 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x409B JUMPI PUSH2 0x409A PUSH2 0x2E11 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x40A9 DUP5 DUP3 DUP6 ADD PUSH2 0x4070 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x21736166655472616E7366657246726F6D000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x40E8 PUSH1 0x11 DUP4 PUSH2 0x3206 JUMP JUMPDEST SWAP2 POP PUSH2 0x40F3 DUP3 PUSH2 0x40B2 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x4117 DUP2 PUSH2 0x40DB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4143 PUSH2 0x413E PUSH2 0x4139 DUP5 PUSH2 0x411E JUMP JUMPDEST PUSH2 0x2FD6 JUMP JUMPDEST PUSH2 0x32B3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x4153 DUP2 PUSH2 0x4128 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x416E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x414A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x4189 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x307D JUMP JUMPDEST PUSH2 0x4196 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x35F0 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x21736166655472616E7366657200000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x41D3 PUSH1 0xD DUP4 PUSH2 0x3206 JUMP JUMPDEST SWAP2 POP PUSH2 0x41DE DUP3 PUSH2 0x419D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x4202 DUP2 PUSH2 0x41C6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x423F PUSH1 0x14 DUP4 PUSH2 0x3206 JUMP JUMPDEST SWAP2 POP PUSH2 0x424A DUP3 PUSH2 0x4209 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x426E DUP2 PUSH2 0x4232 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x427E DUP2 PUSH2 0x32B3 JUMP JUMPDEST DUP2 EQ PUSH2 0x4289 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x429B DUP2 PUSH2 0x4275 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x42B7 JUMPI PUSH2 0x42B6 PUSH2 0x2E11 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x42C5 DUP5 DUP3 DUP6 ADD PUSH2 0x428C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x42D9 DUP3 PUSH2 0x30A7 JUMP JUMPDEST SWAP2 POP PUSH2 0x42E4 DUP4 PUSH2 0x30A7 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0x42F2 DUP2 PUSH2 0x30A7 JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH2 0x4309 JUMPI PUSH2 0x4308 PUSH2 0x3485 JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x431B DUP3 PUSH2 0x30A7 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x434D JUMPI PUSH2 0x434C PUSH2 0x3485 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4363 DUP3 PUSH2 0x30A7 JUMP JUMPDEST SWAP2 POP PUSH2 0x436E DUP4 PUSH2 0x30A7 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x437E JUMPI PUSH2 0x437D PUSH2 0x3A4D JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4394 DUP3 PUSH2 0x30A7 JUMP JUMPDEST SWAP2 POP PUSH1 0x0 DUP3 SUB PUSH2 0x43A7 JUMPI PUSH2 0x43A6 PUSH2 0x3485 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 SUB SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x3078000000000000000000000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x43E8 PUSH1 0x2 DUP4 PUSH2 0x3CA8 JUMP JUMPDEST SWAP2 POP PUSH2 0x43F3 DUP3 PUSH2 0x43B2 JUMP JUMPDEST PUSH1 0x2 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4409 DUP3 PUSH2 0x43DB JUMP JUMPDEST SWAP2 POP PUSH2 0x4415 DUP3 DUP5 PUSH2 0x4011 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x2173616665417070726F76650000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4456 PUSH1 0xC DUP4 PUSH2 0x3206 JUMP JUMPDEST SWAP2 POP PUSH2 0x4461 DUP3 PUSH2 0x4420 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x4485 DUP2 PUSH2 0x4449 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x1 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 SWAP2 POP DUP4 SWAP1 POP JUMPDEST PUSH1 0x1 DUP6 GT ISZERO PUSH2 0x44E3 JUMPI DUP1 DUP7 DIV DUP2 GT ISZERO PUSH2 0x44BF JUMPI PUSH2 0x44BE PUSH2 0x3485 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP6 AND ISZERO PUSH2 0x44CE JUMPI DUP1 DUP3 MUL SWAP2 POP JUMPDEST DUP1 DUP2 MUL SWAP1 POP PUSH2 0x44DC DUP6 PUSH2 0x448C JUMP JUMPDEST SWAP5 POP PUSH2 0x44A3 JUMP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x44FC JUMPI PUSH1 0x1 SWAP1 POP PUSH2 0x45B8 JUMP JUMPDEST DUP2 PUSH2 0x450A JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0x45B8 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x4520 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x452A JUMPI PUSH2 0x4559 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x45B8 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x453C JUMPI PUSH2 0x453B PUSH2 0x3485 JUMP JUMPDEST JUMPDEST DUP4 PUSH1 0x2 EXP SWAP2 POP DUP5 DUP3 GT ISZERO PUSH2 0x4553 JUMPI PUSH2 0x4552 PUSH2 0x3485 JUMP JUMPDEST JUMPDEST POP PUSH2 0x45B8 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x458E JUMPI DUP3 DUP3 EXP SWAP1 POP DUP4 DUP2 GT ISZERO PUSH2 0x4589 JUMPI PUSH2 0x4588 PUSH2 0x3485 JUMP JUMPDEST JUMPDEST PUSH2 0x45B8 JUMP JUMPDEST PUSH2 0x459B DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x4499 JUMP JUMPDEST SWAP3 POP SWAP1 POP DUP2 DUP5 DIV DUP2 GT ISZERO PUSH2 0x45B2 JUMPI PUSH2 0x45B1 PUSH2 0x3485 JUMP JUMPDEST JUMPDEST DUP2 DUP2 MUL SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x45CA DUP3 PUSH2 0x30A7 JUMP JUMPDEST SWAP2 POP PUSH2 0x45D5 DUP4 PUSH2 0x30A7 JUMP JUMPDEST SWAP3 POP PUSH2 0x4602 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 DUP5 PUSH2 0x44EC JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4615 DUP3 PUSH2 0x32B3 JUMP JUMPDEST SWAP2 POP PUSH2 0x4620 DUP4 PUSH2 0x32B3 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x4630 JUMPI PUSH2 0x462F PUSH2 0x3A4D JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4646 DUP3 PUSH2 0x32B3 JUMP JUMPDEST SWAP2 POP PUSH2 0x4651 DUP4 PUSH2 0x32B3 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0x465F DUP2 PUSH2 0x32B3 JUMP JUMPDEST SWAP2 POP DUP1 DUP3 EQ PUSH2 0x4671 JUMPI PUSH2 0x4670 PUSH2 0x3485 JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4683 DUP3 PUSH2 0x32B3 JUMP JUMPDEST SWAP2 POP PUSH2 0x468E DUP4 PUSH2 0x32B3 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x46A7 JUMPI PUSH2 0x46A6 PUSH2 0x3485 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x46B8 DUP3 PUSH2 0x32B3 JUMP JUMPDEST SWAP2 POP PUSH2 0x46C3 DUP4 PUSH2 0x32B3 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x46DC JUMPI PUSH2 0x46DB PUSH2 0x3485 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH9 0xB31F5D50E7C02EE0C6 0xD7 SWAP7 0xC BYTE PUSH31 0x877E4356E3C1D07A8DB8F26443441C268A64736F6C63430008110033000000 ", | |
| "sourceMap": "54047:11257:7:-:0;;;;;;;;;;;;;;;;;;;" | |
| }, | |
| "deployedBytecode": { | |
| "functionDebugData": { | |
| "@_5956": { | |
| "entryPoint": null, | |
| "id": 5956, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@_5963": { | |
| "entryPoint": null, | |
| "id": 5963, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@__Ownable_init_26": { | |
| "entryPoint": 3870, | |
| "id": 26, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@__Ownable_init_unchained_37": { | |
| "entryPoint": 8522, | |
| "id": 37, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@__Pausable_init_331": { | |
| "entryPoint": 3959, | |
| "id": 331, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@__Pausable_init_unchained_341": { | |
| "entryPoint": 8619, | |
| "id": 341, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@__ReentrancyGuard_init_450": { | |
| "entryPoint": 4048, | |
| "id": 450, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@__ReentrancyGuard_init_unchained_460": { | |
| "entryPoint": 8727, | |
| "id": 460, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@_addressToASCIIBytes_3615": { | |
| "entryPoint": 9882, | |
| "id": 3615, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "@_checkOwner_68": { | |
| "entryPoint": 4137, | |
| "id": 68, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@_computeMostProfitablePath_5576": { | |
| "entryPoint": 5121, | |
| "id": 5576, | |
| "parameterSlots": 3, | |
| "returnSlots": 3 | |
| }, | |
| "@_convertDecimals_2372": { | |
| "entryPoint": 11432, | |
| "id": 2372, | |
| "parameterSlots": 3, | |
| "returnSlots": 1 | |
| }, | |
| "@_depositStablecoin_5920": { | |
| "entryPoint": 7672, | |
| "id": 5920, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "@_getDexAmountOut_5612": { | |
| "entryPoint": 8897, | |
| "id": 5612, | |
| "parameterSlots": 3, | |
| "returnSlots": 1 | |
| }, | |
| "@_getStableSwapTokenToStablecoinAmountOut_2335": { | |
| "entryPoint": 9087, | |
| "id": 2335, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "@_msgSender_868": { | |
| "entryPoint": 8816, | |
| "id": 868, | |
| "parameterSlots": 0, | |
| "returnSlots": 1 | |
| }, | |
| "@_nonReentrantAfter_494": { | |
| "entryPoint": 8512, | |
| "id": 494, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@_nonReentrantBefore_486": { | |
| "entryPoint": 4733, | |
| "id": 486, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@_pause_405": { | |
| "entryPoint": 4634, | |
| "id": 405, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@_requireNotPaused_378": { | |
| "entryPoint": 4362, | |
| "id": 378, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@_requirePaused_389": { | |
| "entryPoint": 8824, | |
| "id": 389, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@_retrieveCollateral_5417": { | |
| "entryPoint": 4812, | |
| "id": 5417, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "@_sellCollateral_5804": { | |
| "entryPoint": 6254, | |
| "id": 5804, | |
| "parameterSlots": 5, | |
| "returnSlots": 1 | |
| }, | |
| "@_stableSwapTokenToStablecoin_5862": { | |
| "entryPoint": 10613, | |
| "id": 5862, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "@_transferOwnership_125": { | |
| "entryPoint": 4436, | |
| "id": 125, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "@_uint8ConvertToAscii_4581": { | |
| "entryPoint": 11527, | |
| "id": 4581, | |
| "parameterSlots": 1, | |
| "returnSlots": 2 | |
| }, | |
| "@_uintToASCIIBytes_3534": { | |
| "entryPoint": 9512, | |
| "id": 3534, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "@_unpause_421": { | |
| "entryPoint": 4263, | |
| "id": 421, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@balanceOf_4626": { | |
| "entryPoint": 7227, | |
| "id": 4626, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "@bookKeeper_5085": { | |
| "entryPoint": 3552, | |
| "id": 5085, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@div_1104": { | |
| "entryPoint": 5099, | |
| "id": 1104, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "@fathomStablecoin_5092": { | |
| "entryPoint": 3590, | |
| "id": 5092, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@fixedSpreadLiquidationStrategy_5090": { | |
| "entryPoint": 3759, | |
| "id": 5090, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@flashLendingCall_5382": { | |
| "entryPoint": 2175, | |
| "id": 5382, | |
| "parameterSlots": 5, | |
| "returnSlots": 0 | |
| }, | |
| "@initialize_5165": { | |
| "entryPoint": 1060, | |
| "id": 5165, | |
| "parameterSlots": 7, | |
| "returnSlots": 0 | |
| }, | |
| "@isContract_529": { | |
| "entryPoint": 3835, | |
| "id": 529, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "@myBalance_4609": { | |
| "entryPoint": 11301, | |
| "id": 4609, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "@owner_54": { | |
| "entryPoint": 2095, | |
| "id": 54, | |
| "parameterSlots": 0, | |
| "returnSlots": 1 | |
| }, | |
| "@pause_5174": { | |
| "entryPoint": 2077, | |
| "id": 5174, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@paused_366": { | |
| "entryPoint": 1996, | |
| "id": 366, | |
| "parameterSlots": 0, | |
| "returnSlots": 1 | |
| }, | |
| "@profitRecipient_5094": { | |
| "entryPoint": 2039, | |
| "id": 5094, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@renounceOwnership_82": { | |
| "entryPoint": 2019, | |
| "id": 82, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@safeApprove_4669": { | |
| "entryPoint": 10281, | |
| "id": 4669, | |
| "parameterSlots": 3, | |
| "returnSlots": 0 | |
| }, | |
| "@safeTransferFrom_4758": { | |
| "entryPoint": 7359, | |
| "id": 4758, | |
| "parameterSlots": 4, | |
| "returnSlots": 0 | |
| }, | |
| "@safeTransfer_4712": { | |
| "entryPoint": 8202, | |
| "id": 4712, | |
| "parameterSlots": 3, | |
| "returnSlots": 0 | |
| }, | |
| "@setProfitRecipient_5934": { | |
| "entryPoint": 1912, | |
| "id": 5934, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "@stableSwap_5098": { | |
| "entryPoint": 2137, | |
| "id": 5098, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@stablecoinAdapter_5088": { | |
| "entryPoint": 1874, | |
| "id": 5088, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@sub_1074": { | |
| "entryPoint": 10591, | |
| "id": 1074, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "@supportsInterface_5949": { | |
| "entryPoint": 954, | |
| "id": 5949, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "@transferOwnership_105": { | |
| "entryPoint": 3628, | |
| "id": 105, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "@unpause_5183": { | |
| "entryPoint": 1856, | |
| "id": 5183, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@usdToken_5096": { | |
| "entryPoint": 3797, | |
| "id": 5096, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "abi_decode_available_length_t_array$_t_uint256_$dyn_memory_ptr_fromMemory": { | |
| "entryPoint": 15304, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_t_address": { | |
| "entryPoint": 12063, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_t_address_fromMemory": { | |
| "entryPoint": 13544, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_t_address_payable": { | |
| "entryPoint": 13217, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_t_array$_t_uint256_$dyn_memory_ptr_fromMemory": { | |
| "entryPoint": 15409, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_t_bool_fromMemory": { | |
| "entryPoint": 16496, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_t_bytes4": { | |
| "entryPoint": 11870, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_t_bytes_calldata_ptr": { | |
| "entryPoint": 12524, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 2 | |
| }, | |
| "abi_decode_t_contract$_IGenericTokenAdapter_$1321": { | |
| "entryPoint": 13279, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_t_contract$_IUniswapV2Router02_$4973": { | |
| "entryPoint": 13341, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_t_uint256": { | |
| "entryPoint": 12488, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_t_uint256_fromMemory": { | |
| "entryPoint": 15283, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_t_uint8_fromMemory": { | |
| "entryPoint": 17036, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_tuple_t_address": { | |
| "entryPoint": 12368, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_tuple_t_address_fromMemory": { | |
| "entryPoint": 13565, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_tuple_t_address_payablet_contract$_IGenericTokenAdapter_$1321t_contract$_IUniswapV2Router02_$4973": { | |
| "entryPoint": 13362, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 3 | |
| }, | |
| "abi_decode_tuple_t_addresst_addresst_addresst_addresst_addresst_addresst_address": { | |
| "entryPoint": 12084, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 7 | |
| }, | |
| "abi_decode_tuple_t_addresst_uint256t_uint256t_bytes_calldata_ptr": { | |
| "entryPoint": 12610, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 5 | |
| }, | |
| "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory": { | |
| "entryPoint": 15455, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_tuple_t_bool_fromMemory": { | |
| "entryPoint": 16517, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_tuple_t_bytes4": { | |
| "entryPoint": 11891, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_tuple_t_uint256_fromMemory": { | |
| "entryPoint": 16290, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_tuple_t_uint8_fromMemory": { | |
| "entryPoint": 17057, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encodeUpdatedPos_t_address_to_t_address": { | |
| "entryPoint": 13882, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_address_to_t_address": { | |
| "entryPoint": 13867, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_encode_t_address_to_t_address_fromStack": { | |
| "entryPoint": 12413, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_encode_t_array$_t_address_$dyn_memory_ptr_to_t_array$_t_address_$dyn_memory_ptr_fromStack": { | |
| "entryPoint": 13919, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_bool_to_t_bool_fromStack": { | |
| "entryPoint": 11948, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": { | |
| "entryPoint": 14806, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack": { | |
| "entryPoint": 16401, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_contract$_IBookKeeper_$1806_to_t_address_fromStack": { | |
| "entryPoint": 12764, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_encode_t_contract$_IStablecoinAdapter_$1847_to_t_address_fromStack": { | |
| "entryPoint": 12326, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_encode_t_rational_0_by_1_to_t_uint8_fromStack": { | |
| "entryPoint": 16714, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_encode_t_rational_1_by_1_to_t_uint8_fromStack": { | |
| "entryPoint": 13026, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 16109, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": { | |
| "entryPoint": 15626, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 16946, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 14182, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_stringliteral_2c605e6a6ed7a1e5eb4f7cff468954c770c66cb58619696441d403b9f8209e9a_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 17481, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837_to_t_string_memory_ptr_nonPadded_inplace_fromStack": { | |
| "entryPoint": 17371, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_stringliteral_5ccb559a0902817f0fdb477e922e15ad1b5da687f0b86a877d8c5b1453fa4d77_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 13109, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 14544, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_stringliteral_6a802c5c9a85063d63c6dffc9b745b2d4de41da9dac3eea78318af5d8e0c428a_to_t_string_memory_ptr_nonPadded_inplace_fromStack": { | |
| "entryPoint": 15580, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_stringliteral_6ba74a2aa1422e1cf72544b996fc3d84147af5232bd1daa30700ee653d9b883a_to_t_string_memory_ptr_nonPadded_inplace_fromStack": { | |
| "entryPoint": 15944, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_stringliteral_776f466cf8de322ba491c853e406ae40203d73832dff11f4375ddefd5a2b9c63_to_t_string_memory_ptr_nonPadded_inplace_fromStack": { | |
| "entryPoint": 15868, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 12902, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_stringliteral_9252efacdf0e31a2a8d746ef5da0ea5199960f0bba313276d0bde3427446c5a8_to_t_string_memory_ptr_nonPadded_inplace_fromStack": { | |
| "entryPoint": 15716, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_stringliteral_946d5bd2dc961dfc58db89c7c958b7321c3c9fab35f25e2a5bd37fe563504408_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 16838, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 14436, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_stringliteral_c2c1c9fc9d0d36b12819e12abc4be9b954b8ba15aebb63d3f674449e85ea9a10_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 13741, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 14328, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_stringliteral_d8da93d0cc8f32917fee86e8ca39ef33dc6ccc3991b850bf227ad1875bf19fd0_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 16603, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 14652, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_stringliteral_eeec678fb0ab35db2b67999a45c01a5c46321e8cffa9118affbdffba95ffe08d_to_t_string_memory_ptr_nonPadded_inplace_fromStack": { | |
| "entryPoint": 15792, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_uint256_to_t_uint256_fromStack": { | |
| "entryPoint": 13808, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": { | |
| "entryPoint": 16450, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_packed_t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837_t_bytes_memory_ptr__to_t_string_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": { | |
| "entryPoint": 17406, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_packed_t_stringliteral_6a802c5c9a85063d63c6dffc9b745b2d4de41da9dac3eea78318af5d8e0c428a_t_string_memory_ptr_t_stringliteral_9252efacdf0e31a2a8d746ef5da0ea5199960f0bba313276d0bde3427446c5a8_t_string_memory_ptr_t_stringliteral_eeec678fb0ab35db2b67999a45c01a5c46321e8cffa9118affbdffba95ffe08d_t_string_memory_ptr_t_stringliteral_776f466cf8de322ba491c853e406ae40203d73832dff11f4375ddefd5a2b9c63_t_string_memory_ptr_t_stringliteral_6ba74a2aa1422e1cf72544b996fc3d84147af5232bd1daa30700ee653d9b883a_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": { | |
| "entryPoint": 15979, | |
| "id": null, | |
| "parameterSlots": 6, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": { | |
| "entryPoint": 12428, | |
| "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": 16335, | |
| "id": null, | |
| "parameterSlots": 4, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": { | |
| "entryPoint": 16756, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 14863, | |
| "id": null, | |
| "parameterSlots": 4, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": { | |
| "entryPoint": 11963, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_contract$_IBookKeeper_$1806__to_t_address__fromStack_reversed": { | |
| "entryPoint": 12779, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_contract$_IStablecoinAdapter_$1847__to_t_address__fromStack_reversed": { | |
| "entryPoint": 12341, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_rational_0_by_1__to_t_uint8__fromStack_reversed": { | |
| "entryPoint": 16729, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed": { | |
| "entryPoint": 13041, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 16166, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 16981, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 14217, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_stringliteral_2c605e6a6ed7a1e5eb4f7cff468954c770c66cb58619696441d403b9f8209e9a__to_t_string_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 17516, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_stringliteral_5ccb559a0902817f0fdb477e922e15ad1b5da687f0b86a877d8c5b1453fa4d77__to_t_string_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 13144, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 14579, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 12937, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_stringliteral_946d5bd2dc961dfc58db89c7c958b7321c3c9fab35f25e2a5bd37fe563504408__to_t_string_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 16873, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 14471, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_stringliteral_c2c1c9fc9d0d36b12819e12abc4be9b954b8ba15aebb63d3f674449e85ea9a10__to_t_string_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 13776, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b__to_t_string_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 14363, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_stringliteral_d8da93d0cc8f32917fee86e8ca39ef33dc6ccc3991b850bf227ad1875bf19fd0__to_t_string_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 16638, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 14687, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_uint256_t_array$_t_address_$dyn_memory_ptr__to_t_uint256_t_array$_t_address_$dyn_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 15115, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_uint256_t_uint256_t_array$_t_address_$dyn_memory_ptr_t_address_t_uint256__to_t_uint256_t_uint256_t_array$_t_address_$dyn_memory_ptr_t_address_t_uint256__fromStack_reversed": { | |
| "entryPoint": 16200, | |
| "id": null, | |
| "parameterSlots": 6, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256_t_array$_t_address_$dyn_memory_ptr__to_t_uint256_t_uint256_t_uint256_t_uint256_t_array$_t_address_$dyn_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 14013, | |
| "id": null, | |
| "parameterSlots": 6, | |
| "returnSlots": 1 | |
| }, | |
| "allocate_memory": { | |
| "entryPoint": 15212, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "allocate_unbounded": { | |
| "entryPoint": 11783, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 1 | |
| }, | |
| "array_allocation_size_t_array$_t_uint256_$dyn_memory_ptr": { | |
| "entryPoint": 15239, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "array_dataslot_t_array$_t_address_$dyn_memory_ptr": { | |
| "entryPoint": 13851, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "array_length_t_array$_t_address_$dyn_memory_ptr": { | |
| "entryPoint": 13823, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "array_length_t_bytes_memory_ptr": { | |
| "entryPoint": 14719, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "array_length_t_string_memory_ptr": { | |
| "entryPoint": 15615, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "array_nextElement_t_array$_t_address_$dyn_memory_ptr": { | |
| "entryPoint": 13906, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "array_storeLengthForEncoding_t_array$_t_address_$dyn_memory_ptr_fromStack": { | |
| "entryPoint": 13834, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": { | |
| "entryPoint": 14730, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack": { | |
| "entryPoint": 16390, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "array_storeLengthForEncoding_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 12806, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": { | |
| "entryPoint": 15528, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "checked_add_t_uint256": { | |
| "entryPoint": 13492, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "checked_add_t_uint8": { | |
| "entryPoint": 18093, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "checked_div_t_uint256": { | |
| "entryPoint": 14972, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "checked_div_t_uint8": { | |
| "entryPoint": 17930, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "checked_exp_helper": { | |
| "entryPoint": 17561, | |
| "id": null, | |
| "parameterSlots": 4, | |
| "returnSlots": 2 | |
| }, | |
| "checked_exp_t_uint256_t_uint256": { | |
| "entryPoint": 17855, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "checked_exp_unsigned": { | |
| "entryPoint": 17644, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 1 | |
| }, | |
| "checked_mul_t_uint256": { | |
| "entryPoint": 17102, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "checked_mul_t_uint8": { | |
| "entryPoint": 17979, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "checked_sub_t_uint256": { | |
| "entryPoint": 13610, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "checked_sub_t_uint8": { | |
| "entryPoint": 18040, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_address": { | |
| "entryPoint": 12022, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_address_payable": { | |
| "entryPoint": 13176, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_bool": { | |
| "entryPoint": 11936, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_bytes4": { | |
| "entryPoint": 11803, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_contract$_IGenericTokenAdapter_$1321": { | |
| "entryPoint": 13238, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_contract$_IUniswapV2Router02_$4973": { | |
| "entryPoint": 13300, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_rational_0_by_1": { | |
| "entryPoint": 16670, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_rational_1_by_1": { | |
| "entryPoint": 12969, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_uint160": { | |
| "entryPoint": 11990, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_uint256": { | |
| "entryPoint": 12455, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_uint8": { | |
| "entryPoint": 12979, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "convert_t_contract$_IBookKeeper_$1806_to_t_address": { | |
| "entryPoint": 12746, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "convert_t_contract$_IStablecoinAdapter_$1847_to_t_address": { | |
| "entryPoint": 12308, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "convert_t_rational_0_by_1_to_t_uint8": { | |
| "entryPoint": 16680, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "convert_t_rational_1_by_1_to_t_uint8": { | |
| "entryPoint": 12992, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "convert_t_uint160_to_t_address": { | |
| "entryPoint": 12290, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "convert_t_uint160_to_t_uint160": { | |
| "entryPoint": 12256, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "copy_memory_to_memory_with_cleanup": { | |
| "entryPoint": 14747, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 0 | |
| }, | |
| "decrement_t_uint256": { | |
| "entryPoint": 17289, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "finalize_allocation": { | |
| "entryPoint": 15163, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "identity": { | |
| "entryPoint": 12246, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "increment_t_uint256": { | |
| "entryPoint": 17168, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "mod_t_uint256": { | |
| "entryPoint": 17240, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "panic_error_0x11": { | |
| "entryPoint": 13445, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "panic_error_0x12": { | |
| "entryPoint": 14925, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "panic_error_0x32": { | |
| "entryPoint": 15068, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "panic_error_0x41": { | |
| "entryPoint": 15021, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490": { | |
| "entryPoint": 12514, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": { | |
| "entryPoint": 12509, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef": { | |
| "entryPoint": 12519, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": { | |
| "entryPoint": 11798, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": { | |
| "entryPoint": 11793, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "round_up_to_mul_of_32": { | |
| "entryPoint": 14789, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "shift_right_1_unsigned": { | |
| "entryPoint": 17548, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a": { | |
| "entryPoint": 16905, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": { | |
| "entryPoint": 14103, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "store_literal_in_memory_2c605e6a6ed7a1e5eb4f7cff468954c770c66cb58619696441d403b9f8209e9a": { | |
| "entryPoint": 17440, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "store_literal_in_memory_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837": { | |
| "entryPoint": 17330, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "store_literal_in_memory_5ccb559a0902817f0fdb477e922e15ad1b5da687f0b86a877d8c5b1453fa4d77": { | |
| "entryPoint": 13068, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a": { | |
| "entryPoint": 14503, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "store_literal_in_memory_6a802c5c9a85063d63c6dffc9b745b2d4de41da9dac3eea78318af5d8e0c428a": { | |
| "entryPoint": 15539, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "store_literal_in_memory_6ba74a2aa1422e1cf72544b996fc3d84147af5232bd1daa30700ee653d9b883a": { | |
| "entryPoint": 15903, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "store_literal_in_memory_776f466cf8de322ba491c853e406ae40203d73832dff11f4375ddefd5a2b9c63": { | |
| "entryPoint": 15827, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759": { | |
| "entryPoint": 12823, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "store_literal_in_memory_9252efacdf0e31a2a8d746ef5da0ea5199960f0bba313276d0bde3427446c5a8": { | |
| "entryPoint": 15675, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "store_literal_in_memory_946d5bd2dc961dfc58db89c7c958b7321c3c9fab35f25e2a5bd37fe563504408": { | |
| "entryPoint": 16797, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": { | |
| "entryPoint": 14395, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "store_literal_in_memory_c2c1c9fc9d0d36b12819e12abc4be9b954b8ba15aebb63d3f674449e85ea9a10": { | |
| "entryPoint": 13662, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b": { | |
| "entryPoint": 14249, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "store_literal_in_memory_d8da93d0cc8f32917fee86e8ca39ef33dc6ccc3991b850bf227ad1875bf19fd0": { | |
| "entryPoint": 16562, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "store_literal_in_memory_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619": { | |
| "entryPoint": 14611, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "store_literal_in_memory_eeec678fb0ab35db2b67999a45c01a5c46321e8cffa9118affbdffba95ffe08d": { | |
| "entryPoint": 15751, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "validator_revert_t_address": { | |
| "entryPoint": 12040, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "validator_revert_t_address_payable": { | |
| "entryPoint": 13194, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "validator_revert_t_bool": { | |
| "entryPoint": 16473, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "validator_revert_t_bytes4": { | |
| "entryPoint": 11847, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "validator_revert_t_contract$_IGenericTokenAdapter_$1321": { | |
| "entryPoint": 13256, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "validator_revert_t_contract$_IUniswapV2Router02_$4973": { | |
| "entryPoint": 13318, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "validator_revert_t_uint256": { | |
| "entryPoint": 12465, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "validator_revert_t_uint8": { | |
| "entryPoint": 17013, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| } | |
| }, | |
| "generatedSources": [ | |
| { | |
| "ast": { | |
| "nodeType": "YulBlock", | |
| "src": "0:48355:8", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "47:35:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "57:19:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "73:2:8", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "67:5:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "67:9:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "57:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "allocate_unbounded", | |
| "nodeType": "YulFunctionDefinition", | |
| "returnVariables": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "40:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "7:75:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "177:28:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "194:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "197:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "187:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "187:12:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "187:12:8" | |
| } | |
| ] | |
| }, | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "88:117:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "300:28:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "317:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "320:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "310:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "310:12:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "310:12:8" | |
| } | |
| ] | |
| }, | |
| "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "211:117:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "378:105:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "388:89:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "403:5:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "410:66:8", | |
| "type": "", | |
| "value": "0xffffffff00000000000000000000000000000000000000000000000000000000" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nodeType": "YulIdentifier", | |
| "src": "399:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "399:78:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "388:7:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_bytes4", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "360:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "370:7:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "334:149:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "531:78:8", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "587:16:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "596:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "599:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "589:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "589:12:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "589:12:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "554:5:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "578:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_bytes4", | |
| "nodeType": "YulIdentifier", | |
| "src": "561:16:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "561:23:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "eq", | |
| "nodeType": "YulIdentifier", | |
| "src": "551:2:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "551:34:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nodeType": "YulIdentifier", | |
| "src": "544:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "544:42:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "541:62:8" | |
| } | |
| ] | |
| }, | |
| "name": "validator_revert_t_bytes4", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "524:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "489:120:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "666:86:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "676:29:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "698:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "calldataload", | |
| "nodeType": "YulIdentifier", | |
| "src": "685:12:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "685:20:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "676:5:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "740:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "validator_revert_t_bytes4", | |
| "nodeType": "YulIdentifier", | |
| "src": "714:25:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "714:32:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "714:32:8" | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_t_bytes4", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "644:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "652:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "660:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "615:137:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "823:262:8", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "869:83:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nodeType": "YulIdentifier", | |
| "src": "871:77:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "871:79:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "871:79:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "844:7:8" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "853:9:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "840:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "840:23:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "865:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nodeType": "YulIdentifier", | |
| "src": "836:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "836:32:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "833:119:8" | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "962:116:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "977:15:8", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "991:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "981:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1006:62:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1040:9:8" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "1051:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1036:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1036:22:8" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "1060:7:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_bytes4", | |
| "nodeType": "YulIdentifier", | |
| "src": "1016:19:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1016:52:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "1006:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_tuple_t_bytes4", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "793:9:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulTypedName", | |
| "src": "804:7:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "816:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "758:327:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1133:48:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1143:32:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "1168:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nodeType": "YulIdentifier", | |
| "src": "1161:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1161:13:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nodeType": "YulIdentifier", | |
| "src": "1154:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1154:21:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "1143:7:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_bool", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "1115:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "1125:7:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1091:90:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1246:50:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "1263:3:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "1283:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_bool", | |
| "nodeType": "YulIdentifier", | |
| "src": "1268:14:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1268:21:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "1256:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1256:34:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1256:34:8" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_bool_to_t_bool_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "1234:5:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "1241:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1187:109:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1394:118:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1404:26:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1416:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1427:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1412:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1412:18:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "1404:4:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "1478:6:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1491:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1502:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1487:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1487:17:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_bool_to_t_bool_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "1440:37:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1440:65:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1440:65:8" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "1366:9:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "1378:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "1389:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1302:210:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1563:81:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1573:65:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "1588:5:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1595:42:8", | |
| "type": "", | |
| "value": "0xffffffffffffffffffffffffffffffffffffffff" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nodeType": "YulIdentifier", | |
| "src": "1584:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1584:54:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "1573:7:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_uint160", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "1545:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "1555:7:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1518:126:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1695:51:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1705:35:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "1734:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint160", | |
| "nodeType": "YulIdentifier", | |
| "src": "1716:17:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1716:24:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "1705:7:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_address", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "1677:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "1687:7:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1650:96:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1795:79:8", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1852:16:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1861:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1864:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "1854:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1854:12:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1854:12:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "1818:5:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "1843:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "1825:17:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1825:24:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "eq", | |
| "nodeType": "YulIdentifier", | |
| "src": "1815:2:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1815:35:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nodeType": "YulIdentifier", | |
| "src": "1808:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1808:43:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "1805:63:8" | |
| } | |
| ] | |
| }, | |
| "name": "validator_revert_t_address", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "1788:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1752:122:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1932:87:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1942:29:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "1964:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "calldataload", | |
| "nodeType": "YulIdentifier", | |
| "src": "1951:12:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1951:20:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "1942:5:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "2007:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "validator_revert_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "1980:26:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1980:33:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1980:33:8" | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_t_address", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "1910:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "1918:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "1926:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1880:139:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "2193:1035:8", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "2240:83:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nodeType": "YulIdentifier", | |
| "src": "2242:77:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2242:79:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2242:79:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "2214:7:8" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "2223:9:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "2210:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2210:23:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2235:3:8", | |
| "type": "", | |
| "value": "224" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nodeType": "YulIdentifier", | |
| "src": "2206:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2206:33:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "2203:120:8" | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "2333:117:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "2348:15:8", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2362:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "2352:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "2377:63:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "2412:9:8" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "2423:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "2408:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2408:22:8" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "2432:7:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "2387:20:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2387:53:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "2377:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "2460:118:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "2475:16:8", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2489:2:8", | |
| "type": "", | |
| "value": "32" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "2479:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "2505:63:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "2540:9:8" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "2551:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "2536:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2536:22:8" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "2560:7:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "2515:20:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2515:53:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value1", | |
| "nodeType": "YulIdentifier", | |
| "src": "2505:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "2588:118:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "2603:16:8", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2617:2:8", | |
| "type": "", | |
| "value": "64" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "2607:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "2633:63:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "2668:9:8" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "2679:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "2664:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2664:22:8" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "2688:7:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "2643:20:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2643:53:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value2", | |
| "nodeType": "YulIdentifier", | |
| "src": "2633:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "2716:118:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "2731:16:8", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2745:2:8", | |
| "type": "", | |
| "value": "96" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "2735:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "2761:63:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "2796:9:8" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "2807:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "2792:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2792:22:8" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "2816:7:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "2771:20:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2771:53:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value3", | |
| "nodeType": "YulIdentifier", | |
| "src": "2761:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "2844:119:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "2859:17:8", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2873:3:8", | |
| "type": "", | |
| "value": "128" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "2863:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "2890:63:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "2925:9:8" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "2936:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "2921:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2921:22:8" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "2945:7:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "2900:20:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2900:53:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value4", | |
| "nodeType": "YulIdentifier", | |
| "src": "2890:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "2973:119:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "2988:17:8", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "3002:3:8", | |
| "type": "", | |
| "value": "160" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "2992:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "3019:63:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "3054:9:8" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "3065:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "3050:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3050:22:8" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "3074:7:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "3029:20:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3029:53:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value5", | |
| "nodeType": "YulIdentifier", | |
| "src": "3019:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "3102:119:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "3117:17:8", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "3131:3:8", | |
| "type": "", | |
| "value": "192" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "3121:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "3148:63:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "3183:9:8" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "3194:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "3179:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3179:22:8" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "3203:7:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "3158:20:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3158:53:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value6", | |
| "nodeType": "YulIdentifier", | |
| "src": "3148:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_tuple_t_addresst_addresst_addresst_addresst_addresst_addresst_address", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "2115:9:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulTypedName", | |
| "src": "2126:7:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "2138:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value1", | |
| "nodeType": "YulTypedName", | |
| "src": "2146:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value2", | |
| "nodeType": "YulTypedName", | |
| "src": "2154:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value3", | |
| "nodeType": "YulTypedName", | |
| "src": "2162:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value4", | |
| "nodeType": "YulTypedName", | |
| "src": "2170:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value5", | |
| "nodeType": "YulTypedName", | |
| "src": "2178:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value6", | |
| "nodeType": "YulTypedName", | |
| "src": "2186:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "2025:1203:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "3266:28:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "3276:12:8", | |
| "value": { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "3283:5:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "ret", | |
| "nodeType": "YulIdentifier", | |
| "src": "3276:3:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "identity", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "3252:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "ret", | |
| "nodeType": "YulTypedName", | |
| "src": "3262:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3234:60:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "3360:82:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "3370:66:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "3428:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint160", | |
| "nodeType": "YulIdentifier", | |
| "src": "3410:17:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3410:24:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "identity", | |
| "nodeType": "YulIdentifier", | |
| "src": "3401:8:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3401:34:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint160", | |
| "nodeType": "YulIdentifier", | |
| "src": "3383:17:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3383:53:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "converted", | |
| "nodeType": "YulIdentifier", | |
| "src": "3370:9:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "convert_t_uint160_to_t_uint160", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "3340:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "converted", | |
| "nodeType": "YulTypedName", | |
| "src": "3350:9:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3300:142:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "3508:66:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "3518:50:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "3562:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "convert_t_uint160_to_t_uint160", | |
| "nodeType": "YulIdentifier", | |
| "src": "3531:30:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3531:37:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "converted", | |
| "nodeType": "YulIdentifier", | |
| "src": "3518:9:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "convert_t_uint160_to_t_address", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "3488:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "converted", | |
| "nodeType": "YulTypedName", | |
| "src": "3498:9:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3448:126:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "3667:66:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "3677:50:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "3721:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "convert_t_uint160_to_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "3690:30:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3690:37:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "converted", | |
| "nodeType": "YulIdentifier", | |
| "src": "3677:9:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "convert_t_contract$_IStablecoinAdapter_$1847_to_t_address", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "3647:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "converted", | |
| "nodeType": "YulTypedName", | |
| "src": "3657:9:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3580:153:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "3831:93:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "3848:3:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "3911:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "convert_t_contract$_IStablecoinAdapter_$1847_to_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "3853:57:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3853:64:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "3841:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3841:77:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "3841:77:8" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_contract$_IStablecoinAdapter_$1847_to_t_address_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "3819:5:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "3826:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3739:185:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "4055:151:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "4065:26:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "4077:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "4088:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "4073:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4073:18:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "4065:4:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "4172:6:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "4185:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "4196:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "4181:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4181:17:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_contract$_IStablecoinAdapter_$1847_to_t_address_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "4101:70:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4101:98:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4101:98:8" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_contract$_IStablecoinAdapter_$1847__to_t_address__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "4027:9:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "4039:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "4050:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3930:276:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "4278:263:8", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "4324:83:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nodeType": "YulIdentifier", | |
| "src": "4326:77:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4326:79:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4326:79:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "4299:7:8" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "4308:9:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "4295:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4295:23:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "4320:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nodeType": "YulIdentifier", | |
| "src": "4291:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4291:32:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "4288:119:8" | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "4417:117:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "4432:15:8", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "4446:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "4436:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "4461:63:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "4496:9:8" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "4507:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "4492:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4492:22:8" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "4516:7:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "4471:20:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4471:53:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "4461:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_tuple_t_address", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "4248:9:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulTypedName", | |
| "src": "4259:7:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "4271:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "4212:329:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "4612:53:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "4629:3:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "4652:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "4634:17:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4634:24:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "4622:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4622:37:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4622:37:8" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_address_to_t_address_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "4600:5:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "4607:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "4547:118:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "4769:124:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "4779:26:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "4791:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "4802:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "4787:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4787:18:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "4779:4:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "4859:6:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "4872:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "4883:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "4868:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4868:17:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_address_to_t_address_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "4815:43:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4815:71:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4815:71:8" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "4741:9:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "4753:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "4764:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "4671:222:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "4944:32:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "4954:16:8", | |
| "value": { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "4965:5:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "4954:7:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_uint256", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "4926:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "4936:7:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "4899:77:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "5025:79:8", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "5082:16:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5091:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5094:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "5084:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "5084:12:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "5084:12:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "5048:5:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "5073:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "5055:17:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "5055:24:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "eq", | |
| "nodeType": "YulIdentifier", | |
| "src": "5045:2:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "5045:35:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nodeType": "YulIdentifier", | |
| "src": "5038:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "5038:43:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "5035:63:8" | |
| } | |
| ] | |
| }, | |
| "name": "validator_revert_t_uint256", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "5018:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "4982:122:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "5162:87:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "5172:29:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "5194:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "calldataload", | |
| "nodeType": "YulIdentifier", | |
| "src": "5181:12:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "5181:20:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "5172:5:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "5237:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "validator_revert_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "5210:26:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "5210:33:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "5210:33:8" | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_t_uint256", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "5140:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "5148:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "5156:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "5110:139:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "5344:28:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5361:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5364:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "5354:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "5354:12:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "5354:12:8" | |
| } | |
| ] | |
| }, | |
| "name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "5255:117:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "5467:28:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5484:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5487:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "5477:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "5477:12:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "5477:12:8" | |
| } | |
| ] | |
| }, | |
| "name": "revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "5378:117:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "5590:28:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5607:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5610:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "5600:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "5600:12:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "5600:12:8" | |
| } | |
| ] | |
| }, | |
| "name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "5501:117:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "5711:478:8", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "5760:83:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", | |
| "nodeType": "YulIdentifier", | |
| "src": "5762:77:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "5762:79:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "5762:79:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "5739:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5747:4:8", | |
| "type": "", | |
| "value": "0x1f" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "5735:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "5735:17:8" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "5754:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nodeType": "YulIdentifier", | |
| "src": "5731:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "5731:27:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nodeType": "YulIdentifier", | |
| "src": "5724:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "5724:35:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "5721:122:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "5852:30:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "5875:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "calldataload", | |
| "nodeType": "YulIdentifier", | |
| "src": "5862:12:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "5862:20:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "5852:6:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "5925:83:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490", | |
| "nodeType": "YulIdentifier", | |
| "src": "5927:77:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "5927:79:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "5927:79:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "5897:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5905:18:8", | |
| "type": "", | |
| "value": "0xffffffffffffffff" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nodeType": "YulIdentifier", | |
| "src": "5894:2:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "5894:30:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "5891:117:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "6017:29:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "6033:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "6041:4:8", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "6029:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "6029:17:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "arrayPos", | |
| "nodeType": "YulIdentifier", | |
| "src": "6017:8:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "6100:83:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef", | |
| "nodeType": "YulIdentifier", | |
| "src": "6102:77:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "6102:79:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "6102:79:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "arrayPos", | |
| "nodeType": "YulIdentifier", | |
| "src": "6065:8:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "6079:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "6087:4:8", | |
| "type": "", | |
| "value": "0x01" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mul", | |
| "nodeType": "YulIdentifier", | |
| "src": "6075:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "6075:17:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "6061:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "6061:32:8" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "6095:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nodeType": "YulIdentifier", | |
| "src": "6058:2:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "6058:41:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "6055:128:8" | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_t_bytes_calldata_ptr", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "5678:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "5686:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "arrayPos", | |
| "nodeType": "YulTypedName", | |
| "src": "5694:8:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "5704:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "5637:552:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "6331:827:8", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "6378:83:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nodeType": "YulIdentifier", | |
| "src": "6380:77:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "6380:79:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "6380:79:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "6352:7:8" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "6361:9:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "6348:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "6348:23:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "6373:3:8", | |
| "type": "", | |
| "value": "128" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nodeType": "YulIdentifier", | |
| "src": "6344:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "6344:33:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "6341:120:8" | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "6471:117:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "6486:15:8", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "6500:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "6490:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "6515:63:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "6550:9:8" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "6561:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "6546:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "6546:22:8" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "6570:7:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "6525:20:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "6525:53:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "6515:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "6598:118:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "6613:16:8", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "6627:2:8", | |
| "type": "", | |
| "value": "32" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "6617:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "6643:63:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "6678:9:8" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "6689:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "6674:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "6674:22:8" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "6698:7:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "6653:20:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "6653:53:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value1", | |
| "nodeType": "YulIdentifier", | |
| "src": "6643:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "6726:118:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "6741:16:8", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "6755:2:8", | |
| "type": "", | |
| "value": "64" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "6745:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "6771:63:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "6806:9:8" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "6817:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "6802:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "6802:22:8" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "6826:7:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "6781:20:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "6781:53:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value2", | |
| "nodeType": "YulIdentifier", | |
| "src": "6771:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "6854:297:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "6869:46:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "6900:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "6911:2:8", | |
| "type": "", | |
| "value": "96" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "6896:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "6896:18:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "calldataload", | |
| "nodeType": "YulIdentifier", | |
| "src": "6883:12:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "6883:32:8" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "6873:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "6962:83:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
| "nodeType": "YulIdentifier", | |
| "src": "6964:77:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "6964:79:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "6964:79:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "6934:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "6942:18:8", | |
| "type": "", | |
| "value": "0xffffffffffffffff" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nodeType": "YulIdentifier", | |
| "src": "6931:2:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "6931:30:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "6928:117:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "7059:82:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "7113:9:8" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "7124:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "7109:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "7109:22:8" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "7133:7:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_bytes_calldata_ptr", | |
| "nodeType": "YulIdentifier", | |
| "src": "7077:31:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "7077:64:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value3", | |
| "nodeType": "YulIdentifier", | |
| "src": "7059:6:8" | |
| }, | |
| { | |
| "name": "value4", | |
| "nodeType": "YulIdentifier", | |
| "src": "7067:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_tuple_t_addresst_uint256t_uint256t_bytes_calldata_ptr", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "6269:9:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulTypedName", | |
| "src": "6280:7:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "6292:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value1", | |
| "nodeType": "YulTypedName", | |
| "src": "6300:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value2", | |
| "nodeType": "YulTypedName", | |
| "src": "6308:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value3", | |
| "nodeType": "YulTypedName", | |
| "src": "6316:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value4", | |
| "nodeType": "YulTypedName", | |
| "src": "6324:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "6195:963:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "7244:66:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "7254:50:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "7298:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "convert_t_uint160_to_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "7267:30:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "7267:37:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "converted", | |
| "nodeType": "YulIdentifier", | |
| "src": "7254:9:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "convert_t_contract$_IBookKeeper_$1806_to_t_address", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "7224:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "converted", | |
| "nodeType": "YulTypedName", | |
| "src": "7234:9:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "7164:146:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "7401:86:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "7418:3:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "7474:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "convert_t_contract$_IBookKeeper_$1806_to_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "7423:50:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "7423:57:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "7411:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "7411:70:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "7411:70:8" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_contract$_IBookKeeper_$1806_to_t_address_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "7389:5:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "7396:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "7316:171:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "7611:144:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "7621:26:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "7633:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "7644:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "7629:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "7629:18:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "7621:4:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "7721:6:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "7734:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "7745:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "7730:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "7730:17:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_contract$_IBookKeeper_$1806_to_t_address_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "7657:63:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "7657:91:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "7657:91:8" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_contract$_IBookKeeper_$1806__to_t_address__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "7583:9:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "7595:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "7606:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "7493:262:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "7857:73:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "7874:3:8" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "7879:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "7867:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "7867:19:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "7867:19:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "7895:29:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "7914:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "7919:4:8", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "7910:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "7910:14:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "updated_pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "7895:11:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "7829:3:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "7834:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "updated_pos", | |
| "nodeType": "YulTypedName", | |
| "src": "7845:11:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "7761:169:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "8042:127:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "8064:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "8072:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "8060:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "8060:14:8" | |
| }, | |
| { | |
| "hexValue": "496e697469616c697a61626c653a20636f6e747261637420697320616c726561", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "8076:34:8", | |
| "type": "", | |
| "value": "Initializable: contract is alrea" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "8053:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "8053:58:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "8053:58:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "8132:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "8140:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "8128:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "8128:15:8" | |
| }, | |
| { | |
| "hexValue": "647920696e697469616c697a6564", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "8145:16:8", | |
| "type": "", | |
| "value": "dy initialized" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "8121:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "8121:41:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "8121:41:8" | |
| } | |
| ] | |
| }, | |
| "name": "store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "8034:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "7936:233:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "8321:220:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "8331:74:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "8397:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "8402:2:8", | |
| "type": "", | |
| "value": "46" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "8338:58:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "8338:67:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "8331:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "8503:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "store_literal_in_memory_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759", | |
| "nodeType": "YulIdentifier", | |
| "src": "8414:88:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "8414:93:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "8414:93:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "8516:19:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "8527:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "8532:2:8", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "8523:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "8523:12:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "8516:3:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "8309:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "8317:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "8175:366:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "8718:248:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "8728:26:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "8740:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "8751:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "8736:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "8736:18:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "8728:4:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "8775:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "8786:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "8771:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "8771:17:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "8794:4:8" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "8800:9:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "8790:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "8790:20:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "8764:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "8764:47:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "8764:47:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "8820:139:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "8954:4:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "8828:124:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "8828:131:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "8820:4:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_stringliteral_7a2a4e26842155ea933fe6eb6e3137eb5a296dcdf55721c552be7b4c3cc23759__to_t_string_memory_ptr__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "8698:9:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "8713:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "8547:419:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "9025:32:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "9035:16:8", | |
| "value": { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "9046:5:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "9035:7:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_rational_1_by_1", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "9007:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "9017:7:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "8972:85:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "9106:43:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "9116:27:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "9131:5:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "9138:4:8", | |
| "type": "", | |
| "value": "0xff" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nodeType": "YulIdentifier", | |
| "src": "9127:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "9127:16:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "9116:7:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_uint8", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "9088:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "9098:7:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "9063:86:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "9221:88:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "9231:72:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "9295:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_rational_1_by_1", | |
| "nodeType": "YulIdentifier", | |
| "src": "9269:25:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "9269:32:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "identity", | |
| "nodeType": "YulIdentifier", | |
| "src": "9260:8:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "9260:42:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint8", | |
| "nodeType": "YulIdentifier", | |
| "src": "9244:15:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "9244:59:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "converted", | |
| "nodeType": "YulIdentifier", | |
| "src": "9231:9:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "convert_t_rational_1_by_1_to_t_uint8", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "9201:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "converted", | |
| "nodeType": "YulTypedName", | |
| "src": "9211:9:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "9155:154:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "9386:72:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "9403:3:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "9445:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "convert_t_rational_1_by_1_to_t_uint8", | |
| "nodeType": "YulIdentifier", | |
| "src": "9408:36:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "9408:43:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "9396:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "9396:56:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "9396:56:8" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_rational_1_by_1_to_t_uint8_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "9374:5:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "9381:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "9315:143:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "9568:130:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "9578:26:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "9590:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "9601:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "9586:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "9586:18:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "9578:4:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "9664:6:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "9677:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "9688:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "9673:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "9673:17:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_rational_1_by_1_to_t_uint8_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "9614:49:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "9614:77:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "9614:77:8" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_rational_1_by_1__to_t_uint8__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "9540:9:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "9552:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "9563:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "9464:234:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "9810:76:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "9832:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "9840:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "9828:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "9828:14:8" | |
| }, | |
| { | |
| "hexValue": "666c6173684c656e64696e6743616c6c3a20696e76616c69642073656e646572", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "9844:34:8", | |
| "type": "", | |
| "value": "flashLendingCall: invalid sender" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "9821:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "9821:58:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "9821:58:8" | |
| } | |
| ] | |
| }, | |
| "name": "store_literal_in_memory_5ccb559a0902817f0fdb477e922e15ad1b5da687f0b86a877d8c5b1453fa4d77", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "9802:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "9704:182:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "10038:220:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "10048:74:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "10114:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "10119:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "10055:58:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "10055:67:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "10048:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "10220:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "store_literal_in_memory_5ccb559a0902817f0fdb477e922e15ad1b5da687f0b86a877d8c5b1453fa4d77", | |
| "nodeType": "YulIdentifier", | |
| "src": "10131:88:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "10131:93:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "10131:93:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "10233:19:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "10244:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "10249:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "10240:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "10240:12:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "10233:3:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_stringliteral_5ccb559a0902817f0fdb477e922e15ad1b5da687f0b86a877d8c5b1453fa4d77_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "10026:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "10034:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "9892:366:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "10435:248:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "10445:26:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "10457:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "10468:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "10453:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "10453:18:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "10445:4:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "10492:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "10503:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "10488:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "10488:17:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "10511:4:8" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "10517:9:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "10507:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "10507:20:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "10481:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "10481:47:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "10481:47:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "10537:139:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "10671:4:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_stringliteral_5ccb559a0902817f0fdb477e922e15ad1b5da687f0b86a877d8c5b1453fa4d77_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "10545:124:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "10545:131:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "10537:4:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_stringliteral_5ccb559a0902817f0fdb477e922e15ad1b5da687f0b86a877d8c5b1453fa4d77__to_t_string_memory_ptr__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "10415:9:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "10430:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "10264:419:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "10742:51:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "10752:35:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "10781:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint160", | |
| "nodeType": "YulIdentifier", | |
| "src": "10763:17:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "10763:24:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "10752:7:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_address_payable", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "10724:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "10734:7:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "10689:104:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "10850:87:8", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "10915:16:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "10924:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "10927:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "10917:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "10917:12:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "10917:12:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "10873:5:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "10906:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_address_payable", | |
| "nodeType": "YulIdentifier", | |
| "src": "10880:25:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "10880:32:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "eq", | |
| "nodeType": "YulIdentifier", | |
| "src": "10870:2:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "10870:43:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nodeType": "YulIdentifier", | |
| "src": "10863:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "10863:51:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "10860:71:8" | |
| } | |
| ] | |
| }, | |
| "name": "validator_revert_t_address_payable", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "10843:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "10799:138:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "11003:95:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "11013:29:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "11035:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "calldataload", | |
| "nodeType": "YulIdentifier", | |
| "src": "11022:12:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "11022:20:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "11013:5:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "11086:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "validator_revert_t_address_payable", | |
| "nodeType": "YulIdentifier", | |
| "src": "11051:34:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "11051:41:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "11051:41:8" | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_t_address_payable", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "10981:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "10989:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "10997:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "10943:155:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "11178:51:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "11188:35:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "11217:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "11199:17:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "11199:24:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "11188:7:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_contract$_IGenericTokenAdapter_$1321", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "11160:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "11170:7:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "11104:125:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "11307:108:8", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "11393:16:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "11402:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "11405:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "11395:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "11395:12:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "11395:12:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "11330:5:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "11384:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_contract$_IGenericTokenAdapter_$1321", | |
| "nodeType": "YulIdentifier", | |
| "src": "11337:46:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "11337:53:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "eq", | |
| "nodeType": "YulIdentifier", | |
| "src": "11327:2:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "11327:64:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nodeType": "YulIdentifier", | |
| "src": "11320:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "11320:72:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "11317:92:8" | |
| } | |
| ] | |
| }, | |
| "name": "validator_revert_t_contract$_IGenericTokenAdapter_$1321", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "11300:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "11235:180:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "11502:116:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "11512:29:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "11534:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "calldataload", | |
| "nodeType": "YulIdentifier", | |
| "src": "11521:12:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "11521:20:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "11512:5:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "11606:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "validator_revert_t_contract$_IGenericTokenAdapter_$1321", | |
| "nodeType": "YulIdentifier", | |
| "src": "11550:55:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "11550:62:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "11550:62:8" | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_t_contract$_IGenericTokenAdapter_$1321", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "11480:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "11488:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "11496:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "11421:197:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "11696:51:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "11706:35:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "11735:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "11717:17:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "11717:24:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "11706:7:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_contract$_IUniswapV2Router02_$4973", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "11678:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "11688:7:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "11624:123:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "11823:106:8", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "11907:16:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "11916:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "11919:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "11909:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "11909:12:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "11909:12:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "11846:5:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "11898:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_contract$_IUniswapV2Router02_$4973", | |
| "nodeType": "YulIdentifier", | |
| "src": "11853:44:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "11853:51:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "eq", | |
| "nodeType": "YulIdentifier", | |
| "src": "11843:2:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "11843:62:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nodeType": "YulIdentifier", | |
| "src": "11836:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "11836:70:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "11833:90:8" | |
| } | |
| ] | |
| }, | |
| "name": "validator_revert_t_contract$_IUniswapV2Router02_$4973", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "11816:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "11753:176:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "12014:114:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "12024:29:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "12046:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "calldataload", | |
| "nodeType": "YulIdentifier", | |
| "src": "12033:12:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "12033:20:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "12024:5:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "12116:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "validator_revert_t_contract$_IUniswapV2Router02_$4973", | |
| "nodeType": "YulIdentifier", | |
| "src": "12062:53:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "12062:60:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "12062:60:8" | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_t_contract$_IUniswapV2Router02_$4973", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "11992:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "12000:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "12008:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "11935:193:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "12298:583:8", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "12344:83:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nodeType": "YulIdentifier", | |
| "src": "12346:77:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "12346:79:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "12346:79:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "12319:7:8" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "12328:9:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "12315:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "12315:23:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "12340:2:8", | |
| "type": "", | |
| "value": "96" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nodeType": "YulIdentifier", | |
| "src": "12311:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "12311:32:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "12308:119:8" | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "12437:125:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "12452:15:8", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "12466:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "12456:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "12481:71:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "12524:9:8" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "12535:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "12520:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "12520:22:8" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "12544:7:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_address_payable", | |
| "nodeType": "YulIdentifier", | |
| "src": "12491:28:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "12491:61:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "12481:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "12572:147:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "12587:16:8", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "12601:2:8", | |
| "type": "", | |
| "value": "32" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "12591:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "12617:92:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "12681:9:8" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "12692:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "12677:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "12677:22:8" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "12701:7:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_contract$_IGenericTokenAdapter_$1321", | |
| "nodeType": "YulIdentifier", | |
| "src": "12627:49:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "12627:82:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value1", | |
| "nodeType": "YulIdentifier", | |
| "src": "12617:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "12729:145:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "12744:16:8", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "12758:2:8", | |
| "type": "", | |
| "value": "64" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "12748:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "12774:90:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "12836:9:8" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "12847:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "12832:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "12832:22:8" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "12856:7:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_contract$_IUniswapV2Router02_$4973", | |
| "nodeType": "YulIdentifier", | |
| "src": "12784:47:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "12784:80:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value2", | |
| "nodeType": "YulIdentifier", | |
| "src": "12774:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_tuple_t_address_payablet_contract$_IGenericTokenAdapter_$1321t_contract$_IUniswapV2Router02_$4973", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "12252:9:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulTypedName", | |
| "src": "12263:7:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "12275:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value1", | |
| "nodeType": "YulTypedName", | |
| "src": "12283:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value2", | |
| "nodeType": "YulTypedName", | |
| "src": "12291:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "12134:747:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "12915:152:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "12932:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "12935:77:8", | |
| "type": "", | |
| "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "12925:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "12925:88:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "12925:88:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "13029:1:8", | |
| "type": "", | |
| "value": "4" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "13032:4:8", | |
| "type": "", | |
| "value": "0x11" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "13022:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "13022:15:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "13022:15:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "13053:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "13056:4:8", | |
| "type": "", | |
| "value": "0x24" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "13046:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "13046:15:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "13046:15:8" | |
| } | |
| ] | |
| }, | |
| "name": "panic_error_0x11", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "12887:180:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "13117:147:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "13127:25:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "x", | |
| "nodeType": "YulIdentifier", | |
| "src": "13150:1:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "13132:17:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "13132:20:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "x", | |
| "nodeType": "YulIdentifier", | |
| "src": "13127:1:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "13161:25:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "y", | |
| "nodeType": "YulIdentifier", | |
| "src": "13184:1:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "13166:17:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "13166:20:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "y", | |
| "nodeType": "YulIdentifier", | |
| "src": "13161:1:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "13195:16:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "x", | |
| "nodeType": "YulIdentifier", | |
| "src": "13206:1:8" | |
| }, | |
| { | |
| "name": "y", | |
| "nodeType": "YulIdentifier", | |
| "src": "13209:1:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "13202:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "13202:9:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "sum", | |
| "nodeType": "YulIdentifier", | |
| "src": "13195:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "13235:22:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "panic_error_0x11", | |
| "nodeType": "YulIdentifier", | |
| "src": "13237:16:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "13237:18:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "13237:18:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "x", | |
| "nodeType": "YulIdentifier", | |
| "src": "13227:1:8" | |
| }, | |
| { | |
| "name": "sum", | |
| "nodeType": "YulIdentifier", | |
| "src": "13230:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nodeType": "YulIdentifier", | |
| "src": "13224:2:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "13224:10:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "13221:36:8" | |
| } | |
| ] | |
| }, | |
| "name": "checked_add_t_uint256", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "x", | |
| "nodeType": "YulTypedName", | |
| "src": "13104:1:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "y", | |
| "nodeType": "YulTypedName", | |
| "src": "13107:1:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "sum", | |
| "nodeType": "YulTypedName", | |
| "src": "13113:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "13073:191:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "13333:80:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "13343:22:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "13358:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "13352:5:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "13352:13:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "13343:5:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "13401:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "validator_revert_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "13374:26:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "13374:33:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "13374:33:8" | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_t_address_fromMemory", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "13311:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "13319:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "13327:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "13270:143:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "13496:274:8", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "13542:83:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nodeType": "YulIdentifier", | |
| "src": "13544:77:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "13544:79:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "13544:79:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "13517:7:8" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "13526:9:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "13513:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "13513:23:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "13538:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nodeType": "YulIdentifier", | |
| "src": "13509:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "13509:32:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "13506:119:8" | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "13635:128:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "13650:15:8", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "13664:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "13654:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "13679:74:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "13725:9:8" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "13736:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "13721:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "13721:22:8" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "13745:7:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_address_fromMemory", | |
| "nodeType": "YulIdentifier", | |
| "src": "13689:31:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "13689:64:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "13679:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_tuple_t_address_fromMemory", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "13466:9:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulTypedName", | |
| "src": "13477:7:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "13489:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "13419:351:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "13821:149:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "13831:25:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "x", | |
| "nodeType": "YulIdentifier", | |
| "src": "13854:1:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "13836:17:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "13836:20:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "x", | |
| "nodeType": "YulIdentifier", | |
| "src": "13831:1:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "13865:25:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "y", | |
| "nodeType": "YulIdentifier", | |
| "src": "13888:1:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "13870:17:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "13870:20:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "y", | |
| "nodeType": "YulIdentifier", | |
| "src": "13865:1:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "13899:17:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "x", | |
| "nodeType": "YulIdentifier", | |
| "src": "13911:1:8" | |
| }, | |
| { | |
| "name": "y", | |
| "nodeType": "YulIdentifier", | |
| "src": "13914:1:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "13907:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "13907:9:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "diff", | |
| "nodeType": "YulIdentifier", | |
| "src": "13899:4:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "13941:22:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "panic_error_0x11", | |
| "nodeType": "YulIdentifier", | |
| "src": "13943:16:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "13943:18:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "13943:18:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "diff", | |
| "nodeType": "YulIdentifier", | |
| "src": "13932:4:8" | |
| }, | |
| { | |
| "name": "x", | |
| "nodeType": "YulIdentifier", | |
| "src": "13938:1:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nodeType": "YulIdentifier", | |
| "src": "13929:2:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "13929:11:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "13926:37:8" | |
| } | |
| ] | |
| }, | |
| "name": "checked_sub_t_uint256", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "x", | |
| "nodeType": "YulTypedName", | |
| "src": "13807:1:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "y", | |
| "nodeType": "YulTypedName", | |
| "src": "13810:1:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "diff", | |
| "nodeType": "YulTypedName", | |
| "src": "13816:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "13776:194:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "14082:123:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "14104:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "14112:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "14100:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "14100:14:8" | |
| }, | |
| { | |
| "hexValue": "666c6173684c656e64696e6743616c6c3a206e6f7420656e6f75676820746f20", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "14116:34:8", | |
| "type": "", | |
| "value": "flashLendingCall: not enough to " | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "14093:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "14093:58:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "14093:58:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "14172:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "14180:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "14168:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "14168:15:8" | |
| }, | |
| { | |
| "hexValue": "72657061792064656274", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "14185:12:8", | |
| "type": "", | |
| "value": "repay debt" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "14161:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "14161:37:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "14161:37:8" | |
| } | |
| ] | |
| }, | |
| "name": "store_literal_in_memory_c2c1c9fc9d0d36b12819e12abc4be9b954b8ba15aebb63d3f674449e85ea9a10", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "14074:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "13976:229:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "14357:220:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "14367:74:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "14433:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "14438:2:8", | |
| "type": "", | |
| "value": "42" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "14374:58:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "14374:67:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "14367:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "14539:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "store_literal_in_memory_c2c1c9fc9d0d36b12819e12abc4be9b954b8ba15aebb63d3f674449e85ea9a10", | |
| "nodeType": "YulIdentifier", | |
| "src": "14450:88:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "14450:93:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "14450:93:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "14552:19:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "14563:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "14568:2:8", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "14559:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "14559:12:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "14552:3:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_stringliteral_c2c1c9fc9d0d36b12819e12abc4be9b954b8ba15aebb63d3f674449e85ea9a10_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "14345:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "14353:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "14211:366:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "14754:248:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "14764:26:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "14776:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "14787:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "14772:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "14772:18:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "14764:4:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "14811:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "14822:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "14807:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "14807:17:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "14830:4:8" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "14836:9:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "14826:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "14826:20:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "14800:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "14800:47:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "14800:47:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "14856:139:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "14990:4:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_stringliteral_c2c1c9fc9d0d36b12819e12abc4be9b954b8ba15aebb63d3f674449e85ea9a10_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "14864:124:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "14864:131:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "14856:4:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_stringliteral_c2c1c9fc9d0d36b12819e12abc4be9b954b8ba15aebb63d3f674449e85ea9a10__to_t_string_memory_ptr__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "14734:9:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "14749:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "14583:419:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "15073:53:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "15090:3:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "15113:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "15095:17:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "15095:24:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "15083:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "15083:37:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "15083:37:8" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "15061:5:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "15068:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "15008:118:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "15206:40:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "15217:22:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "15233:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "15227:5:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "15227:12:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "15217:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_length_t_array$_t_address_$dyn_memory_ptr", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "15189:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "15199:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "15132:114:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "15363:73:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "15380:3:8" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "15385:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "15373:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "15373:19:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "15373:19:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "15401:29:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "15420:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "15425:4:8", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "15416:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "15416:14:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "updated_pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "15401:11:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_storeLengthForEncoding_t_array$_t_address_$dyn_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "15335:3:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "15340:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "updated_pos", | |
| "nodeType": "YulTypedName", | |
| "src": "15351:11:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "15252:184:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "15514:60:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "15524:11:8", | |
| "value": { | |
| "name": "ptr", | |
| "nodeType": "YulIdentifier", | |
| "src": "15532:3:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "data", | |
| "nodeType": "YulIdentifier", | |
| "src": "15524:4:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "15545:22:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "ptr", | |
| "nodeType": "YulIdentifier", | |
| "src": "15557:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "15562:4:8", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "15553:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "15553:14:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "data", | |
| "nodeType": "YulIdentifier", | |
| "src": "15545:4:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_dataslot_t_array$_t_address_$dyn_memory_ptr", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "ptr", | |
| "nodeType": "YulTypedName", | |
| "src": "15501:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "data", | |
| "nodeType": "YulTypedName", | |
| "src": "15509:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "15442:132:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "15635:53:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "15652:3:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "15675:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "15657:17:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "15657:24:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "15645:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "15645:37:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "15645:37:8" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_address_to_t_address", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "15623:5:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "15630:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "15580:108:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "15774:99:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "15818:6:8" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "15826:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_address_to_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "15784:33:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "15784:46:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "15784:46:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "15839:28:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "15857:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "15862:4:8", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "15853:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "15853:14:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "updatedPos", | |
| "nodeType": "YulIdentifier", | |
| "src": "15839:10:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encodeUpdatedPos_t_address_to_t_address", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "15747:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "15755:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "updatedPos", | |
| "nodeType": "YulTypedName", | |
| "src": "15763:10:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "15694:179:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "15954:38:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "15964:22:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "ptr", | |
| "nodeType": "YulIdentifier", | |
| "src": "15976:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "15981:4:8", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "15972:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "15972:14:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "next", | |
| "nodeType": "YulIdentifier", | |
| "src": "15964:4:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_nextElement_t_array$_t_address_$dyn_memory_ptr", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "ptr", | |
| "nodeType": "YulTypedName", | |
| "src": "15941:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "next", | |
| "nodeType": "YulTypedName", | |
| "src": "15949:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "15879:113:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "16152:608:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "16162:68:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "16224:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_length_t_array$_t_address_$dyn_memory_ptr", | |
| "nodeType": "YulIdentifier", | |
| "src": "16176:47:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "16176:54:8" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "16166:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "16239:93:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "16320:3:8" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "16325:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_array$_t_address_$dyn_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "16246:73:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "16246:86:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "16239:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "16341:71:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "16406:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_dataslot_t_array$_t_address_$dyn_memory_ptr", | |
| "nodeType": "YulIdentifier", | |
| "src": "16356:49:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "16356:56:8" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "baseRef", | |
| "nodeType": "YulTypedName", | |
| "src": "16345:7:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "16421:21:8", | |
| "value": { | |
| "name": "baseRef", | |
| "nodeType": "YulIdentifier", | |
| "src": "16435:7:8" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "srcPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "16425:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "16511:224:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "16525:34:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "srcPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "16552:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "16546:5:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "16546:13:8" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "elementValue0", | |
| "nodeType": "YulTypedName", | |
| "src": "16529:13:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "16572:70:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "elementValue0", | |
| "nodeType": "YulIdentifier", | |
| "src": "16623:13:8" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "16638:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encodeUpdatedPos_t_address_to_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "16579:43:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "16579:63:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "16572:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "16655:70:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "srcPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "16718:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_nextElement_t_array$_t_address_$dyn_memory_ptr", | |
| "nodeType": "YulIdentifier", | |
| "src": "16665:52:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "16665:60:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "srcPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "16655:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "16473:1:8" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "16476:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "lt", | |
| "nodeType": "YulIdentifier", | |
| "src": "16470:2:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "16470:13:8" | |
| }, | |
| "nodeType": "YulForLoop", | |
| "post": { | |
| "nodeType": "YulBlock", | |
| "src": "16484:18:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "16486:14:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "16495:1:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "16498:1:8", | |
| "type": "", | |
| "value": "1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "16491:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "16491:9:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "16486:1:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "pre": { | |
| "nodeType": "YulBlock", | |
| "src": "16455:14:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "16457:10:8", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "16466:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulTypedName", | |
| "src": "16461:1:8", | |
| "type": "" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "src": "16451:284:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "16744:10:8", | |
| "value": { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "16751:3:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "16744:3:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_array$_t_address_$dyn_memory_ptr_to_t_array$_t_address_$dyn_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "16131:5:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "16138:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "16147:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "16028:732:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "17026:555:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "17036:27:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "17048:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "17059:3:8", | |
| "type": "", | |
| "value": "160" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "17044:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "17044:19:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "17036:4:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "17117:6:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "17130:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "17141:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "17126:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "17126:17:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "17073:43:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "17073:71:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "17073:71:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value1", | |
| "nodeType": "YulIdentifier", | |
| "src": "17198:6:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "17211:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "17222:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "17207:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "17207:18:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "17154:43:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "17154:72:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "17154:72:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value2", | |
| "nodeType": "YulIdentifier", | |
| "src": "17280:6:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "17293:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "17304:2:8", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "17289:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "17289:18:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "17236:43:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "17236:72:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "17236:72:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value3", | |
| "nodeType": "YulIdentifier", | |
| "src": "17362:6:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "17375:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "17386:2:8", | |
| "type": "", | |
| "value": "96" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "17371:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "17371:18:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "17318:43:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "17318:72:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "17318:72:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "17411:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "17422:3:8", | |
| "type": "", | |
| "value": "128" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "17407:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "17407:19:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "17432:4:8" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "17438:9:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "17428:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "17428:20:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "17400:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "17400:49:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "17400:49:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "17458:116:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value4", | |
| "nodeType": "YulIdentifier", | |
| "src": "17560:6:8" | |
| }, | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "17569:4:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_array$_t_address_$dyn_memory_ptr_to_t_array$_t_address_$dyn_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "17466:93:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "17466:108:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "17458:4:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256_t_array$_t_address_$dyn_memory_ptr__to_t_uint256_t_uint256_t_uint256_t_uint256_t_array$_t_address_$dyn_memory_ptr__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "16966:9:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value4", | |
| "nodeType": "YulTypedName", | |
| "src": "16978:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value3", | |
| "nodeType": "YulTypedName", | |
| "src": "16986:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value2", | |
| "nodeType": "YulTypedName", | |
| "src": "16994:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value1", | |
| "nodeType": "YulTypedName", | |
| "src": "17002:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "17010:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "17021:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "16766:815:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "17693:119:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "17715:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "17723:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "17711:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "17711:14:8" | |
| }, | |
| { | |
| "hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "17727:34:8", | |
| "type": "", | |
| "value": "Ownable: new owner is the zero a" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "17704:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "17704:58:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "17704:58:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "17783:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "17791:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "17779:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "17779:15:8" | |
| }, | |
| { | |
| "hexValue": "646472657373", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "17796:8:8", | |
| "type": "", | |
| "value": "ddress" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "17772:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "17772:33:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "17772:33:8" | |
| } | |
| ] | |
| }, | |
| "name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "17685:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "17587:225:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "17964:220:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "17974:74:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "18040:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "18045:2:8", | |
| "type": "", | |
| "value": "38" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "17981:58:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "17981:67:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "17974:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "18146:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe", | |
| "nodeType": "YulIdentifier", | |
| "src": "18057:88:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "18057:93:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "18057:93:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "18159:19:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "18170:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "18175:2:8", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "18166:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "18166:12:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "18159:3:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "17952:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "17960:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "17818:366:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "18361:248:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "18371:26:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "18383:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "18394:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "18379:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "18379:18:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "18371:4:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "18418:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "18429:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "18414:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "18414:17:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "18437:4:8" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "18443:9:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "18433:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "18433:20:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "18407:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "18407:47:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "18407:47:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "18463:139:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "18597:4:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "18471:124:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "18471:131:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "18463:4:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "18341:9:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "18356:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "18190:419:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "18721:124:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "18743:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "18751:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "18739:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "18739:14:8" | |
| }, | |
| { | |
| "hexValue": "496e697469616c697a61626c653a20636f6e7472616374206973206e6f742069", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "18755:34:8", | |
| "type": "", | |
| "value": "Initializable: contract is not i" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "18732:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "18732:58:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "18732:58:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "18811:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "18819:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "18807:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "18807:15:8" | |
| }, | |
| { | |
| "hexValue": "6e697469616c697a696e67", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "18824:13:8", | |
| "type": "", | |
| "value": "nitializing" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "18800:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "18800:38:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "18800:38:8" | |
| } | |
| ] | |
| }, | |
| "name": "store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "18713:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "18615:230:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "18997:220:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "19007:74:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "19073:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "19078:2:8", | |
| "type": "", | |
| "value": "43" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "19014:58:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "19014:67:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "19007:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "19179:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "store_literal_in_memory_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b", | |
| "nodeType": "YulIdentifier", | |
| "src": "19090:88:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "19090:93:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "19090:93:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "19192:19:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "19203:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "19208:2:8", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "19199:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "19199:12:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "19192:3:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "18985:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "18993:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "18851:366:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "19394:248:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "19404:26:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "19416:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "19427:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "19412:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "19412:18:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "19404:4:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "19451:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "19462:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "19447:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "19447:17:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "19470:4:8" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "19476:9:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "19466:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "19466:20:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "19440:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "19440:47:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "19440:47:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "19496:139:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "19630:4:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "19504:124:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "19504:131:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "19496:4:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_stringliteral_d688db918bb9dd50354922faa108595679886fe9ff08046ad1ffe30aaea55f8b__to_t_string_memory_ptr__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "19374:9:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "19389:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "19223:419:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "19754:76:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "19776:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "19784:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "19772:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "19772:14:8" | |
| }, | |
| { | |
| "hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "19788:34:8", | |
| "type": "", | |
| "value": "Ownable: caller is not the owner" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "19765:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "19765:58:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "19765:58:8" | |
| } | |
| ] | |
| }, | |
| "name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "19746:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "19648:182:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "19982:220:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "19992:74:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "20058:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "20063:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "19999:58:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "19999:67:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "19992:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "20164:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe", | |
| "nodeType": "YulIdentifier", | |
| "src": "20075:88:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "20075:93:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "20075:93:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "20177:19:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "20188:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "20193:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "20184:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "20184:12:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "20177:3:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "19970:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "19978:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "19836:366:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "20379:248:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "20389:26:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "20401:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "20412:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "20397:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "20397:18:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "20389:4:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "20436:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "20447:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "20432:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "20432:17:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "20455:4:8" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "20461:9:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "20451:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "20451:20:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "20425:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "20425:47:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "20425:47:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "20481:139:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "20615:4:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "20489:124:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "20489:131:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "20481:4:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "20359:9:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "20374:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "20208:419:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "20739:60:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "20761:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "20769:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "20757:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "20757:14:8" | |
| }, | |
| { | |
| "hexValue": "5061757361626c653a20706175736564", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "20773:18:8", | |
| "type": "", | |
| "value": "Pausable: paused" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "20750:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "20750:42:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "20750:42:8" | |
| } | |
| ] | |
| }, | |
| "name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "20731:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "20633:166:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "20951:220:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "20961:74:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "21027:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "21032:2:8", | |
| "type": "", | |
| "value": "16" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "20968:58:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "20968:67:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "20961:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "21133:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a", | |
| "nodeType": "YulIdentifier", | |
| "src": "21044:88:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "21044:93:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "21044:93:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "21146:19:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "21157:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "21162:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "21153:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "21153:12:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "21146:3:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "20939:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "20947:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "20805:366:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "21348:248:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "21358:26:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "21370:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "21381:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "21366:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "21366:18:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "21358:4:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "21405:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "21416:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "21401:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "21401:17:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "21424:4:8" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "21430:9:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "21420:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "21420:20:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "21394:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "21394:47:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "21394:47:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "21450:139:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "21584:4:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "21458:124:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "21458:131:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "21450:4:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "21328:9:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "21343:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "21177:419:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "21708:75:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "21730:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "21738:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "21726:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "21726:14:8" | |
| }, | |
| { | |
| "hexValue": "5265656e7472616e637947756172643a207265656e7472616e742063616c6c", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "21742:33:8", | |
| "type": "", | |
| "value": "ReentrancyGuard: reentrant call" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "21719:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "21719:57:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "21719:57:8" | |
| } | |
| ] | |
| }, | |
| "name": "store_literal_in_memory_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "21700:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "21602:181:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "21935:220:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "21945:74:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "22011:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "22016:2:8", | |
| "type": "", | |
| "value": "31" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "21952:58:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "21952:67:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "21945:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "22117:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "store_literal_in_memory_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619", | |
| "nodeType": "YulIdentifier", | |
| "src": "22028:88:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "22028:93:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "22028:93:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "22130:19:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "22141:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "22146:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "22137:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "22137:12:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "22130:3:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "21923:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "21931:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "21789:366:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "22332:248:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "22342:26:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "22354:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "22365:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "22350:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "22350:18:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "22342:4:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "22389:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "22400:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "22385:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "22385:17:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "22408:4:8" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "22414:9:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "22404:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "22404:20:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "22378:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "22378:47:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "22378:47:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "22434:139:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "22568:4:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "22442:124:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "22442:131:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "22434:4:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "22312:9:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "22327:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "22161:419:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "22644:40:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "22655:22:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "22671:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "22665:5:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "22665:12:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "22655:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_length_t_bytes_memory_ptr", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "22627:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "22637:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "22586:98:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "22785:73:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "22802:3:8" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "22807:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "22795:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "22795:19:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "22795:19:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "22823:29:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "22842:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "22847:4:8", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "22838:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "22838:14:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "updated_pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "22823:11:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "22757:3:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "22762:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "updated_pos", | |
| "nodeType": "YulTypedName", | |
| "src": "22773:11:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "22690:168:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "22926:184:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "22936:10:8", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "22945:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulTypedName", | |
| "src": "22940:1:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "23005:63:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dst", | |
| "nodeType": "YulIdentifier", | |
| "src": "23030:3:8" | |
| }, | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "23035:1:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "23026:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "23026:11:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "src", | |
| "nodeType": "YulIdentifier", | |
| "src": "23049:3:8" | |
| }, | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "23054:1:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "23045:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "23045:11:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "23039:5:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "23039:18:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "23019:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "23019:39:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "23019:39:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "22966:1:8" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "22969:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "lt", | |
| "nodeType": "YulIdentifier", | |
| "src": "22963:2:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "22963:13:8" | |
| }, | |
| "nodeType": "YulForLoop", | |
| "post": { | |
| "nodeType": "YulBlock", | |
| "src": "22977:19:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "22979:15:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "22988:1:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "22991:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "22984:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "22984:10:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "22979:1:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "pre": { | |
| "nodeType": "YulBlock", | |
| "src": "22959:3:8", | |
| "statements": [] | |
| }, | |
| "src": "22955:113:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dst", | |
| "nodeType": "YulIdentifier", | |
| "src": "23088:3:8" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "23093:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "23084:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "23084:16:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "23102:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "23077:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "23077:27:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "23077:27:8" | |
| } | |
| ] | |
| }, | |
| "name": "copy_memory_to_memory_with_cleanup", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "src", | |
| "nodeType": "YulTypedName", | |
| "src": "22908:3:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dst", | |
| "nodeType": "YulTypedName", | |
| "src": "22913:3:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "22918:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "22864:246:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "23164:54:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "23174:38:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "23192:5:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "23199:2:8", | |
| "type": "", | |
| "value": "31" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "23188:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "23188:14:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "23208:2:8", | |
| "type": "", | |
| "value": "31" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "not", | |
| "nodeType": "YulIdentifier", | |
| "src": "23204:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "23204:7:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nodeType": "YulIdentifier", | |
| "src": "23184:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "23184:28:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "result", | |
| "nodeType": "YulIdentifier", | |
| "src": "23174:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "round_up_to_mul_of_32", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "23147:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "result", | |
| "nodeType": "YulTypedName", | |
| "src": "23157:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "23116:102:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "23314:283:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "23324:52:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "23370:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_length_t_bytes_memory_ptr", | |
| "nodeType": "YulIdentifier", | |
| "src": "23338:31:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "23338:38:8" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "23328:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "23385:77:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "23450:3:8" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "23455:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "23392:57:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "23392:70:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "23385:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "23510:5:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "23517:4:8", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "23506:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "23506:16:8" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "23524:3:8" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "23529:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "copy_memory_to_memory_with_cleanup", | |
| "nodeType": "YulIdentifier", | |
| "src": "23471:34:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "23471:65:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "23471:65:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "23545:46:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "23556:3:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "23583:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "round_up_to_mul_of_32", | |
| "nodeType": "YulIdentifier", | |
| "src": "23561:21:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "23561:29:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "23552:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "23552:39:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "23545:3:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "23295:5:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "23302:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "23310:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "23224:373:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "23775:357:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "23785:26:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "23797:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "23808:2:8", | |
| "type": "", | |
| "value": "96" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "23793:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "23793:18:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "23785:4:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "23865:6:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "23878:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "23889:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "23874:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "23874:17:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_address_to_t_address_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "23821:43:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "23821:71:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "23821:71:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value1", | |
| "nodeType": "YulIdentifier", | |
| "src": "23946:6:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "23959:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "23970:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "23955:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "23955:18:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "23902:43:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "23902:72:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "23902:72:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "23995:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "24006:2:8", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "23991:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "23991:18:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "24015:4:8" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "24021:9:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "24011:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "24011:20:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "23984:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "23984:48:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "23984:48:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "24041:84:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value2", | |
| "nodeType": "YulIdentifier", | |
| "src": "24111:6:8" | |
| }, | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "24120:4:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "24049:61:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "24049:76:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "24041:4:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "23731:9:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value2", | |
| "nodeType": "YulTypedName", | |
| "src": "23743:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value1", | |
| "nodeType": "YulTypedName", | |
| "src": "23751:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "23759:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "23770:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "23603:529:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "24166:152:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "24183:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "24186:77:8", | |
| "type": "", | |
| "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "24176:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "24176:88:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "24176:88:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "24280:1:8", | |
| "type": "", | |
| "value": "4" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "24283:4:8", | |
| "type": "", | |
| "value": "0x12" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "24273:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "24273:15:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "24273:15:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "24304:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "24307:4:8", | |
| "type": "", | |
| "value": "0x24" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "24297:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "24297:15:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "24297:15:8" | |
| } | |
| ] | |
| }, | |
| "name": "panic_error_0x12", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "24138:180:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "24366:143:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "24376:25:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "x", | |
| "nodeType": "YulIdentifier", | |
| "src": "24399:1:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "24381:17:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "24381:20:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "x", | |
| "nodeType": "YulIdentifier", | |
| "src": "24376:1:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "24410:25:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "y", | |
| "nodeType": "YulIdentifier", | |
| "src": "24433:1:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "24415:17:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "24415:20:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "y", | |
| "nodeType": "YulIdentifier", | |
| "src": "24410:1:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "24457:22:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "panic_error_0x12", | |
| "nodeType": "YulIdentifier", | |
| "src": "24459:16:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "24459:18:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "24459:18:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "y", | |
| "nodeType": "YulIdentifier", | |
| "src": "24454:1:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nodeType": "YulIdentifier", | |
| "src": "24447:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "24447:9:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "24444:35:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "24489:14:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "x", | |
| "nodeType": "YulIdentifier", | |
| "src": "24498:1:8" | |
| }, | |
| { | |
| "name": "y", | |
| "nodeType": "YulIdentifier", | |
| "src": "24501:1:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "div", | |
| "nodeType": "YulIdentifier", | |
| "src": "24494:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "24494:9:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "r", | |
| "nodeType": "YulIdentifier", | |
| "src": "24489:1:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "checked_div_t_uint256", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "x", | |
| "nodeType": "YulTypedName", | |
| "src": "24355:1:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "y", | |
| "nodeType": "YulTypedName", | |
| "src": "24358:1:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "r", | |
| "nodeType": "YulTypedName", | |
| "src": "24364:1:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "24324:185:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "24543:152:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "24560:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "24563:77:8", | |
| "type": "", | |
| "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "24553:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "24553:88:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "24553:88:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "24657:1:8", | |
| "type": "", | |
| "value": "4" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "24660:4:8", | |
| "type": "", | |
| "value": "0x41" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "24650:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "24650:15:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "24650:15:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "24681:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "24684:4:8", | |
| "type": "", | |
| "value": "0x24" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "24674:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "24674:15:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "24674:15:8" | |
| } | |
| ] | |
| }, | |
| "name": "panic_error_0x41", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "24515:180:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "24729:152:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "24746:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "24749:77:8", | |
| "type": "", | |
| "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "24739:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "24739:88:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "24739:88:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "24843:1:8", | |
| "type": "", | |
| "value": "4" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "24846:4:8", | |
| "type": "", | |
| "value": "0x32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "24836:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "24836:15:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "24836:15:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "24867:1:8", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "24870:4:8", | |
| "type": "", | |
| "value": "0x24" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "24860:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "24860:15:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "24860:15:8" | |
| } | |
| ] | |
| }, | |
| "name": "panic_error_0x32", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "24701:180:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "25063:307:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "25073:26:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "25085:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "25096:2:8", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "25081:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "25081:18:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "25073:4:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "25153:6:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "25166:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "25177:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "25162:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "25162:17:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "25109:43:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "25109:71:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "25109:71:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "25201:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "25212:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "25197:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "25197:18:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "25221:4:8" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "25227:9:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "25217:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "25217:20:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "25190:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "25190:48:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "25190:48:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "25247:116:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value1", | |
| "nodeType": "YulIdentifier", | |
| "src": "25349:6:8" | |
| }, | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "25358:4:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_array$_t_address_$dyn_memory_ptr_to_t_array$_t_address_$dyn_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "25255:93:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "25255:108:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "25247:4:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_uint256_t_array$_t_address_$dyn_memory_ptr__to_t_uint256_t_array$_t_address_$dyn_memory_ptr__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "25027:9:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value1", | |
| "nodeType": "YulTypedName", | |
| "src": "25039:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "25047:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "25058:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "24887:483:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "25419:238:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "25429:58:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "25451:6:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "size", | |
| "nodeType": "YulIdentifier", | |
| "src": "25481:4:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "round_up_to_mul_of_32", | |
| "nodeType": "YulIdentifier", | |
| "src": "25459:21:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "25459:27:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "25447:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "25447:40:8" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "newFreePtr", | |
| "nodeType": "YulTypedName", | |
| "src": "25433:10:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "25598:22:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "panic_error_0x41", | |
| "nodeType": "YulIdentifier", | |
| "src": "25600:16:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "25600:18:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "25600:18:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "newFreePtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "25541:10:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "25553:18:8", | |
| "type": "", | |
| "value": "0xffffffffffffffff" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nodeType": "YulIdentifier", | |
| "src": "25538:2:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "25538:34:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "newFreePtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "25577:10:8" | |
| }, | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "25589:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "lt", | |
| "nodeType": "YulIdentifier", | |
| "src": "25574:2:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "25574:22:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "or", | |
| "nodeType": "YulIdentifier", | |
| "src": "25535:2:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "25535:62:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "25532:88:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "25636:2:8", | |
| "type": "", | |
| "value": "64" | |
| }, | |
| { | |
| "name": "newFreePtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "25640:10:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "25629:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "25629:22:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "25629:22:8" | |
| } | |
| ] | |
| }, | |
| "name": "finalize_allocation", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "25405:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "size", | |
| "nodeType": "YulTypedName", | |
| "src": "25413:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "25376:281:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "25704:88:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "25714:30:8", | |
| "value": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "allocate_unbounded", | |
| "nodeType": "YulIdentifier", | |
| "src": "25724:18:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "25724:20:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "25714:6:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "25773:6:8" | |
| }, | |
| { | |
| "name": "size", | |
| "nodeType": "YulIdentifier", | |
| "src": "25781:4:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "finalize_allocation", | |
| "nodeType": "YulIdentifier", | |
| "src": "25753:19:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "25753:33:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "25753:33:8" | |
| } | |
| ] | |
| }, | |
| "name": "allocate_memory", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "size", | |
| "nodeType": "YulTypedName", | |
| "src": "25688:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "25697:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "25663:129:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "25880:229:8", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "25985:22:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "panic_error_0x41", | |
| "nodeType": "YulIdentifier", | |
| "src": "25987:16:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "25987:18:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "25987:18:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "25957:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "25965:18:8", | |
| "type": "", | |
| "value": "0xffffffffffffffff" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nodeType": "YulIdentifier", | |
| "src": "25954:2:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "25954:30:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "25951:56:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "26017:25:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "26029:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "26037:4:8", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mul", | |
| "nodeType": "YulIdentifier", | |
| "src": "26025:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "26025:17:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "size", | |
| "nodeType": "YulIdentifier", | |
| "src": "26017:4:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "26079:23:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "size", | |
| "nodeType": "YulIdentifier", | |
| "src": "26091:4:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "26097:4:8", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "26087:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "26087:15:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "size", | |
| "nodeType": "YulIdentifier", | |
| "src": "26079:4:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_allocation_size_t_array$_t_uint256_$dyn_memory_ptr", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "25864:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "size", | |
| "nodeType": "YulTypedName", | |
| "src": "25875:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "25798:311:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "26178:80:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "26188:22:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "26203:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "26197:5:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "26197:13:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "26188:5:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "26246:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "validator_revert_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "26219:26:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "26219:33:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "26219:33:8" | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_t_uint256_fromMemory", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "26156:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "26164:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "26172:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "26115:143:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "26394:619:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "26404:90:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "26486:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_allocation_size_t_array$_t_uint256_$dyn_memory_ptr", | |
| "nodeType": "YulIdentifier", | |
| "src": "26429:56:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "26429:64:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "allocate_memory", | |
| "nodeType": "YulIdentifier", | |
| "src": "26413:15:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "26413:81:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "array", | |
| "nodeType": "YulIdentifier", | |
| "src": "26404:5:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "26503:16:8", | |
| "value": { | |
| "name": "array", | |
| "nodeType": "YulIdentifier", | |
| "src": "26514:5:8" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "dst", | |
| "nodeType": "YulTypedName", | |
| "src": "26507:3:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "array", | |
| "nodeType": "YulIdentifier", | |
| "src": "26536:5:8" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "26543:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "26529:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "26529:21:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "26529:21:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "26559:23:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "array", | |
| "nodeType": "YulIdentifier", | |
| "src": "26570:5:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "26577:4:8", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "26566:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "26566:16:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "dst", | |
| "nodeType": "YulIdentifier", | |
| "src": "26559:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "26592:44:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "26610:6:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "26622:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "26630:4:8", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mul", | |
| "nodeType": "YulIdentifier", | |
| "src": "26618:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "26618:17:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "26606:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "26606:30:8" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "srcEnd", | |
| "nodeType": "YulTypedName", | |
| "src": "26596:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "26664:103:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef", | |
| "nodeType": "YulIdentifier", | |
| "src": "26678:77:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "26678:79:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "26678:79:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "srcEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "26651:6:8" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "26659:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nodeType": "YulIdentifier", | |
| "src": "26648:2:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "26648:15:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "26645:122:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "26852:155:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "26867:21:8", | |
| "value": { | |
| "name": "src", | |
| "nodeType": "YulIdentifier", | |
| "src": "26885:3:8" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "elementPos", | |
| "nodeType": "YulTypedName", | |
| "src": "26871:10:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "dst", | |
| "nodeType": "YulIdentifier", | |
| "src": "26909:3:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "elementPos", | |
| "nodeType": "YulIdentifier", | |
| "src": "26946:10:8" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "26958:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_uint256_fromMemory", | |
| "nodeType": "YulIdentifier", | |
| "src": "26914:31:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "26914:48:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "26902:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "26902:61:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "26902:61:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "26976:21:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "dst", | |
| "nodeType": "YulIdentifier", | |
| "src": "26987:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "26992:4:8", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "26983:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "26983:14:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "dst", | |
| "nodeType": "YulIdentifier", | |
| "src": "26976:3:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "src", | |
| "nodeType": "YulIdentifier", | |
| "src": "26805:3:8" | |
| }, | |
| { | |
| "name": "srcEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "26810:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "lt", | |
| "nodeType": "YulIdentifier", | |
| "src": "26802:2:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "26802:15:8" | |
| }, | |
| "nodeType": "YulForLoop", | |
| "post": { | |
| "nodeType": "YulBlock", | |
| "src": "26818:25:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "26820:21:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "src", | |
| "nodeType": "YulIdentifier", | |
| "src": "26831:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "26836:4:8", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "26827:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "26827:14:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "src", | |
| "nodeType": "YulIdentifier", | |
| "src": "26820:3:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "pre": { | |
| "nodeType": "YulBlock", | |
| "src": "26780:21:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "26782:17:8", | |
| "value": { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "26793:6:8" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "src", | |
| "nodeType": "YulTypedName", | |
| "src": "26786:3:8", | |
| "type": "" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "src": "26776:231:8" | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_available_length_t_array$_t_uint256_$dyn_memory_ptr_fromMemory", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "26364:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "26372:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "26380:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "array", | |
| "nodeType": "YulTypedName", | |
| "src": "26388:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "26281:732:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "27124:297:8", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "27173:83:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", | |
| "nodeType": "YulIdentifier", | |
| "src": "27175:77:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "27175:79:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "27175:79:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "27152:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "27160:4:8", | |
| "type": "", | |
| "value": "0x1f" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "27148:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "27148:17:8" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "27167:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nodeType": "YulIdentifier", | |
| "src": "27144:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "27144:27:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nodeType": "YulIdentifier", | |
| "src": "27137:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "27137:35:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "27134:122:8" | |
| }, | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "27265:27:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "27285:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "27279:5:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "27279:13:8" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "27269:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "27301:114:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "27388:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "27396:4:8", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "27384:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "27384:17:8" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "27403:6:8" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "27411:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_available_length_t_array$_t_uint256_$dyn_memory_ptr_fromMemory", | |
| "nodeType": "YulIdentifier", | |
| "src": "27310:73:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "27310:105:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "array", | |
| "nodeType": "YulIdentifier", | |
| "src": "27301:5:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_t_array$_t_uint256_$dyn_memory_ptr_fromMemory", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "27102:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "27110:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "array", | |
| "nodeType": "YulTypedName", | |
| "src": "27118:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "27036:385:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "27529:452:8", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "27575:83:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nodeType": "YulIdentifier", | |
| "src": "27577:77:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "27577:79:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "27577:79:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "27550:7:8" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "27559:9:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "27546:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "27546:23:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "27571:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nodeType": "YulIdentifier", | |
| "src": "27542:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "27542:32:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "27539:119:8" | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "27668:306:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "27683:38:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "27707:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "27718:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "27703:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "27703:17:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "27697:5:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "27697:24:8" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "27687:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "27768:83:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
| "nodeType": "YulIdentifier", | |
| "src": "27770:77:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "27770:79:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "27770:79:8" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "27740:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "27748:18:8", | |
| "type": "", | |
| "value": "0xffffffffffffffff" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nodeType": "YulIdentifier", | |
| "src": "27737:2:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "27737:30:8" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "27734:117:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "27865:99:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "27936:9:8" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "27947:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "27932:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "27932:22:8" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "27956:7:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_array$_t_uint256_$dyn_memory_ptr_fromMemory", | |
| "nodeType": "YulIdentifier", | |
| "src": "27875:56:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "27875:89:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "27865:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "27499:9:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulTypedName", | |
| "src": "27510:7:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "27522:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "27427:554:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "28101:34:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "28111:18:8", | |
| "value": { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "28126:3:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "updated_pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "28111:11:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "28073:3:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "28078:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "updated_pos", | |
| "nodeType": "YulTypedName", | |
| "src": "28089:11:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "27987:148:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "28247:66:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "28269:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "28277:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "28265:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "28265:14:8" | |
| }, | |
| { | |
| "hexValue": "20636f6c6c61746572616c5265636569766564203a20", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "28281:24:8", | |
| "type": "", | |
| "value": " collateralReceived : " | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "28258:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "28258:48:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "28258:48:8" | |
| } | |
| ] | |
| }, | |
| "name": "store_literal_in_memory_6a802c5c9a85063d63c6dffc9b745b2d4de41da9dac3eea78318af5d8e0c428a", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "28239:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "28141:172:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "28483:238:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "28493:92:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "28577:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "28582:2:8", | |
| "type": "", | |
| "value": "22" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "28500:76:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "28500:85:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "28493:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "28683:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "store_literal_in_memory_6a802c5c9a85063d63c6dffc9b745b2d4de41da9dac3eea78318af5d8e0c428a", | |
| "nodeType": "YulIdentifier", | |
| "src": "28594:88:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "28594:93:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "28594:93:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "28696:19:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "28707:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "28712:2:8", | |
| "type": "", | |
| "value": "22" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "28703:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "28703:12:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "28696:3:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_stringliteral_6a802c5c9a85063d63c6dffc9b745b2d4de41da9dac3eea78318af5d8e0c428a_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "28471:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "28479:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "28319:402:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "28786:40:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "28797:22:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "28813:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "28807:5:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "28807:12:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "28797:6:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_length_t_string_memory_ptr", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "28769:5:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "28779:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "28727:99:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "28942:280:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "28952:53:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "28999:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_length_t_string_memory_ptr", | |
| "nodeType": "YulIdentifier", | |
| "src": "28966:32:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "28966:39:8" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "28956:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "29014:96:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "29098:3:8" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "29103:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "29021:76:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "29021:89:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "29014:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "29158:5:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "29165:4:8", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "29154:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "29154:16:8" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "29172:3:8" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "29177:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "copy_memory_to_memory_with_cleanup", | |
| "nodeType": "YulIdentifier", | |
| "src": "29119:34:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "29119:65:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "29119:65:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "29193:23:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "29204:3:8" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "29209:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "29200:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "29200:16:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "29193:3:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "28923:5:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "28930:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "28938:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "28832:390:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "29334:65:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "29356:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "29364:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "29352:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "29352:14:8" | |
| }, | |
| { | |
| "hexValue": "20636f6c6c61746572616c6c546f53656c6c203a20", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "29368:23:8", | |
| "type": "", | |
| "value": " collaterallToSell : " | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "29345:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "29345:47:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "29345:47:8" | |
| } | |
| ] | |
| }, | |
| "name": "store_literal_in_memory_9252efacdf0e31a2a8d746ef5da0ea5199960f0bba313276d0bde3427446c5a8", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "29326:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "29228:171:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "29569:238:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "29579:92:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "29663:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "29668:2:8", | |
| "type": "", | |
| "value": "21" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "29586:76:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "29586:85:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "29579:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "29769:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "store_literal_in_memory_9252efacdf0e31a2a8d746ef5da0ea5199960f0bba313276d0bde3427446c5a8", | |
| "nodeType": "YulIdentifier", | |
| "src": "29680:88:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "29680:93:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "29680:93:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "29782:19:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "29793:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "29798:2:8", | |
| "type": "", | |
| "value": "21" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "29789:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "29789:12:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "29782:3:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_stringliteral_9252efacdf0e31a2a8d746ef5da0ea5199960f0bba313276d0bde3427446c5a8_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "29557:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "29565:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "29405:402:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "29919:60:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "29941:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "29949:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "29937:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "29937:14:8" | |
| }, | |
| { | |
| "hexValue": "20616d6f756e744e6565646564203a20", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "29953:18:8", | |
| "type": "", | |
| "value": " amountNeeded : " | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "29930:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "29930:42:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "29930:42:8" | |
| } | |
| ] | |
| }, | |
| "name": "store_literal_in_memory_eeec678fb0ab35db2b67999a45c01a5c46321e8cffa9118affbdffba95ffe08d", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "29911:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "29813:166:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "30149:238:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "30159:92:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "30243:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "30248:2:8", | |
| "type": "", | |
| "value": "16" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "30166:76:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "30166:85:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "30159:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "30349:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "store_literal_in_memory_eeec678fb0ab35db2b67999a45c01a5c46321e8cffa9118affbdffba95ffe08d", | |
| "nodeType": "YulIdentifier", | |
| "src": "30260:88:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "30260:93:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "30260:93:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "30362:19:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "30373:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "30378:2:8", | |
| "type": "", | |
| "value": "16" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "30369:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "30369:12:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "30362:3:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_stringliteral_eeec678fb0ab35db2b67999a45c01a5c46321e8cffa9118affbdffba95ffe08d_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "30137:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "30145:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "29985:402:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "30499:68:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "30521:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "30529:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "30517:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "30517:14:8" | |
| }, | |
| { | |
| "hexValue": "2061637475616c416d6f756e745265636569766564203a20", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "30533:26:8", | |
| "type": "", | |
| "value": " actualAmountReceived : " | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "30510:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "30510:50:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "30510:50:8" | |
| } | |
| ] | |
| }, | |
| "name": "store_literal_in_memory_776f466cf8de322ba491c853e406ae40203d73832dff11f4375ddefd5a2b9c63", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "30491:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "30393:174:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "30737:238:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "30747:92:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "30831:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "30836:2:8", | |
| "type": "", | |
| "value": "24" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "30754:76:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "30754:85:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "30747:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "30937:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "store_literal_in_memory_776f466cf8de322ba491c853e406ae40203d73832dff11f4375ddefd5a2b9c63", | |
| "nodeType": "YulIdentifier", | |
| "src": "30848:88:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "30848:93:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "30848:93:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "30950:19:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "30961:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "30966:2:8", | |
| "type": "", | |
| "value": "24" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "30957:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "30957:12:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "30950:3:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_stringliteral_776f466cf8de322ba491c853e406ae40203d73832dff11f4375ddefd5a2b9c63_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "30725:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "30733:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "30573:402:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "31087:60:8", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "31109:6:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "31117:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "31105:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "31105:14:8" | |
| }, | |
| { | |
| "hexValue": "206f757470757420746f6b656e203a20", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "31121:18:8", | |
| "type": "", | |
| "value": " output token : " | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "31098:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "31098:42:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "31098:42:8" | |
| } | |
| ] | |
| }, | |
| "name": "store_literal_in_memory_6ba74a2aa1422e1cf72544b996fc3d84147af5232bd1daa30700ee653d9b883a", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "31079:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "30981:166:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "31317:238:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "31327:92:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "31411:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "31416:2:8", | |
| "type": "", | |
| "value": "16" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "31334:76:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "31334:85:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "31327:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "31517:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "store_literal_in_memory_6ba74a2aa1422e1cf72544b996fc3d84147af5232bd1daa30700ee653d9b883a", | |
| "nodeType": "YulIdentifier", | |
| "src": "31428:88:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "31428:93:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "31428:93:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "31530:19:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "31541:3:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "31546:2:8", | |
| "type": "", | |
| "value": "16" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "31537:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "31537:12:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "31530:3:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_stringliteral_6ba74a2aa1422e1cf72544b996fc3d84147af5232bd1daa30700ee653d9b883a_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "31305:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "31313:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "31153:402:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "32394:1412:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "32405:155:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "32556:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_stringliteral_6a802c5c9a85063d63c6dffc9b745b2d4de41da9dac3eea78318af5d8e0c428a_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "32412:142:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "32412:148:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "32405:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "32570:102:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "32659:6:8" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "32668:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "32577:81:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "32577:95:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "32570:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "32682:155:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "32833:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_stringliteral_9252efacdf0e31a2a8d746ef5da0ea5199960f0bba313276d0bde3427446c5a8_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "32689:142:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "32689:148:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "32682:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "32847:102:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value1", | |
| "nodeType": "YulIdentifier", | |
| "src": "32936:6:8" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "32945:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "32854:81:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "32854:95:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "32847:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "32959:155:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "33110:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_stringliteral_eeec678fb0ab35db2b67999a45c01a5c46321e8cffa9118affbdffba95ffe08d_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "32966:142:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "32966:148:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "32959:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "33124:102:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value2", | |
| "nodeType": "YulIdentifier", | |
| "src": "33213:6:8" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "33222:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "33131:81:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "33131:95:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "33124:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "33236:155:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "33387:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_stringliteral_776f466cf8de322ba491c853e406ae40203d73832dff11f4375ddefd5a2b9c63_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "33243:142:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "33243:148:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "33236:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "33401:102:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value3", | |
| "nodeType": "YulIdentifier", | |
| "src": "33490:6:8" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "33499:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "33408:81:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "33408:95:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "33401:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "33513:155:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "33664:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_stringliteral_6ba74a2aa1422e1cf72544b996fc3d84147af5232bd1daa30700ee653d9b883a_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "33520:142:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "33520:148:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "33513:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "33678:102:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value4", | |
| "nodeType": "YulIdentifier", | |
| "src": "33767:6:8" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "33776:3:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "33685:81:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "33685:95:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "33678:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "33790:10:8", | |
| "value": { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "33797:3:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "33790:3:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_packed_t_stringliteral_6a802c5c9a85063d63c6dffc9b745b2d4de41da9dac3eea78318af5d8e0c428a_t_string_memory_ptr_t_stringliteral_9252efacdf0e31a2a8d746ef5da0ea5199960f0bba313276d0bde3427446c5a8_t_string_memory_ptr_t_stringliteral_eeec678fb0ab35db2b67999a45c01a5c46321e8cffa9118affbdffba95ffe08d_t_string_memory_ptr_t_stringliteral_776f466cf8de322ba491c853e406ae40203d73832dff11f4375ddefd5a2b9c63_t_string_memory_ptr_t_stringliteral_6ba74a2aa1422e1cf72544b996fc3d84147af5232bd1daa30700ee653d9b883a_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "32341:3:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value4", | |
| "nodeType": "YulTypedName", | |
| "src": "32347:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value3", | |
| "nodeType": "YulTypedName", | |
| "src": "32355:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value2", | |
| "nodeType": "YulTypedName", | |
| "src": "32363:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value1", | |
| "nodeType": "YulTypedName", | |
| "src": "32371:6:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "32379:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "32390:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "31561:2245:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "33904:285:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "33914:53:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "33961:5:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_length_t_string_memory_ptr", | |
| "nodeType": "YulIdentifier", | |
| "src": "33928:32:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "33928:39:8" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "33918:6:8", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "33976:78:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "34042:3:8" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "34047:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "33983:58:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "33983:71:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "33976:3:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "34102:5:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "34109:4:8", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "34098:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "34098:16:8" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "34116:3:8" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "34121:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "copy_memory_to_memory_with_cleanup", | |
| "nodeType": "YulIdentifier", | |
| "src": "34063:34:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "34063:65:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "34063:65:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "34137:46:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "34148:3:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "34175:6:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "round_up_to_mul_of_32", | |
| "nodeType": "YulIdentifier", | |
| "src": "34153:21:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "34153:29:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "34144:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "34144:39:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "34137:3:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "33885:5:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "33892:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "33900:3:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "33812:377:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "34313:195:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "34323:26:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "34335:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "34346:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "34331:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "34331:18:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "34323:4:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "34370:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "34381:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "34366:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "34366:17:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "34389:4:8" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "34395:9:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "34385:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "34385:20:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "34359:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "34359:47:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "34359:47:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "34415:86:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "34487:6:8" | |
| }, | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "34496:4:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "34423:63:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "34423:78:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "34415:4:8" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "34285:9:8", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "34297:6:8", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "34308:4:8", | |
| "type": "" | |
| } | |
| ], | |
| "src": "34195:313:8" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "34774:555:8", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "34784:27:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "34796:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "34807:3:8", | |
| "type": "", | |
| "value": "160" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "34792:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "34792:19:8" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "34784:4:8" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "34865:6:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "34878:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "34889:1:8", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "34874:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "34874:17:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "34821:43:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "34821:71:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "34821:71:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value1", | |
| "nodeType": "YulIdentifier", | |
| "src": "34946:6:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "34959:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "34970:2:8", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "34955:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "34955:18:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "34902:43:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "34902:72:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "34902:72:8" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "34995:9:8" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "35006:2:8", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "34991:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "34991:18:8" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "35015:4:8" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "35021:9:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "35011:3:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "35011:20:8" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "34984:6:8" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "34984:48:8" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "34984:48:8" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "35041:116:8", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value2", | |
| "nodeType": "YulIdentifier", | |
| "src": "35143:6:8" | |
| }, | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "35152:4:8" | |
| } | |
| ], | |
| "functionName |
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)