diff --git a/.deps/npm/@openzeppelin/contracts/access/Ownable.sol b/.deps/npm/@openzeppelin/contracts/access/Ownable.sol new file mode 100644 index 0000000..c181ea1 --- /dev/null +++ b/.deps/npm/@openzeppelin/contracts/access/Ownable.sol @@ -0,0 +1,83 @@ +// SPDX-License-Identifier: MIT +// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) + +pragma solidity ^0.8.0; + +import "../utils/Context.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 Ownable is Context { + address private _owner; + + event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); + + /** + * @dev Initializes the contract setting the deployer as the initial owner. + */ + constructor() { + _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); + } +} diff --git a/.deps/npm/@openzeppelin/contracts/token/ERC20/ERC20.sol b/.deps/npm/@openzeppelin/contracts/token/ERC20/ERC20.sol new file mode 100644 index 0000000..91b7f98 --- /dev/null +++ b/.deps/npm/@openzeppelin/contracts/token/ERC20/ERC20.sol @@ -0,0 +1,365 @@ +// SPDX-License-Identifier: MIT +// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) + +pragma solidity ^0.8.0; + +import "./IERC20.sol"; +import "./extensions/IERC20Metadata.sol"; +import "../../utils/Context.sol"; + +/** + * @dev Implementation of the {IERC20} interface. + * + * This implementation is agnostic to the way tokens are created. This means + * that a supply mechanism has to be added in a derived contract using {_mint}. + * For a generic mechanism see {ERC20PresetMinterPauser}. + * + * TIP: For a detailed writeup see our guide + * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How + * to implement supply mechanisms]. + * + * The default value of {decimals} is 18. To change this, you should override + * this function so it returns a different value. + * + * We have followed general OpenZeppelin Contracts guidelines: functions revert + * instead returning `false` on failure. This behavior is nonetheless + * conventional and does not conflict with the expectations of ERC20 + * applications. + * + * Additionally, an {Approval} event is emitted on calls to {transferFrom}. + * This allows applications to reconstruct the allowance for all accounts just + * by listening to said events. Other implementations of the EIP may not emit + * these events, as it isn't required by the specification. + * + * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} + * functions have been added to mitigate the well-known issues around setting + * allowances. See {IERC20-approve}. + */ +contract ERC20 is Context, IERC20, IERC20Metadata { + mapping(address => uint256) private _balances; + + mapping(address => mapping(address => uint256)) private _allowances; + + uint256 private _totalSupply; + + string private _name; + string private _symbol; + + /** + * @dev Sets the values for {name} and {symbol}. + * + * All two of these values are immutable: they can only be set once during + * construction. + */ + constructor(string memory name_, string memory symbol_) { + _name = name_; + _symbol = symbol_; + } + + /** + * @dev Returns the name of the token. + */ + function name() public view virtual override returns (string memory) { + return _name; + } + + /** + * @dev Returns the symbol of the token, usually a shorter version of the + * name. + */ + function symbol() public view virtual override returns (string memory) { + return _symbol; + } + + /** + * @dev Returns the number of decimals used to get its user representation. + * For example, if `decimals` equals `2`, a balance of `505` tokens should + * be displayed to a user as `5.05` (`505 / 10 ** 2`). + * + * Tokens usually opt for a value of 18, imitating the relationship between + * Ether and Wei. This is the default value returned by this function, unless + * it's overridden. + * + * NOTE: This information is only used for _display_ purposes: it in + * no way affects any of the arithmetic of the contract, including + * {IERC20-balanceOf} and {IERC20-transfer}. + */ + function decimals() public view virtual override returns (uint8) { + return 18; + } + + /** + * @dev See {IERC20-totalSupply}. + */ + function totalSupply() public view virtual override returns (uint256) { + return _totalSupply; + } + + /** + * @dev See {IERC20-balanceOf}. + */ + function balanceOf(address account) public view virtual override returns (uint256) { + return _balances[account]; + } + + /** + * @dev See {IERC20-transfer}. + * + * Requirements: + * + * - `to` cannot be the zero address. + * - the caller must have a balance of at least `amount`. + */ + function transfer(address to, uint256 amount) public virtual override returns (bool) { + address owner = _msgSender(); + _transfer(owner, to, amount); + return true; + } + + /** + * @dev See {IERC20-allowance}. + */ + function allowance(address owner, address spender) public view virtual override returns (uint256) { + return _allowances[owner][spender]; + } + + /** + * @dev See {IERC20-approve}. + * + * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on + * `transferFrom`. This is semantically equivalent to an infinite approval. + * + * Requirements: + * + * - `spender` cannot be the zero address. + */ + function approve(address spender, uint256 amount) public virtual override returns (bool) { + address owner = _msgSender(); + _approve(owner, spender, amount); + return true; + } + + /** + * @dev See {IERC20-transferFrom}. + * + * Emits an {Approval} event indicating the updated allowance. This is not + * required by the EIP. See the note at the beginning of {ERC20}. + * + * NOTE: Does not update the allowance if the current allowance + * is the maximum `uint256`. + * + * Requirements: + * + * - `from` and `to` cannot be the zero address. + * - `from` must have a balance of at least `amount`. + * - the caller must have allowance for ``from``'s tokens of at least + * `amount`. + */ + function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { + address spender = _msgSender(); + _spendAllowance(from, spender, amount); + _transfer(from, to, amount); + return true; + } + + /** + * @dev Atomically increases the allowance granted to `spender` by the caller. + * + * This is an alternative to {approve} that can be used as a mitigation for + * problems described in {IERC20-approve}. + * + * Emits an {Approval} event indicating the updated allowance. + * + * Requirements: + * + * - `spender` cannot be the zero address. + */ + function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { + address owner = _msgSender(); + _approve(owner, spender, allowance(owner, spender) + addedValue); + return true; + } + + /** + * @dev Atomically decreases the allowance granted to `spender` by the caller. + * + * This is an alternative to {approve} that can be used as a mitigation for + * problems described in {IERC20-approve}. + * + * Emits an {Approval} event indicating the updated allowance. + * + * Requirements: + * + * - `spender` cannot be the zero address. + * - `spender` must have allowance for the caller of at least + * `subtractedValue`. + */ + function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { + address owner = _msgSender(); + uint256 currentAllowance = allowance(owner, spender); + require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); + unchecked { + _approve(owner, spender, currentAllowance - subtractedValue); + } + + return true; + } + + /** + * @dev Moves `amount` of tokens from `from` to `to`. + * + * This internal function is equivalent to {transfer}, and can be used to + * e.g. implement automatic token fees, slashing mechanisms, etc. + * + * Emits a {Transfer} event. + * + * Requirements: + * + * - `from` cannot be the zero address. + * - `to` cannot be the zero address. + * - `from` must have a balance of at least `amount`. + */ + function _transfer(address from, address to, uint256 amount) internal virtual { + require(from != address(0), "ERC20: transfer from the zero address"); + require(to != address(0), "ERC20: transfer to the zero address"); + + _beforeTokenTransfer(from, to, amount); + + uint256 fromBalance = _balances[from]; + require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); + unchecked { + _balances[from] = fromBalance - amount; + // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by + // decrementing then incrementing. + _balances[to] += amount; + } + + emit Transfer(from, to, amount); + + _afterTokenTransfer(from, to, amount); + } + + /** @dev Creates `amount` tokens and assigns them to `account`, increasing + * the total supply. + * + * Emits a {Transfer} event with `from` set to the zero address. + * + * Requirements: + * + * - `account` cannot be the zero address. + */ + function _mint(address account, uint256 amount) internal virtual { + require(account != address(0), "ERC20: mint to the zero address"); + + _beforeTokenTransfer(address(0), account, amount); + + _totalSupply += amount; + unchecked { + // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. + _balances[account] += amount; + } + emit Transfer(address(0), account, amount); + + _afterTokenTransfer(address(0), account, amount); + } + + /** + * @dev Destroys `amount` tokens from `account`, reducing the + * total supply. + * + * Emits a {Transfer} event with `to` set to the zero address. + * + * Requirements: + * + * - `account` cannot be the zero address. + * - `account` must have at least `amount` tokens. + */ + function _burn(address account, uint256 amount) internal virtual { + require(account != address(0), "ERC20: burn from the zero address"); + + _beforeTokenTransfer(account, address(0), amount); + + uint256 accountBalance = _balances[account]; + require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); + unchecked { + _balances[account] = accountBalance - amount; + // Overflow not possible: amount <= accountBalance <= totalSupply. + _totalSupply -= amount; + } + + emit Transfer(account, address(0), amount); + + _afterTokenTransfer(account, address(0), amount); + } + + /** + * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. + * + * This internal function is equivalent to `approve`, and can be used to + * e.g. set automatic allowances for certain subsystems, etc. + * + * Emits an {Approval} event. + * + * Requirements: + * + * - `owner` cannot be the zero address. + * - `spender` cannot be the zero address. + */ + function _approve(address owner, address spender, uint256 amount) internal virtual { + require(owner != address(0), "ERC20: approve from the zero address"); + require(spender != address(0), "ERC20: approve to the zero address"); + + _allowances[owner][spender] = amount; + emit Approval(owner, spender, amount); + } + + /** + * @dev Updates `owner` s allowance for `spender` based on spent `amount`. + * + * Does not update the allowance amount in case of infinite allowance. + * Revert if not enough allowance is available. + * + * Might emit an {Approval} event. + */ + function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { + uint256 currentAllowance = allowance(owner, spender); + if (currentAllowance != type(uint256).max) { + require(currentAllowance >= amount, "ERC20: insufficient allowance"); + unchecked { + _approve(owner, spender, currentAllowance - amount); + } + } + } + + /** + * @dev Hook that is called before any transfer of tokens. This includes + * minting and burning. + * + * Calling conditions: + * + * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens + * will be transferred to `to`. + * - when `from` is zero, `amount` tokens will be minted for `to`. + * - when `to` is zero, `amount` of ``from``'s tokens will be burned. + * - `from` and `to` are never both zero. + * + * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. + */ + function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} + + /** + * @dev Hook that is called after any transfer of tokens. This includes + * minting and burning. + * + * Calling conditions: + * + * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens + * has been transferred to `to`. + * - when `from` is zero, `amount` tokens have been minted for `to`. + * - when `to` is zero, `amount` of ``from``'s tokens have been burned. + * - `from` and `to` are never both zero. + * + * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. + */ + function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} +} diff --git a/.deps/npm/@openzeppelin/contracts/token/ERC20/IERC20.sol b/.deps/npm/@openzeppelin/contracts/token/ERC20/IERC20.sol new file mode 100644 index 0000000..6d5b4e9 --- /dev/null +++ b/.deps/npm/@openzeppelin/contracts/token/ERC20/IERC20.sol @@ -0,0 +1,78 @@ +// SPDX-License-Identifier: MIT +// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) + +pragma solidity ^0.8.0; + +/** + * @dev Interface of the ERC20 standard as defined in the EIP. + */ +interface IERC20 { + /** + * @dev Emitted when `value` tokens are moved from one account (`from`) to + * another (`to`). + * + * Note that `value` may be zero. + */ + event Transfer(address indexed from, address indexed to, uint256 value); + + /** + * @dev Emitted when the allowance of a `spender` for an `owner` is set by + * a call to {approve}. `value` is the new allowance. + */ + event Approval(address indexed owner, address indexed spender, uint256 value); + + /** + * @dev Returns the amount of tokens in existence. + */ + function totalSupply() external view returns (uint256); + + /** + * @dev Returns the amount of tokens owned by `account`. + */ + function balanceOf(address account) external view returns (uint256); + + /** + * @dev Moves `amount` tokens from the caller's account to `to`. + * + * Returns a boolean value indicating whether the operation succeeded. + * + * Emits a {Transfer} event. + */ + function transfer(address to, uint256 amount) external returns (bool); + + /** + * @dev Returns the remaining number of tokens that `spender` will be + * allowed to spend on behalf of `owner` through {transferFrom}. This is + * zero by default. + * + * This value changes when {approve} or {transferFrom} are called. + */ + function allowance(address owner, address spender) external view returns (uint256); + + /** + * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. + * + * Returns a boolean value indicating whether the operation succeeded. + * + * IMPORTANT: Beware that changing an allowance with this method brings the risk + * that someone may use both the old and the new allowance by unfortunate + * transaction ordering. One possible solution to mitigate this race + * condition is to first reduce the spender's allowance to 0 and set the + * desired value afterwards: + * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 + * + * Emits an {Approval} event. + */ + function approve(address spender, uint256 amount) external returns (bool); + + /** + * @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); +} diff --git a/.deps/npm/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol b/.deps/npm/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol new file mode 100644 index 0000000..83ba6ac --- /dev/null +++ b/.deps/npm/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol @@ -0,0 +1,28 @@ +// SPDX-License-Identifier: MIT +// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) + +pragma solidity ^0.8.0; + +import "../IERC20.sol"; + +/** + * @dev Interface for the optional metadata functions from the ERC20 standard. + * + * _Available since v4.1._ + */ +interface IERC20Metadata is IERC20 { + /** + * @dev Returns the name of the token. + */ + function name() external view returns (string memory); + + /** + * @dev Returns the symbol of the token. + */ + function symbol() external view returns (string memory); + + /** + * @dev Returns the decimals places of the token. + */ + function decimals() external view returns (uint8); +} diff --git a/.deps/npm/@openzeppelin/contracts/utils/Context.sol b/.deps/npm/@openzeppelin/contracts/utils/Context.sol new file mode 100644 index 0000000..f304065 --- /dev/null +++ b/.deps/npm/@openzeppelin/contracts/utils/Context.sol @@ -0,0 +1,24 @@ +// 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; + } +} diff --git a/contracts/InsuranceContract.sol b/contracts/InsuranceContract.sol new file mode 100644 index 0000000..91c8882 --- /dev/null +++ b/contracts/InsuranceContract.sol @@ -0,0 +1,26 @@ +// SPDX-License-Identifier: MIT +pragma solidity ^0.8.9; + +import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; +import "@openzeppelin/contracts/access/Ownable.sol"; + +contract InsuranceContract is ERC20, Ownable { + address userAddress; + constructor() ERC20("Muhannad Insurance", "MIT") {} + + function mint(address to, uint256 amount) public onlyOwner { + _mint(to, amount); + } + mapping (address => User) public users; + + struct User{ + string userName; + address userAddress; + uint userAge; + uint userBalance; + } + modifier userCheck{ + require(userAddress == msg.sender, "You are not the user");_; + } + +} diff --git a/contracts/MyToken.sol b/contracts/MyToken.sol deleted file mode 100644 index 5b8fd67..0000000 --- a/contracts/MyToken.sol +++ /dev/null @@ -1,13 +0,0 @@ -// SPDX-License-Identifier: MIT -pragma solidity ^0.8.9; - -import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; -import "@openzeppelin/contracts/access/Ownable.sol"; - -contract MyToken is ERC20, Ownable { - constructor() ERC20("MyToken", "MTK") {} - - function mint(address to, uint256 amount) public onlyOwner { - _mint(to, amount); - } -} diff --git a/contracts/artifacts/InsuranceContract.json b/contracts/artifacts/InsuranceContract.json new file mode 100644 index 0000000..eda29d0 --- /dev/null +++ b/contracts/artifacts/InsuranceContract.json @@ -0,0 +1,11887 @@ +{ + "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": { + "@_157": { + "entryPoint": null, + "id": 157, + "parameterSlots": 2, + "returnSlots": 0 + }, + "@_23": { + "entryPoint": null, + "id": 23, + "parameterSlots": 0, + "returnSlots": 0 + }, + "@_842": { + "entryPoint": null, + "id": 842, + "parameterSlots": 0, + "returnSlots": 0 + }, + "@_msgSender_814": { + "entryPoint": 202, + "id": 814, + "parameterSlots": 0, + "returnSlots": 1 + }, + "@_transferOwnership_111": { + "entryPoint": 210, + "id": 111, + "parameterSlots": 1, + "returnSlots": 0 + }, + "array_dataslot_t_string_storage": { + "entryPoint": 566, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "array_length_t_string_memory_ptr": { + "entryPoint": 408, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "clean_up_bytearray_end_slots_t_string_storage": { + "entryPoint": 887, + "id": null, + "parameterSlots": 3, + "returnSlots": 0 + }, + "cleanup_t_uint256": { + "entryPoint": 702, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "clear_storage_range_t_bytes1": { + "entryPoint": 848, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "convert_t_uint256_to_t_uint256": { + "entryPoint": 722, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": { + "entryPoint": 1042, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "divide_by_32_ceil": { + "entryPoint": 587, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "extract_byte_array_length": { + "entryPoint": 513, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "extract_used_part_and_set_length_of_short_byte_array": { + "entryPoint": 1012, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "identity": { + "entryPoint": 712, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "mask_bytes_dynamic": { + "entryPoint": 980, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "panic_error_0x22": { + "entryPoint": 466, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "panic_error_0x41": { + "entryPoint": 419, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "prepare_store_t_uint256": { + "entryPoint": 762, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "shift_left_dynamic": { + "entryPoint": 603, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "shift_right_unsigned_dynamic": { + "entryPoint": 967, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "storage_set_to_zero_t_uint256": { + "entryPoint": 820, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "update_byte_slice_dynamic32": { + "entryPoint": 616, + "id": null, + "parameterSlots": 3, + "returnSlots": 1 + }, + "update_storage_value_t_uint256_to_t_uint256": { + "entryPoint": 772, + "id": null, + "parameterSlots": 3, + "returnSlots": 0 + }, + "zero_value_for_split_t_uint256": { + "entryPoint": 815, + "id": null, + "parameterSlots": 0, + "returnSlots": 1 + } + }, + "generatedSources": [ + { + "ast": { + "nodeType": "YulBlock", + "src": "0:5231:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "66:40:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "77:22:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "93:5:6" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "87:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "87:12:6" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "77:6:6" + } + ] + } + ] + }, + "name": "array_length_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "49:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "59:6:6", + "type": "" + } + ], + "src": "7:99:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "140:152:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "157:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "160:77:6", + "type": "", + "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "150:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "150:88:6" + }, + "nodeType": "YulExpressionStatement", + "src": "150:88:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "254:1:6", + "type": "", + "value": "4" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "257:4:6", + "type": "", + "value": "0x41" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "247:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "247:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "247:15:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "278:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "281:4:6", + "type": "", + "value": "0x24" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "271:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "271:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "271:15:6" + } + ] + }, + "name": "panic_error_0x41", + "nodeType": "YulFunctionDefinition", + "src": "112:180:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "326:152:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "343:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "346:77:6", + "type": "", + "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "336:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "336:88:6" + }, + "nodeType": "YulExpressionStatement", + "src": "336:88:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "440:1:6", + "type": "", + "value": "4" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "443:4:6", + "type": "", + "value": "0x22" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "433:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "433:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "433:15:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "464:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "467:4:6", + "type": "", + "value": "0x24" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "457:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "457:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "457:15:6" + } + ] + }, + "name": "panic_error_0x22", + "nodeType": "YulFunctionDefinition", + "src": "298:180:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "535:269:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "545:22:6", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "559:4:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "565:1:6", + "type": "", + "value": "2" + } + ], + "functionName": { + "name": "div", + "nodeType": "YulIdentifier", + "src": "555:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "555:12:6" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "545:6:6" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "576:38:6", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "606:4:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "612:1:6", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "602:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "602:12:6" + }, + "variables": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulTypedName", + "src": "580:18:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "653:51:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "667:27:6", + "value": { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "681:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "689:4:6", + "type": "", + "value": "0x7f" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "677:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "677:17:6" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "667:6:6" + } + ] + } + ] + }, + "condition": { + "arguments": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulIdentifier", + "src": "633:18:6" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "626:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "626:26:6" + }, + "nodeType": "YulIf", + "src": "623:81:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "756:42:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "panic_error_0x22", + "nodeType": "YulIdentifier", + "src": "770:16:6" + }, + "nodeType": "YulFunctionCall", + "src": "770:18:6" + }, + "nodeType": "YulExpressionStatement", + "src": "770:18:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulIdentifier", + "src": "720:18:6" + }, + { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "743:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "751:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "740:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "740:14:6" + } + ], + "functionName": { + "name": "eq", + "nodeType": "YulIdentifier", + "src": "717:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "717:38:6" + }, + "nodeType": "YulIf", + "src": "714:84:6" + } + ] + }, + "name": "extract_byte_array_length", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "data", + "nodeType": "YulTypedName", + "src": "519:4:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "528:6:6", + "type": "" + } + ], + "src": "484:320:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "864:87:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "874:11:6", + "value": { + "name": "ptr", + "nodeType": "YulIdentifier", + "src": "882:3:6" + }, + "variableNames": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "874:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "902:1:6", + "type": "", + "value": "0" + }, + { + "name": "ptr", + "nodeType": "YulIdentifier", + "src": "905:3:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "895:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "895:14:6" + }, + "nodeType": "YulExpressionStatement", + "src": "895:14:6" + }, + { + "nodeType": "YulAssignment", + "src": "918:26:6", + "value": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "936:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "939:4:6", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "keccak256", + "nodeType": "YulIdentifier", + "src": "926:9:6" + }, + "nodeType": "YulFunctionCall", + "src": "926:18:6" + }, + "variableNames": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "918:4:6" + } + ] + } + ] + }, + "name": "array_dataslot_t_string_storage", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "ptr", + "nodeType": "YulTypedName", + "src": "851:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "data", + "nodeType": "YulTypedName", + "src": "859:4:6", + "type": "" + } + ], + "src": "810:141:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1001:49:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1011:33:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1029:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1036:2:6", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "1025:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1025:14:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1041:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "div", + "nodeType": "YulIdentifier", + "src": "1021:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1021:23:6" + }, + "variableNames": [ + { + "name": "result", + "nodeType": "YulIdentifier", + "src": "1011:6:6" + } + ] + } + ] + }, + "name": "divide_by_32_ceil", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "984:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "result", + "nodeType": "YulTypedName", + "src": "994:6:6", + "type": "" + } + ], + "src": "957:93:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1109:54:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1119:37:6", + "value": { + "arguments": [ + { + "name": "bits", + "nodeType": "YulIdentifier", + "src": "1144:4:6" + }, + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1150:5:6" + } + ], + "functionName": { + "name": "shl", + "nodeType": "YulIdentifier", + "src": "1140:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1140:16:6" + }, + "variableNames": [ + { + "name": "newValue", + "nodeType": "YulIdentifier", + "src": "1119:8:6" + } + ] + } + ] + }, + "name": "shift_left_dynamic", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "bits", + "nodeType": "YulTypedName", + "src": "1084:4:6", + "type": "" + }, + { + "name": "value", + "nodeType": "YulTypedName", + "src": "1090:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "newValue", + "nodeType": "YulTypedName", + "src": "1100:8:6", + "type": "" + } + ], + "src": "1056:107:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1245:317:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "1255:35:6", + "value": { + "arguments": [ + { + "name": "shiftBytes", + "nodeType": "YulIdentifier", + "src": "1276:10:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1288:1:6", + "type": "", + "value": "8" + } + ], + "functionName": { + "name": "mul", + "nodeType": "YulIdentifier", + "src": "1272:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1272:18:6" + }, + "variables": [ + { + "name": "shiftBits", + "nodeType": "YulTypedName", + "src": "1259:9:6", + "type": "" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "1299:109:6", + "value": { + "arguments": [ + { + "name": "shiftBits", + "nodeType": "YulIdentifier", + "src": "1330:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1341:66:6", + "type": "", + "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + } + ], + "functionName": { + "name": "shift_left_dynamic", + "nodeType": "YulIdentifier", + "src": "1311:18:6" + }, + "nodeType": "YulFunctionCall", + "src": "1311:97:6" + }, + "variables": [ + { + "name": "mask", + "nodeType": "YulTypedName", + "src": "1303:4:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "1417:51:6", + "value": { + "arguments": [ + { + "name": "shiftBits", + "nodeType": "YulIdentifier", + "src": "1448:9:6" + }, + { + "name": "toInsert", + "nodeType": "YulIdentifier", + "src": "1459:8:6" + } + ], + "functionName": { + "name": "shift_left_dynamic", + "nodeType": "YulIdentifier", + "src": "1429:18:6" + }, + "nodeType": "YulFunctionCall", + "src": "1429:39:6" + }, + "variableNames": [ + { + "name": "toInsert", + "nodeType": "YulIdentifier", + "src": "1417:8:6" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "1477:30:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1490:5:6" + }, + { + "arguments": [ + { + "name": "mask", + "nodeType": "YulIdentifier", + "src": "1501:4:6" + } + ], + "functionName": { + "name": "not", + "nodeType": "YulIdentifier", + "src": "1497:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1497:9:6" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "1486:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1486:21:6" + }, + "variableNames": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1477:5:6" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "1516:40:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1529:5:6" + }, + { + "arguments": [ + { + "name": "toInsert", + "nodeType": "YulIdentifier", + "src": "1540:8:6" + }, + { + "name": "mask", + "nodeType": "YulIdentifier", + "src": "1550:4:6" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "1536:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1536:19:6" + } + ], + "functionName": { + "name": "or", + "nodeType": "YulIdentifier", + "src": "1526:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "1526:30:6" + }, + "variableNames": [ + { + "name": "result", + "nodeType": "YulIdentifier", + "src": "1516:6:6" + } + ] + } + ] + }, + "name": "update_byte_slice_dynamic32", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "1206:5:6", + "type": "" + }, + { + "name": "shiftBytes", + "nodeType": "YulTypedName", + "src": "1213:10:6", + "type": "" + }, + { + "name": "toInsert", + "nodeType": "YulTypedName", + "src": "1225:8:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "result", + "nodeType": "YulTypedName", + "src": "1238:6:6", + "type": "" + } + ], + "src": "1169:393:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1613:32:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1623:16:6", + "value": { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1634:5:6" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "1623:7:6" + } + ] + } + ] + }, + "name": "cleanup_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "1595:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "1605:7:6", + "type": "" + } + ], + "src": "1568:77:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1683:28:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1693:12:6", + "value": { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1700:5:6" + }, + "variableNames": [ + { + "name": "ret", + "nodeType": "YulIdentifier", + "src": "1693:3:6" + } + ] + } + ] + }, + "name": "identity", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "1669:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "ret", + "nodeType": "YulTypedName", + "src": "1679:3:6", + "type": "" + } + ], + "src": "1651:60:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1777:82:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1787:66:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1845:5:6" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "1827:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "1827:24:6" + } + ], + "functionName": { + "name": "identity", + "nodeType": "YulIdentifier", + "src": "1818:8:6" + }, + "nodeType": "YulFunctionCall", + "src": "1818:34:6" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "1800:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "1800:53:6" + }, + "variableNames": [ + { + "name": "converted", + "nodeType": "YulIdentifier", + "src": "1787:9:6" + } + ] + } + ] + }, + "name": "convert_t_uint256_to_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "1757:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "converted", + "nodeType": "YulTypedName", + "src": "1767:9:6", + "type": "" + } + ], + "src": "1717:142:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1912:28:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1922:12:6", + "value": { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1929:5:6" + }, + "variableNames": [ + { + "name": "ret", + "nodeType": "YulIdentifier", + "src": "1922:3:6" + } + ] + } + ] + }, + "name": "prepare_store_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "1898:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "ret", + "nodeType": "YulTypedName", + "src": "1908:3:6", + "type": "" + } + ], + "src": "1865:75:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2022:193:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "2032:63:6", + "value": { + "arguments": [ + { + "name": "value_0", + "nodeType": "YulIdentifier", + "src": "2087:7:6" + } + ], + "functionName": { + "name": "convert_t_uint256_to_t_uint256", + "nodeType": "YulIdentifier", + "src": "2056:30:6" + }, + "nodeType": "YulFunctionCall", + "src": "2056:39:6" + }, + "variables": [ + { + "name": "convertedValue_0", + "nodeType": "YulTypedName", + "src": "2036:16:6", + "type": "" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "2111:4:6" + }, + { + "arguments": [ + { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "2151:4:6" + } + ], + "functionName": { + "name": "sload", + "nodeType": "YulIdentifier", + "src": "2145:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "2145:11:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2158:6:6" + }, + { + "arguments": [ + { + "name": "convertedValue_0", + "nodeType": "YulIdentifier", + "src": "2190:16:6" + } + ], + "functionName": { + "name": "prepare_store_t_uint256", + "nodeType": "YulIdentifier", + "src": "2166:23:6" + }, + "nodeType": "YulFunctionCall", + "src": "2166:41:6" + } + ], + "functionName": { + "name": "update_byte_slice_dynamic32", + "nodeType": "YulIdentifier", + "src": "2117:27:6" + }, + "nodeType": "YulFunctionCall", + "src": "2117:91:6" + } + ], + "functionName": { + "name": "sstore", + "nodeType": "YulIdentifier", + "src": "2104:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "2104:105:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2104:105:6" + } + ] + }, + "name": "update_storage_value_t_uint256_to_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "slot", + "nodeType": "YulTypedName", + "src": "1999:4:6", + "type": "" + }, + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "2005:6:6", + "type": "" + }, + { + "name": "value_0", + "nodeType": "YulTypedName", + "src": "2013:7:6", + "type": "" + } + ], + "src": "1946:269:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2270:24:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "2280:8:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2287:1:6", + "type": "", + "value": "0" + }, + "variableNames": [ + { + "name": "ret", + "nodeType": "YulIdentifier", + "src": "2280:3:6" + } + ] + } + ] + }, + "name": "zero_value_for_split_t_uint256", + "nodeType": "YulFunctionDefinition", + "returnVariables": [ + { + "name": "ret", + "nodeType": "YulTypedName", + "src": "2266:3:6", + "type": "" + } + ], + "src": "2221:73:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2353:136:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "2363:46:6", + "value": { + "arguments": [], + "functionName": { + "name": "zero_value_for_split_t_uint256", + "nodeType": "YulIdentifier", + "src": "2377:30:6" + }, + "nodeType": "YulFunctionCall", + "src": "2377:32:6" + }, + "variables": [ + { + "name": "zero_0", + "nodeType": "YulTypedName", + "src": "2367:6:6", + "type": "" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "2462:4:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2468:6:6" + }, + { + "name": "zero_0", + "nodeType": "YulIdentifier", + "src": "2476:6:6" + } + ], + "functionName": { + "name": "update_storage_value_t_uint256_to_t_uint256", + "nodeType": "YulIdentifier", + "src": "2418:43:6" + }, + "nodeType": "YulFunctionCall", + "src": "2418:65:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2418:65:6" + } + ] + }, + "name": "storage_set_to_zero_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "slot", + "nodeType": "YulTypedName", + "src": "2339:4:6", + "type": "" + }, + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "2345:6:6", + "type": "" + } + ], + "src": "2300:189:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2545:136:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "2612:63:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "start", + "nodeType": "YulIdentifier", + "src": "2656:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2663:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "storage_set_to_zero_t_uint256", + "nodeType": "YulIdentifier", + "src": "2626:29:6" + }, + "nodeType": "YulFunctionCall", + "src": "2626:39:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2626:39:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "start", + "nodeType": "YulIdentifier", + "src": "2565:5:6" + }, + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "2572:3:6" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "2562:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "2562:14:6" + }, + "nodeType": "YulForLoop", + "post": { + "nodeType": "YulBlock", + "src": "2577:26:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "2579:22:6", + "value": { + "arguments": [ + { + "name": "start", + "nodeType": "YulIdentifier", + "src": "2592:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2599:1:6", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2588:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2588:13:6" + }, + "variableNames": [ + { + "name": "start", + "nodeType": "YulIdentifier", + "src": "2579:5:6" + } + ] + } + ] + }, + "pre": { + "nodeType": "YulBlock", + "src": "2559:2:6", + "statements": [] + }, + "src": "2555:120:6" + } + ] + }, + "name": "clear_storage_range_t_bytes1", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "start", + "nodeType": "YulTypedName", + "src": "2533:5:6", + "type": "" + }, + { + "name": "end", + "nodeType": "YulTypedName", + "src": "2540:3:6", + "type": "" + } + ], + "src": "2495:186:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2766:464:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "2792:431:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "2806:54:6", + "value": { + "arguments": [ + { + "name": "array", + "nodeType": "YulIdentifier", + "src": "2854:5:6" + } + ], + "functionName": { + "name": "array_dataslot_t_string_storage", + "nodeType": "YulIdentifier", + "src": "2822:31:6" + }, + "nodeType": "YulFunctionCall", + "src": "2822:38:6" + }, + "variables": [ + { + "name": "dataArea", + "nodeType": "YulTypedName", + "src": "2810:8:6", + "type": "" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "2873:63:6", + "value": { + "arguments": [ + { + "name": "dataArea", + "nodeType": "YulIdentifier", + "src": "2896:8:6" + }, + { + "arguments": [ + { + "name": "startIndex", + "nodeType": "YulIdentifier", + "src": "2924:10:6" + } + ], + "functionName": { + "name": "divide_by_32_ceil", + "nodeType": "YulIdentifier", + "src": "2906:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "2906:29:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2892:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2892:44:6" + }, + "variables": [ + { + "name": "deleteStart", + "nodeType": "YulTypedName", + "src": "2877:11:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3093:27:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3095:23:6", + "value": { + "name": "dataArea", + "nodeType": "YulIdentifier", + "src": "3110:8:6" + }, + "variableNames": [ + { + "name": "deleteStart", + "nodeType": "YulIdentifier", + "src": "3095:11:6" + } + ] + } + ] + }, + "condition": { + "arguments": [ + { + "name": "startIndex", + "nodeType": "YulIdentifier", + "src": "3077:10:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3089:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "3074:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "3074:18:6" + }, + "nodeType": "YulIf", + "src": "3071:49:6" + }, + { + "expression": { + "arguments": [ + { + "name": "deleteStart", + "nodeType": "YulIdentifier", + "src": "3162:11:6" + }, + { + "arguments": [ + { + "name": "dataArea", + "nodeType": "YulIdentifier", + "src": "3179:8:6" + }, + { + "arguments": [ + { + "name": "len", + "nodeType": "YulIdentifier", + "src": "3207:3:6" + } + ], + "functionName": { + "name": "divide_by_32_ceil", + "nodeType": "YulIdentifier", + "src": "3189:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "3189:22:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3175:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3175:37:6" + } + ], + "functionName": { + "name": "clear_storage_range_t_bytes1", + "nodeType": "YulIdentifier", + "src": "3133:28:6" + }, + "nodeType": "YulFunctionCall", + "src": "3133:80:6" + }, + "nodeType": "YulExpressionStatement", + "src": "3133:80:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "len", + "nodeType": "YulIdentifier", + "src": "2783:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2788:2:6", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "2780:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "2780:11:6" + }, + "nodeType": "YulIf", + "src": "2777:446:6" + } + ] + }, + "name": "clean_up_bytearray_end_slots_t_string_storage", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "array", + "nodeType": "YulTypedName", + "src": "2742:5:6", + "type": "" + }, + { + "name": "len", + "nodeType": "YulTypedName", + "src": "2749:3:6", + "type": "" + }, + { + "name": "startIndex", + "nodeType": "YulTypedName", + "src": "2754:10:6", + "type": "" + } + ], + "src": "2687:543:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3299:54:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3309:37:6", + "value": { + "arguments": [ + { + "name": "bits", + "nodeType": "YulIdentifier", + "src": "3334:4:6" + }, + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3340:5:6" + } + ], + "functionName": { + "name": "shr", + "nodeType": "YulIdentifier", + "src": "3330:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3330:16:6" + }, + "variableNames": [ + { + "name": "newValue", + "nodeType": "YulIdentifier", + "src": "3309:8:6" + } + ] + } + ] + }, + "name": "shift_right_unsigned_dynamic", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "bits", + "nodeType": "YulTypedName", + "src": "3274:4:6", + "type": "" + }, + { + "name": "value", + "nodeType": "YulTypedName", + "src": "3280:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "newValue", + "nodeType": "YulTypedName", + "src": "3290:8:6", + "type": "" + } + ], + "src": "3236:117:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3410:118:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "3420:68:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3469:1:6", + "type": "", + "value": "8" + }, + { + "name": "bytes", + "nodeType": "YulIdentifier", + "src": "3472:5:6" + } + ], + "functionName": { + "name": "mul", + "nodeType": "YulIdentifier", + "src": "3465:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3465:13:6" + }, + { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3484:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "not", + "nodeType": "YulIdentifier", + "src": "3480:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3480:6:6" + } + ], + "functionName": { + "name": "shift_right_unsigned_dynamic", + "nodeType": "YulIdentifier", + "src": "3436:28:6" + }, + "nodeType": "YulFunctionCall", + "src": "3436:51:6" + } + ], + "functionName": { + "name": "not", + "nodeType": "YulIdentifier", + "src": "3432:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3432:56:6" + }, + "variables": [ + { + "name": "mask", + "nodeType": "YulTypedName", + "src": "3424:4:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "3497:25:6", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "3511:4:6" + }, + { + "name": "mask", + "nodeType": "YulIdentifier", + "src": "3517:4:6" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "3507:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3507:15:6" + }, + "variableNames": [ + { + "name": "result", + "nodeType": "YulIdentifier", + "src": "3497:6:6" + } + ] + } + ] + }, + "name": "mask_bytes_dynamic", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "data", + "nodeType": "YulTypedName", + "src": "3387:4:6", + "type": "" + }, + { + "name": "bytes", + "nodeType": "YulTypedName", + "src": "3393:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "result", + "nodeType": "YulTypedName", + "src": "3403:6:6", + "type": "" + } + ], + "src": "3359:169:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3614:214:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3747:37:6", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "3774:4:6" + }, + { + "name": "len", + "nodeType": "YulIdentifier", + "src": "3780:3:6" + } + ], + "functionName": { + "name": "mask_bytes_dynamic", + "nodeType": "YulIdentifier", + "src": "3755:18:6" + }, + "nodeType": "YulFunctionCall", + "src": "3755:29:6" + }, + "variableNames": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "3747:4:6" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "3793:29:6", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "3804:4:6" + }, + { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3814:1:6", + "type": "", + "value": "2" + }, + { + "name": "len", + "nodeType": "YulIdentifier", + "src": "3817:3:6" + } + ], + "functionName": { + "name": "mul", + "nodeType": "YulIdentifier", + "src": "3810:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3810:11:6" + } + ], + "functionName": { + "name": "or", + "nodeType": "YulIdentifier", + "src": "3801:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "3801:21:6" + }, + "variableNames": [ + { + "name": "used", + "nodeType": "YulIdentifier", + "src": "3793:4:6" + } + ] + } + ] + }, + "name": "extract_used_part_and_set_length_of_short_byte_array", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "data", + "nodeType": "YulTypedName", + "src": "3595:4:6", + "type": "" + }, + { + "name": "len", + "nodeType": "YulTypedName", + "src": "3601:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "used", + "nodeType": "YulTypedName", + "src": "3609:4:6", + "type": "" + } + ], + "src": "3533:295:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3925:1303:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "3936:51:6", + "value": { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "3983:3:6" + } + ], + "functionName": { + "name": "array_length_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "3950:32:6" + }, + "nodeType": "YulFunctionCall", + "src": "3950:37:6" + }, + "variables": [ + { + "name": "newLen", + "nodeType": "YulTypedName", + "src": "3940:6:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4072:22:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "panic_error_0x41", + "nodeType": "YulIdentifier", + "src": "4074:16:6" + }, + "nodeType": "YulFunctionCall", + "src": "4074:18:6" + }, + "nodeType": "YulExpressionStatement", + "src": "4074:18:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "4044:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4052:18:6", + "type": "", + "value": "0xffffffffffffffff" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "4041:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "4041:30:6" + }, + "nodeType": "YulIf", + "src": "4038:56:6" + }, + { + "nodeType": "YulVariableDeclaration", + "src": "4104:52:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "4150:4:6" + } + ], + "functionName": { + "name": "sload", + "nodeType": "YulIdentifier", + "src": "4144:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "4144:11:6" + } + ], + "functionName": { + "name": "extract_byte_array_length", + "nodeType": "YulIdentifier", + "src": "4118:25:6" + }, + "nodeType": "YulFunctionCall", + "src": "4118:38:6" + }, + "variables": [ + { + "name": "oldLen", + "nodeType": "YulTypedName", + "src": "4108:6:6", + "type": "" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "4249:4:6" + }, + { + "name": "oldLen", + "nodeType": "YulIdentifier", + "src": "4255:6:6" + }, + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "4263:6:6" + } + ], + "functionName": { + "name": "clean_up_bytearray_end_slots_t_string_storage", + "nodeType": "YulIdentifier", + "src": "4203:45:6" + }, + "nodeType": "YulFunctionCall", + "src": "4203:67:6" + }, + "nodeType": "YulExpressionStatement", + "src": "4203:67:6" + }, + { + "nodeType": "YulVariableDeclaration", + "src": "4280:18:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4297:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "srcOffset", + "nodeType": "YulTypedName", + "src": "4284:9:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "4308:17:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4321:4:6", + "type": "", + "value": "0x20" + }, + "variableNames": [ + { + "name": "srcOffset", + "nodeType": "YulIdentifier", + "src": "4308:9:6" + } + ] + }, + { + "cases": [ + { + "body": { + "nodeType": "YulBlock", + "src": "4372:611:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "4386:37:6", + "value": { + "arguments": [ + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "4405:6:6" + }, + { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4417:4:6", + "type": "", + "value": "0x1f" + } + ], + "functionName": { + "name": "not", + "nodeType": "YulIdentifier", + "src": "4413:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4413:9:6" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "4401:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4401:22:6" + }, + "variables": [ + { + "name": "loopEnd", + "nodeType": "YulTypedName", + "src": "4390:7:6", + "type": "" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "4437:51:6", + "value": { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "4483:4:6" + } + ], + "functionName": { + "name": "array_dataslot_t_string_storage", + "nodeType": "YulIdentifier", + "src": "4451:31:6" + }, + "nodeType": "YulFunctionCall", + "src": "4451:37:6" + }, + "variables": [ + { + "name": "dstPtr", + "nodeType": "YulTypedName", + "src": "4441:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "4501:10:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4510:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "i", + "nodeType": "YulTypedName", + "src": "4505:1:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4569:163:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "dstPtr", + "nodeType": "YulIdentifier", + "src": "4594:6:6" + }, + { + "arguments": [ + { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "4612:3:6" + }, + { + "name": "srcOffset", + "nodeType": "YulIdentifier", + "src": "4617:9:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4608:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4608:19:6" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "4602:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "4602:26:6" + } + ], + "functionName": { + "name": "sstore", + "nodeType": "YulIdentifier", + "src": "4587:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "4587:42:6" + }, + "nodeType": "YulExpressionStatement", + "src": "4587:42:6" + }, + { + "nodeType": "YulAssignment", + "src": "4646:24:6", + "value": { + "arguments": [ + { + "name": "dstPtr", + "nodeType": "YulIdentifier", + "src": "4660:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4668:1:6", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4656:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4656:14:6" + }, + "variableNames": [ + { + "name": "dstPtr", + "nodeType": "YulIdentifier", + "src": "4646:6:6" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "4687:31:6", + "value": { + "arguments": [ + { + "name": "srcOffset", + "nodeType": "YulIdentifier", + "src": "4704:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4715:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4700:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4700:18:6" + }, + "variableNames": [ + { + "name": "srcOffset", + "nodeType": "YulIdentifier", + "src": "4687:9:6" + } + ] + } + ] + }, + "condition": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "4535:1:6" + }, + { + "name": "loopEnd", + "nodeType": "YulIdentifier", + "src": "4538:7:6" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "4532:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "4532:14:6" + }, + "nodeType": "YulForLoop", + "post": { + "nodeType": "YulBlock", + "src": "4547:21:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "4549:17:6", + "value": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "4558:1:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4561:4:6", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4554:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4554:12:6" + }, + "variableNames": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "4549:1:6" + } + ] + } + ] + }, + "pre": { + "nodeType": "YulBlock", + "src": "4528:3:6", + "statements": [] + }, + "src": "4524:208:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4768:156:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "4786:43:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "4813:3:6" + }, + { + "name": "srcOffset", + "nodeType": "YulIdentifier", + "src": "4818:9:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4809:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4809:19:6" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "4803:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "4803:26:6" + }, + "variables": [ + { + "name": "lastValue", + "nodeType": "YulTypedName", + "src": "4790:9:6", + "type": "" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "dstPtr", + "nodeType": "YulIdentifier", + "src": "4853:6:6" + }, + { + "arguments": [ + { + "name": "lastValue", + "nodeType": "YulIdentifier", + "src": "4880:9:6" + }, + { + "arguments": [ + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "4895:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4903:4:6", + "type": "", + "value": "0x1f" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "4891:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4891:17:6" + } + ], + "functionName": { + "name": "mask_bytes_dynamic", + "nodeType": "YulIdentifier", + "src": "4861:18:6" + }, + "nodeType": "YulFunctionCall", + "src": "4861:48:6" + } + ], + "functionName": { + "name": "sstore", + "nodeType": "YulIdentifier", + "src": "4846:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "4846:64:6" + }, + "nodeType": "YulExpressionStatement", + "src": "4846:64:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "loopEnd", + "nodeType": "YulIdentifier", + "src": "4751:7:6" + }, + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "4760:6:6" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "4748:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "4748:19:6" + }, + "nodeType": "YulIf", + "src": "4745:179:6" + }, + { + "expression": { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "4944:4:6" + }, + { + "arguments": [ + { + "arguments": [ + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "4958:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4966:1:6", + "type": "", + "value": "2" + } + ], + "functionName": { + "name": "mul", + "nodeType": "YulIdentifier", + "src": "4954:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4954:14:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4970:1:6", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4950:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4950:22:6" + } + ], + "functionName": { + "name": "sstore", + "nodeType": "YulIdentifier", + "src": "4937:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "4937:36:6" + }, + "nodeType": "YulExpressionStatement", + "src": "4937:36:6" + } + ] + }, + "nodeType": "YulCase", + "src": "4365:618:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4370:1:6", + "type": "", + "value": "1" + } + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5000:222:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "5014:14:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5027:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "5018:5:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5051:67:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "5069:35:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "5088:3:6" + }, + { + "name": "srcOffset", + "nodeType": "YulIdentifier", + "src": "5093:9:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5084:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5084:19:6" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "5078:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "5078:26:6" + }, + "variableNames": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "5069:5:6" + } + ] + } + ] + }, + "condition": { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "5044:6:6" + }, + "nodeType": "YulIf", + "src": "5041:77:6" + }, + { + "expression": { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "5138:4:6" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "5197:5:6" + }, + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "5204:6:6" + } + ], + "functionName": { + "name": "extract_used_part_and_set_length_of_short_byte_array", + "nodeType": "YulIdentifier", + "src": "5144:52:6" + }, + "nodeType": "YulFunctionCall", + "src": "5144:67:6" + } + ], + "functionName": { + "name": "sstore", + "nodeType": "YulIdentifier", + "src": "5131:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "5131:81:6" + }, + "nodeType": "YulExpressionStatement", + "src": "5131:81:6" + } + ] + }, + "nodeType": "YulCase", + "src": "4992:230:6", + "value": "default" + } + ], + "expression": { + "arguments": [ + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "4345:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4353:2:6", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "4342:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "4342:14:6" + }, + "nodeType": "YulSwitch", + "src": "4335:887:6" + } + ] + }, + "name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "slot", + "nodeType": "YulTypedName", + "src": "3914:4:6", + "type": "" + }, + { + "name": "src", + "nodeType": "YulTypedName", + "src": "3920:3:6", + "type": "" + } + ], + "src": "3833:1395:6" + } + ] + }, + "contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n}\n", + "id": 6, + "language": "Yul", + "name": "#utility.yul" + } + ], + "linkReferences": {}, + "object": "60806040523480156200001157600080fd5b506040518060400160405280601281526020017f4d7568616e6e616420496e737572616e636500000000000000000000000000008152506040518060400160405280600381526020017f4d4954000000000000000000000000000000000000000000000000000000000081525081600390816200008f919062000412565b508060049081620000a1919062000412565b505050620000c4620000b8620000ca60201b60201c565b620000d260201b60201c565b620004f9565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200021a57607f821691505b60208210810362000230576200022f620001d2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200029a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200025b565b620002a686836200025b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620002f3620002ed620002e784620002be565b620002c8565b620002be565b9050919050565b6000819050919050565b6200030f83620002d2565b620003276200031e82620002fa565b84845462000268565b825550505050565b600090565b6200033e6200032f565b6200034b81848462000304565b505050565b5b8181101562000373576200036760008262000334565b60018101905062000351565b5050565b601f821115620003c2576200038c8162000236565b62000397846200024b565b81016020851015620003a7578190505b620003bf620003b6856200024b565b83018262000350565b50505b505050565b600082821c905092915050565b6000620003e760001984600802620003c7565b1980831691505092915050565b6000620004028383620003d4565b9150826002028217905092915050565b6200041d8262000198565b67ffffffffffffffff811115620004395762000438620001a3565b5b62000445825462000201565b6200045282828562000377565b600060209050601f8311600181146200048a576000841562000475578287015190505b620004818582620003f4565b865550620004f1565b601f1984166200049a8662000236565b60005b82811015620004c4578489015182556001820191506020850194506020810190506200049d565b86831015620004e45784890151620004e0601f891682620003d4565b8355505b6001600288020188555050505b505050505050565b61194280620005096000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a87430ba11610066578063a87430ba146102b1578063a9059cbb146102e4578063dd62ed3e14610314578063f2fde38b1461034457610100565b8063715018a61461023b5780638da5cb5b1461024557806395d89b4114610263578063a457c2d71461028157610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806340c10f19146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610360565b60405161011a919061103f565b60405180910390f35b61013d600480360381019061013891906110fa565b6103f2565b60405161014a9190611155565b60405180910390f35b61015b610415565b604051610168919061117f565b60405180910390f35b61018b6004803603810190610186919061119a565b61041f565b6040516101989190611155565b60405180910390f35b6101a961044e565b6040516101b69190611209565b60405180910390f35b6101d960048036038101906101d491906110fa565b610457565b6040516101e69190611155565b60405180910390f35b610209600480360381019061020491906110fa565b61048e565b005b61022560048036038101906102209190611224565b6104a4565b604051610232919061117f565b60405180910390f35b6102436104ec565b005b61024d610500565b60405161025a9190611260565b60405180910390f35b61026b61052a565b604051610278919061103f565b60405180910390f35b61029b600480360381019061029691906110fa565b6105bc565b6040516102a89190611155565b60405180910390f35b6102cb60048036038101906102c69190611224565b610633565b6040516102db949392919061127b565b60405180910390f35b6102fe60048036038101906102f991906110fa565b61070b565b60405161030b9190611155565b60405180910390f35b61032e600480360381019061032991906112c7565b61072e565b60405161033b919061117f565b60405180910390f35b61035e60048036038101906103599190611224565b6107b5565b005b60606003805461036f90611336565b80601f016020809104026020016040519081016040528092919081815260200182805461039b90611336565b80156103e85780601f106103bd576101008083540402835291602001916103e8565b820191906000526020600020905b8154815290600101906020018083116103cb57829003601f168201915b5050505050905090565b6000806103fd610838565b905061040a818585610840565b600191505092915050565b6000600254905090565b60008061042a610838565b9050610437858285610a09565b610442858585610a95565b60019150509392505050565b60006012905090565b600080610462610838565b9050610483818585610474858961072e565b61047e9190611396565b610840565b600191505092915050565b610496610d0b565b6104a08282610d89565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104f4610d0b565b6104fe6000610edf565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461053990611336565b80601f016020809104026020016040519081016040528092919081815260200182805461056590611336565b80156105b25780601f10610587576101008083540402835291602001916105b2565b820191906000526020600020905b81548152906001019060200180831161059557829003601f168201915b5050505050905090565b6000806105c7610838565b905060006105d5828661072e565b90508381101561061a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106119061143c565b60405180910390fd5b6106278286868403610840565b60019250505092915050565b600760205280600052604060002060009150905080600001805461065690611336565b80601f016020809104026020016040519081016040528092919081815260200182805461068290611336565b80156106cf5780601f106106a4576101008083540402835291602001916106cf565b820191906000526020600020905b8154815290600101906020018083116106b257829003601f168201915b5050505050908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020154908060030154905084565b600080610716610838565b9050610723818585610a95565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107bd610d0b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361082c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610823906114ce565b60405180910390fd5b61083581610edf565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a690611560565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361091e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610915906115f2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109fc919061117f565b60405180910390a3505050565b6000610a15848461072e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a8f5781811015610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a789061165e565b60405180910390fd5b610a8e8484848403610840565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afb906116f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90611782565b60405180910390fd5b610b7e838383610fa5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb90611814565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cf2919061117f565b60405180910390a3610d05848484610faa565b50505050565b610d13610838565b73ffffffffffffffffffffffffffffffffffffffff16610d31610500565b73ffffffffffffffffffffffffffffffffffffffff1614610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e90611880565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def906118ec565b60405180910390fd5b610e0460008383610fa5565b8060026000828254610e169190611396565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ec7919061117f565b60405180910390a3610edb60008383610faa565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fe9578082015181840152602081019050610fce565b60008484015250505050565b6000601f19601f8301169050919050565b600061101182610faf565b61101b8185610fba565b935061102b818560208601610fcb565b61103481610ff5565b840191505092915050565b600060208201905081810360008301526110598184611006565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061109182611066565b9050919050565b6110a181611086565b81146110ac57600080fd5b50565b6000813590506110be81611098565b92915050565b6000819050919050565b6110d7816110c4565b81146110e257600080fd5b50565b6000813590506110f4816110ce565b92915050565b6000806040838503121561111157611110611061565b5b600061111f858286016110af565b9250506020611130858286016110e5565b9150509250929050565b60008115159050919050565b61114f8161113a565b82525050565b600060208201905061116a6000830184611146565b92915050565b611179816110c4565b82525050565b60006020820190506111946000830184611170565b92915050565b6000806000606084860312156111b3576111b2611061565b5b60006111c1868287016110af565b93505060206111d2868287016110af565b92505060406111e3868287016110e5565b9150509250925092565b600060ff82169050919050565b611203816111ed565b82525050565b600060208201905061121e60008301846111fa565b92915050565b60006020828403121561123a57611239611061565b5b6000611248848285016110af565b91505092915050565b61125a81611086565b82525050565b60006020820190506112756000830184611251565b92915050565b600060808201905081810360008301526112958187611006565b90506112a46020830186611251565b6112b16040830185611170565b6112be6060830184611170565b95945050505050565b600080604083850312156112de576112dd611061565b5b60006112ec858286016110af565b92505060206112fd858286016110af565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061134e57607f821691505b60208210810361136157611360611307565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113a1826110c4565b91506113ac836110c4565b92508282019050808211156113c4576113c3611367565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611426602583610fba565b9150611431826113ca565b604082019050919050565b6000602082019050818103600083015261145581611419565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114b8602683610fba565b91506114c38261145c565b604082019050919050565b600060208201905081810360008301526114e7816114ab565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061154a602483610fba565b9150611555826114ee565b604082019050919050565b600060208201905081810360008301526115798161153d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115dc602283610fba565b91506115e782611580565b604082019050919050565b6000602082019050818103600083015261160b816115cf565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611648601d83610fba565b915061165382611612565b602082019050919050565b600060208201905081810360008301526116778161163b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116da602583610fba565b91506116e58261167e565b604082019050919050565b60006020820190508181036000830152611709816116cd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061176c602383610fba565b915061177782611710565b604082019050919050565b6000602082019050818103600083015261179b8161175f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006117fe602683610fba565b9150611809826117a2565b604082019050919050565b6000602082019050818103600083015261182d816117f1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061186a602083610fba565b915061187582611834565b602082019050919050565b600060208201905081810360008301526118998161185d565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006118d6601f83610fba565b91506118e1826118a0565b602082019050919050565b60006020820190508181036000830152611905816118c9565b905091905056fea26469706673582212203c8cbedc684db6cf68cec29d50046617cbf845f84734c2ca0906d155a73e741f64736f6c63430008140033", + "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D7568616E6E616420496E737572616E63650000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D49540000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP2 PUSH3 0x8F SWAP2 SWAP1 PUSH3 0x412 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP2 PUSH3 0xA1 SWAP2 SWAP1 PUSH3 0x412 JUMP JUMPDEST POP POP POP PUSH3 0xC4 PUSH3 0xB8 PUSH3 0xCA PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xD2 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x4F9 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 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 PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 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 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x21A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x230 JUMPI PUSH3 0x22F PUSH3 0x1D2 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH3 0x29A PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH3 0x25B JUMP JUMPDEST PUSH3 0x2A6 DUP7 DUP4 PUSH3 0x25B JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x2F3 PUSH3 0x2ED PUSH3 0x2E7 DUP5 PUSH3 0x2BE JUMP JUMPDEST PUSH3 0x2C8 JUMP JUMPDEST PUSH3 0x2BE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x30F DUP4 PUSH3 0x2D2 JUMP JUMPDEST PUSH3 0x327 PUSH3 0x31E DUP3 PUSH3 0x2FA JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH3 0x268 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH3 0x33E PUSH3 0x32F JUMP JUMPDEST PUSH3 0x34B DUP2 DUP5 DUP5 PUSH3 0x304 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x373 JUMPI PUSH3 0x367 PUSH1 0x0 DUP3 PUSH3 0x334 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH3 0x351 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x3C2 JUMPI PUSH3 0x38C DUP2 PUSH3 0x236 JUMP JUMPDEST PUSH3 0x397 DUP5 PUSH3 0x24B JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH3 0x3A7 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH3 0x3BF PUSH3 0x3B6 DUP6 PUSH3 0x24B JUMP JUMPDEST DUP4 ADD DUP3 PUSH3 0x350 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x3E7 PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH3 0x3C7 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x402 DUP4 DUP4 PUSH3 0x3D4 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x41D DUP3 PUSH3 0x198 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x439 JUMPI PUSH3 0x438 PUSH3 0x1A3 JUMP JUMPDEST JUMPDEST PUSH3 0x445 DUP3 SLOAD PUSH3 0x201 JUMP JUMPDEST PUSH3 0x452 DUP3 DUP3 DUP6 PUSH3 0x377 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x48A JUMPI PUSH1 0x0 DUP5 ISZERO PUSH3 0x475 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH3 0x481 DUP6 DUP3 PUSH3 0x3F4 JUMP JUMPDEST DUP7 SSTORE POP PUSH3 0x4F1 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH3 0x49A DUP7 PUSH3 0x236 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x4C4 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x49D JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH3 0x4E4 JUMPI DUP5 DUP10 ADD MLOAD PUSH3 0x4E0 PUSH1 0x1F DUP10 AND DUP3 PUSH3 0x3D4 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1942 DUP1 PUSH3 0x509 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x100 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xA87430BA GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA87430BA EQ PUSH2 0x2B1 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x2E4 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x314 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x344 JUMPI PUSH2 0x100 JUMP JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x23B JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x245 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x263 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x281 JUMPI PUSH2 0x100 JUMP JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1A1 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1BF JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x1EF JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x20B JUMPI PUSH2 0x100 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x105 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x123 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x153 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x171 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10D PUSH2 0x360 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x11A SWAP2 SWAP1 PUSH2 0x103F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x138 SWAP2 SWAP1 PUSH2 0x10FA JUMP JUMPDEST PUSH2 0x3F2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14A SWAP2 SWAP1 PUSH2 0x1155 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x15B PUSH2 0x415 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x168 SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x18B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x186 SWAP2 SWAP1 PUSH2 0x119A JUMP JUMPDEST PUSH2 0x41F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x198 SWAP2 SWAP1 PUSH2 0x1155 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1A9 PUSH2 0x44E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1B6 SWAP2 SWAP1 PUSH2 0x1209 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1D4 SWAP2 SWAP1 PUSH2 0x10FA JUMP JUMPDEST PUSH2 0x457 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1E6 SWAP2 SWAP1 PUSH2 0x1155 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x209 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x204 SWAP2 SWAP1 PUSH2 0x10FA JUMP JUMPDEST PUSH2 0x48E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x225 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x220 SWAP2 SWAP1 PUSH2 0x1224 JUMP JUMPDEST PUSH2 0x4A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x232 SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x243 PUSH2 0x4EC JUMP JUMPDEST STOP JUMPDEST PUSH2 0x24D PUSH2 0x500 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x25A SWAP2 SWAP1 PUSH2 0x1260 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x26B PUSH2 0x52A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x278 SWAP2 SWAP1 PUSH2 0x103F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x29B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x296 SWAP2 SWAP1 PUSH2 0x10FA JUMP JUMPDEST PUSH2 0x5BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A8 SWAP2 SWAP1 PUSH2 0x1155 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2CB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2C6 SWAP2 SWAP1 PUSH2 0x1224 JUMP JUMPDEST PUSH2 0x633 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2DB SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x127B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2FE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2F9 SWAP2 SWAP1 PUSH2 0x10FA JUMP JUMPDEST PUSH2 0x70B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x30B SWAP2 SWAP1 PUSH2 0x1155 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x32E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x329 SWAP2 SWAP1 PUSH2 0x12C7 JUMP JUMPDEST PUSH2 0x72E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x33B SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x35E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x359 SWAP2 SWAP1 PUSH2 0x1224 JUMP JUMPDEST PUSH2 0x7B5 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x36F SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x39B SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3E8 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3BD JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3E8 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x3CB JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x3FD PUSH2 0x838 JUMP JUMPDEST SWAP1 POP PUSH2 0x40A DUP2 DUP6 DUP6 PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x42A PUSH2 0x838 JUMP JUMPDEST SWAP1 POP PUSH2 0x437 DUP6 DUP3 DUP6 PUSH2 0xA09 JUMP JUMPDEST PUSH2 0x442 DUP6 DUP6 DUP6 PUSH2 0xA95 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x462 PUSH2 0x838 JUMP JUMPDEST SWAP1 POP PUSH2 0x483 DUP2 DUP6 DUP6 PUSH2 0x474 DUP6 DUP10 PUSH2 0x72E JUMP JUMPDEST PUSH2 0x47E SWAP2 SWAP1 PUSH2 0x1396 JUMP JUMPDEST PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x496 PUSH2 0xD0B JUMP JUMPDEST PUSH2 0x4A0 DUP3 DUP3 PUSH2 0xD89 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x4F4 PUSH2 0xD0B JUMP JUMPDEST PUSH2 0x4FE PUSH1 0x0 PUSH2 0xEDF JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x539 SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x565 SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5B2 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x587 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5B2 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x595 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x5C7 PUSH2 0x838 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x5D5 DUP3 DUP7 PUSH2 0x72E JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x61A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x611 SWAP1 PUSH2 0x143C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x627 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x7 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD DUP1 SLOAD PUSH2 0x656 SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x682 SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x6CF JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x6A4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x6CF JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x6B2 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP1 PUSH1 0x2 ADD SLOAD SWAP1 DUP1 PUSH1 0x3 ADD SLOAD SWAP1 POP DUP5 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x716 PUSH2 0x838 JUMP JUMPDEST SWAP1 POP PUSH2 0x723 DUP2 DUP6 DUP6 PUSH2 0xA95 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x7BD PUSH2 0xD0B JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x82C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x823 SWAP1 PUSH2 0x14CE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x835 DUP2 PUSH2 0xEDF JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x8AF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8A6 SWAP1 PUSH2 0x1560 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x91E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x915 SWAP1 PUSH2 0x15F2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x9FC SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA15 DUP5 DUP5 PUSH2 0x72E JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0xA8F JUMPI DUP2 DUP2 LT ISZERO PUSH2 0xA81 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA78 SWAP1 PUSH2 0x165E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA8E DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x840 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xB04 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP1 PUSH2 0x16F0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xB73 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB6A SWAP1 PUSH2 0x1782 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xB7E DUP4 DUP4 DUP4 PUSH2 0xFA5 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xC04 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBFB SWAP1 PUSH2 0x1814 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xCF2 SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xD05 DUP5 DUP5 DUP5 PUSH2 0xFAA JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0xD13 PUSH2 0x838 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD31 PUSH2 0x500 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xD87 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD7E SWAP1 PUSH2 0x1880 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xDF8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDEF SWAP1 PUSH2 0x18EC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xE04 PUSH1 0x0 DUP4 DUP4 PUSH2 0xFA5 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xE16 SWAP2 SWAP1 PUSH2 0x1396 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xEC7 SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xEDB PUSH1 0x0 DUP4 DUP4 PUSH2 0xFAA JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 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 POP POP POP JUMP JUMPDEST POP 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xFE9 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xFCE 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 0x1011 DUP3 PUSH2 0xFAF JUMP JUMPDEST PUSH2 0x101B DUP2 DUP6 PUSH2 0xFBA JUMP JUMPDEST SWAP4 POP PUSH2 0x102B DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xFCB JUMP JUMPDEST PUSH2 0x1034 DUP2 PUSH2 0xFF5 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 0x1059 DUP2 DUP5 PUSH2 0x1006 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1091 DUP3 PUSH2 0x1066 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x10A1 DUP2 PUSH2 0x1086 JUMP JUMPDEST DUP2 EQ PUSH2 0x10AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x10BE DUP2 PUSH2 0x1098 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x10D7 DUP2 PUSH2 0x10C4 JUMP JUMPDEST DUP2 EQ PUSH2 0x10E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x10F4 DUP2 PUSH2 0x10CE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1111 JUMPI PUSH2 0x1110 PUSH2 0x1061 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x111F DUP6 DUP3 DUP7 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1130 DUP6 DUP3 DUP7 ADD PUSH2 0x10E5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x114F DUP2 PUSH2 0x113A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x116A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1146 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1179 DUP2 PUSH2 0x10C4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1194 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1170 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x11B3 JUMPI PUSH2 0x11B2 PUSH2 0x1061 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x11C1 DUP7 DUP3 DUP8 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x11D2 DUP7 DUP3 DUP8 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x11E3 DUP7 DUP3 DUP8 ADD PUSH2 0x10E5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1203 DUP2 PUSH2 0x11ED JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x121E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x11FA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x123A JUMPI PUSH2 0x1239 PUSH2 0x1061 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1248 DUP5 DUP3 DUP6 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x125A DUP2 PUSH2 0x1086 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1275 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1251 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1295 DUP2 DUP8 PUSH2 0x1006 JUMP JUMPDEST SWAP1 POP PUSH2 0x12A4 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x1251 JUMP JUMPDEST PUSH2 0x12B1 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1170 JUMP JUMPDEST PUSH2 0x12BE PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x1170 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x12DE JUMPI PUSH2 0x12DD PUSH2 0x1061 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x12EC DUP6 DUP3 DUP7 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x12FD DUP6 DUP3 DUP7 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x134E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1361 JUMPI PUSH2 0x1360 PUSH2 0x1307 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x13A1 DUP3 PUSH2 0x10C4 JUMP JUMPDEST SWAP2 POP PUSH2 0x13AC DUP4 PUSH2 0x10C4 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x13C4 JUMPI PUSH2 0x13C3 PUSH2 0x1367 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1426 PUSH1 0x25 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1431 DUP3 PUSH2 0x13CA 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 0x1455 DUP2 PUSH2 0x1419 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x14B8 PUSH1 0x26 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x14C3 DUP3 PUSH2 0x145C 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 0x14E7 DUP2 PUSH2 0x14AB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x154A PUSH1 0x24 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1555 DUP3 PUSH2 0x14EE 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 0x1579 DUP2 PUSH2 0x153D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15DC PUSH1 0x22 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x15E7 DUP3 PUSH2 0x1580 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 0x160B DUP2 PUSH2 0x15CF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1648 PUSH1 0x1D DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1653 DUP3 PUSH2 0x1612 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 0x1677 DUP2 PUSH2 0x163B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16DA PUSH1 0x25 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x16E5 DUP3 PUSH2 0x167E 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 0x1709 DUP2 PUSH2 0x16CD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x176C PUSH1 0x23 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1777 DUP3 PUSH2 0x1710 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 0x179B DUP2 PUSH2 0x175F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17FE PUSH1 0x26 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1809 DUP3 PUSH2 0x17A2 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 0x182D DUP2 PUSH2 0x17F1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x186A PUSH1 0x20 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1875 DUP3 PUSH2 0x1834 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 0x1899 DUP2 PUSH2 0x185D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18D6 PUSH1 0x1F DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x18E1 DUP3 PUSH2 0x18A0 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 0x1905 DUP2 PUSH2 0x18C9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EXTCODECOPY DUP13 0xBE 0xDC PUSH9 0x4DB6CF68CEC29D5004 PUSH7 0x17CBF845F84734 0xC2 0xCA MULMOD MOD 0xD1 SSTORE 0xA7 RETURNDATACOPY PUSH21 0x1F64736F6C63430008140033000000000000000000 ", + "sourceMap": "167:499:5:-:0;;;243:51;;;;;;;;;;1980:113:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2054:5;2046;:13;;;;;;:::i;:::-;;2079:7;2069;:17;;;;;;:::i;:::-;;1980:113;;936:32:0;955:12;:10;;;:12;;:::i;:::-;936:18;;;:32;;:::i;:::-;167:499:5;;640:96:4;693:7;719:10;712:17;;640:96;:::o;2426:187:0:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;7:99:6:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:180::-;160:77;157:1;150:88;257:4;254:1;247:15;281:4;278:1;271:15;298:180;346:77;343:1;336:88;443:4;440:1;433:15;467:4;464:1;457:15;484:320;528:6;565:1;559:4;555:12;545:22;;612:1;606:4;602:12;633:18;623:81;;689:4;681:6;677:17;667:27;;623:81;751:2;743:6;740:14;720:18;717:38;714:84;;770:18;;:::i;:::-;714:84;535:269;484:320;;;:::o;810:141::-;859:4;882:3;874:11;;905:3;902:1;895:14;939:4;936:1;926:18;918:26;;810:141;;;:::o;957:93::-;994:6;1041:2;1036;1029:5;1025:14;1021:23;1011:33;;957:93;;;:::o;1056:107::-;1100:8;1150:5;1144:4;1140:16;1119:37;;1056:107;;;;:::o;1169:393::-;1238:6;1288:1;1276:10;1272:18;1311:97;1341:66;1330:9;1311:97;:::i;:::-;1429:39;1459:8;1448:9;1429:39;:::i;:::-;1417:51;;1501:4;1497:9;1490:5;1486:21;1477:30;;1550:4;1540:8;1536:19;1529:5;1526:30;1516:40;;1245:317;;1169:393;;;;;:::o;1568:77::-;1605:7;1634:5;1623:16;;1568:77;;;:::o;1651:60::-;1679:3;1700:5;1693:12;;1651:60;;;:::o;1717:142::-;1767:9;1800:53;1818:34;1827:24;1845:5;1827:24;:::i;:::-;1818:34;:::i;:::-;1800:53;:::i;:::-;1787:66;;1717:142;;;:::o;1865:75::-;1908:3;1929:5;1922:12;;1865:75;;;:::o;1946:269::-;2056:39;2087:7;2056:39;:::i;:::-;2117:91;2166:41;2190:16;2166:41;:::i;:::-;2158:6;2151:4;2145:11;2117:91;:::i;:::-;2111:4;2104:105;2022:193;1946:269;;;:::o;2221:73::-;2266:3;2221:73;:::o;2300:189::-;2377:32;;:::i;:::-;2418:65;2476:6;2468;2462:4;2418:65;:::i;:::-;2353:136;2300:189;;:::o;2495:186::-;2555:120;2572:3;2565:5;2562:14;2555:120;;;2626:39;2663:1;2656:5;2626:39;:::i;:::-;2599:1;2592:5;2588:13;2579:22;;2555:120;;;2495:186;;:::o;2687:543::-;2788:2;2783:3;2780:11;2777:446;;;2822:38;2854:5;2822:38;:::i;:::-;2906:29;2924:10;2906:29;:::i;:::-;2896:8;2892:44;3089:2;3077:10;3074:18;3071:49;;;3110:8;3095:23;;3071:49;3133:80;3189:22;3207:3;3189:22;:::i;:::-;3179:8;3175:37;3162:11;3133:80;:::i;:::-;2792:431;;2777:446;2687:543;;;:::o;3236:117::-;3290:8;3340:5;3334:4;3330:16;3309:37;;3236:117;;;;:::o;3359:169::-;3403:6;3436:51;3484:1;3480:6;3472:5;3469:1;3465:13;3436:51;:::i;:::-;3432:56;3517:4;3511;3507:15;3497:25;;3410:118;3359:169;;;;:::o;3533:295::-;3609:4;3755:29;3780:3;3774:4;3755:29;:::i;:::-;3747:37;;3817:3;3814:1;3810:11;3804:4;3801:21;3793:29;;3533:295;;;;:::o;3833:1395::-;3950:37;3983:3;3950:37;:::i;:::-;4052:18;4044:6;4041:30;4038:56;;;4074:18;;:::i;:::-;4038:56;4118:38;4150:4;4144:11;4118:38;:::i;:::-;4203:67;4263:6;4255;4249:4;4203:67;:::i;:::-;4297:1;4321:4;4308:17;;4353:2;4345:6;4342:14;4370:1;4365:618;;;;5027:1;5044:6;5041:77;;;5093:9;5088:3;5084:19;5078:26;5069:35;;5041:77;5144:67;5204:6;5197:5;5144:67;:::i;:::-;5138:4;5131:81;5000:222;4335:887;;4365:618;4417:4;4413:9;4405:6;4401:22;4451:37;4483:4;4451:37;:::i;:::-;4510:1;4524:208;4538:7;4535:1;4532:14;4524:208;;;4617:9;4612:3;4608:19;4602:26;4594:6;4587:42;4668:1;4660:6;4656:14;4646:24;;4715:2;4704:9;4700:18;4687:31;;4561:4;4558:1;4554:12;4549:17;;4524:208;;;4760:6;4751:7;4748:19;4745:179;;;4818:9;4813:3;4809:19;4803:26;4861:48;4903:4;4895:6;4891:17;4880:9;4861:48;:::i;:::-;4853:6;4846:64;4768:156;4745:179;4970:1;4966;4958:6;4954:14;4950:22;4944:4;4937:36;4372:611;;;4335:887;;3925:1303;;;3833:1395;;:::o;167:499:5:-;;;;;;;" + }, + "deployedBytecode": { + "functionDebugData": { + "@_afterTokenTransfer_698": { + "entryPoint": 4010, + "id": 698, + "parameterSlots": 3, + "returnSlots": 0 + }, + "@_approve_633": { + "entryPoint": 2112, + "id": 633, + "parameterSlots": 3, + "returnSlots": 0 + }, + "@_beforeTokenTransfer_687": { + "entryPoint": 4005, + "id": 687, + "parameterSlots": 3, + "returnSlots": 0 + }, + "@_checkOwner_54": { + "entryPoint": 3339, + "id": 54, + "parameterSlots": 0, + "returnSlots": 0 + }, + "@_mint_516": { + "entryPoint": 3465, + "id": 516, + "parameterSlots": 2, + "returnSlots": 0 + }, + "@_msgSender_814": { + "entryPoint": 2104, + "id": 814, + "parameterSlots": 0, + "returnSlots": 1 + }, + "@_spendAllowance_676": { + "entryPoint": 2569, + "id": 676, + "parameterSlots": 3, + "returnSlots": 0 + }, + "@_transferOwnership_111": { + "entryPoint": 3807, + "id": 111, + "parameterSlots": 1, + "returnSlots": 0 + }, + "@_transfer_459": { + "entryPoint": 2709, + "id": 459, + "parameterSlots": 3, + "returnSlots": 0 + }, + "@allowance_254": { + "entryPoint": 1838, + "id": 254, + "parameterSlots": 2, + "returnSlots": 1 + }, + "@approve_279": { + "entryPoint": 1010, + "id": 279, + "parameterSlots": 2, + "returnSlots": 1 + }, + "@balanceOf_211": { + "entryPoint": 1188, + "id": 211, + "parameterSlots": 1, + "returnSlots": 1 + }, + "@decimals_187": { + "entryPoint": 1102, + "id": 187, + "parameterSlots": 0, + "returnSlots": 1 + }, + "@decreaseAllowance_382": { + "entryPoint": 1468, + "id": 382, + "parameterSlots": 2, + "returnSlots": 1 + }, + "@increaseAllowance_341": { + "entryPoint": 1111, + "id": 341, + "parameterSlots": 2, + "returnSlots": 1 + }, + "@mint_857": { + "entryPoint": 1166, + "id": 857, + "parameterSlots": 2, + "returnSlots": 0 + }, + "@name_167": { + "entryPoint": 864, + "id": 167, + "parameterSlots": 0, + "returnSlots": 1 + }, + "@owner_40": { + "entryPoint": 1280, + "id": 40, + "parameterSlots": 0, + "returnSlots": 1 + }, + "@renounceOwnership_68": { + "entryPoint": 1260, + "id": 68, + "parameterSlots": 0, + "returnSlots": 0 + }, + "@symbol_177": { + "entryPoint": 1322, + "id": 177, + "parameterSlots": 0, + "returnSlots": 1 + }, + "@totalSupply_197": { + "entryPoint": 1045, + "id": 197, + "parameterSlots": 0, + "returnSlots": 1 + }, + "@transferFrom_312": { + "entryPoint": 1055, + "id": 312, + "parameterSlots": 3, + "returnSlots": 1 + }, + "@transferOwnership_91": { + "entryPoint": 1973, + "id": 91, + "parameterSlots": 1, + "returnSlots": 0 + }, + "@transfer_236": { + "entryPoint": 1803, + "id": 236, + "parameterSlots": 2, + "returnSlots": 1 + }, + "@users_862": { + "entryPoint": 1587, + "id": 862, + "parameterSlots": 0, + "returnSlots": 0 + }, + "abi_decode_t_address": { + "entryPoint": 4271, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_t_uint256": { + "entryPoint": 4325, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_tuple_t_address": { + "entryPoint": 4644, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_tuple_t_addresst_address": { + "entryPoint": 4807, + "id": null, + "parameterSlots": 2, + "returnSlots": 2 + }, + "abi_decode_tuple_t_addresst_addresst_uint256": { + "entryPoint": 4506, + "id": null, + "parameterSlots": 2, + "returnSlots": 3 + }, + "abi_decode_tuple_t_addresst_uint256": { + "entryPoint": 4346, + "id": null, + "parameterSlots": 2, + "returnSlots": 2 + }, + "abi_encode_t_address_to_t_address_fromStack": { + "entryPoint": 4689, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "abi_encode_t_bool_to_t_bool_fromStack": { + "entryPoint": 4422, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": { + "entryPoint": 4102, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack": { + "entryPoint": 5983, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": { + "entryPoint": 5291, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack": { + "entryPoint": 5583, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack": { + "entryPoint": 5691, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack": { + "entryPoint": 6129, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": { + "entryPoint": 6237, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack": { + "entryPoint": 5837, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack": { + "entryPoint": 5437, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack": { + "entryPoint": 5145, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack": { + "entryPoint": 6345, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_uint256_to_t_uint256_fromStack": { + "entryPoint": 4464, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "abi_encode_t_uint8_to_t_uint8_fromStack": { + "entryPoint": 4602, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": { + "entryPoint": 4704, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": { + "entryPoint": 4437, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 4159, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_tuple_t_string_memory_ptr_t_address_t_uint256_t_uint256__to_t_string_memory_ptr_t_address_t_uint256_t_uint256__fromStack_reversed": { + "entryPoint": 4731, + "id": null, + "parameterSlots": 5, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 6018, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 5326, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 5618, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 5726, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 6164, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 6272, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 5872, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 5472, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 5180, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 6380, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": { + "entryPoint": 4479, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": { + "entryPoint": 4617, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "allocate_unbounded": { + "entryPoint": null, + "id": null, + "parameterSlots": 0, + "returnSlots": 1 + }, + "array_length_t_string_memory_ptr": { + "entryPoint": 4015, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "array_storeLengthForEncoding_t_string_memory_ptr_fromStack": { + "entryPoint": 4026, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "checked_add_t_uint256": { + "entryPoint": 5014, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "cleanup_t_address": { + "entryPoint": 4230, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "cleanup_t_bool": { + "entryPoint": 4410, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "cleanup_t_uint160": { + "entryPoint": 4198, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "cleanup_t_uint256": { + "entryPoint": 4292, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "cleanup_t_uint8": { + "entryPoint": 4589, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "copy_memory_to_memory_with_cleanup": { + "entryPoint": 4043, + "id": null, + "parameterSlots": 3, + "returnSlots": 0 + }, + "extract_byte_array_length": { + "entryPoint": 4918, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "panic_error_0x11": { + "entryPoint": 4967, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "panic_error_0x22": { + "entryPoint": 4871, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": { + "entryPoint": null, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": { + "entryPoint": 4193, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "round_up_to_mul_of_32": { + "entryPoint": 4085, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f": { + "entryPoint": 5904, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": { + "entryPoint": 5212, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029": { + "entryPoint": 5504, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe": { + "entryPoint": 5650, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6": { + "entryPoint": 6050, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": { + "entryPoint": 6196, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea": { + "entryPoint": 5758, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208": { + "entryPoint": 5358, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8": { + "entryPoint": 5066, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e": { + "entryPoint": 6304, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "validator_revert_t_address": { + "entryPoint": 4248, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "validator_revert_t_uint256": { + "entryPoint": 4302, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + } + }, + "generatedSources": [ + { + "ast": { + "nodeType": "YulBlock", + "src": "0:17698:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "66:40:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "77:22:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "93:5:6" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "87:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "87:12:6" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "77:6:6" + } + ] + } + ] + }, + "name": "array_length_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "49:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "59:6:6", + "type": "" + } + ], + "src": "7:99:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "208:73:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "225:3:6" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "230:6:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "218:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "218:19:6" + }, + "nodeType": "YulExpressionStatement", + "src": "218:19:6" + }, + { + "nodeType": "YulAssignment", + "src": "246:29:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "265:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "270:4:6", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "261:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "261:14:6" + }, + "variableNames": [ + { + "name": "updated_pos", + "nodeType": "YulIdentifier", + "src": "246:11:6" + } + ] + } + ] + }, + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "180:3:6", + "type": "" + }, + { + "name": "length", + "nodeType": "YulTypedName", + "src": "185:6:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "updated_pos", + "nodeType": "YulTypedName", + "src": "196:11:6", + "type": "" + } + ], + "src": "112:169:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "349:184:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "359:10:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "368:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "i", + "nodeType": "YulTypedName", + "src": "363:1:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "428:63:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "dst", + "nodeType": "YulIdentifier", + "src": "453:3:6" + }, + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "458:1:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "449:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "449:11:6" + }, + { + "arguments": [ + { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "472:3:6" + }, + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "477:1:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "468:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "468:11:6" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "462:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "462:18:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "442:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "442:39:6" + }, + "nodeType": "YulExpressionStatement", + "src": "442:39:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "389:1:6" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "392:6:6" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "386:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "386:13:6" + }, + "nodeType": "YulForLoop", + "post": { + "nodeType": "YulBlock", + "src": "400:19:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "402:15:6", + "value": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "411:1:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "414:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "407:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "407:10:6" + }, + "variableNames": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "402:1:6" + } + ] + } + ] + }, + "pre": { + "nodeType": "YulBlock", + "src": "382:3:6", + "statements": [] + }, + "src": "378:113:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "dst", + "nodeType": "YulIdentifier", + "src": "511:3:6" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "516:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "507:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "507:16:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "525:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "500:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "500:27:6" + }, + "nodeType": "YulExpressionStatement", + "src": "500:27:6" + } + ] + }, + "name": "copy_memory_to_memory_with_cleanup", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "src", + "nodeType": "YulTypedName", + "src": "331:3:6", + "type": "" + }, + { + "name": "dst", + "nodeType": "YulTypedName", + "src": "336:3:6", + "type": "" + }, + { + "name": "length", + "nodeType": "YulTypedName", + "src": "341:6:6", + "type": "" + } + ], + "src": "287:246:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "587:54:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "597:38:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "615:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "622:2:6", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "611:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "611:14:6" + }, + { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "631:2:6", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "not", + "nodeType": "YulIdentifier", + "src": "627:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "627:7:6" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "607:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "607:28:6" + }, + "variableNames": [ + { + "name": "result", + "nodeType": "YulIdentifier", + "src": "597:6:6" + } + ] + } + ] + }, + "name": "round_up_to_mul_of_32", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "570:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "result", + "nodeType": "YulTypedName", + "src": "580:6:6", + "type": "" + } + ], + "src": "539:102:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "739:285:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "749:53:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "796:5:6" + } + ], + "functionName": { + "name": "array_length_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "763:32:6" + }, + "nodeType": "YulFunctionCall", + "src": "763:39:6" + }, + "variables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "753:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "811:78:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "877:3:6" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "882:6:6" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "818:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "818:71:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "811:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "937:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "944:4:6", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "933:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "933:16:6" + }, + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "951:3:6" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "956:6:6" + } + ], + "functionName": { + "name": "copy_memory_to_memory_with_cleanup", + "nodeType": "YulIdentifier", + "src": "898:34:6" + }, + "nodeType": "YulFunctionCall", + "src": "898:65:6" + }, + "nodeType": "YulExpressionStatement", + "src": "898:65:6" + }, + { + "nodeType": "YulAssignment", + "src": "972:46:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "983:3:6" + }, + { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "1010:6:6" + } + ], + "functionName": { + "name": "round_up_to_mul_of_32", + "nodeType": "YulIdentifier", + "src": "988:21:6" + }, + "nodeType": "YulFunctionCall", + "src": "988:29:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "979:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "979:39:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "972:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "720:5:6", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "727:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "735:3:6", + "type": "" + } + ], + "src": "647:377:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1148:195:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1158:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "1170:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1181:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "1166:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1166:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "1158:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "1205:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1216:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "1201:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1201:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "1224:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "1230:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "1220:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1220:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "1194:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "1194:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "1194:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "1250:86:6", + "value": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "1322:6:6" + }, + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "1331:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "1258:63:6" + }, + "nodeType": "YulFunctionCall", + "src": "1258:78:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "1250:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "1120:9:6", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "1132:6:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "1143:4:6", + "type": "" + } + ], + "src": "1030:313:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1389:35:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1399:19:6", + "value": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1415:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "1409:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "1409:9:6" + }, + "variableNames": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "1399:6:6" + } + ] + } + ] + }, + "name": "allocate_unbounded", + "nodeType": "YulFunctionDefinition", + "returnVariables": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "1382:6:6", + "type": "" + } + ], + "src": "1349:75:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1519:28:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1536:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1539:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "1529:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "1529:12:6" + }, + "nodeType": "YulExpressionStatement", + "src": "1529:12:6" + } + ] + }, + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulFunctionDefinition", + "src": "1430:117:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1642:28:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1659:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1662:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "1652:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "1652:12:6" + }, + "nodeType": "YulExpressionStatement", + "src": "1652:12:6" + } + ] + }, + "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", + "nodeType": "YulFunctionDefinition", + "src": "1553:117:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1721:81:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1731:65:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1746:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1753:42:6", + "type": "", + "value": "0xffffffffffffffffffffffffffffffffffffffff" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "1742:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1742:54:6" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "1731:7:6" + } + ] + } + ] + }, + "name": "cleanup_t_uint160", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "1703:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "1713:7:6", + "type": "" + } + ], + "src": "1676:126:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1853:51:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1863:35:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1892:5:6" + } + ], + "functionName": { + "name": "cleanup_t_uint160", + "nodeType": "YulIdentifier", + "src": "1874:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "1874:24:6" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "1863:7:6" + } + ] + } + ] + }, + "name": "cleanup_t_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "1835:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "1845:7:6", + "type": "" + } + ], + "src": "1808:96:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1953:79:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "2010:16:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2019:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2022:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "2012:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "2012:12:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2012:12:6" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1976:5:6" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2001:5:6" + } + ], + "functionName": { + "name": "cleanup_t_address", + "nodeType": "YulIdentifier", + "src": "1983:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "1983:24:6" + } + ], + "functionName": { + "name": "eq", + "nodeType": "YulIdentifier", + "src": "1973:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "1973:35:6" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "1966:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "1966:43:6" + }, + "nodeType": "YulIf", + "src": "1963:63:6" + } + ] + }, + "name": "validator_revert_t_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "1946:5:6", + "type": "" + } + ], + "src": "1910:122:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2090:87:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "2100:29:6", + "value": { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2122:6:6" + } + ], + "functionName": { + "name": "calldataload", + "nodeType": "YulIdentifier", + "src": "2109:12:6" + }, + "nodeType": "YulFunctionCall", + "src": "2109:20:6" + }, + "variableNames": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2100:5:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2165:5:6" + } + ], + "functionName": { + "name": "validator_revert_t_address", + "nodeType": "YulIdentifier", + "src": "2138:26:6" + }, + "nodeType": "YulFunctionCall", + "src": "2138:33:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2138:33:6" + } + ] + }, + "name": "abi_decode_t_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "2068:6:6", + "type": "" + }, + { + "name": "end", + "nodeType": "YulTypedName", + "src": "2076:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "2084:5:6", + "type": "" + } + ], + "src": "2038:139:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2228:32:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "2238:16:6", + "value": { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2249:5:6" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "2238:7:6" + } + ] + } + ] + }, + "name": "cleanup_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "2210:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "2220:7:6", + "type": "" + } + ], + "src": "2183:77:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2309:79:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "2366:16:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2375:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2378:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "2368:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "2368:12:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2368:12:6" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2332:5:6" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2357:5:6" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "2339:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "2339:24:6" + } + ], + "functionName": { + "name": "eq", + "nodeType": "YulIdentifier", + "src": "2329:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "2329:35:6" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "2322:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "2322:43:6" + }, + "nodeType": "YulIf", + "src": "2319:63:6" + } + ] + }, + "name": "validator_revert_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "2302:5:6", + "type": "" + } + ], + "src": "2266:122:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2446:87:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "2456:29:6", + "value": { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2478:6:6" + } + ], + "functionName": { + "name": "calldataload", + "nodeType": "YulIdentifier", + "src": "2465:12:6" + }, + "nodeType": "YulFunctionCall", + "src": "2465:20:6" + }, + "variableNames": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2456:5:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2521:5:6" + } + ], + "functionName": { + "name": "validator_revert_t_uint256", + "nodeType": "YulIdentifier", + "src": "2494:26:6" + }, + "nodeType": "YulFunctionCall", + "src": "2494:33:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2494:33:6" + } + ] + }, + "name": "abi_decode_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "2424:6:6", + "type": "" + }, + { + "name": "end", + "nodeType": "YulTypedName", + "src": "2432:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "2440:5:6", + "type": "" + } + ], + "src": "2394:139:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2622:391:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "2668:83:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulIdentifier", + "src": "2670:77:6" + }, + "nodeType": "YulFunctionCall", + "src": "2670:79:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2670:79:6" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "2643:7:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "2652:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "2639:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2639:23:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2664:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "2635:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2635:32:6" + }, + "nodeType": "YulIf", + "src": "2632:119:6" + }, + { + "nodeType": "YulBlock", + "src": "2761:117:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "2776:15:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2790:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "2780:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "2805:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "2840:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2851:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2836:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2836:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "2860:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_address", + "nodeType": "YulIdentifier", + "src": "2815:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "2815:53:6" + }, + "variableNames": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "2805:6:6" + } + ] + } + ] + }, + { + "nodeType": "YulBlock", + "src": "2888:118:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "2903:16:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2917:2:6", + "type": "", + "value": "32" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "2907:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "2933:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "2968:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2979:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2964:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2964:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "2988:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_uint256", + "nodeType": "YulIdentifier", + "src": "2943:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "2943:53:6" + }, + "variableNames": [ + { + "name": "value1", + "nodeType": "YulIdentifier", + "src": "2933:6:6" + } + ] + } + ] + } + ] + }, + "name": "abi_decode_tuple_t_addresst_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "2584:9:6", + "type": "" + }, + { + "name": "dataEnd", + "nodeType": "YulTypedName", + "src": "2595:7:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "2607:6:6", + "type": "" + }, + { + "name": "value1", + "nodeType": "YulTypedName", + "src": "2615:6:6", + "type": "" + } + ], + "src": "2539:474:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3061:48:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3071:32:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3096:5:6" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "3089:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "3089:13:6" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "3082:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "3082:21:6" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "3071:7:6" + } + ] + } + ] + }, + "name": "cleanup_t_bool", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "3043:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "3053:7:6", + "type": "" + } + ], + "src": "3019:90:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3174:50:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "3191:3:6" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3211:5:6" + } + ], + "functionName": { + "name": "cleanup_t_bool", + "nodeType": "YulIdentifier", + "src": "3196:14:6" + }, + "nodeType": "YulFunctionCall", + "src": "3196:21:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "3184:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "3184:34:6" + }, + "nodeType": "YulExpressionStatement", + "src": "3184:34:6" + } + ] + }, + "name": "abi_encode_t_bool_to_t_bool_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "3162:5:6", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "3169:3:6", + "type": "" + } + ], + "src": "3115:109:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3322:118:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3332:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3344:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3355:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3340:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3340:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "3332:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "3406:6:6" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3419:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3430:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3415:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3415:17:6" + } + ], + "functionName": { + "name": "abi_encode_t_bool_to_t_bool_fromStack", + "nodeType": "YulIdentifier", + "src": "3368:37:6" + }, + "nodeType": "YulFunctionCall", + "src": "3368:65:6" + }, + "nodeType": "YulExpressionStatement", + "src": "3368:65:6" + } + ] + }, + "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "3294:9:6", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "3306:6:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "3317:4:6", + "type": "" + } + ], + "src": "3230:210:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3511:53:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "3528:3:6" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3551:5:6" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "3533:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "3533:24:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "3521:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "3521:37:6" + }, + "nodeType": "YulExpressionStatement", + "src": "3521:37:6" + } + ] + }, + "name": "abi_encode_t_uint256_to_t_uint256_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "3499:5:6", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "3506:3:6", + "type": "" + } + ], + "src": "3446:118:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3668:124:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3678:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3690:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3701:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3686:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3686:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "3678:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "3758:6:6" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3771:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3782:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3767:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3767:17:6" + } + ], + "functionName": { + "name": "abi_encode_t_uint256_to_t_uint256_fromStack", + "nodeType": "YulIdentifier", + "src": "3714:43:6" + }, + "nodeType": "YulFunctionCall", + "src": "3714:71:6" + }, + "nodeType": "YulExpressionStatement", + "src": "3714:71:6" + } + ] + }, + "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "3640:9:6", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "3652:6:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "3663:4:6", + "type": "" + } + ], + "src": "3570:222:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3898:519:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "3944:83:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulIdentifier", + "src": "3946:77:6" + }, + "nodeType": "YulFunctionCall", + "src": "3946:79:6" + }, + "nodeType": "YulExpressionStatement", + "src": "3946:79:6" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "3919:7:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3928:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "3915:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3915:23:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3940:2:6", + "type": "", + "value": "96" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "3911:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3911:32:6" + }, + "nodeType": "YulIf", + "src": "3908:119:6" + }, + { + "nodeType": "YulBlock", + "src": "4037:117:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "4052:15:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4066:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "4056:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "4081:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "4116:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "4127:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4112:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4112:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "4136:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_address", + "nodeType": "YulIdentifier", + "src": "4091:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "4091:53:6" + }, + "variableNames": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "4081:6:6" + } + ] + } + ] + }, + { + "nodeType": "YulBlock", + "src": "4164:118:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "4179:16:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4193:2:6", + "type": "", + "value": "32" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "4183:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "4209:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "4244:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "4255:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4240:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4240:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "4264:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_address", + "nodeType": "YulIdentifier", + "src": "4219:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "4219:53:6" + }, + "variableNames": [ + { + "name": "value1", + "nodeType": "YulIdentifier", + "src": "4209:6:6" + } + ] + } + ] + }, + { + "nodeType": "YulBlock", + "src": "4292:118:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "4307:16:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4321:2:6", + "type": "", + "value": "64" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "4311:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "4337:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "4372:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "4383:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4368:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4368:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "4392:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_uint256", + "nodeType": "YulIdentifier", + "src": "4347:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "4347:53:6" + }, + "variableNames": [ + { + "name": "value2", + "nodeType": "YulIdentifier", + "src": "4337:6:6" + } + ] + } + ] + } + ] + }, + "name": "abi_decode_tuple_t_addresst_addresst_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "3852:9:6", + "type": "" + }, + { + "name": "dataEnd", + "nodeType": "YulTypedName", + "src": "3863:7:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "3875:6:6", + "type": "" + }, + { + "name": "value1", + "nodeType": "YulTypedName", + "src": "3883:6:6", + "type": "" + }, + { + "name": "value2", + "nodeType": "YulTypedName", + "src": "3891:6:6", + "type": "" + } + ], + "src": "3798:619:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4466:43:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "4476:27:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "4491:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4498:4:6", + "type": "", + "value": "0xff" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "4487:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4487:16:6" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "4476:7:6" + } + ] + } + ] + }, + "name": "cleanup_t_uint8", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "4448:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "4458:7:6", + "type": "" + } + ], + "src": "4423:86:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4576:51:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "4593:3:6" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "4614:5:6" + } + ], + "functionName": { + "name": "cleanup_t_uint8", + "nodeType": "YulIdentifier", + "src": "4598:15:6" + }, + "nodeType": "YulFunctionCall", + "src": "4598:22:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "4586:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "4586:35:6" + }, + "nodeType": "YulExpressionStatement", + "src": "4586:35:6" + } + ] + }, + "name": "abi_encode_t_uint8_to_t_uint8_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "4564:5:6", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "4571:3:6", + "type": "" + } + ], + "src": "4515:112:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4727:120:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "4737:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "4749:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4760:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4745:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4745:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "4737:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "4813:6:6" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "4826:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4837:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4822:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4822:17:6" + } + ], + "functionName": { + "name": "abi_encode_t_uint8_to_t_uint8_fromStack", + "nodeType": "YulIdentifier", + "src": "4773:39:6" + }, + "nodeType": "YulFunctionCall", + "src": "4773:67:6" + }, + "nodeType": "YulExpressionStatement", + "src": "4773:67:6" + } + ] + }, + "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "4699:9:6", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "4711:6:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "4722:4:6", + "type": "" + } + ], + "src": "4633:214:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4919:263:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "4965:83:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulIdentifier", + "src": "4967:77:6" + }, + "nodeType": "YulFunctionCall", + "src": "4967:79:6" + }, + "nodeType": "YulExpressionStatement", + "src": "4967:79:6" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "4940:7:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "4949:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "4936:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4936:23:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4961:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "4932:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4932:32:6" + }, + "nodeType": "YulIf", + "src": "4929:119:6" + }, + { + "nodeType": "YulBlock", + "src": "5058:117:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "5073:15:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5087:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "5077:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "5102:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5137:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "5148:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5133:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5133:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "5157:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_address", + "nodeType": "YulIdentifier", + "src": "5112:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "5112:53:6" + }, + "variableNames": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "5102:6:6" + } + ] + } + ] + } + ] + }, + "name": "abi_decode_tuple_t_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "4889:9:6", + "type": "" + }, + { + "name": "dataEnd", + "nodeType": "YulTypedName", + "src": "4900:7:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "4912:6:6", + "type": "" + } + ], + "src": "4853:329:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5253:53:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "5270:3:6" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "5293:5:6" + } + ], + "functionName": { + "name": "cleanup_t_address", + "nodeType": "YulIdentifier", + "src": "5275:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "5275:24:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "5263:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "5263:37:6" + }, + "nodeType": "YulExpressionStatement", + "src": "5263:37:6" + } + ] + }, + "name": "abi_encode_t_address_to_t_address_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "5241:5:6", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "5248:3:6", + "type": "" + } + ], + "src": "5188:118:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5410:124:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "5420:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5432:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5443:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5428:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5428:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "5420:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "5500:6:6" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5513:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5524:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5509:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5509:17:6" + } + ], + "functionName": { + "name": "abi_encode_t_address_to_t_address_fromStack", + "nodeType": "YulIdentifier", + "src": "5456:43:6" + }, + "nodeType": "YulFunctionCall", + "src": "5456:71:6" + }, + "nodeType": "YulExpressionStatement", + "src": "5456:71:6" + } + ] + }, + "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "5382:9:6", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "5394:6:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "5405:4:6", + "type": "" + } + ], + "src": "5312:222:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5742:442:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "5752:27:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5764:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5775:3:6", + "type": "", + "value": "128" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5760:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5760:19:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "5752:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5800:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5811:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5796:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5796:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "5819:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5825:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "5815:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5815:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "5789:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "5789:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "5789:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "5845:86:6", + "value": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "5917:6:6" + }, + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "5926:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "5853:63:6" + }, + "nodeType": "YulFunctionCall", + "src": "5853:78:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "5845:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value1", + "nodeType": "YulIdentifier", + "src": "5985:6:6" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5998:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6009:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5994:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5994:18:6" + } + ], + "functionName": { + "name": "abi_encode_t_address_to_t_address_fromStack", + "nodeType": "YulIdentifier", + "src": "5941:43:6" + }, + "nodeType": "YulFunctionCall", + "src": "5941:72:6" + }, + "nodeType": "YulExpressionStatement", + "src": "5941:72:6" + }, + { + "expression": { + "arguments": [ + { + "name": "value2", + "nodeType": "YulIdentifier", + "src": "6067:6:6" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "6080:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6091:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6076:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6076:18:6" + } + ], + "functionName": { + "name": "abi_encode_t_uint256_to_t_uint256_fromStack", + "nodeType": "YulIdentifier", + "src": "6023:43:6" + }, + "nodeType": "YulFunctionCall", + "src": "6023:72:6" + }, + "nodeType": "YulExpressionStatement", + "src": "6023:72:6" + }, + { + "expression": { + "arguments": [ + { + "name": "value3", + "nodeType": "YulIdentifier", + "src": "6149:6:6" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "6162:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6173:2:6", + "type": "", + "value": "96" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6158:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6158:18:6" + } + ], + "functionName": { + "name": "abi_encode_t_uint256_to_t_uint256_fromStack", + "nodeType": "YulIdentifier", + "src": "6105:43:6" + }, + "nodeType": "YulFunctionCall", + "src": "6105:72:6" + }, + "nodeType": "YulExpressionStatement", + "src": "6105:72:6" + } + ] + }, + "name": "abi_encode_tuple_t_string_memory_ptr_t_address_t_uint256_t_uint256__to_t_string_memory_ptr_t_address_t_uint256_t_uint256__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "5690:9:6", + "type": "" + }, + { + "name": "value3", + "nodeType": "YulTypedName", + "src": "5702:6:6", + "type": "" + }, + { + "name": "value2", + "nodeType": "YulTypedName", + "src": "5710:6:6", + "type": "" + }, + { + "name": "value1", + "nodeType": "YulTypedName", + "src": "5718:6:6", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "5726:6:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "5737:4:6", + "type": "" + } + ], + "src": "5540:644:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6273:391:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "6319:83:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulIdentifier", + "src": "6321:77:6" + }, + "nodeType": "YulFunctionCall", + "src": "6321:79:6" + }, + "nodeType": "YulExpressionStatement", + "src": "6321:79:6" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "6294:7:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "6303:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "6290:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6290:23:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6315:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "6286:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6286:32:6" + }, + "nodeType": "YulIf", + "src": "6283:119:6" + }, + { + "nodeType": "YulBlock", + "src": "6412:117:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "6427:15:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6441:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "6431:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "6456:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "6491:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "6502:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6487:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6487:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "6511:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_address", + "nodeType": "YulIdentifier", + "src": "6466:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "6466:53:6" + }, + "variableNames": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "6456:6:6" + } + ] + } + ] + }, + { + "nodeType": "YulBlock", + "src": "6539:118:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "6554:16:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6568:2:6", + "type": "", + "value": "32" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "6558:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "6584:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "6619:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "6630:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6615:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6615:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "6639:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_address", + "nodeType": "YulIdentifier", + "src": "6594:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "6594:53:6" + }, + "variableNames": [ + { + "name": "value1", + "nodeType": "YulIdentifier", + "src": "6584:6:6" + } + ] + } + ] + } + ] + }, + "name": "abi_decode_tuple_t_addresst_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "6235:9:6", + "type": "" + }, + { + "name": "dataEnd", + "nodeType": "YulTypedName", + "src": "6246:7:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "6258:6:6", + "type": "" + }, + { + "name": "value1", + "nodeType": "YulTypedName", + "src": "6266:6:6", + "type": "" + } + ], + "src": "6190:474:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6698:152:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6715:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6718:77:6", + "type": "", + "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "6708:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "6708:88:6" + }, + "nodeType": "YulExpressionStatement", + "src": "6708:88:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6812:1:6", + "type": "", + "value": "4" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6815:4:6", + "type": "", + "value": "0x22" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "6805:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "6805:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "6805:15:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6836:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6839:4:6", + "type": "", + "value": "0x24" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "6829:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "6829:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "6829:15:6" + } + ] + }, + "name": "panic_error_0x22", + "nodeType": "YulFunctionDefinition", + "src": "6670:180:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6907:269:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "6917:22:6", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "6931:4:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6937:1:6", + "type": "", + "value": "2" + } + ], + "functionName": { + "name": "div", + "nodeType": "YulIdentifier", + "src": "6927:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6927:12:6" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "6917:6:6" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "6948:38:6", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "6978:4:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6984:1:6", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "6974:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6974:12:6" + }, + "variables": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulTypedName", + "src": "6952:18:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7025:51:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "7039:27:6", + "value": { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "7053:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7061:4:6", + "type": "", + "value": "0x7f" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "7049:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "7049:17:6" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "7039:6:6" + } + ] + } + ] + }, + "condition": { + "arguments": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulIdentifier", + "src": "7005:18:6" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "6998:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "6998:26:6" + }, + "nodeType": "YulIf", + "src": "6995:81:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7128:42:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "panic_error_0x22", + "nodeType": "YulIdentifier", + "src": "7142:16:6" + }, + "nodeType": "YulFunctionCall", + "src": "7142:18:6" + }, + "nodeType": "YulExpressionStatement", + "src": "7142:18:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulIdentifier", + "src": "7092:18:6" + }, + { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "7115:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7123:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "7112:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "7112:14:6" + } + ], + "functionName": { + "name": "eq", + "nodeType": "YulIdentifier", + "src": "7089:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "7089:38:6" + }, + "nodeType": "YulIf", + "src": "7086:84:6" + } + ] + }, + "name": "extract_byte_array_length", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "data", + "nodeType": "YulTypedName", + "src": "6891:4:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "6900:6:6", + "type": "" + } + ], + "src": "6856:320:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7210:152:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7227:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7230:77:6", + "type": "", + "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "7220:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "7220:88:6" + }, + "nodeType": "YulExpressionStatement", + "src": "7220:88:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7324:1:6", + "type": "", + "value": "4" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7327:4:6", + "type": "", + "value": "0x11" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "7317:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "7317:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "7317:15:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7348:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7351:4:6", + "type": "", + "value": "0x24" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "7341:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "7341:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "7341:15:6" + } + ] + }, + "name": "panic_error_0x11", + "nodeType": "YulFunctionDefinition", + "src": "7182:180:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7412:147:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "7422:25:6", + "value": { + "arguments": [ + { + "name": "x", + "nodeType": "YulIdentifier", + "src": "7445:1:6" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "7427:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "7427:20:6" + }, + "variableNames": [ + { + "name": "x", + "nodeType": "YulIdentifier", + "src": "7422:1:6" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "7456:25:6", + "value": { + "arguments": [ + { + "name": "y", + "nodeType": "YulIdentifier", + "src": "7479:1:6" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "7461:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "7461:20:6" + }, + "variableNames": [ + { + "name": "y", + "nodeType": "YulIdentifier", + "src": "7456:1:6" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "7490:16:6", + "value": { + "arguments": [ + { + "name": "x", + "nodeType": "YulIdentifier", + "src": "7501:1:6" + }, + { + "name": "y", + "nodeType": "YulIdentifier", + "src": "7504:1:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "7497:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "7497:9:6" + }, + "variableNames": [ + { + "name": "sum", + "nodeType": "YulIdentifier", + "src": "7490:3:6" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7530:22:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "panic_error_0x11", + "nodeType": "YulIdentifier", + "src": "7532:16:6" + }, + "nodeType": "YulFunctionCall", + "src": "7532:18:6" + }, + "nodeType": "YulExpressionStatement", + "src": "7532:18:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "x", + "nodeType": "YulIdentifier", + "src": "7522:1:6" + }, + { + "name": "sum", + "nodeType": "YulIdentifier", + "src": "7525:3:6" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "7519:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "7519:10:6" + }, + "nodeType": "YulIf", + "src": "7516:36:6" + } + ] + }, + "name": "checked_add_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "x", + "nodeType": "YulTypedName", + "src": "7399:1:6", + "type": "" + }, + { + "name": "y", + "nodeType": "YulTypedName", + "src": "7402:1:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "sum", + "nodeType": "YulTypedName", + "src": "7408:3:6", + "type": "" + } + ], + "src": "7368:191:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7671:118:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "7693:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7701:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "7689:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "7689:14:6" + }, + { + "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77", + "kind": "string", + "nodeType": "YulLiteral", + "src": "7705:34:6", + "type": "", + "value": "ERC20: decreased allowance below" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "7682:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "7682:58:6" + }, + "nodeType": "YulExpressionStatement", + "src": "7682:58:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "7761:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7769:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "7757:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "7757:15:6" + }, + { + "hexValue": "207a65726f", + "kind": "string", + "nodeType": "YulLiteral", + "src": "7774:7:6", + "type": "", + "value": " zero" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "7750:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "7750:32:6" + }, + "nodeType": "YulExpressionStatement", + "src": "7750:32:6" + } + ] + }, + "name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "7663:6:6", + "type": "" + } + ], + "src": "7565:224:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7941:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "7951:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8017:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8022:2:6", + "type": "", + "value": "37" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "7958:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "7958:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "7951:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8123:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8", + "nodeType": "YulIdentifier", + "src": "8034:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "8034:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "8034:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "8136:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8147:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8152:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8143:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8143:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "8136:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "7929:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "7937:3:6", + "type": "" + } + ], + "src": "7795:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "8338:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "8348:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "8360:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8371:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8356:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8356:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "8348:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "8395:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8406:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8391:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8391:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "8414:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "8420:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "8410:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8410:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "8384:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "8384:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "8384:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "8440:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "8574:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "8448:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "8448:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "8440:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "8318:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "8333:4:6", + "type": "" + } + ], + "src": "8167:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "8698:119:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "8720:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8728:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8716:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8716:14:6" + }, + { + "hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061", + "kind": "string", + "nodeType": "YulLiteral", + "src": "8732:34:6", + "type": "", + "value": "Ownable: new owner is the zero a" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "8709:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "8709:58:6" + }, + "nodeType": "YulExpressionStatement", + "src": "8709:58:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "8788:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8796:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8784:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8784:15:6" + }, + { + "hexValue": "646472657373", + "kind": "string", + "nodeType": "YulLiteral", + "src": "8801:8:6", + "type": "", + "value": "ddress" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "8777:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "8777:33:6" + }, + "nodeType": "YulExpressionStatement", + "src": "8777:33:6" + } + ] + }, + "name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "8690:6:6", + "type": "" + } + ], + "src": "8592:225:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "8969:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "8979:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9045:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9050:2:6", + "type": "", + "value": "38" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "8986:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "8986:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8979:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9151:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe", + "nodeType": "YulIdentifier", + "src": "9062:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "9062:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "9062:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "9164:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9175:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9180:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "9171:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "9171:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "9164:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "8957:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "8965:3:6", + "type": "" + } + ], + "src": "8823:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "9366:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "9376:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "9388:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9399:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "9384:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "9384:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "9376:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "9423:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9434:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "9419:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "9419:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "9442:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "9448:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "9438:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "9438:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "9412:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "9412:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "9412:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "9468:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "9602:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "9476:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "9476:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "9468:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "9346:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "9361:4:6", + "type": "" + } + ], + "src": "9195:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "9726:117:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "9748:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9756:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "9744:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "9744:14:6" + }, + { + "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464", + "kind": "string", + "nodeType": "YulLiteral", + "src": "9760:34:6", + "type": "", + "value": "ERC20: approve from the zero add" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "9737:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "9737:58:6" + }, + "nodeType": "YulExpressionStatement", + "src": "9737:58:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "9816:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9824:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "9812:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "9812:15:6" + }, + { + "hexValue": "72657373", + "kind": "string", + "nodeType": "YulLiteral", + "src": "9829:6:6", + "type": "", + "value": "ress" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "9805:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "9805:31:6" + }, + "nodeType": "YulExpressionStatement", + "src": "9805:31:6" + } + ] + }, + "name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "9718:6:6", + "type": "" + } + ], + "src": "9620:223:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "9995:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "10005:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "10071:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10076:2:6", + "type": "", + "value": "36" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "10012:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "10012:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "10005:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "10177:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208", + "nodeType": "YulIdentifier", + "src": "10088:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "10088:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "10088:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "10190:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "10201:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10206:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10197:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "10197:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "10190:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "9983:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "9991:3:6", + "type": "" + } + ], + "src": "9849:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "10392:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "10402:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "10414:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10425:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10410:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "10410:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "10402:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "10449:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10460:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10445:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "10445:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "10468:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "10474:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "10464:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "10464:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "10438:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "10438:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "10438:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "10494:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "10628:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "10502:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "10502:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "10494:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "10372:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "10387:4:6", + "type": "" + } + ], + "src": "10221:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "10752:115:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "10774:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10782:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10770:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "10770:14:6" + }, + { + "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265", + "kind": "string", + "nodeType": "YulLiteral", + "src": "10786:34:6", + "type": "", + "value": "ERC20: approve to the zero addre" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "10763:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "10763:58:6" + }, + "nodeType": "YulExpressionStatement", + "src": "10763:58:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "10842:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10850:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10838:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "10838:15:6" + }, + { + "hexValue": "7373", + "kind": "string", + "nodeType": "YulLiteral", + "src": "10855:4:6", + "type": "", + "value": "ss" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "10831:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "10831:29:6" + }, + "nodeType": "YulExpressionStatement", + "src": "10831:29:6" + } + ] + }, + "name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "10744:6:6", + "type": "" + } + ], + "src": "10646:221:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "11019:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "11029:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "11095:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11100:2:6", + "type": "", + "value": "34" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "11036:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "11036:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "11029:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "11201:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029", + "nodeType": "YulIdentifier", + "src": "11112:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "11112:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "11112:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "11214:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "11225:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11230:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "11221:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "11221:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "11214:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "11007:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "11015:3:6", + "type": "" + } + ], + "src": "10873:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "11416:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "11426:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "11438:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11449:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "11434:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "11434:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "11426:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "11473:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11484:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "11469:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "11469:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "11492:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "11498:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "11488:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "11488:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "11462:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "11462:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "11462:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "11518:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "11652:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "11526:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "11526:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "11518:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "11396:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "11411:4:6", + "type": "" + } + ], + "src": "11245:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "11776:73:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "11798:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11806:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "11794:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "11794:14:6" + }, + { + "hexValue": "45524332303a20696e73756666696369656e7420616c6c6f77616e6365", + "kind": "string", + "nodeType": "YulLiteral", + "src": "11810:31:6", + "type": "", + "value": "ERC20: insufficient allowance" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "11787:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "11787:55:6" + }, + "nodeType": "YulExpressionStatement", + "src": "11787:55:6" + } + ] + }, + "name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "11768:6:6", + "type": "" + } + ], + "src": "11670:179:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "12001:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "12011:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "12077:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12082:2:6", + "type": "", + "value": "29" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "12018:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "12018:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "12011:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "12183:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe", + "nodeType": "YulIdentifier", + "src": "12094:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "12094:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "12094:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "12196:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "12207:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12212:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "12203:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "12203:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "12196:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "11989:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "11997:3:6", + "type": "" + } + ], + "src": "11855:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "12398:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "12408:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "12420:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12431:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "12416:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "12416:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "12408:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "12455:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12466:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "12451:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "12451:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "12474:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "12480:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "12470:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "12470:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "12444:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "12444:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "12444:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "12500:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "12634:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "12508:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "12508:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "12500:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "12378:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "12393:4:6", + "type": "" + } + ], + "src": "12227:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "12758:118:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "12780:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12788:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "12776:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "12776:14:6" + }, + { + "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164", + "kind": "string", + "nodeType": "YulLiteral", + "src": "12792:34:6", + "type": "", + "value": "ERC20: transfer from the zero ad" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "12769:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "12769:58:6" + }, + "nodeType": "YulExpressionStatement", + "src": "12769:58:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "12848:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12856:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "12844:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "12844:15:6" + }, + { + "hexValue": "6472657373", + "kind": "string", + "nodeType": "YulLiteral", + "src": "12861:7:6", + "type": "", + "value": "dress" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "12837:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "12837:32:6" + }, + "nodeType": "YulExpressionStatement", + "src": "12837:32:6" + } + ] + }, + "name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "12750:6:6", + "type": "" + } + ], + "src": "12652:224:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "13028:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "13038:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "13104:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13109:2:6", + "type": "", + "value": "37" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "13045:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "13045:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "13038:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "13210:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea", + "nodeType": "YulIdentifier", + "src": "13121:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "13121:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "13121:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "13223:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "13234:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13239:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "13230:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "13230:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "13223:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "13016:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "13024:3:6", + "type": "" + } + ], + "src": "12882:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "13425:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "13435:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "13447:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13458:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "13443:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "13443:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "13435:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "13482:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13493:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "13478:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "13478:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "13501:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "13507:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "13497:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "13497:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "13471:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "13471:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "13471:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "13527:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "13661:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "13535:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "13535:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "13527:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "13405:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "13420:4:6", + "type": "" + } + ], + "src": "13254:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "13785:116:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "13807:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13815:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "13803:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "13803:14:6" + }, + { + "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472", + "kind": "string", + "nodeType": "YulLiteral", + "src": "13819:34:6", + "type": "", + "value": "ERC20: transfer to the zero addr" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "13796:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "13796:58:6" + }, + "nodeType": "YulExpressionStatement", + "src": "13796:58:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "13875:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13883:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "13871:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "13871:15:6" + }, + { + "hexValue": "657373", + "kind": "string", + "nodeType": "YulLiteral", + "src": "13888:5:6", + "type": "", + "value": "ess" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "13864:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "13864:30:6" + }, + "nodeType": "YulExpressionStatement", + "src": "13864:30:6" + } + ] + }, + "name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "13777:6:6", + "type": "" + } + ], + "src": "13679:222:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "14053:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "14063:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "14129:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14134:2:6", + "type": "", + "value": "35" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "14070:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "14070:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "14063:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "14235:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f", + "nodeType": "YulIdentifier", + "src": "14146:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "14146:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "14146:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "14248:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "14259:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14264:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14255:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "14255:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "14248:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "14041:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "14049:3:6", + "type": "" + } + ], + "src": "13907:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "14450:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "14460:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "14472:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14483:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14468:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "14468:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "14460:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "14507:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14518:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14503:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "14503:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "14526:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "14532:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "14522:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "14522:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "14496:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "14496:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "14496:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "14552:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "14686:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "14560:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "14560:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "14552:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "14430:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "14445:4:6", + "type": "" + } + ], + "src": "14279:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "14810:119:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "14832:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14840:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14828:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "14828:14:6" + }, + { + "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062", + "kind": "string", + "nodeType": "YulLiteral", + "src": "14844:34:6", + "type": "", + "value": "ERC20: transfer amount exceeds b" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "14821:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "14821:58:6" + }, + "nodeType": "YulExpressionStatement", + "src": "14821:58:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "14900:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14908:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14896:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "14896:15:6" + }, + { + "hexValue": "616c616e6365", + "kind": "string", + "nodeType": "YulLiteral", + "src": "14913:8:6", + "type": "", + "value": "alance" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "14889:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "14889:33:6" + }, + "nodeType": "YulExpressionStatement", + "src": "14889:33:6" + } + ] + }, + "name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "14802:6:6", + "type": "" + } + ], + "src": "14704:225:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "15081:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "15091:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "15157:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "15162:2:6", + "type": "", + "value": "38" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "15098:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "15098:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "15091:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "15263:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6", + "nodeType": "YulIdentifier", + "src": "15174:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "15174:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "15174:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "15276:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "15287:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "15292:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "15283:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "15283:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "15276:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "15069:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "15077:3:6", + "type": "" + } + ], + "src": "14935:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "15478:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "15488:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "15500:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "15511:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "15496:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "15496:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "15488:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "15535:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "15546:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "15531:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "15531:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "15554:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "15560:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "15550:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "15550:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "15524:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "15524:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "15524:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "15580:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "15714:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "15588:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "15588:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "15580:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "15458:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "15473:4:6", + "type": "" + } + ], + "src": "15307:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "15838:76:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "15860:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "15868:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "15856:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "15856:14:6" + }, + { + "hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572", + "kind": "string", + "nodeType": "YulLiteral", + "src": "15872:34:6", + "type": "", + "value": "Ownable: caller is not the owner" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "15849:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "15849:58:6" + }, + "nodeType": "YulExpressionStatement", + "src": "15849:58:6" + } + ] + }, + "name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "15830:6:6", + "type": "" + } + ], + "src": "15732:182:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "16066:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "16076:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "16142:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "16147:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "16083:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "16083:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "16076:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "16248:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe", + "nodeType": "YulIdentifier", + "src": "16159:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "16159:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "16159:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "16261:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "16272:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "16277:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "16268:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "16268:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "16261:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "16054:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "16062:3:6", + "type": "" + } + ], + "src": "15920:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "16463:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "16473:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "16485:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "16496:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "16481:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "16481:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "16473:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "16520:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "16531:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "16516:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "16516:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "16539:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "16545:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "16535:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "16535:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "16509:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "16509:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "16509:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "16565:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "16699:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "16573:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "16573:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "16565:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "16443:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "16458:4:6", + "type": "" + } + ], + "src": "16292:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "16823:75:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "16845:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "16853:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "16841:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "16841:14:6" + }, + { + "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373", + "kind": "string", + "nodeType": "YulLiteral", + "src": "16857:33:6", + "type": "", + "value": "ERC20: mint to the zero address" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "16834:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "16834:57:6" + }, + "nodeType": "YulExpressionStatement", + "src": "16834:57:6" + } + ] + }, + "name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "16815:6:6", + "type": "" + } + ], + "src": "16717:181:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "17050:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "17060:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "17126:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "17131:2:6", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "17067:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "17067:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "17060:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "17232:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e", + "nodeType": "YulIdentifier", + "src": "17143:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "17143:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "17143:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "17245:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "17256:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "17261:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "17252:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "17252:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "17245:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "17038:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "17046:3:6", + "type": "" + } + ], + "src": "16904:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "17447:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "17457:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "17469:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "17480:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "17465:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "17465:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "17457:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "17504:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "17515:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "17500:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "17500:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "17523:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "17529:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "17519:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "17519:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "17493:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "17493:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "17493:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "17549:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "17683:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "17557:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "17557:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "17549:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "17427:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "17442:4:6", + "type": "" + } + ], + "src": "17276:419:6" + } + ] + }, + "contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\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 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_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_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_string_memory_ptr__to_t_string_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_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\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_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 validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\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_addresst_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_address(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 cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\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 abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\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 abi_encode_tuple_t_string_memory_ptr_t_address_t_uint256_t_uint256__to_t_string_memory_ptr_t_address_t_uint256_t_uint256__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n }\n\n function abi_decode_tuple_t_addresst_address(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_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: decreased allowance below\")\n\n mstore(add(memPtr, 32), \" zero\")\n\n }\n\n function abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__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_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: new owner is the zero a\")\n\n mstore(add(memPtr, 32), \"ddress\")\n\n }\n\n function abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__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_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve from the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__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_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve to the zero addre\")\n\n mstore(add(memPtr, 32), \"ss\")\n\n }\n\n function abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__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_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: insufficient allowance\")\n\n }\n\n function abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 29)\n store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__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_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer from the zero ad\")\n\n mstore(add(memPtr, 32), \"dress\")\n\n }\n\n function abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__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_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(memPtr, 32), \"ess\")\n\n }\n\n function abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__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_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer amount exceeds b\")\n\n mstore(add(memPtr, 32), \"alance\")\n\n }\n\n function abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__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_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__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_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: mint to the zero address\")\n\n }\n\n function abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__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_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n", + "id": 6, + "language": "Yul", + "name": "#utility.yul" + } + ], + "immutableReferences": {}, + "linkReferences": {}, + "object": "608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a87430ba11610066578063a87430ba146102b1578063a9059cbb146102e4578063dd62ed3e14610314578063f2fde38b1461034457610100565b8063715018a61461023b5780638da5cb5b1461024557806395d89b4114610263578063a457c2d71461028157610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806340c10f19146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610360565b60405161011a919061103f565b60405180910390f35b61013d600480360381019061013891906110fa565b6103f2565b60405161014a9190611155565b60405180910390f35b61015b610415565b604051610168919061117f565b60405180910390f35b61018b6004803603810190610186919061119a565b61041f565b6040516101989190611155565b60405180910390f35b6101a961044e565b6040516101b69190611209565b60405180910390f35b6101d960048036038101906101d491906110fa565b610457565b6040516101e69190611155565b60405180910390f35b610209600480360381019061020491906110fa565b61048e565b005b61022560048036038101906102209190611224565b6104a4565b604051610232919061117f565b60405180910390f35b6102436104ec565b005b61024d610500565b60405161025a9190611260565b60405180910390f35b61026b61052a565b604051610278919061103f565b60405180910390f35b61029b600480360381019061029691906110fa565b6105bc565b6040516102a89190611155565b60405180910390f35b6102cb60048036038101906102c69190611224565b610633565b6040516102db949392919061127b565b60405180910390f35b6102fe60048036038101906102f991906110fa565b61070b565b60405161030b9190611155565b60405180910390f35b61032e600480360381019061032991906112c7565b61072e565b60405161033b919061117f565b60405180910390f35b61035e60048036038101906103599190611224565b6107b5565b005b60606003805461036f90611336565b80601f016020809104026020016040519081016040528092919081815260200182805461039b90611336565b80156103e85780601f106103bd576101008083540402835291602001916103e8565b820191906000526020600020905b8154815290600101906020018083116103cb57829003601f168201915b5050505050905090565b6000806103fd610838565b905061040a818585610840565b600191505092915050565b6000600254905090565b60008061042a610838565b9050610437858285610a09565b610442858585610a95565b60019150509392505050565b60006012905090565b600080610462610838565b9050610483818585610474858961072e565b61047e9190611396565b610840565b600191505092915050565b610496610d0b565b6104a08282610d89565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104f4610d0b565b6104fe6000610edf565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461053990611336565b80601f016020809104026020016040519081016040528092919081815260200182805461056590611336565b80156105b25780601f10610587576101008083540402835291602001916105b2565b820191906000526020600020905b81548152906001019060200180831161059557829003601f168201915b5050505050905090565b6000806105c7610838565b905060006105d5828661072e565b90508381101561061a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106119061143c565b60405180910390fd5b6106278286868403610840565b60019250505092915050565b600760205280600052604060002060009150905080600001805461065690611336565b80601f016020809104026020016040519081016040528092919081815260200182805461068290611336565b80156106cf5780601f106106a4576101008083540402835291602001916106cf565b820191906000526020600020905b8154815290600101906020018083116106b257829003601f168201915b5050505050908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020154908060030154905084565b600080610716610838565b9050610723818585610a95565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107bd610d0b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361082c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610823906114ce565b60405180910390fd5b61083581610edf565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a690611560565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361091e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610915906115f2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109fc919061117f565b60405180910390a3505050565b6000610a15848461072e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a8f5781811015610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a789061165e565b60405180910390fd5b610a8e8484848403610840565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afb906116f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90611782565b60405180910390fd5b610b7e838383610fa5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb90611814565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cf2919061117f565b60405180910390a3610d05848484610faa565b50505050565b610d13610838565b73ffffffffffffffffffffffffffffffffffffffff16610d31610500565b73ffffffffffffffffffffffffffffffffffffffff1614610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e90611880565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def906118ec565b60405180910390fd5b610e0460008383610fa5565b8060026000828254610e169190611396565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ec7919061117f565b60405180910390a3610edb60008383610faa565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fe9578082015181840152602081019050610fce565b60008484015250505050565b6000601f19601f8301169050919050565b600061101182610faf565b61101b8185610fba565b935061102b818560208601610fcb565b61103481610ff5565b840191505092915050565b600060208201905081810360008301526110598184611006565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061109182611066565b9050919050565b6110a181611086565b81146110ac57600080fd5b50565b6000813590506110be81611098565b92915050565b6000819050919050565b6110d7816110c4565b81146110e257600080fd5b50565b6000813590506110f4816110ce565b92915050565b6000806040838503121561111157611110611061565b5b600061111f858286016110af565b9250506020611130858286016110e5565b9150509250929050565b60008115159050919050565b61114f8161113a565b82525050565b600060208201905061116a6000830184611146565b92915050565b611179816110c4565b82525050565b60006020820190506111946000830184611170565b92915050565b6000806000606084860312156111b3576111b2611061565b5b60006111c1868287016110af565b93505060206111d2868287016110af565b92505060406111e3868287016110e5565b9150509250925092565b600060ff82169050919050565b611203816111ed565b82525050565b600060208201905061121e60008301846111fa565b92915050565b60006020828403121561123a57611239611061565b5b6000611248848285016110af565b91505092915050565b61125a81611086565b82525050565b60006020820190506112756000830184611251565b92915050565b600060808201905081810360008301526112958187611006565b90506112a46020830186611251565b6112b16040830185611170565b6112be6060830184611170565b95945050505050565b600080604083850312156112de576112dd611061565b5b60006112ec858286016110af565b92505060206112fd858286016110af565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061134e57607f821691505b60208210810361136157611360611307565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113a1826110c4565b91506113ac836110c4565b92508282019050808211156113c4576113c3611367565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611426602583610fba565b9150611431826113ca565b604082019050919050565b6000602082019050818103600083015261145581611419565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114b8602683610fba565b91506114c38261145c565b604082019050919050565b600060208201905081810360008301526114e7816114ab565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061154a602483610fba565b9150611555826114ee565b604082019050919050565b600060208201905081810360008301526115798161153d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115dc602283610fba565b91506115e782611580565b604082019050919050565b6000602082019050818103600083015261160b816115cf565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611648601d83610fba565b915061165382611612565b602082019050919050565b600060208201905081810360008301526116778161163b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116da602583610fba565b91506116e58261167e565b604082019050919050565b60006020820190508181036000830152611709816116cd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061176c602383610fba565b915061177782611710565b604082019050919050565b6000602082019050818103600083015261179b8161175f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006117fe602683610fba565b9150611809826117a2565b604082019050919050565b6000602082019050818103600083015261182d816117f1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061186a602083610fba565b915061187582611834565b602082019050919050565b600060208201905081810360008301526118998161185d565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006118d6601f83610fba565b91506118e1826118a0565b602082019050919050565b60006020820190508181036000830152611905816118c9565b905091905056fea26469706673582212203c8cbedc684db6cf68cec29d50046617cbf845f84734c2ca0906d155a73e741f64736f6c63430008140033", + "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x100 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xA87430BA GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA87430BA EQ PUSH2 0x2B1 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x2E4 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x314 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x344 JUMPI PUSH2 0x100 JUMP JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x23B JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x245 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x263 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x281 JUMPI PUSH2 0x100 JUMP JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1A1 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1BF JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x1EF JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x20B JUMPI PUSH2 0x100 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x105 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x123 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x153 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x171 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10D PUSH2 0x360 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x11A SWAP2 SWAP1 PUSH2 0x103F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x138 SWAP2 SWAP1 PUSH2 0x10FA JUMP JUMPDEST PUSH2 0x3F2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14A SWAP2 SWAP1 PUSH2 0x1155 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x15B PUSH2 0x415 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x168 SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x18B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x186 SWAP2 SWAP1 PUSH2 0x119A JUMP JUMPDEST PUSH2 0x41F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x198 SWAP2 SWAP1 PUSH2 0x1155 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1A9 PUSH2 0x44E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1B6 SWAP2 SWAP1 PUSH2 0x1209 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1D4 SWAP2 SWAP1 PUSH2 0x10FA JUMP JUMPDEST PUSH2 0x457 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1E6 SWAP2 SWAP1 PUSH2 0x1155 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x209 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x204 SWAP2 SWAP1 PUSH2 0x10FA JUMP JUMPDEST PUSH2 0x48E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x225 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x220 SWAP2 SWAP1 PUSH2 0x1224 JUMP JUMPDEST PUSH2 0x4A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x232 SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x243 PUSH2 0x4EC JUMP JUMPDEST STOP JUMPDEST PUSH2 0x24D PUSH2 0x500 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x25A SWAP2 SWAP1 PUSH2 0x1260 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x26B PUSH2 0x52A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x278 SWAP2 SWAP1 PUSH2 0x103F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x29B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x296 SWAP2 SWAP1 PUSH2 0x10FA JUMP JUMPDEST PUSH2 0x5BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A8 SWAP2 SWAP1 PUSH2 0x1155 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2CB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2C6 SWAP2 SWAP1 PUSH2 0x1224 JUMP JUMPDEST PUSH2 0x633 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2DB SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x127B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2FE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2F9 SWAP2 SWAP1 PUSH2 0x10FA JUMP JUMPDEST PUSH2 0x70B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x30B SWAP2 SWAP1 PUSH2 0x1155 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x32E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x329 SWAP2 SWAP1 PUSH2 0x12C7 JUMP JUMPDEST PUSH2 0x72E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x33B SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x35E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x359 SWAP2 SWAP1 PUSH2 0x1224 JUMP JUMPDEST PUSH2 0x7B5 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x36F SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x39B SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3E8 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3BD JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3E8 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x3CB JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x3FD PUSH2 0x838 JUMP JUMPDEST SWAP1 POP PUSH2 0x40A DUP2 DUP6 DUP6 PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x42A PUSH2 0x838 JUMP JUMPDEST SWAP1 POP PUSH2 0x437 DUP6 DUP3 DUP6 PUSH2 0xA09 JUMP JUMPDEST PUSH2 0x442 DUP6 DUP6 DUP6 PUSH2 0xA95 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x462 PUSH2 0x838 JUMP JUMPDEST SWAP1 POP PUSH2 0x483 DUP2 DUP6 DUP6 PUSH2 0x474 DUP6 DUP10 PUSH2 0x72E JUMP JUMPDEST PUSH2 0x47E SWAP2 SWAP1 PUSH2 0x1396 JUMP JUMPDEST PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x496 PUSH2 0xD0B JUMP JUMPDEST PUSH2 0x4A0 DUP3 DUP3 PUSH2 0xD89 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x4F4 PUSH2 0xD0B JUMP JUMPDEST PUSH2 0x4FE PUSH1 0x0 PUSH2 0xEDF JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x539 SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x565 SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5B2 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x587 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5B2 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x595 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x5C7 PUSH2 0x838 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x5D5 DUP3 DUP7 PUSH2 0x72E JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x61A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x611 SWAP1 PUSH2 0x143C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x627 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x7 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD DUP1 SLOAD PUSH2 0x656 SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x682 SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x6CF JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x6A4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x6CF JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x6B2 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP1 PUSH1 0x2 ADD SLOAD SWAP1 DUP1 PUSH1 0x3 ADD SLOAD SWAP1 POP DUP5 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x716 PUSH2 0x838 JUMP JUMPDEST SWAP1 POP PUSH2 0x723 DUP2 DUP6 DUP6 PUSH2 0xA95 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x7BD PUSH2 0xD0B JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x82C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x823 SWAP1 PUSH2 0x14CE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x835 DUP2 PUSH2 0xEDF JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x8AF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8A6 SWAP1 PUSH2 0x1560 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x91E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x915 SWAP1 PUSH2 0x15F2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x9FC SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA15 DUP5 DUP5 PUSH2 0x72E JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0xA8F JUMPI DUP2 DUP2 LT ISZERO PUSH2 0xA81 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA78 SWAP1 PUSH2 0x165E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA8E DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x840 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xB04 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP1 PUSH2 0x16F0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xB73 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB6A SWAP1 PUSH2 0x1782 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xB7E DUP4 DUP4 DUP4 PUSH2 0xFA5 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xC04 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBFB SWAP1 PUSH2 0x1814 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xCF2 SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xD05 DUP5 DUP5 DUP5 PUSH2 0xFAA JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0xD13 PUSH2 0x838 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD31 PUSH2 0x500 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xD87 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD7E SWAP1 PUSH2 0x1880 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xDF8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDEF SWAP1 PUSH2 0x18EC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xE04 PUSH1 0x0 DUP4 DUP4 PUSH2 0xFA5 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xE16 SWAP2 SWAP1 PUSH2 0x1396 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xEC7 SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xEDB PUSH1 0x0 DUP4 DUP4 PUSH2 0xFAA JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 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 POP POP POP JUMP JUMPDEST POP 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xFE9 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xFCE 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 0x1011 DUP3 PUSH2 0xFAF JUMP JUMPDEST PUSH2 0x101B DUP2 DUP6 PUSH2 0xFBA JUMP JUMPDEST SWAP4 POP PUSH2 0x102B DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xFCB JUMP JUMPDEST PUSH2 0x1034 DUP2 PUSH2 0xFF5 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 0x1059 DUP2 DUP5 PUSH2 0x1006 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1091 DUP3 PUSH2 0x1066 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x10A1 DUP2 PUSH2 0x1086 JUMP JUMPDEST DUP2 EQ PUSH2 0x10AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x10BE DUP2 PUSH2 0x1098 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x10D7 DUP2 PUSH2 0x10C4 JUMP JUMPDEST DUP2 EQ PUSH2 0x10E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x10F4 DUP2 PUSH2 0x10CE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1111 JUMPI PUSH2 0x1110 PUSH2 0x1061 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x111F DUP6 DUP3 DUP7 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1130 DUP6 DUP3 DUP7 ADD PUSH2 0x10E5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x114F DUP2 PUSH2 0x113A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x116A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1146 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1179 DUP2 PUSH2 0x10C4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1194 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1170 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x11B3 JUMPI PUSH2 0x11B2 PUSH2 0x1061 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x11C1 DUP7 DUP3 DUP8 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x11D2 DUP7 DUP3 DUP8 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x11E3 DUP7 DUP3 DUP8 ADD PUSH2 0x10E5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1203 DUP2 PUSH2 0x11ED JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x121E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x11FA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x123A JUMPI PUSH2 0x1239 PUSH2 0x1061 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1248 DUP5 DUP3 DUP6 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x125A DUP2 PUSH2 0x1086 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1275 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1251 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1295 DUP2 DUP8 PUSH2 0x1006 JUMP JUMPDEST SWAP1 POP PUSH2 0x12A4 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x1251 JUMP JUMPDEST PUSH2 0x12B1 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1170 JUMP JUMPDEST PUSH2 0x12BE PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x1170 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x12DE JUMPI PUSH2 0x12DD PUSH2 0x1061 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x12EC DUP6 DUP3 DUP7 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x12FD DUP6 DUP3 DUP7 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x134E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1361 JUMPI PUSH2 0x1360 PUSH2 0x1307 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x13A1 DUP3 PUSH2 0x10C4 JUMP JUMPDEST SWAP2 POP PUSH2 0x13AC DUP4 PUSH2 0x10C4 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x13C4 JUMPI PUSH2 0x13C3 PUSH2 0x1367 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1426 PUSH1 0x25 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1431 DUP3 PUSH2 0x13CA 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 0x1455 DUP2 PUSH2 0x1419 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x14B8 PUSH1 0x26 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x14C3 DUP3 PUSH2 0x145C 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 0x14E7 DUP2 PUSH2 0x14AB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x154A PUSH1 0x24 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1555 DUP3 PUSH2 0x14EE 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 0x1579 DUP2 PUSH2 0x153D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15DC PUSH1 0x22 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x15E7 DUP3 PUSH2 0x1580 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 0x160B DUP2 PUSH2 0x15CF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1648 PUSH1 0x1D DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1653 DUP3 PUSH2 0x1612 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 0x1677 DUP2 PUSH2 0x163B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16DA PUSH1 0x25 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x16E5 DUP3 PUSH2 0x167E 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 0x1709 DUP2 PUSH2 0x16CD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x176C PUSH1 0x23 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1777 DUP3 PUSH2 0x1710 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 0x179B DUP2 PUSH2 0x175F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17FE PUSH1 0x26 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1809 DUP3 PUSH2 0x17A2 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 0x182D DUP2 PUSH2 0x17F1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x186A PUSH1 0x20 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1875 DUP3 PUSH2 0x1834 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 0x1899 DUP2 PUSH2 0x185D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18D6 PUSH1 0x1F DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x18E1 DUP3 PUSH2 0x18A0 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 0x1905 DUP2 PUSH2 0x18C9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EXTCODECOPY DUP13 0xBE 0xDC PUSH9 0x4DB6CF68CEC29D5004 PUSH7 0x17CBF845F84734 0xC2 0xCA MULMOD MOD 0xD1 SSTORE 0xA7 RETURNDATACOPY PUSH21 0x1F64736F6C63430008140033000000000000000000 ", + "sourceMap": "167:499:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4444:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3255:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5203:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3104:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5854:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;300:93:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3419:125:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1824:101:0;;;:::i;:::-;;1201:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2369:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6575:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;398:38:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;3740:189:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3987:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2074:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2158:98:1;2212:13;2244:5;2237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;:::o;4444:197::-;4527:4;4543:13;4559:12;:10;:12::i;:::-;4543:28;;4581:32;4590:5;4597:7;4606:6;4581:8;:32::i;:::-;4630:4;4623:11;;;4444:197;;;;:::o;3255:106::-;3316:7;3342:12;;3335:19;;3255:106;:::o;5203:256::-;5300:4;5316:15;5334:12;:10;:12::i;:::-;5316:30;;5356:38;5372:4;5378:7;5387:6;5356:15;:38::i;:::-;5404:27;5414:4;5420:2;5424:6;5404:9;:27::i;:::-;5448:4;5441:11;;;5203:256;;;;;:::o;3104:91::-;3162:5;3186:2;3179:9;;3104:91;:::o;5854:234::-;5942:4;5958:13;5974:12;:10;:12::i;:::-;5958:28;;5996:64;6005:5;6012:7;6049:10;6021:25;6031:5;6038:7;6021:9;:25::i;:::-;:38;;;;:::i;:::-;5996:8;:64::i;:::-;6077:4;6070:11;;;5854:234;;;;:::o;300:93:5:-;1094:13:0;:11;:13::i;:::-;369:17:5::1;375:2;379:6;369:5;:17::i;:::-;300:93:::0;;:::o;3419:125:1:-;3493:7;3519:9;:18;3529:7;3519:18;;;;;;;;;;;;;;;;3512:25;;3419:125;;;:::o;1824:101:0:-;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;1201:85::-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;2369:102:1:-;2425:13;2457:7;2450:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2369:102;:::o;6575:427::-;6668:4;6684:13;6700:12;:10;:12::i;:::-;6684:28;;6722:24;6749:25;6759:5;6766:7;6749:9;:25::i;:::-;6722:52;;6812:15;6792:16;:35;;6784:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6903:60;6912:5;6919:7;6947:15;6928:16;:34;6903:8;:60::i;:::-;6991:4;6984:11;;;;6575:427;;;;:::o;398:38:5:-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3740:189:1:-;3819:4;3835:13;3851:12;:10;:12::i;:::-;3835:28;;3873;3883:5;3890:2;3894:6;3873:9;:28::i;:::-;3918:4;3911:11;;;3740:189;;;;:::o;3987:149::-;4076:7;4102:11;:18;4114:5;4102:18;;;;;;;;;;;;;;;:27;4121:7;4102:27;;;;;;;;;;;;;;;;4095:34;;3987:149;;;;:::o;2074:198:0:-;1094:13;:11;:13::i;:::-;2182:1:::1;2162:22;;:8;:22;;::::0;2154:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;640:96:4:-;693:7;719:10;712:17;;640:96;:::o;10457:340:1:-;10575:1;10558:19;;:5;:19;;;10550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10655:1;10636:21;;:7;:21;;;10628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10737:6;10707:11;:18;10719:5;10707:18;;;;;;;;;;;;;;;:27;10726:7;10707:27;;;;;;;;;;;;;;;:36;;;;10774:7;10758:32;;10767:5;10758:32;;;10783:6;10758:32;;;;;;:::i;:::-;;;;;;;;10457:340;;;:::o;11078:411::-;11178:24;11205:25;11215:5;11222:7;11205:9;:25::i;:::-;11178:52;;11264:17;11244:16;:37;11240:243;;11325:6;11305:16;:26;;11297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11407:51;11416:5;11423:7;11451:6;11432:16;:25;11407:8;:51::i;:::-;11240:243;11168:321;11078:411;;;:::o;7456:788::-;7568:1;7552:18;;:4;:18;;;7544:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7644:1;7630:16;;:2;:16;;;7622:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7697:38;7718:4;7724:2;7728:6;7697:20;:38::i;:::-;7746:19;7768:9;:15;7778:4;7768:15;;;;;;;;;;;;;;;;7746:37;;7816:6;7801:11;:21;;7793:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7931:6;7917:11;:20;7899:9;:15;7909:4;7899:15;;;;;;;;;;;;;;;:38;;;;8131:6;8114:9;:13;8124:2;8114:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8178:2;8163:26;;8172:4;8163:26;;;8182:6;8163:26;;;;;;:::i;:::-;;;;;;;;8200:37;8220:4;8226:2;8230:6;8200:19;:37::i;:::-;7534:710;7456:788;;;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;8520:535:1:-;8622:1;8603:21;;:7;:21;;;8595:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8671:49;8700:1;8704:7;8713:6;8671:20;:49::i;:::-;8747:6;8731:12;;:22;;;;;;;:::i;:::-;;;;;;;;8921:6;8899:9;:18;8909:7;8899:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;8973:7;8952:37;;8969:1;8952:37;;;8982:6;8952:37;;;;;;:::i;:::-;;;;;;;;9000:48;9028:1;9032:7;9041:6;9000:19;:48::i;:::-;8520:535;;:::o;2426:187:0:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;12073:91:1:-;;;;:::o;12752:90::-;;;;:::o;7:99:6:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:644::-;5737:4;5775:3;5764:9;5760:19;5752:27;;5825:9;5819:4;5815:20;5811:1;5800:9;5796:17;5789:47;5853:78;5926:4;5917:6;5853:78;:::i;:::-;5845:86;;5941:72;6009:2;5998:9;5994:18;5985:6;5941:72;:::i;:::-;6023;6091:2;6080:9;6076:18;6067:6;6023:72;:::i;:::-;6105;6173:2;6162:9;6158:18;6149:6;6105:72;:::i;:::-;5540:644;;;;;;;:::o;6190:474::-;6258:6;6266;6315:2;6303:9;6294:7;6290:23;6286:32;6283:119;;;6321:79;;:::i;:::-;6283:119;6441:1;6466:53;6511:7;6502:6;6491:9;6487:22;6466:53;:::i;:::-;6456:63;;6412:117;6568:2;6594:53;6639:7;6630:6;6619:9;6615:22;6594:53;:::i;:::-;6584:63;;6539:118;6190:474;;;;;:::o;6670:180::-;6718:77;6715:1;6708:88;6815:4;6812:1;6805:15;6839:4;6836:1;6829:15;6856:320;6900:6;6937:1;6931:4;6927:12;6917:22;;6984:1;6978:4;6974:12;7005:18;6995:81;;7061:4;7053:6;7049:17;7039:27;;6995:81;7123:2;7115:6;7112:14;7092:18;7089:38;7086:84;;7142:18;;:::i;:::-;7086:84;6907:269;6856:320;;;:::o;7182:180::-;7230:77;7227:1;7220:88;7327:4;7324:1;7317:15;7351:4;7348:1;7341:15;7368:191;7408:3;7427:20;7445:1;7427:20;:::i;:::-;7422:25;;7461:20;7479:1;7461:20;:::i;:::-;7456:25;;7504:1;7501;7497:9;7490:16;;7525:3;7522:1;7519:10;7516:36;;;7532:18;;:::i;:::-;7516:36;7368:191;;;;:::o;7565:224::-;7705:34;7701:1;7693:6;7689:14;7682:58;7774:7;7769:2;7761:6;7757:15;7750:32;7565:224;:::o;7795:366::-;7937:3;7958:67;8022:2;8017:3;7958:67;:::i;:::-;7951:74;;8034:93;8123:3;8034:93;:::i;:::-;8152:2;8147:3;8143:12;8136:19;;7795:366;;;:::o;8167:419::-;8333:4;8371:2;8360:9;8356:18;8348:26;;8420:9;8414:4;8410:20;8406:1;8395:9;8391:17;8384:47;8448:131;8574:4;8448:131;:::i;:::-;8440:139;;8167:419;;;:::o;8592:225::-;8732:34;8728:1;8720:6;8716:14;8709:58;8801:8;8796:2;8788:6;8784:15;8777:33;8592:225;:::o;8823:366::-;8965:3;8986:67;9050:2;9045:3;8986:67;:::i;:::-;8979:74;;9062:93;9151:3;9062:93;:::i;:::-;9180:2;9175:3;9171:12;9164:19;;8823:366;;;:::o;9195:419::-;9361:4;9399:2;9388:9;9384:18;9376:26;;9448:9;9442:4;9438:20;9434:1;9423:9;9419:17;9412:47;9476:131;9602:4;9476:131;:::i;:::-;9468:139;;9195:419;;;:::o;9620:223::-;9760:34;9756:1;9748:6;9744:14;9737:58;9829:6;9824:2;9816:6;9812:15;9805:31;9620:223;:::o;9849:366::-;9991:3;10012:67;10076:2;10071:3;10012:67;:::i;:::-;10005:74;;10088:93;10177:3;10088:93;:::i;:::-;10206:2;10201:3;10197:12;10190:19;;9849:366;;;:::o;10221:419::-;10387:4;10425:2;10414:9;10410:18;10402:26;;10474:9;10468:4;10464:20;10460:1;10449:9;10445:17;10438:47;10502:131;10628:4;10502:131;:::i;:::-;10494:139;;10221:419;;;:::o;10646:221::-;10786:34;10782:1;10774:6;10770:14;10763:58;10855:4;10850:2;10842:6;10838:15;10831:29;10646:221;:::o;10873:366::-;11015:3;11036:67;11100:2;11095:3;11036:67;:::i;:::-;11029:74;;11112:93;11201:3;11112:93;:::i;:::-;11230:2;11225:3;11221:12;11214:19;;10873:366;;;:::o;11245:419::-;11411:4;11449:2;11438:9;11434:18;11426:26;;11498:9;11492:4;11488:20;11484:1;11473:9;11469:17;11462:47;11526:131;11652:4;11526:131;:::i;:::-;11518:139;;11245:419;;;:::o;11670:179::-;11810:31;11806:1;11798:6;11794:14;11787:55;11670:179;:::o;11855:366::-;11997:3;12018:67;12082:2;12077:3;12018:67;:::i;:::-;12011:74;;12094:93;12183:3;12094:93;:::i;:::-;12212:2;12207:3;12203:12;12196:19;;11855:366;;;:::o;12227:419::-;12393:4;12431:2;12420:9;12416:18;12408:26;;12480:9;12474:4;12470:20;12466:1;12455:9;12451:17;12444:47;12508:131;12634:4;12508:131;:::i;:::-;12500:139;;12227:419;;;:::o;12652:224::-;12792:34;12788:1;12780:6;12776:14;12769:58;12861:7;12856:2;12848:6;12844:15;12837:32;12652:224;:::o;12882:366::-;13024:3;13045:67;13109:2;13104:3;13045:67;:::i;:::-;13038:74;;13121:93;13210:3;13121:93;:::i;:::-;13239:2;13234:3;13230:12;13223:19;;12882:366;;;:::o;13254:419::-;13420:4;13458:2;13447:9;13443:18;13435:26;;13507:9;13501:4;13497:20;13493:1;13482:9;13478:17;13471:47;13535:131;13661:4;13535:131;:::i;:::-;13527:139;;13254:419;;;:::o;13679:222::-;13819:34;13815:1;13807:6;13803:14;13796:58;13888:5;13883:2;13875:6;13871:15;13864:30;13679:222;:::o;13907:366::-;14049:3;14070:67;14134:2;14129:3;14070:67;:::i;:::-;14063:74;;14146:93;14235:3;14146:93;:::i;:::-;14264:2;14259:3;14255:12;14248:19;;13907:366;;;:::o;14279:419::-;14445:4;14483:2;14472:9;14468:18;14460:26;;14532:9;14526:4;14522:20;14518:1;14507:9;14503:17;14496:47;14560:131;14686:4;14560:131;:::i;:::-;14552:139;;14279:419;;;:::o;14704:225::-;14844:34;14840:1;14832:6;14828:14;14821:58;14913:8;14908:2;14900:6;14896:15;14889:33;14704:225;:::o;14935:366::-;15077:3;15098:67;15162:2;15157:3;15098:67;:::i;:::-;15091:74;;15174:93;15263:3;15174:93;:::i;:::-;15292:2;15287:3;15283:12;15276:19;;14935:366;;;:::o;15307:419::-;15473:4;15511:2;15500:9;15496:18;15488:26;;15560:9;15554:4;15550:20;15546:1;15535:9;15531:17;15524:47;15588:131;15714:4;15588:131;:::i;:::-;15580:139;;15307:419;;;:::o;15732:182::-;15872:34;15868:1;15860:6;15856:14;15849:58;15732:182;:::o;15920:366::-;16062:3;16083:67;16147:2;16142:3;16083:67;:::i;:::-;16076:74;;16159:93;16248:3;16159:93;:::i;:::-;16277:2;16272:3;16268:12;16261:19;;15920:366;;;:::o;16292:419::-;16458:4;16496:2;16485:9;16481:18;16473:26;;16545:9;16539:4;16535:20;16531:1;16520:9;16516:17;16509:47;16573:131;16699:4;16573:131;:::i;:::-;16565:139;;16292:419;;;:::o;16717:181::-;16857:33;16853:1;16845:6;16841:14;16834:57;16717:181;:::o;16904:366::-;17046:3;17067:67;17131:2;17126:3;17067:67;:::i;:::-;17060:74;;17143:93;17232:3;17143:93;:::i;:::-;17261:2;17256:3;17252:12;17245:19;;16904:366;;;:::o;17276:419::-;17442:4;17480:2;17469:9;17465:18;17457:26;;17529:9;17523:4;17519:20;17515:1;17504:9;17500:17;17493:47;17557:131;17683:4;17557:131;:::i;:::-;17549:139;;17276:419;;;:::o" + }, + "gasEstimates": { + "creation": { + "codeDepositCost": "1293200", + "executionCost": "infinite", + "totalCost": "infinite" + }, + "external": { + "allowance(address,address)": "infinite", + "approve(address,uint256)": "infinite", + "balanceOf(address)": "2930", + "decimals()": "366", + "decreaseAllowance(address,uint256)": "infinite", + "increaseAllowance(address,uint256)": "infinite", + "mint(address,uint256)": "infinite", + "name()": "infinite", + "owner()": "2567", + "renounceOwnership()": "30421", + "symbol()": "infinite", + "totalSupply()": "2505", + "transfer(address,uint256)": "infinite", + "transferFrom(address,address,uint256)": "infinite", + "transferOwnership(address)": "30832", + "users(address)": "infinite" + } + }, + "methodIdentifiers": { + "allowance(address,address)": "dd62ed3e", + "approve(address,uint256)": "095ea7b3", + "balanceOf(address)": "70a08231", + "decimals()": "313ce567", + "decreaseAllowance(address,uint256)": "a457c2d7", + "increaseAllowance(address,uint256)": "39509351", + "mint(address,uint256)": "40c10f19", + "name()": "06fdde03", + "owner()": "8da5cb5b", + "renounceOwnership()": "715018a6", + "symbol()": "95d89b41", + "totalSupply()": "18160ddd", + "transfer(address,uint256)": "a9059cbb", + "transferFrom(address,address,uint256)": "23b872dd", + "transferOwnership(address)": "f2fde38b", + "users(address)": "a87430ba" + } + }, + "abi": [ + { + "inputs": [], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "subtractedValue", + "type": "uint256" + } + ], + "name": "decreaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "addedValue", + "type": "uint256" + } + ], + "name": "increaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "mint", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "users", + "outputs": [ + { + "internalType": "string", + "name": "userName", + "type": "string" + }, + { + "internalType": "address", + "name": "userAddress", + "type": "address" + }, + { + "internalType": "uint256", + "name": "userAge", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "userBalance", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + } + ] +} \ No newline at end of file diff --git a/contracts/artifacts/InsuranceContract_metadata.json b/contracts/artifacts/InsuranceContract_metadata.json new file mode 100644 index 0000000..4d76d1f --- /dev/null +++ b/contracts/artifacts/InsuranceContract_metadata.json @@ -0,0 +1,516 @@ +{ + "compiler": { + "version": "0.8.20+commit.a1b79de6" + }, + "language": "Solidity", + "output": { + "abi": [ + { + "inputs": [], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "subtractedValue", + "type": "uint256" + } + ], + "name": "decreaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "addedValue", + "type": "uint256" + } + ], + "name": "increaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "mint", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "users", + "outputs": [ + { + "internalType": "string", + "name": "userName", + "type": "string" + }, + { + "internalType": "address", + "name": "userAddress", + "type": "address" + }, + { + "internalType": "uint256", + "name": "userAge", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "userBalance", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "devdoc": { + "events": { + "Approval(address,address,uint256)": { + "details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance." + }, + "Transfer(address,address,uint256)": { + "details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero." + } + }, + "kind": "dev", + "methods": { + "allowance(address,address)": { + "details": "See {IERC20-allowance}." + }, + "approve(address,uint256)": { + "details": "See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address." + }, + "balanceOf(address)": { + "details": "See {IERC20-balanceOf}." + }, + "decimals()": { + "details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}." + }, + "decreaseAllowance(address,uint256)": { + "details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`." + }, + "increaseAllowance(address,uint256)": { + "details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address." + }, + "name()": { + "details": "Returns the name of the token." + }, + "owner()": { + "details": "Returns the address of the current owner." + }, + "renounceOwnership()": { + "details": "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." + }, + "symbol()": { + "details": "Returns the symbol of the token, usually a shorter version of the name." + }, + "totalSupply()": { + "details": "See {IERC20-totalSupply}." + }, + "transfer(address,uint256)": { + "details": "See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`." + }, + "transferFrom(address,address,uint256)": { + "details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`." + }, + "transferOwnership(address)": { + "details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner." + } + }, + "version": 1 + }, + "userdoc": { + "kind": "user", + "methods": {}, + "version": 1 + } + }, + "settings": { + "compilationTarget": { + "contracts/InsuranceContract.sol": "InsuranceContract" + }, + "evmVersion": "paris", + "libraries": {}, + "metadata": { + "bytecodeHash": "ipfs" + }, + "optimizer": { + "enabled": false, + "runs": 200 + }, + "remappings": [] + }, + "sources": { + "@openzeppelin/contracts/access/Ownable.sol": { + "keccak256": "0xba43b97fba0d32eb4254f6a5a297b39a19a247082a02d6e69349e071e2946218", + "license": "MIT", + "urls": [ + "bzz-raw://fc980984badf3984b6303b377711220e067722bbd6a135b24669ff5069ef9f32", + "dweb:/ipfs/QmPHXMSXj99XjSVM21YsY6aNtLLjLVXDbyN76J5HQYvvrz" + ] + }, + "@openzeppelin/contracts/token/ERC20/ERC20.sol": { + "keccak256": "0xa56ca923f70c1748830700250b19c61b70db9a683516dc5e216694a50445d99c", + "license": "MIT", + "urls": [ + "bzz-raw://cac938788bc4be12101e59d45588b4e059579f4e61062e1cda8d6b06c0191b15", + "dweb:/ipfs/QmV2JKCyjTVH3rkWNrfdJRhAT7tZ3usAN2XcnD4h53Mvih" + ] + }, + "@openzeppelin/contracts/token/ERC20/IERC20.sol": { + "keccak256": "0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305", + "license": "MIT", + "urls": [ + "bzz-raw://bd39944e8fc06be6dbe2dd1d8449b5336e23c6a7ba3e8e9ae5ae0f37f35283f5", + "dweb:/ipfs/QmPV3FGYjVwvKSgAXKUN3r9T9GwniZz83CxBpM7vyj2G53" + ] + }, + "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": { + "keccak256": "0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca", + "license": "MIT", + "urls": [ + "bzz-raw://5a376d3dda2cb70536c0a45c208b29b34ac560c4cb4f513a42079f96ba47d2dd", + "dweb:/ipfs/QmZQg6gn1sUpM8wHzwNvSnihumUCAhxD119MpXeKp8B9s8" + ] + }, + "@openzeppelin/contracts/utils/Context.sol": { + "keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7", + "license": "MIT", + "urls": [ + "bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92", + "dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3" + ] + }, + "contracts/InsuranceContract.sol": { + "keccak256": "0x7505869f0b6e48e69049ba3a44b5baf9ff76283df389cf063f476bd52c442a99", + "license": "MIT", + "urls": [ + "bzz-raw://630369b706030bd91d2908a478a04e520324faae05b4b519981393ecf2113d32", + "dweb:/ipfs/QmSjeW7VX6FoFzoz4MVxQubA8GKUfiDrjPJ2uhdAd9Jhe2" + ] + } + }, + "version": 1 +} \ No newline at end of file diff --git a/contracts/artifacts/build-info/53d9e65c1c10f593b5ec884078cc27fc.json b/contracts/artifacts/build-info/53d9e65c1c10f593b5ec884078cc27fc.json new file mode 100644 index 0000000..7e82dc4 --- /dev/null +++ b/contracts/artifacts/build-info/53d9e65c1c10f593b5ec884078cc27fc.json @@ -0,0 +1,86001 @@ +{ + "id": "53d9e65c1c10f593b5ec884078cc27fc", + "_format": "hh-sol-build-info-1", + "solcVersion": "0.8.20", + "solcLongVersion": "0.8.20+commit.a1b79de6", + "input": { + "language": "Solidity", + "sources": { + "contracts/InsuranceContract.sol": { + "content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.9;\n\nimport \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\nimport \"@openzeppelin/contracts/access/Ownable.sol\";\n\ncontract InsuranceContract is ERC20, Ownable {\n address userAddress;\n constructor() ERC20(\"Muhannad Insurance\", \"MIT\") {}\n\n function mint(address to, uint256 amount) public onlyOwner {\n _mint(to, amount);\n }\n mapping (address => User) public users;\n\n struct User{\n string userName;\n address userAddress;\n uint userAge;\n uint userBalance;\n }\n modifier userCheck{\n require(userAddress == msg.sender, \"You are not the user\");_;\n }\n\n}\n" + }, + "@openzeppelin/contracts/access/Ownable.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/Context.sol\";\n\n/**\n * @dev Contract module which provides a basic access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * By default, the owner account will be the one that deploys the contract. This\n * can later be changed with {transferOwnership}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyOwner`, which can be applied to your functions to restrict their use to\n * the owner.\n */\nabstract contract Ownable is Context {\n address private _owner;\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the deployer as the initial owner.\n */\n constructor() {\n _transferOwnership(_msgSender());\n }\n\n /**\n * @dev Throws if called by any account other than the owner.\n */\n modifier onlyOwner() {\n _checkOwner();\n _;\n }\n\n /**\n * @dev Returns the address of the current owner.\n */\n function owner() public view virtual returns (address) {\n return _owner;\n }\n\n /**\n * @dev Throws if the sender is not the owner.\n */\n function _checkOwner() internal view virtual {\n require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\n }\n\n /**\n * @dev Leaves the contract without owner. It will not be possible to call\n * `onlyOwner` functions. Can only be called by the current owner.\n *\n * NOTE: Renouncing ownership will leave the contract without an owner,\n * thereby disabling any functionality that is only available to the owner.\n */\n function renounceOwnership() public virtual onlyOwner {\n _transferOwnership(address(0));\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual onlyOwner {\n require(newOwner != address(0), \"Ownable: new owner is the zero address\");\n _transferOwnership(newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual {\n address oldOwner = _owner;\n _owner = newOwner;\n emit OwnershipTransferred(oldOwner, newOwner);\n }\n}\n" + }, + "@openzeppelin/contracts/token/ERC20/ERC20.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC20.sol\";\nimport \"./extensions/IERC20Metadata.sol\";\nimport \"../../utils/Context.sol\";\n\n/**\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n * For a generic mechanism see {ERC20PresetMinterPauser}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n * to implement supply mechanisms].\n *\n * The default value of {decimals} is 18. To change this, you should override\n * this function so it returns a different value.\n *\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\n * instead returning `false` on failure. This behavior is nonetheless\n * conventional and does not conflict with the expectations of ERC20\n * applications.\n *\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n * This allows applications to reconstruct the allowance for all accounts just\n * by listening to said events. Other implementations of the EIP may not emit\n * these events, as it isn't required by the specification.\n *\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n * functions have been added to mitigate the well-known issues around setting\n * allowances. See {IERC20-approve}.\n */\ncontract ERC20 is Context, IERC20, IERC20Metadata {\n mapping(address => uint256) private _balances;\n\n mapping(address => mapping(address => uint256)) private _allowances;\n\n uint256 private _totalSupply;\n\n string private _name;\n string private _symbol;\n\n /**\n * @dev Sets the values for {name} and {symbol}.\n *\n * All two of these values are immutable: they can only be set once during\n * construction.\n */\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev Returns the name of the token.\n */\n function name() public view virtual override returns (string memory) {\n return _name;\n }\n\n /**\n * @dev Returns the symbol of the token, usually a shorter version of the\n * name.\n */\n function symbol() public view virtual override returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev Returns the number of decimals used to get its user representation.\n * For example, if `decimals` equals `2`, a balance of `505` tokens should\n * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n *\n * Tokens usually opt for a value of 18, imitating the relationship between\n * Ether and Wei. This is the default value returned by this function, unless\n * it's overridden.\n *\n * NOTE: This information is only used for _display_ purposes: it in\n * no way affects any of the arithmetic of the contract, including\n * {IERC20-balanceOf} and {IERC20-transfer}.\n */\n function decimals() public view virtual override returns (uint8) {\n return 18;\n }\n\n /**\n * @dev See {IERC20-totalSupply}.\n */\n function totalSupply() public view virtual override returns (uint256) {\n return _totalSupply;\n }\n\n /**\n * @dev See {IERC20-balanceOf}.\n */\n function balanceOf(address account) public view virtual override returns (uint256) {\n return _balances[account];\n }\n\n /**\n * @dev See {IERC20-transfer}.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - the caller must have a balance of at least `amount`.\n */\n function transfer(address to, uint256 amount) public virtual override returns (bool) {\n address owner = _msgSender();\n _transfer(owner, to, amount);\n return true;\n }\n\n /**\n * @dev See {IERC20-allowance}.\n */\n function allowance(address owner, address spender) public view virtual override returns (uint256) {\n return _allowances[owner][spender];\n }\n\n /**\n * @dev See {IERC20-approve}.\n *\n * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on\n * `transferFrom`. This is semantically equivalent to an infinite approval.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function approve(address spender, uint256 amount) public virtual override returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, amount);\n return true;\n }\n\n /**\n * @dev See {IERC20-transferFrom}.\n *\n * Emits an {Approval} event indicating the updated allowance. This is not\n * required by the EIP. See the note at the beginning of {ERC20}.\n *\n * NOTE: Does not update the allowance if the current allowance\n * is the maximum `uint256`.\n *\n * Requirements:\n *\n * - `from` and `to` cannot be the zero address.\n * - `from` must have a balance of at least `amount`.\n * - the caller must have allowance for ``from``'s tokens of at least\n * `amount`.\n */\n function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {\n address spender = _msgSender();\n _spendAllowance(from, spender, amount);\n _transfer(from, to, amount);\n return true;\n }\n\n /**\n * @dev Atomically increases the allowance granted to `spender` by the caller.\n *\n * This is an alternative to {approve} that can be used as a mitigation for\n * problems described in {IERC20-approve}.\n *\n * Emits an {Approval} event indicating the updated allowance.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, allowance(owner, spender) + addedValue);\n return true;\n }\n\n /**\n * @dev Atomically decreases the allowance granted to `spender` by the caller.\n *\n * This is an alternative to {approve} that can be used as a mitigation for\n * problems described in {IERC20-approve}.\n *\n * Emits an {Approval} event indicating the updated allowance.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n * - `spender` must have allowance for the caller of at least\n * `subtractedValue`.\n */\n function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\n address owner = _msgSender();\n uint256 currentAllowance = allowance(owner, spender);\n require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\");\n unchecked {\n _approve(owner, spender, currentAllowance - subtractedValue);\n }\n\n return true;\n }\n\n /**\n * @dev Moves `amount` of tokens from `from` to `to`.\n *\n * This internal function is equivalent to {transfer}, and can be used to\n * e.g. implement automatic token fees, slashing mechanisms, etc.\n *\n * Emits a {Transfer} event.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `from` must have a balance of at least `amount`.\n */\n function _transfer(address from, address to, uint256 amount) internal virtual {\n require(from != address(0), \"ERC20: transfer from the zero address\");\n require(to != address(0), \"ERC20: transfer to the zero address\");\n\n _beforeTokenTransfer(from, to, amount);\n\n uint256 fromBalance = _balances[from];\n require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\");\n unchecked {\n _balances[from] = fromBalance - amount;\n // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by\n // decrementing then incrementing.\n _balances[to] += amount;\n }\n\n emit Transfer(from, to, amount);\n\n _afterTokenTransfer(from, to, amount);\n }\n\n /** @dev Creates `amount` tokens and assigns them to `account`, increasing\n * the total supply.\n *\n * Emits a {Transfer} event with `from` set to the zero address.\n *\n * Requirements:\n *\n * - `account` cannot be the zero address.\n */\n function _mint(address account, uint256 amount) internal virtual {\n require(account != address(0), \"ERC20: mint to the zero address\");\n\n _beforeTokenTransfer(address(0), account, amount);\n\n _totalSupply += amount;\n unchecked {\n // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.\n _balances[account] += amount;\n }\n emit Transfer(address(0), account, amount);\n\n _afterTokenTransfer(address(0), account, amount);\n }\n\n /**\n * @dev Destroys `amount` tokens from `account`, reducing the\n * total supply.\n *\n * Emits a {Transfer} event with `to` set to the zero address.\n *\n * Requirements:\n *\n * - `account` cannot be the zero address.\n * - `account` must have at least `amount` tokens.\n */\n function _burn(address account, uint256 amount) internal virtual {\n require(account != address(0), \"ERC20: burn from the zero address\");\n\n _beforeTokenTransfer(account, address(0), amount);\n\n uint256 accountBalance = _balances[account];\n require(accountBalance >= amount, \"ERC20: burn amount exceeds balance\");\n unchecked {\n _balances[account] = accountBalance - amount;\n // Overflow not possible: amount <= accountBalance <= totalSupply.\n _totalSupply -= amount;\n }\n\n emit Transfer(account, address(0), amount);\n\n _afterTokenTransfer(account, address(0), amount);\n }\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n *\n * This internal function is equivalent to `approve`, and can be used to\n * e.g. set automatic allowances for certain subsystems, etc.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `owner` cannot be the zero address.\n * - `spender` cannot be the zero address.\n */\n function _approve(address owner, address spender, uint256 amount) internal virtual {\n require(owner != address(0), \"ERC20: approve from the zero address\");\n require(spender != address(0), \"ERC20: approve to the zero address\");\n\n _allowances[owner][spender] = amount;\n emit Approval(owner, spender, amount);\n }\n\n /**\n * @dev Updates `owner` s allowance for `spender` based on spent `amount`.\n *\n * Does not update the allowance amount in case of infinite allowance.\n * Revert if not enough allowance is available.\n *\n * Might emit an {Approval} event.\n */\n function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {\n uint256 currentAllowance = allowance(owner, spender);\n if (currentAllowance != type(uint256).max) {\n require(currentAllowance >= amount, \"ERC20: insufficient allowance\");\n unchecked {\n _approve(owner, spender, currentAllowance - amount);\n }\n }\n }\n\n /**\n * @dev Hook that is called before any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n * will be transferred to `to`.\n * - when `from` is zero, `amount` tokens will be minted for `to`.\n * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}\n\n /**\n * @dev Hook that is called after any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n * has been transferred to `to`.\n * - when `from` is zero, `amount` tokens have been minted for `to`.\n * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}\n}\n" + }, + "@openzeppelin/contracts/utils/Context.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n}\n" + }, + "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the ERC20 standard.\n *\n * _Available since v4.1._\n */\ninterface IERC20Metadata is IERC20 {\n /**\n * @dev Returns the name of the token.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the symbol of the token.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the decimals places of the token.\n */\n function decimals() external view returns (uint8);\n}\n" + }, + "@openzeppelin/contracts/token/ERC20/IERC20.sol": { + "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\n * another (`to`).\n *\n * Note that `value` may be zero.\n */\n event Transfer(address indexed from, address indexed to, uint256 value);\n\n /**\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n * a call to {approve}. `value` is the new allowance.\n */\n event Approval(address indexed owner, address indexed spender, uint256 value);\n\n /**\n * @dev Returns the amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `to`.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transfer(address to, uint256 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `from` to `to` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\n}\n" + } + }, + "settings": { + "optimizer": { + "enabled": false, + "runs": 200 + }, + "outputSelection": { + "*": { + "": [ + "ast" + ], + "*": [ + "abi", + "metadata", + "devdoc", + "userdoc", + "storageLayout", + "evm.legacyAssembly", + "evm.bytecode", + "evm.deployedBytecode", + "evm.methodIdentifiers", + "evm.gasEstimates", + "evm.assembly" + ] + } + }, + "evmVersion": "paris" + } + }, + "output": { + "contracts": { + "@openzeppelin/contracts/access/Ownable.sol": { + "Ownable": { + "abi": [ + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "devdoc": { + "details": "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.", + "kind": "dev", + "methods": { + "constructor": { + "details": "Initializes the contract setting the deployer as the initial owner." + }, + "owner()": { + "details": "Returns the address of the current owner." + }, + "renounceOwnership()": { + "details": "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." + }, + "transferOwnership(address)": { + "details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner." + } + }, + "version": 1 + }, + "evm": { + "assembly": "", + "bytecode": { + "functionDebugData": {}, + "generatedSources": [], + "linkReferences": {}, + "object": "", + "opcodes": "", + "sourceMap": "" + }, + "deployedBytecode": { + "functionDebugData": {}, + "generatedSources": [], + "immutableReferences": {}, + "linkReferences": {}, + "object": "", + "opcodes": "", + "sourceMap": "" + }, + "gasEstimates": null, + "legacyAssembly": null, + "methodIdentifiers": { + "owner()": "8da5cb5b", + "renounceOwnership()": "715018a6", + "transferOwnership(address)": "f2fde38b" + } + }, + "metadata": "{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"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.\",\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the contract setting the deployer as the initial owner.\"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"renounceOwnership()\":{\"details\":\"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.\"},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/Ownable.sol\":\"Ownable\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0xba43b97fba0d32eb4254f6a5a297b39a19a247082a02d6e69349e071e2946218\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fc980984badf3984b6303b377711220e067722bbd6a135b24669ff5069ef9f32\",\"dweb:/ipfs/QmPHXMSXj99XjSVM21YsY6aNtLLjLVXDbyN76J5HQYvvrz\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}", + "storageLayout": { + "storage": [ + { + "astId": 7, + "contract": "@openzeppelin/contracts/access/Ownable.sol:Ownable", + "label": "_owner", + "offset": 0, + "slot": "0", + "type": "t_address" + } + ], + "types": { + "t_address": { + "encoding": "inplace", + "label": "address", + "numberOfBytes": "20" + } + } + }, + "userdoc": { + "kind": "user", + "methods": {}, + "version": 1 + } + } + }, + "@openzeppelin/contracts/token/ERC20/ERC20.sol": { + "ERC20": { + "abi": [ + { + "inputs": [ + { + "internalType": "string", + "name": "name_", + "type": "string" + }, + { + "internalType": "string", + "name": "symbol_", + "type": "string" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "subtractedValue", + "type": "uint256" + } + ], + "name": "decreaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "addedValue", + "type": "uint256" + } + ], + "name": "increaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "devdoc": { + "details": "Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. For a generic mechanism see {ERC20PresetMinterPauser}. TIP: For a detailed writeup see our guide https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. The default value of {decimals} is 18. To change this, you should override this function so it returns a different value. We have followed general OpenZeppelin Contracts guidelines: functions revert instead returning `false` on failure. This behavior is nonetheless conventional and does not conflict with the expectations of ERC20 applications. Additionally, an {Approval} event is emitted on calls to {transferFrom}. This allows applications to reconstruct the allowance for all accounts just by listening to said events. Other implementations of the EIP may not emit these events, as it isn't required by the specification. Finally, the non-standard {decreaseAllowance} and {increaseAllowance} functions have been added to mitigate the well-known issues around setting allowances. See {IERC20-approve}.", + "events": { + "Approval(address,address,uint256)": { + "details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance." + }, + "Transfer(address,address,uint256)": { + "details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero." + } + }, + "kind": "dev", + "methods": { + "allowance(address,address)": { + "details": "See {IERC20-allowance}." + }, + "approve(address,uint256)": { + "details": "See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address." + }, + "balanceOf(address)": { + "details": "See {IERC20-balanceOf}." + }, + "constructor": { + "details": "Sets the values for {name} and {symbol}. All two of these values are immutable: they can only be set once during construction." + }, + "decimals()": { + "details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}." + }, + "decreaseAllowance(address,uint256)": { + "details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`." + }, + "increaseAllowance(address,uint256)": { + "details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address." + }, + "name()": { + "details": "Returns the name of the token." + }, + "symbol()": { + "details": "Returns the symbol of the token, usually a shorter version of the name." + }, + "totalSupply()": { + "details": "See {IERC20-totalSupply}." + }, + "transfer(address,uint256)": { + "details": "See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`." + }, + "transferFrom(address,address,uint256)": { + "details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`." + } + }, + "version": 1 + }, + "evm": { + "assembly": " /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1532:12844 contract ERC20 is Context, IERC20, IERC20Metadata {... */\n mstore(0x40, 0x80)\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1980:2093 constructor(string memory name_, string memory symbol_) {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n mload(0x40)\n sub(codesize, bytecodeSize)\n dup1\n bytecodeSize\n dup4\n codecopy\n dup2\n dup2\n add\n 0x40\n mstore\n dup2\n add\n swap1\n tag_2\n swap2\n swap1\n tag_3\n jump\t// in\ntag_2:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2054:2059 name_ */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2046:2051 _name */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2046:2059 _name = name_ */\n swap1\n dup2\n tag_6\n swap2\n swap1\n tag_7\n jump\t// in\ntag_6:\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2079:2086 symbol_ */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2069:2076 _symbol */\n 0x04\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2069:2086 _symbol = symbol_ */\n swap1\n dup2\n tag_8\n swap2\n swap1\n tag_7\n jump\t// in\ntag_8:\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1980:2093 constructor(string memory name_, string memory symbol_) {... */\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1532:12844 contract ERC20 is Context, IERC20, IERC20Metadata {... */\n jump(tag_9)\n /* \"#utility.yul\":7:82 */\ntag_10:\n /* \"#utility.yul\":40:46 */\n 0x00\n /* \"#utility.yul\":73:75 */\n 0x40\n /* \"#utility.yul\":67:76 */\n mload\n /* \"#utility.yul\":57:76 */\n swap1\n pop\n /* \"#utility.yul\":7:82 */\n swap1\n jump\t// out\n /* \"#utility.yul\":88:205 */\ntag_11:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":211:328 */\ntag_12:\n /* \"#utility.yul\":320:321 */\n 0x00\n /* \"#utility.yul\":317:318 */\n dup1\n /* \"#utility.yul\":310:322 */\n revert\n /* \"#utility.yul\":334:451 */\ntag_13:\n /* \"#utility.yul\":443:444 */\n 0x00\n /* \"#utility.yul\":440:441 */\n dup1\n /* \"#utility.yul\":433:445 */\n revert\n /* \"#utility.yul\":457:574 */\ntag_14:\n /* \"#utility.yul\":566:567 */\n 0x00\n /* \"#utility.yul\":563:564 */\n dup1\n /* \"#utility.yul\":556:568 */\n revert\n /* \"#utility.yul\":580:682 */\ntag_15:\n /* \"#utility.yul\":621:627 */\n 0x00\n /* \"#utility.yul\":672:674 */\n 0x1f\n /* \"#utility.yul\":668:675 */\n not\n /* \"#utility.yul\":663:665 */\n 0x1f\n /* \"#utility.yul\":656:661 */\n dup4\n /* \"#utility.yul\":652:666 */\n add\n /* \"#utility.yul\":648:676 */\n and\n /* \"#utility.yul\":638:676 */\n swap1\n pop\n /* \"#utility.yul\":580:682 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":688:868 */\ntag_16:\n /* \"#utility.yul\":736:813 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":733:734 */\n 0x00\n /* \"#utility.yul\":726:814 */\n mstore\n /* \"#utility.yul\":833:837 */\n 0x41\n /* \"#utility.yul\":830:831 */\n 0x04\n /* \"#utility.yul\":823:838 */\n mstore\n /* \"#utility.yul\":857:861 */\n 0x24\n /* \"#utility.yul\":854:855 */\n 0x00\n /* \"#utility.yul\":847:862 */\n revert\n /* \"#utility.yul\":874:1155 */\ntag_17:\n /* \"#utility.yul\":957:984 */\n tag_51\n /* \"#utility.yul\":979:983 */\n dup3\n /* \"#utility.yul\":957:984 */\n tag_15\n jump\t// in\ntag_51:\n /* \"#utility.yul\":949:955 */\n dup2\n /* \"#utility.yul\":945:985 */\n add\n /* \"#utility.yul\":1087:1093 */\n dup2\n /* \"#utility.yul\":1075:1085 */\n dup2\n /* \"#utility.yul\":1072:1094 */\n lt\n /* \"#utility.yul\":1051:1069 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1039:1049 */\n dup3\n /* \"#utility.yul\":1036:1070 */\n gt\n /* \"#utility.yul\":1033:1095 */\n or\n /* \"#utility.yul\":1030:1118 */\n iszero\n tag_52\n jumpi\n /* \"#utility.yul\":1098:1116 */\n tag_53\n tag_16\n jump\t// in\ntag_53:\n /* \"#utility.yul\":1030:1118 */\ntag_52:\n /* \"#utility.yul\":1138:1148 */\n dup1\n /* \"#utility.yul\":1134:1136 */\n 0x40\n /* \"#utility.yul\":1127:1149 */\n mstore\n /* \"#utility.yul\":917:1155 */\n pop\n /* \"#utility.yul\":874:1155 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1161:1290 */\ntag_18:\n /* \"#utility.yul\":1195:1201 */\n 0x00\n /* \"#utility.yul\":1222:1242 */\n tag_55\n tag_10\n jump\t// in\ntag_55:\n /* \"#utility.yul\":1212:1242 */\n swap1\n pop\n /* \"#utility.yul\":1251:1284 */\n tag_56\n /* \"#utility.yul\":1279:1283 */\n dup3\n /* \"#utility.yul\":1271:1277 */\n dup3\n /* \"#utility.yul\":1251:1284 */\n tag_17\n jump\t// in\ntag_56:\n /* \"#utility.yul\":1161:1290 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1296:1604 */\ntag_19:\n /* \"#utility.yul\":1358:1362 */\n 0x00\n /* \"#utility.yul\":1448:1466 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1440:1446 */\n dup3\n /* \"#utility.yul\":1437:1467 */\n gt\n /* \"#utility.yul\":1434:1490 */\n iszero\n tag_58\n jumpi\n /* \"#utility.yul\":1470:1488 */\n tag_59\n tag_16\n jump\t// in\ntag_59:\n /* \"#utility.yul\":1434:1490 */\ntag_58:\n /* \"#utility.yul\":1508:1537 */\n tag_60\n /* \"#utility.yul\":1530:1536 */\n dup3\n /* \"#utility.yul\":1508:1537 */\n tag_15\n jump\t// in\ntag_60:\n /* \"#utility.yul\":1500:1537 */\n swap1\n pop\n /* \"#utility.yul\":1592:1596 */\n 0x20\n /* \"#utility.yul\":1586:1590 */\n dup2\n /* \"#utility.yul\":1582:1597 */\n add\n /* \"#utility.yul\":1574:1597 */\n swap1\n pop\n /* \"#utility.yul\":1296:1604 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1610:1856 */\ntag_20:\n /* \"#utility.yul\":1691:1692 */\n 0x00\n /* \"#utility.yul\":1701:1814 */\ntag_62:\n /* \"#utility.yul\":1715:1721 */\n dup4\n /* \"#utility.yul\":1712:1713 */\n dup2\n /* \"#utility.yul\":1709:1722 */\n lt\n /* \"#utility.yul\":1701:1814 */\n iszero\n tag_64\n jumpi\n /* \"#utility.yul\":1800:1801 */\n dup1\n /* \"#utility.yul\":1795:1798 */\n dup3\n /* \"#utility.yul\":1791:1802 */\n add\n /* \"#utility.yul\":1785:1803 */\n mload\n /* \"#utility.yul\":1781:1782 */\n dup2\n /* \"#utility.yul\":1776:1779 */\n dup5\n /* \"#utility.yul\":1772:1783 */\n add\n /* \"#utility.yul\":1765:1804 */\n mstore\n /* \"#utility.yul\":1737:1739 */\n 0x20\n /* \"#utility.yul\":1734:1735 */\n dup2\n /* \"#utility.yul\":1730:1740 */\n add\n /* \"#utility.yul\":1725:1740 */\n swap1\n pop\n /* \"#utility.yul\":1701:1814 */\n jump(tag_62)\ntag_64:\n /* \"#utility.yul\":1848:1849 */\n 0x00\n /* \"#utility.yul\":1839:1845 */\n dup5\n /* \"#utility.yul\":1834:1837 */\n dup5\n /* \"#utility.yul\":1830:1846 */\n add\n /* \"#utility.yul\":1823:1850 */\n mstore\n /* \"#utility.yul\":1672:1856 */\n pop\n /* \"#utility.yul\":1610:1856 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1862:2296 */\ntag_21:\n /* \"#utility.yul\":1951:1956 */\n 0x00\n /* \"#utility.yul\":1976:2042 */\n tag_66\n /* \"#utility.yul\":1992:2041 */\n tag_67\n /* \"#utility.yul\":2034:2040 */\n dup5\n /* \"#utility.yul\":1992:2041 */\n tag_19\n jump\t// in\ntag_67:\n /* \"#utility.yul\":1976:2042 */\n tag_18\n jump\t// in\ntag_66:\n /* \"#utility.yul\":1967:2042 */\n swap1\n pop\n /* \"#utility.yul\":2065:2071 */\n dup3\n /* \"#utility.yul\":2058:2063 */\n dup2\n /* \"#utility.yul\":2051:2072 */\n mstore\n /* \"#utility.yul\":2103:2107 */\n 0x20\n /* \"#utility.yul\":2096:2101 */\n dup2\n /* \"#utility.yul\":2092:2108 */\n add\n /* \"#utility.yul\":2141:2144 */\n dup5\n /* \"#utility.yul\":2132:2138 */\n dup5\n /* \"#utility.yul\":2127:2130 */\n dup5\n /* \"#utility.yul\":2123:2139 */\n add\n /* \"#utility.yul\":2120:2145 */\n gt\n /* \"#utility.yul\":2117:2229 */\n iszero\n tag_68\n jumpi\n /* \"#utility.yul\":2148:2227 */\n tag_69\n tag_14\n jump\t// in\ntag_69:\n /* \"#utility.yul\":2117:2229 */\ntag_68:\n /* \"#utility.yul\":2238:2290 */\n tag_70\n /* \"#utility.yul\":2283:2289 */\n dup5\n /* \"#utility.yul\":2278:2281 */\n dup3\n /* \"#utility.yul\":2273:2276 */\n dup6\n /* \"#utility.yul\":2238:2290 */\n tag_20\n jump\t// in\ntag_70:\n /* \"#utility.yul\":1957:2296 */\n pop\n /* \"#utility.yul\":1862:2296 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2316:2671 */\ntag_22:\n /* \"#utility.yul\":2383:2388 */\n 0x00\n /* \"#utility.yul\":2432:2435 */\n dup3\n /* \"#utility.yul\":2425:2429 */\n 0x1f\n /* \"#utility.yul\":2417:2423 */\n dup4\n /* \"#utility.yul\":2413:2430 */\n add\n /* \"#utility.yul\":2409:2436 */\n slt\n /* \"#utility.yul\":2399:2521 */\n tag_72\n jumpi\n /* \"#utility.yul\":2440:2519 */\n tag_73\n tag_13\n jump\t// in\ntag_73:\n /* \"#utility.yul\":2399:2521 */\ntag_72:\n /* \"#utility.yul\":2550:2556 */\n dup2\n /* \"#utility.yul\":2544:2557 */\n mload\n /* \"#utility.yul\":2575:2665 */\n tag_74\n /* \"#utility.yul\":2661:2664 */\n dup5\n /* \"#utility.yul\":2653:2659 */\n dup3\n /* \"#utility.yul\":2646:2650 */\n 0x20\n /* \"#utility.yul\":2638:2644 */\n dup7\n /* \"#utility.yul\":2634:2651 */\n add\n /* \"#utility.yul\":2575:2665 */\n tag_21\n jump\t// in\ntag_74:\n /* \"#utility.yul\":2566:2665 */\n swap2\n pop\n /* \"#utility.yul\":2389:2671 */\n pop\n /* \"#utility.yul\":2316:2671 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2677:3530 */\ntag_3:\n /* \"#utility.yul\":2776:2782 */\n 0x00\n /* \"#utility.yul\":2784:2790 */\n dup1\n /* \"#utility.yul\":2833:2835 */\n 0x40\n /* \"#utility.yul\":2821:2830 */\n dup4\n /* \"#utility.yul\":2812:2819 */\n dup6\n /* \"#utility.yul\":2808:2831 */\n sub\n /* \"#utility.yul\":2804:2836 */\n slt\n /* \"#utility.yul\":2801:2920 */\n iszero\n tag_76\n jumpi\n /* \"#utility.yul\":2839:2918 */\n tag_77\n tag_11\n jump\t// in\ntag_77:\n /* \"#utility.yul\":2801:2920 */\ntag_76:\n /* \"#utility.yul\":2980:2981 */\n 0x00\n /* \"#utility.yul\":2969:2978 */\n dup4\n /* \"#utility.yul\":2965:2982 */\n add\n /* \"#utility.yul\":2959:2983 */\n mload\n /* \"#utility.yul\":3010:3028 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3002:3008 */\n dup2\n /* \"#utility.yul\":2999:3029 */\n gt\n /* \"#utility.yul\":2996:3113 */\n iszero\n tag_78\n jumpi\n /* \"#utility.yul\":3032:3111 */\n tag_79\n tag_12\n jump\t// in\ntag_79:\n /* \"#utility.yul\":2996:3113 */\ntag_78:\n /* \"#utility.yul\":3137:3211 */\n tag_80\n /* \"#utility.yul\":3203:3210 */\n dup6\n /* \"#utility.yul\":3194:3200 */\n dup3\n /* \"#utility.yul\":3183:3192 */\n dup7\n /* \"#utility.yul\":3179:3201 */\n add\n /* \"#utility.yul\":3137:3211 */\n tag_22\n jump\t// in\ntag_80:\n /* \"#utility.yul\":3127:3211 */\n swap3\n pop\n /* \"#utility.yul\":2930:3221 */\n pop\n /* \"#utility.yul\":3281:3283 */\n 0x20\n /* \"#utility.yul\":3270:3279 */\n dup4\n /* \"#utility.yul\":3266:3284 */\n add\n /* \"#utility.yul\":3260:3285 */\n mload\n /* \"#utility.yul\":3312:3330 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3304:3310 */\n dup2\n /* \"#utility.yul\":3301:3331 */\n gt\n /* \"#utility.yul\":3298:3415 */\n iszero\n tag_81\n jumpi\n /* \"#utility.yul\":3334:3413 */\n tag_82\n tag_12\n jump\t// in\ntag_82:\n /* \"#utility.yul\":3298:3415 */\ntag_81:\n /* \"#utility.yul\":3439:3513 */\n tag_83\n /* \"#utility.yul\":3505:3512 */\n dup6\n /* \"#utility.yul\":3496:3502 */\n dup3\n /* \"#utility.yul\":3485:3494 */\n dup7\n /* \"#utility.yul\":3481:3503 */\n add\n /* \"#utility.yul\":3439:3513 */\n tag_22\n jump\t// in\ntag_83:\n /* \"#utility.yul\":3429:3513 */\n swap2\n pop\n /* \"#utility.yul\":3231:3523 */\n pop\n /* \"#utility.yul\":2677:3530 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3536:3635 */\ntag_23:\n /* \"#utility.yul\":3588:3594 */\n 0x00\n /* \"#utility.yul\":3622:3627 */\n dup2\n /* \"#utility.yul\":3616:3628 */\n mload\n /* \"#utility.yul\":3606:3628 */\n swap1\n pop\n /* \"#utility.yul\":3536:3635 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3641:3821 */\ntag_24:\n /* \"#utility.yul\":3689:3766 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3686:3687 */\n 0x00\n /* \"#utility.yul\":3679:3767 */\n mstore\n /* \"#utility.yul\":3786:3790 */\n 0x22\n /* \"#utility.yul\":3783:3784 */\n 0x04\n /* \"#utility.yul\":3776:3791 */\n mstore\n /* \"#utility.yul\":3810:3814 */\n 0x24\n /* \"#utility.yul\":3807:3808 */\n 0x00\n /* \"#utility.yul\":3800:3815 */\n revert\n /* \"#utility.yul\":3827:4147 */\ntag_25:\n /* \"#utility.yul\":3871:3877 */\n 0x00\n /* \"#utility.yul\":3908:3909 */\n 0x02\n /* \"#utility.yul\":3902:3906 */\n dup3\n /* \"#utility.yul\":3898:3910 */\n div\n /* \"#utility.yul\":3888:3910 */\n swap1\n pop\n /* \"#utility.yul\":3955:3956 */\n 0x01\n /* \"#utility.yul\":3949:3953 */\n dup3\n /* \"#utility.yul\":3945:3957 */\n and\n /* \"#utility.yul\":3976:3994 */\n dup1\n /* \"#utility.yul\":3966:4047 */\n tag_87\n jumpi\n /* \"#utility.yul\":4032:4036 */\n 0x7f\n /* \"#utility.yul\":4024:4030 */\n dup3\n /* \"#utility.yul\":4020:4037 */\n and\n /* \"#utility.yul\":4010:4037 */\n swap2\n pop\n /* \"#utility.yul\":3966:4047 */\ntag_87:\n /* \"#utility.yul\":4094:4096 */\n 0x20\n /* \"#utility.yul\":4086:4092 */\n dup3\n /* \"#utility.yul\":4083:4097 */\n lt\n /* \"#utility.yul\":4063:4081 */\n dup2\n /* \"#utility.yul\":4060:4098 */\n sub\n /* \"#utility.yul\":4057:4141 */\n tag_88\n jumpi\n /* \"#utility.yul\":4113:4131 */\n tag_89\n tag_24\n jump\t// in\ntag_89:\n /* \"#utility.yul\":4057:4141 */\ntag_88:\n /* \"#utility.yul\":3878:4147 */\n pop\n /* \"#utility.yul\":3827:4147 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4153:4294 */\ntag_26:\n /* \"#utility.yul\":4202:4206 */\n 0x00\n /* \"#utility.yul\":4225:4228 */\n dup2\n /* \"#utility.yul\":4217:4228 */\n swap1\n pop\n /* \"#utility.yul\":4248:4251 */\n dup2\n /* \"#utility.yul\":4245:4246 */\n 0x00\n /* \"#utility.yul\":4238:4252 */\n mstore\n /* \"#utility.yul\":4282:4286 */\n 0x20\n /* \"#utility.yul\":4279:4280 */\n 0x00\n /* \"#utility.yul\":4269:4287 */\n keccak256\n /* \"#utility.yul\":4261:4287 */\n swap1\n pop\n /* \"#utility.yul\":4153:4294 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4300:4393 */\ntag_27:\n /* \"#utility.yul\":4337:4343 */\n 0x00\n /* \"#utility.yul\":4384:4386 */\n 0x20\n /* \"#utility.yul\":4379:4381 */\n 0x1f\n /* \"#utility.yul\":4372:4377 */\n dup4\n /* \"#utility.yul\":4368:4382 */\n add\n /* \"#utility.yul\":4364:4387 */\n div\n /* \"#utility.yul\":4354:4387 */\n swap1\n pop\n /* \"#utility.yul\":4300:4393 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4399:4506 */\ntag_28:\n /* \"#utility.yul\":4443:4451 */\n 0x00\n /* \"#utility.yul\":4493:4498 */\n dup3\n /* \"#utility.yul\":4487:4491 */\n dup3\n /* \"#utility.yul\":4483:4499 */\n shl\n /* \"#utility.yul\":4462:4499 */\n swap1\n pop\n /* \"#utility.yul\":4399:4506 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4512:4905 */\ntag_29:\n /* \"#utility.yul\":4581:4587 */\n 0x00\n /* \"#utility.yul\":4631:4632 */\n 0x08\n /* \"#utility.yul\":4619:4629 */\n dup4\n /* \"#utility.yul\":4615:4633 */\n mul\n /* \"#utility.yul\":4654:4751 */\n tag_94\n /* \"#utility.yul\":4684:4750 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":4673:4682 */\n dup3\n /* \"#utility.yul\":4654:4751 */\n tag_28\n jump\t// in\ntag_94:\n /* \"#utility.yul\":4772:4811 */\n tag_95\n /* \"#utility.yul\":4802:4810 */\n dup7\n /* \"#utility.yul\":4791:4800 */\n dup4\n /* \"#utility.yul\":4772:4811 */\n tag_28\n jump\t// in\ntag_95:\n /* \"#utility.yul\":4760:4811 */\n swap6\n pop\n /* \"#utility.yul\":4844:4848 */\n dup1\n /* \"#utility.yul\":4840:4849 */\n not\n /* \"#utility.yul\":4833:4838 */\n dup5\n /* \"#utility.yul\":4829:4850 */\n and\n /* \"#utility.yul\":4820:4850 */\n swap4\n pop\n /* \"#utility.yul\":4893:4897 */\n dup1\n /* \"#utility.yul\":4883:4891 */\n dup7\n /* \"#utility.yul\":4879:4898 */\n and\n /* \"#utility.yul\":4872:4877 */\n dup5\n /* \"#utility.yul\":4869:4899 */\n or\n /* \"#utility.yul\":4859:4899 */\n swap3\n pop\n /* \"#utility.yul\":4588:4905 */\n pop\n pop\n /* \"#utility.yul\":4512:4905 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4911:4988 */\ntag_30:\n /* \"#utility.yul\":4948:4955 */\n 0x00\n /* \"#utility.yul\":4977:4982 */\n dup2\n /* \"#utility.yul\":4966:4982 */\n swap1\n pop\n /* \"#utility.yul\":4911:4988 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4994:5054 */\ntag_31:\n /* \"#utility.yul\":5022:5025 */\n 0x00\n /* \"#utility.yul\":5043:5048 */\n dup2\n /* \"#utility.yul\":5036:5048 */\n swap1\n pop\n /* \"#utility.yul\":4994:5054 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5060:5202 */\ntag_32:\n /* \"#utility.yul\":5110:5119 */\n 0x00\n /* \"#utility.yul\":5143:5196 */\n tag_99\n /* \"#utility.yul\":5161:5195 */\n tag_100\n /* \"#utility.yul\":5170:5194 */\n tag_101\n /* \"#utility.yul\":5188:5193 */\n dup5\n /* \"#utility.yul\":5170:5194 */\n tag_30\n jump\t// in\ntag_101:\n /* \"#utility.yul\":5161:5195 */\n tag_31\n jump\t// in\ntag_100:\n /* \"#utility.yul\":5143:5196 */\n tag_30\n jump\t// in\ntag_99:\n /* \"#utility.yul\":5130:5196 */\n swap1\n pop\n /* \"#utility.yul\":5060:5202 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5208:5283 */\ntag_33:\n /* \"#utility.yul\":5251:5254 */\n 0x00\n /* \"#utility.yul\":5272:5277 */\n dup2\n /* \"#utility.yul\":5265:5277 */\n swap1\n pop\n /* \"#utility.yul\":5208:5283 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5289:5558 */\ntag_34:\n /* \"#utility.yul\":5399:5438 */\n tag_104\n /* \"#utility.yul\":5430:5437 */\n dup4\n /* \"#utility.yul\":5399:5438 */\n tag_32\n jump\t// in\ntag_104:\n /* \"#utility.yul\":5460:5551 */\n tag_105\n /* \"#utility.yul\":5509:5550 */\n tag_106\n /* \"#utility.yul\":5533:5549 */\n dup3\n /* \"#utility.yul\":5509:5550 */\n tag_33\n jump\t// in\ntag_106:\n /* \"#utility.yul\":5501:5507 */\n dup5\n /* \"#utility.yul\":5494:5498 */\n dup5\n /* \"#utility.yul\":5488:5499 */\n sload\n /* \"#utility.yul\":5460:5551 */\n tag_29\n jump\t// in\ntag_105:\n /* \"#utility.yul\":5454:5458 */\n dup3\n /* \"#utility.yul\":5447:5552 */\n sstore\n /* \"#utility.yul\":5365:5558 */\n pop\n /* \"#utility.yul\":5289:5558 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5564:5637 */\ntag_35:\n /* \"#utility.yul\":5609:5612 */\n 0x00\n /* \"#utility.yul\":5564:5637 */\n swap1\n jump\t// out\n /* \"#utility.yul\":5643:5832 */\ntag_36:\n /* \"#utility.yul\":5720:5752 */\n tag_109\n tag_35\n jump\t// in\ntag_109:\n /* \"#utility.yul\":5761:5826 */\n tag_110\n /* \"#utility.yul\":5819:5825 */\n dup2\n /* \"#utility.yul\":5811:5817 */\n dup5\n /* \"#utility.yul\":5805:5809 */\n dup5\n /* \"#utility.yul\":5761:5826 */\n tag_34\n jump\t// in\ntag_110:\n /* \"#utility.yul\":5696:5832 */\n pop\n /* \"#utility.yul\":5643:5832 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5838:6024 */\ntag_37:\n /* \"#utility.yul\":5898:6018 */\ntag_112:\n /* \"#utility.yul\":5915:5918 */\n dup2\n /* \"#utility.yul\":5908:5913 */\n dup2\n /* \"#utility.yul\":5905:5919 */\n lt\n /* \"#utility.yul\":5898:6018 */\n iszero\n tag_114\n jumpi\n /* \"#utility.yul\":5969:6008 */\n tag_115\n /* \"#utility.yul\":6006:6007 */\n 0x00\n /* \"#utility.yul\":5999:6004 */\n dup3\n /* \"#utility.yul\":5969:6008 */\n tag_36\n jump\t// in\ntag_115:\n /* \"#utility.yul\":5942:5943 */\n 0x01\n /* \"#utility.yul\":5935:5940 */\n dup2\n /* \"#utility.yul\":5931:5944 */\n add\n /* \"#utility.yul\":5922:5944 */\n swap1\n pop\n /* \"#utility.yul\":5898:6018 */\n jump(tag_112)\ntag_114:\n /* \"#utility.yul\":5838:6024 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6030:6573 */\ntag_38:\n /* \"#utility.yul\":6131:6133 */\n 0x1f\n /* \"#utility.yul\":6126:6129 */\n dup3\n /* \"#utility.yul\":6123:6134 */\n gt\n /* \"#utility.yul\":6120:6566 */\n iszero\n tag_117\n jumpi\n /* \"#utility.yul\":6165:6203 */\n tag_118\n /* \"#utility.yul\":6197:6202 */\n dup2\n /* \"#utility.yul\":6165:6203 */\n tag_26\n jump\t// in\ntag_118:\n /* \"#utility.yul\":6249:6278 */\n tag_119\n /* \"#utility.yul\":6267:6277 */\n dup5\n /* \"#utility.yul\":6249:6278 */\n tag_27\n jump\t// in\ntag_119:\n /* \"#utility.yul\":6239:6247 */\n dup2\n /* \"#utility.yul\":6235:6279 */\n add\n /* \"#utility.yul\":6432:6434 */\n 0x20\n /* \"#utility.yul\":6420:6430 */\n dup6\n /* \"#utility.yul\":6417:6435 */\n lt\n /* \"#utility.yul\":6414:6463 */\n iszero\n tag_120\n jumpi\n /* \"#utility.yul\":6453:6461 */\n dup2\n /* \"#utility.yul\":6438:6461 */\n swap1\n pop\n /* \"#utility.yul\":6414:6463 */\ntag_120:\n /* \"#utility.yul\":6476:6556 */\n tag_121\n /* \"#utility.yul\":6532:6554 */\n tag_122\n /* \"#utility.yul\":6550:6553 */\n dup6\n /* \"#utility.yul\":6532:6554 */\n tag_27\n jump\t// in\ntag_122:\n /* \"#utility.yul\":6522:6530 */\n dup4\n /* \"#utility.yul\":6518:6555 */\n add\n /* \"#utility.yul\":6505:6516 */\n dup3\n /* \"#utility.yul\":6476:6556 */\n tag_37\n jump\t// in\ntag_121:\n /* \"#utility.yul\":6135:6566 */\n pop\n pop\n /* \"#utility.yul\":6120:6566 */\ntag_117:\n /* \"#utility.yul\":6030:6573 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6579:6696 */\ntag_39:\n /* \"#utility.yul\":6633:6641 */\n 0x00\n /* \"#utility.yul\":6683:6688 */\n dup3\n /* \"#utility.yul\":6677:6681 */\n dup3\n /* \"#utility.yul\":6673:6689 */\n shr\n /* \"#utility.yul\":6652:6689 */\n swap1\n pop\n /* \"#utility.yul\":6579:6696 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6702:6871 */\ntag_40:\n /* \"#utility.yul\":6746:6752 */\n 0x00\n /* \"#utility.yul\":6779:6830 */\n tag_125\n /* \"#utility.yul\":6827:6828 */\n 0x00\n /* \"#utility.yul\":6823:6829 */\n not\n /* \"#utility.yul\":6815:6820 */\n dup5\n /* \"#utility.yul\":6812:6813 */\n 0x08\n /* \"#utility.yul\":6808:6821 */\n mul\n /* \"#utility.yul\":6779:6830 */\n tag_39\n jump\t// in\ntag_125:\n /* \"#utility.yul\":6775:6831 */\n not\n /* \"#utility.yul\":6860:6864 */\n dup1\n /* \"#utility.yul\":6854:6858 */\n dup4\n /* \"#utility.yul\":6850:6865 */\n and\n /* \"#utility.yul\":6840:6865 */\n swap2\n pop\n /* \"#utility.yul\":6753:6871 */\n pop\n /* \"#utility.yul\":6702:6871 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6876:7171 */\ntag_41:\n /* \"#utility.yul\":6952:6956 */\n 0x00\n /* \"#utility.yul\":7098:7127 */\n tag_127\n /* \"#utility.yul\":7123:7126 */\n dup4\n /* \"#utility.yul\":7117:7121 */\n dup4\n /* \"#utility.yul\":7098:7127 */\n tag_40\n jump\t// in\ntag_127:\n /* \"#utility.yul\":7090:7127 */\n swap2\n pop\n /* \"#utility.yul\":7160:7163 */\n dup3\n /* \"#utility.yul\":7157:7158 */\n 0x02\n /* \"#utility.yul\":7153:7164 */\n mul\n /* \"#utility.yul\":7147:7151 */\n dup3\n /* \"#utility.yul\":7144:7165 */\n or\n /* \"#utility.yul\":7136:7165 */\n swap1\n pop\n /* \"#utility.yul\":6876:7171 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7176:8571 */\ntag_7:\n /* \"#utility.yul\":7293:7330 */\n tag_129\n /* \"#utility.yul\":7326:7329 */\n dup3\n /* \"#utility.yul\":7293:7330 */\n tag_23\n jump\t// in\ntag_129:\n /* \"#utility.yul\":7395:7413 */\n 0xffffffffffffffff\n /* \"#utility.yul\":7387:7393 */\n dup2\n /* \"#utility.yul\":7384:7414 */\n gt\n /* \"#utility.yul\":7381:7437 */\n iszero\n tag_130\n jumpi\n /* \"#utility.yul\":7417:7435 */\n tag_131\n tag_16\n jump\t// in\ntag_131:\n /* \"#utility.yul\":7381:7437 */\ntag_130:\n /* \"#utility.yul\":7461:7499 */\n tag_132\n /* \"#utility.yul\":7493:7497 */\n dup3\n /* \"#utility.yul\":7487:7498 */\n sload\n /* \"#utility.yul\":7461:7499 */\n tag_25\n jump\t// in\ntag_132:\n /* \"#utility.yul\":7546:7613 */\n tag_133\n /* \"#utility.yul\":7606:7612 */\n dup3\n /* \"#utility.yul\":7598:7604 */\n dup3\n /* \"#utility.yul\":7592:7596 */\n dup6\n /* \"#utility.yul\":7546:7613 */\n tag_38\n jump\t// in\ntag_133:\n /* \"#utility.yul\":7640:7641 */\n 0x00\n /* \"#utility.yul\":7664:7668 */\n 0x20\n /* \"#utility.yul\":7651:7668 */\n swap1\n pop\n /* \"#utility.yul\":7696:7698 */\n 0x1f\n /* \"#utility.yul\":7688:7694 */\n dup4\n /* \"#utility.yul\":7685:7699 */\n gt\n /* \"#utility.yul\":7713:7714 */\n 0x01\n /* \"#utility.yul\":7708:8326 */\n dup2\n eq\n tag_135\n jumpi\n /* \"#utility.yul\":8370:8371 */\n 0x00\n /* \"#utility.yul\":8387:8393 */\n dup5\n /* \"#utility.yul\":8384:8461 */\n iszero\n tag_136\n jumpi\n /* \"#utility.yul\":8436:8445 */\n dup3\n /* \"#utility.yul\":8431:8434 */\n dup8\n /* \"#utility.yul\":8427:8446 */\n add\n /* \"#utility.yul\":8421:8447 */\n mload\n /* \"#utility.yul\":8412:8447 */\n swap1\n pop\n /* \"#utility.yul\":8384:8461 */\ntag_136:\n /* \"#utility.yul\":8487:8554 */\n tag_137\n /* \"#utility.yul\":8547:8553 */\n dup6\n /* \"#utility.yul\":8540:8545 */\n dup3\n /* \"#utility.yul\":8487:8554 */\n tag_41\n jump\t// in\ntag_137:\n /* \"#utility.yul\":8481:8485 */\n dup7\n /* \"#utility.yul\":8474:8555 */\n sstore\n /* \"#utility.yul\":8343:8565 */\n pop\n /* \"#utility.yul\":7678:8565 */\n jump(tag_134)\n /* \"#utility.yul\":7708:8326 */\ntag_135:\n /* \"#utility.yul\":7760:7764 */\n 0x1f\n /* \"#utility.yul\":7756:7765 */\n not\n /* \"#utility.yul\":7748:7754 */\n dup5\n /* \"#utility.yul\":7744:7766 */\n and\n /* \"#utility.yul\":7794:7831 */\n tag_138\n /* \"#utility.yul\":7826:7830 */\n dup7\n /* \"#utility.yul\":7794:7831 */\n tag_26\n jump\t// in\ntag_138:\n /* \"#utility.yul\":7853:7854 */\n 0x00\n /* \"#utility.yul\":7867:8075 */\ntag_139:\n /* \"#utility.yul\":7881:7888 */\n dup3\n /* \"#utility.yul\":7878:7879 */\n dup2\n /* \"#utility.yul\":7875:7889 */\n lt\n /* \"#utility.yul\":7867:8075 */\n iszero\n tag_141\n jumpi\n /* \"#utility.yul\":7960:7969 */\n dup5\n /* \"#utility.yul\":7955:7958 */\n dup10\n /* \"#utility.yul\":7951:7970 */\n add\n /* \"#utility.yul\":7945:7971 */\n mload\n /* \"#utility.yul\":7937:7943 */\n dup3\n /* \"#utility.yul\":7930:7972 */\n sstore\n /* \"#utility.yul\":8011:8012 */\n 0x01\n /* \"#utility.yul\":8003:8009 */\n dup3\n /* \"#utility.yul\":7999:8013 */\n add\n /* \"#utility.yul\":7989:8013 */\n swap2\n pop\n /* \"#utility.yul\":8058:8060 */\n 0x20\n /* \"#utility.yul\":8047:8056 */\n dup6\n /* \"#utility.yul\":8043:8061 */\n add\n /* \"#utility.yul\":8030:8061 */\n swap5\n pop\n /* \"#utility.yul\":7904:7908 */\n 0x20\n /* \"#utility.yul\":7901:7902 */\n dup2\n /* \"#utility.yul\":7897:7909 */\n add\n /* \"#utility.yul\":7892:7909 */\n swap1\n pop\n /* \"#utility.yul\":7867:8075 */\n jump(tag_139)\ntag_141:\n /* \"#utility.yul\":8103:8109 */\n dup7\n /* \"#utility.yul\":8094:8101 */\n dup4\n /* \"#utility.yul\":8091:8110 */\n lt\n /* \"#utility.yul\":8088:8267 */\n iszero\n tag_142\n jumpi\n /* \"#utility.yul\":8161:8170 */\n dup5\n /* \"#utility.yul\":8156:8159 */\n dup10\n /* \"#utility.yul\":8152:8171 */\n add\n /* \"#utility.yul\":8146:8172 */\n mload\n /* \"#utility.yul\":8204:8252 */\n tag_143\n /* \"#utility.yul\":8246:8250 */\n 0x1f\n /* \"#utility.yul\":8238:8244 */\n dup10\n /* \"#utility.yul\":8234:8251 */\n and\n /* \"#utility.yul\":8223:8232 */\n dup3\n /* \"#utility.yul\":8204:8252 */\n tag_40\n jump\t// in\ntag_143:\n /* \"#utility.yul\":8196:8202 */\n dup4\n /* \"#utility.yul\":8189:8253 */\n sstore\n /* \"#utility.yul\":8111:8267 */\n pop\n /* \"#utility.yul\":8088:8267 */\ntag_142:\n /* \"#utility.yul\":8313:8314 */\n 0x01\n /* \"#utility.yul\":8309:8310 */\n 0x02\n /* \"#utility.yul\":8301:8307 */\n dup9\n /* \"#utility.yul\":8297:8311 */\n mul\n /* \"#utility.yul\":8293:8315 */\n add\n /* \"#utility.yul\":8287:8291 */\n dup9\n /* \"#utility.yul\":8280:8316 */\n sstore\n /* \"#utility.yul\":7715:8326 */\n pop\n pop\n pop\n /* \"#utility.yul\":7678:8565 */\ntag_134:\n pop\n /* \"#utility.yul\":7268:8571 */\n pop\n pop\n pop\n /* \"#utility.yul\":7176:8571 */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1532:12844 contract ERC20 is Context, IERC20, IERC20Metadata {... */\ntag_9:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1532:12844 contract ERC20 is Context, IERC20, IERC20Metadata {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x39509351\n gt\n tag_14\n jumpi\n dup1\n 0x39509351\n eq\n tag_8\n jumpi\n dup1\n 0x70a08231\n eq\n tag_9\n jumpi\n dup1\n 0x95d89b41\n eq\n tag_10\n jumpi\n dup1\n 0xa457c2d7\n eq\n tag_11\n jumpi\n dup1\n 0xa9059cbb\n eq\n tag_12\n jumpi\n dup1\n 0xdd62ed3e\n eq\n tag_13\n jumpi\n jump(tag_2)\n tag_14:\n dup1\n 0x06fdde03\n eq\n tag_3\n jumpi\n dup1\n 0x095ea7b3\n eq\n tag_4\n jumpi\n dup1\n 0x18160ddd\n eq\n tag_5\n jumpi\n dup1\n 0x23b872dd\n eq\n tag_6\n jumpi\n dup1\n 0x313ce567\n eq\n tag_7\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2158:2256 function name() public view virtual override returns (string memory) {... */\n tag_3:\n tag_15\n tag_16\n jump\t// in\n tag_15:\n mload(0x40)\n tag_17\n swap2\n swap1\n tag_18\n jump\t// in\n tag_17:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4444:4641 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n tag_4:\n tag_19\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_20\n swap2\n swap1\n tag_21\n jump\t// in\n tag_20:\n tag_22\n jump\t// in\n tag_19:\n mload(0x40)\n tag_23\n swap2\n swap1\n tag_24\n jump\t// in\n tag_23:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3255:3361 function totalSupply() public view virtual override returns (uint256) {... */\n tag_5:\n tag_25\n tag_26\n jump\t// in\n tag_25:\n mload(0x40)\n tag_27\n swap2\n swap1\n tag_28\n jump\t// in\n tag_27:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5203:5459 function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {... */\n tag_6:\n tag_29\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_30\n swap2\n swap1\n tag_31\n jump\t// in\n tag_30:\n tag_32\n jump\t// in\n tag_29:\n mload(0x40)\n tag_33\n swap2\n swap1\n tag_24\n jump\t// in\n tag_33:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3104:3195 function decimals() public view virtual override returns (uint8) {... */\n tag_7:\n tag_34\n tag_35\n jump\t// in\n tag_34:\n mload(0x40)\n tag_36\n swap2\n swap1\n tag_37\n jump\t// in\n tag_36:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5854:6088 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n tag_8:\n tag_38\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_39\n swap2\n swap1\n tag_21\n jump\t// in\n tag_39:\n tag_40\n jump\t// in\n tag_38:\n mload(0x40)\n tag_41\n swap2\n swap1\n tag_24\n jump\t// in\n tag_41:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3419:3544 function balanceOf(address account) public view virtual override returns (uint256) {... */\n tag_9:\n tag_42\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_43\n swap2\n swap1\n tag_44\n jump\t// in\n tag_43:\n tag_45\n jump\t// in\n tag_42:\n mload(0x40)\n tag_46\n swap2\n swap1\n tag_28\n jump\t// in\n tag_46:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2369:2471 function symbol() public view virtual override returns (string memory) {... */\n tag_10:\n tag_47\n tag_48\n jump\t// in\n tag_47:\n mload(0x40)\n tag_49\n swap2\n swap1\n tag_18\n jump\t// in\n tag_49:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6575:7002 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n tag_11:\n tag_50\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_51\n swap2\n swap1\n tag_21\n jump\t// in\n tag_51:\n tag_52\n jump\t// in\n tag_50:\n mload(0x40)\n tag_53\n swap2\n swap1\n tag_24\n jump\t// in\n tag_53:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3740:3929 function transfer(address to, uint256 amount) public virtual override returns (bool) {... */\n tag_12:\n tag_54\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_55\n swap2\n swap1\n tag_21\n jump\t// in\n tag_55:\n tag_56\n jump\t// in\n tag_54:\n mload(0x40)\n tag_57\n swap2\n swap1\n tag_24\n jump\t// in\n tag_57:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3987:4136 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n tag_13:\n tag_58\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_59\n swap2\n swap1\n tag_60\n jump\t// in\n tag_59:\n tag_61\n jump\t// in\n tag_58:\n mload(0x40)\n tag_62\n swap2\n swap1\n tag_28\n jump\t// in\n tag_62:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2158:2256 function name() public view virtual override returns (string memory) {... */\n tag_16:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2212:2225 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2244:2249 _name */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2237:2249 return _name */\n dup1\n sload\n tag_64\n swap1\n tag_65\n jump\t// in\n tag_64:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_66\n swap1\n tag_65\n jump\t// in\n tag_66:\n dup1\n iszero\n tag_67\n jumpi\n dup1\n 0x1f\n lt\n tag_68\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_67)\n tag_68:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_69:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_69\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_67:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2158:2256 function name() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4444:4641 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n tag_22:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4527:4531 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4543:4556 address owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4559:4571 _msgSender() */\n tag_71\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4559:4569 _msgSender */\n tag_72\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4559:4571 _msgSender() */\n jump\t// in\n tag_71:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4543:4571 address owner = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4581:4613 _approve(owner, spender, amount) */\n tag_73\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4590:4595 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4597:4604 spender */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4606:4612 amount */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4581:4589 _approve */\n tag_74\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4581:4613 _approve(owner, spender, amount) */\n jump\t// in\n tag_73:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4630:4634 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4623:4634 return true */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4444:4641 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3255:3361 function totalSupply() public view virtual override returns (uint256) {... */\n tag_26:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3316:3323 uint256 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3342:3354 _totalSupply */\n sload(0x02)\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3335:3354 return _totalSupply */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3255:3361 function totalSupply() public view virtual override returns (uint256) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5203:5459 function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {... */\n tag_32:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5300:5304 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5316:5331 address spender */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5334:5346 _msgSender() */\n tag_77\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5334:5344 _msgSender */\n tag_72\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5334:5346 _msgSender() */\n jump\t// in\n tag_77:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5316:5346 address spender = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5356:5394 _spendAllowance(from, spender, amount) */\n tag_78\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5372:5376 from */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5378:5385 spender */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5387:5393 amount */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5356:5371 _spendAllowance */\n tag_79\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5356:5394 _spendAllowance(from, spender, amount) */\n jump\t// in\n tag_78:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5404:5431 _transfer(from, to, amount) */\n tag_80\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5414:5418 from */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5420:5422 to */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5424:5430 amount */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5404:5413 _transfer */\n tag_81\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5404:5431 _transfer(from, to, amount) */\n jump\t// in\n tag_80:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5448:5452 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5441:5452 return true */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5203:5459 function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {... */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3104:3195 function decimals() public view virtual override returns (uint8) {... */\n tag_35:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3162:3167 uint8 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3186:3188 18 */\n 0x12\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3179:3188 return 18 */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3104:3195 function decimals() public view virtual override returns (uint8) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5854:6088 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n tag_40:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5942:5946 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5958:5971 address owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5974:5986 _msgSender() */\n tag_84\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5974:5984 _msgSender */\n tag_72\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5974:5986 _msgSender() */\n jump\t// in\n tag_84:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5958:5986 address owner = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5996:6060 _approve(owner, spender, allowance(owner, spender) + addedValue) */\n tag_85\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6005:6010 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6012:6019 spender */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6049:6059 addedValue */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6021:6046 allowance(owner, spender) */\n tag_86\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6031:6036 owner */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6038:6045 spender */\n dup10\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6021:6030 allowance */\n tag_61\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6021:6046 allowance(owner, spender) */\n jump\t// in\n tag_86:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6021:6059 allowance(owner, spender) + addedValue */\n tag_87\n swap2\n swap1\n tag_88\n jump\t// in\n tag_87:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5996:6004 _approve */\n tag_74\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5996:6060 _approve(owner, spender, allowance(owner, spender) + addedValue) */\n jump\t// in\n tag_85:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6077:6081 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6070:6081 return true */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5854:6088 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3419:3544 function balanceOf(address account) public view virtual override returns (uint256) {... */\n tag_45:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3493:3500 uint256 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3519:3528 _balances */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3519:3537 _balances[account] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3529:3536 account */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3519:3537 _balances[account] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3512:3537 return _balances[account] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3419:3544 function balanceOf(address account) public view virtual override returns (uint256) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2369:2471 function symbol() public view virtual override returns (string memory) {... */\n tag_48:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2425:2438 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2457:2464 _symbol */\n 0x04\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2450:2464 return _symbol */\n dup1\n sload\n tag_91\n swap1\n tag_65\n jump\t// in\n tag_91:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_92\n swap1\n tag_65\n jump\t// in\n tag_92:\n dup1\n iszero\n tag_93\n jumpi\n dup1\n 0x1f\n lt\n tag_94\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_93)\n tag_94:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_95:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_95\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_93:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2369:2471 function symbol() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6575:7002 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n tag_52:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6668:6672 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6684:6697 address owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6700:6712 _msgSender() */\n tag_97\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6700:6710 _msgSender */\n tag_72\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6700:6712 _msgSender() */\n jump\t// in\n tag_97:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6684:6712 address owner = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6722:6746 uint256 currentAllowance */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6749:6774 allowance(owner, spender) */\n tag_98\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6759:6764 owner */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6766:6773 spender */\n dup7\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6749:6758 allowance */\n tag_61\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6749:6774 allowance(owner, spender) */\n jump\t// in\n tag_98:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6722:6774 uint256 currentAllowance = allowance(owner, spender) */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6812:6827 subtractedValue */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6792:6808 currentAllowance */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6792:6827 currentAllowance >= subtractedValue */\n lt\n iszero\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6784:6869 require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\") */\n tag_99\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_100\n swap1\n tag_101\n jump\t// in\n tag_100:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_99:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6903:6963 _approve(owner, spender, currentAllowance - subtractedValue) */\n tag_102\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6912:6917 owner */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6919:6926 spender */\n dup7\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6947:6962 subtractedValue */\n dup7\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6928:6944 currentAllowance */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6928:6962 currentAllowance - subtractedValue */\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6903:6911 _approve */\n tag_74\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6903:6963 _approve(owner, spender, currentAllowance - subtractedValue) */\n jump\t// in\n tag_102:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6991:6995 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6984:6995 return true */\n swap3\n pop\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6575:7002 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3740:3929 function transfer(address to, uint256 amount) public virtual override returns (bool) {... */\n tag_56:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3819:3823 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3835:3848 address owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3851:3863 _msgSender() */\n tag_104\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3851:3861 _msgSender */\n tag_72\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3851:3863 _msgSender() */\n jump\t// in\n tag_104:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3835:3863 address owner = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3873:3901 _transfer(owner, to, amount) */\n tag_105\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3883:3888 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3890:3892 to */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3894:3900 amount */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3873:3882 _transfer */\n tag_81\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3873:3901 _transfer(owner, to, amount) */\n jump\t// in\n tag_105:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3918:3922 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3911:3922 return true */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3740:3929 function transfer(address to, uint256 amount) public virtual override returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3987:4136 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n tag_61:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4076:4083 uint256 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4102:4113 _allowances */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4102:4120 _allowances[owner] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4114:4119 owner */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4102:4120 _allowances[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4102:4129 _allowances[owner][spender] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4121:4128 spender */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4102:4129 _allowances[owner][spender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4095:4129 return _allowances[owner][spender] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3987:4136 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n tag_72:\n /* \"@openzeppelin/contracts/utils/Context.sol\":693:700 address */\n 0x00\n /* \"@openzeppelin/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"@openzeppelin/contracts/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10457:10797 function _approve(address owner, address spender, uint256 amount) internal virtual {... */\n tag_74:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10575:10576 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10558:10577 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10558:10563 owner */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10558:10577 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10550:10618 require(owner != address(0), \"ERC20: approve from the zero address\") */\n tag_109\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_110\n swap1\n tag_111\n jump\t// in\n tag_110:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_109:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10655:10656 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10636:10657 spender != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10636:10643 spender */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10636:10657 spender != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10628:10696 require(spender != address(0), \"ERC20: approve to the zero address\") */\n tag_112\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_113\n swap1\n tag_114\n jump\t// in\n tag_113:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_112:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10737:10743 amount */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10707:10718 _allowances */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10707:10725 _allowances[owner] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10719:10724 owner */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10707:10725 _allowances[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10707:10734 _allowances[owner][spender] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10726:10733 spender */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10707:10734 _allowances[owner][spender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10707:10743 _allowances[owner][spender] = amount */\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10774:10781 spender */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10758:10790 Approval(owner, spender, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10767:10772 owner */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10758:10790 Approval(owner, spender, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10783:10789 amount */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10758:10790 Approval(owner, spender, amount) */\n mload(0x40)\n tag_115\n swap2\n swap1\n tag_28\n jump\t// in\n tag_115:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10457:10797 function _approve(address owner, address spender, uint256 amount) internal virtual {... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11078:11489 function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {... */\n tag_79:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11178:11202 uint256 currentAllowance */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11205:11230 allowance(owner, spender) */\n tag_117\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11215:11220 owner */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11222:11229 spender */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11205:11214 allowance */\n tag_61\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11205:11230 allowance(owner, spender) */\n jump\t// in\n tag_117:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11178:11230 uint256 currentAllowance = allowance(owner, spender) */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11264:11281 type(uint256).max */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11244:11260 currentAllowance */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11244:11281 currentAllowance != type(uint256).max */\n eq\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11240:11483 if (currentAllowance != type(uint256).max) {... */\n tag_118\n jumpi\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11325:11331 amount */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11305:11321 currentAllowance */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11305:11331 currentAllowance >= amount */\n lt\n iszero\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11297:11365 require(currentAllowance >= amount, \"ERC20: insufficient allowance\") */\n tag_119\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_120\n swap1\n tag_121\n jump\t// in\n tag_120:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_119:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11407:11458 _approve(owner, spender, currentAllowance - amount) */\n tag_122\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11416:11421 owner */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11423:11430 spender */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11451:11457 amount */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11432:11448 currentAllowance */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11432:11457 currentAllowance - amount */\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11407:11415 _approve */\n tag_74\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11407:11458 _approve(owner, spender, currentAllowance - amount) */\n jump\t// in\n tag_122:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11240:11483 if (currentAllowance != type(uint256).max) {... */\n tag_118:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11168:11489 {... */\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11078:11489 function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7456:8244 function _transfer(address from, address to, uint256 amount) internal virtual {... */\n tag_81:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7568:7569 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7552:7570 from != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7552:7556 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7552:7570 from != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7544:7612 require(from != address(0), \"ERC20: transfer from the zero address\") */\n tag_124\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_125\n swap1\n tag_126\n jump\t// in\n tag_125:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_124:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7644:7645 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7630:7646 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7630:7632 to */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7630:7646 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7622:7686 require(to != address(0), \"ERC20: transfer to the zero address\") */\n tag_127\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_128\n swap1\n tag_129\n jump\t// in\n tag_128:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_127:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7697:7735 _beforeTokenTransfer(from, to, amount) */\n tag_130\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7718:7722 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7724:7726 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7728:7734 amount */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7697:7717 _beforeTokenTransfer */\n tag_131\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7697:7735 _beforeTokenTransfer(from, to, amount) */\n jump\t// in\n tag_130:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7746:7765 uint256 fromBalance */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7768:7777 _balances */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7768:7783 _balances[from] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7778:7782 from */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7768:7783 _balances[from] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7746:7783 uint256 fromBalance = _balances[from] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7816:7822 amount */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7801:7812 fromBalance */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7801:7822 fromBalance >= amount */\n lt\n iszero\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7793:7865 require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\") */\n tag_132\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_133\n swap1\n tag_134\n jump\t// in\n tag_133:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_132:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7931:7937 amount */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7917:7928 fromBalance */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7917:7937 fromBalance - amount */\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7899:7908 _balances */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7899:7914 _balances[from] */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7909:7913 from */\n dup7\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7899:7914 _balances[from] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7899:7937 _balances[from] = fromBalance - amount */\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8131:8137 amount */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8114:8123 _balances */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8114:8127 _balances[to] */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8124:8126 to */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8114:8127 _balances[to] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8114:8137 _balances[to] += amount */\n dup3\n dup3\n sload\n add\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8178:8180 to */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8163:8189 Transfer(from, to, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8172:8176 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8163:8189 Transfer(from, to, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8182:8188 amount */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8163:8189 Transfer(from, to, amount) */\n mload(0x40)\n tag_135\n swap2\n swap1\n tag_28\n jump\t// in\n tag_135:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8200:8237 _afterTokenTransfer(from, to, amount) */\n tag_136\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8220:8224 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8226:8228 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8230:8236 amount */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8200:8219 _afterTokenTransfer */\n tag_137\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8200:8237 _afterTokenTransfer(from, to, amount) */\n jump\t// in\n tag_136:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7534:8244 {... */\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7456:8244 function _transfer(address from, address to, uint256 amount) internal virtual {... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":12073:12164 function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} */\n tag_131:\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":12752:12842 function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} */\n tag_137:\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7:106 */\n tag_140:\n /* \"#utility.yul\":59:65 */\n 0x00\n /* \"#utility.yul\":93:98 */\n dup2\n /* \"#utility.yul\":87:99 */\n mload\n /* \"#utility.yul\":77:99 */\n swap1\n pop\n /* \"#utility.yul\":7:106 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":112:281 */\n tag_141:\n /* \"#utility.yul\":196:207 */\n 0x00\n /* \"#utility.yul\":230:236 */\n dup3\n /* \"#utility.yul\":225:228 */\n dup3\n /* \"#utility.yul\":218:237 */\n mstore\n /* \"#utility.yul\":270:274 */\n 0x20\n /* \"#utility.yul\":265:268 */\n dup3\n /* \"#utility.yul\":261:275 */\n add\n /* \"#utility.yul\":246:275 */\n swap1\n pop\n /* \"#utility.yul\":112:281 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":287:533 */\n tag_142:\n /* \"#utility.yul\":368:369 */\n 0x00\n /* \"#utility.yul\":378:491 */\n tag_180:\n /* \"#utility.yul\":392:398 */\n dup4\n /* \"#utility.yul\":389:390 */\n dup2\n /* \"#utility.yul\":386:399 */\n lt\n /* \"#utility.yul\":378:491 */\n iszero\n tag_182\n jumpi\n /* \"#utility.yul\":477:478 */\n dup1\n /* \"#utility.yul\":472:475 */\n dup3\n /* \"#utility.yul\":468:479 */\n add\n /* \"#utility.yul\":462:480 */\n mload\n /* \"#utility.yul\":458:459 */\n dup2\n /* \"#utility.yul\":453:456 */\n dup5\n /* \"#utility.yul\":449:460 */\n add\n /* \"#utility.yul\":442:481 */\n mstore\n /* \"#utility.yul\":414:416 */\n 0x20\n /* \"#utility.yul\":411:412 */\n dup2\n /* \"#utility.yul\":407:417 */\n add\n /* \"#utility.yul\":402:417 */\n swap1\n pop\n /* \"#utility.yul\":378:491 */\n jump(tag_180)\n tag_182:\n /* \"#utility.yul\":525:526 */\n 0x00\n /* \"#utility.yul\":516:522 */\n dup5\n /* \"#utility.yul\":511:514 */\n dup5\n /* \"#utility.yul\":507:523 */\n add\n /* \"#utility.yul\":500:527 */\n mstore\n /* \"#utility.yul\":349:533 */\n pop\n /* \"#utility.yul\":287:533 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":539:641 */\n tag_143:\n /* \"#utility.yul\":580:586 */\n 0x00\n /* \"#utility.yul\":631:633 */\n 0x1f\n /* \"#utility.yul\":627:634 */\n not\n /* \"#utility.yul\":622:624 */\n 0x1f\n /* \"#utility.yul\":615:620 */\n dup4\n /* \"#utility.yul\":611:625 */\n add\n /* \"#utility.yul\":607:635 */\n and\n /* \"#utility.yul\":597:635 */\n swap1\n pop\n /* \"#utility.yul\":539:641 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":647:1024 */\n tag_144:\n /* \"#utility.yul\":735:738 */\n 0x00\n /* \"#utility.yul\":763:802 */\n tag_185\n /* \"#utility.yul\":796:801 */\n dup3\n /* \"#utility.yul\":763:802 */\n tag_140\n jump\t// in\n tag_185:\n /* \"#utility.yul\":818:889 */\n tag_186\n /* \"#utility.yul\":882:888 */\n dup2\n /* \"#utility.yul\":877:880 */\n dup6\n /* \"#utility.yul\":818:889 */\n tag_141\n jump\t// in\n tag_186:\n /* \"#utility.yul\":811:889 */\n swap4\n pop\n /* \"#utility.yul\":898:963 */\n tag_187\n /* \"#utility.yul\":956:962 */\n dup2\n /* \"#utility.yul\":951:954 */\n dup6\n /* \"#utility.yul\":944:948 */\n 0x20\n /* \"#utility.yul\":937:942 */\n dup7\n /* \"#utility.yul\":933:949 */\n add\n /* \"#utility.yul\":898:963 */\n tag_142\n jump\t// in\n tag_187:\n /* \"#utility.yul\":988:1017 */\n tag_188\n /* \"#utility.yul\":1010:1016 */\n dup2\n /* \"#utility.yul\":988:1017 */\n tag_143\n jump\t// in\n tag_188:\n /* \"#utility.yul\":983:986 */\n dup5\n /* \"#utility.yul\":979:1018 */\n add\n /* \"#utility.yul\":972:1018 */\n swap2\n pop\n /* \"#utility.yul\":739:1024 */\n pop\n /* \"#utility.yul\":647:1024 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1030:1343 */\n tag_18:\n /* \"#utility.yul\":1143:1147 */\n 0x00\n /* \"#utility.yul\":1181:1183 */\n 0x20\n /* \"#utility.yul\":1170:1179 */\n dup3\n /* \"#utility.yul\":1166:1184 */\n add\n /* \"#utility.yul\":1158:1184 */\n swap1\n pop\n /* \"#utility.yul\":1230:1239 */\n dup2\n /* \"#utility.yul\":1224:1228 */\n dup2\n /* \"#utility.yul\":1220:1240 */\n sub\n /* \"#utility.yul\":1216:1217 */\n 0x00\n /* \"#utility.yul\":1205:1214 */\n dup4\n /* \"#utility.yul\":1201:1218 */\n add\n /* \"#utility.yul\":1194:1241 */\n mstore\n /* \"#utility.yul\":1258:1336 */\n tag_190\n /* \"#utility.yul\":1331:1335 */\n dup2\n /* \"#utility.yul\":1322:1328 */\n dup5\n /* \"#utility.yul\":1258:1336 */\n tag_144\n jump\t// in\n tag_190:\n /* \"#utility.yul\":1250:1336 */\n swap1\n pop\n /* \"#utility.yul\":1030:1343 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1430:1547 */\n tag_146:\n /* \"#utility.yul\":1539:1540 */\n 0x00\n /* \"#utility.yul\":1536:1537 */\n dup1\n /* \"#utility.yul\":1529:1541 */\n revert\n /* \"#utility.yul\":1676:1802 */\n tag_148:\n /* \"#utility.yul\":1713:1720 */\n 0x00\n /* \"#utility.yul\":1753:1795 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":1746:1751 */\n dup3\n /* \"#utility.yul\":1742:1796 */\n and\n /* \"#utility.yul\":1731:1796 */\n swap1\n pop\n /* \"#utility.yul\":1676:1802 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1808:1904 */\n tag_149:\n /* \"#utility.yul\":1845:1852 */\n 0x00\n /* \"#utility.yul\":1874:1898 */\n tag_196\n /* \"#utility.yul\":1892:1897 */\n dup3\n /* \"#utility.yul\":1874:1898 */\n tag_148\n jump\t// in\n tag_196:\n /* \"#utility.yul\":1863:1898 */\n swap1\n pop\n /* \"#utility.yul\":1808:1904 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1910:2032 */\n tag_150:\n /* \"#utility.yul\":1983:2007 */\n tag_198\n /* \"#utility.yul\":2001:2006 */\n dup2\n /* \"#utility.yul\":1983:2007 */\n tag_149\n jump\t// in\n tag_198:\n /* \"#utility.yul\":1976:1981 */\n dup2\n /* \"#utility.yul\":1973:2008 */\n eq\n /* \"#utility.yul\":1963:2026 */\n tag_199\n jumpi\n /* \"#utility.yul\":2022:2023 */\n 0x00\n /* \"#utility.yul\":2019:2020 */\n dup1\n /* \"#utility.yul\":2012:2024 */\n revert\n /* \"#utility.yul\":1963:2026 */\n tag_199:\n /* \"#utility.yul\":1910:2032 */\n pop\n jump\t// out\n /* \"#utility.yul\":2038:2177 */\n tag_151:\n /* \"#utility.yul\":2084:2089 */\n 0x00\n /* \"#utility.yul\":2122:2128 */\n dup2\n /* \"#utility.yul\":2109:2129 */\n calldataload\n /* \"#utility.yul\":2100:2129 */\n swap1\n pop\n /* \"#utility.yul\":2138:2171 */\n tag_201\n /* \"#utility.yul\":2165:2170 */\n dup2\n /* \"#utility.yul\":2138:2171 */\n tag_150\n jump\t// in\n tag_201:\n /* \"#utility.yul\":2038:2177 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2183:2260 */\n tag_152:\n /* \"#utility.yul\":2220:2227 */\n 0x00\n /* \"#utility.yul\":2249:2254 */\n dup2\n /* \"#utility.yul\":2238:2254 */\n swap1\n pop\n /* \"#utility.yul\":2183:2260 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2266:2388 */\n tag_153:\n /* \"#utility.yul\":2339:2363 */\n tag_204\n /* \"#utility.yul\":2357:2362 */\n dup2\n /* \"#utility.yul\":2339:2363 */\n tag_152\n jump\t// in\n tag_204:\n /* \"#utility.yul\":2332:2337 */\n dup2\n /* \"#utility.yul\":2329:2364 */\n eq\n /* \"#utility.yul\":2319:2382 */\n tag_205\n jumpi\n /* \"#utility.yul\":2378:2379 */\n 0x00\n /* \"#utility.yul\":2375:2376 */\n dup1\n /* \"#utility.yul\":2368:2380 */\n revert\n /* \"#utility.yul\":2319:2382 */\n tag_205:\n /* \"#utility.yul\":2266:2388 */\n pop\n jump\t// out\n /* \"#utility.yul\":2394:2533 */\n tag_154:\n /* \"#utility.yul\":2440:2445 */\n 0x00\n /* \"#utility.yul\":2478:2484 */\n dup2\n /* \"#utility.yul\":2465:2485 */\n calldataload\n /* \"#utility.yul\":2456:2485 */\n swap1\n pop\n /* \"#utility.yul\":2494:2527 */\n tag_207\n /* \"#utility.yul\":2521:2526 */\n dup2\n /* \"#utility.yul\":2494:2527 */\n tag_153\n jump\t// in\n tag_207:\n /* \"#utility.yul\":2394:2533 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2539:3013 */\n tag_21:\n /* \"#utility.yul\":2607:2613 */\n 0x00\n /* \"#utility.yul\":2615:2621 */\n dup1\n /* \"#utility.yul\":2664:2666 */\n 0x40\n /* \"#utility.yul\":2652:2661 */\n dup4\n /* \"#utility.yul\":2643:2650 */\n dup6\n /* \"#utility.yul\":2639:2662 */\n sub\n /* \"#utility.yul\":2635:2667 */\n slt\n /* \"#utility.yul\":2632:2751 */\n iszero\n tag_209\n jumpi\n /* \"#utility.yul\":2670:2749 */\n tag_210\n tag_146\n jump\t// in\n tag_210:\n /* \"#utility.yul\":2632:2751 */\n tag_209:\n /* \"#utility.yul\":2790:2791 */\n 0x00\n /* \"#utility.yul\":2815:2868 */\n tag_211\n /* \"#utility.yul\":2860:2867 */\n dup6\n /* \"#utility.yul\":2851:2857 */\n dup3\n /* \"#utility.yul\":2840:2849 */\n dup7\n /* \"#utility.yul\":2836:2858 */\n add\n /* \"#utility.yul\":2815:2868 */\n tag_151\n jump\t// in\n tag_211:\n /* \"#utility.yul\":2805:2868 */\n swap3\n pop\n /* \"#utility.yul\":2761:2878 */\n pop\n /* \"#utility.yul\":2917:2919 */\n 0x20\n /* \"#utility.yul\":2943:2996 */\n tag_212\n /* \"#utility.yul\":2988:2995 */\n dup6\n /* \"#utility.yul\":2979:2985 */\n dup3\n /* \"#utility.yul\":2968:2977 */\n dup7\n /* \"#utility.yul\":2964:2986 */\n add\n /* \"#utility.yul\":2943:2996 */\n tag_154\n jump\t// in\n tag_212:\n /* \"#utility.yul\":2933:2996 */\n swap2\n pop\n /* \"#utility.yul\":2888:3006 */\n pop\n /* \"#utility.yul\":2539:3013 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3019:3109 */\n tag_155:\n /* \"#utility.yul\":3053:3060 */\n 0x00\n /* \"#utility.yul\":3096:3101 */\n dup2\n /* \"#utility.yul\":3089:3102 */\n iszero\n /* \"#utility.yul\":3082:3103 */\n iszero\n /* \"#utility.yul\":3071:3103 */\n swap1\n pop\n /* \"#utility.yul\":3019:3109 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3115:3224 */\n tag_156:\n /* \"#utility.yul\":3196:3217 */\n tag_215\n /* \"#utility.yul\":3211:3216 */\n dup2\n /* \"#utility.yul\":3196:3217 */\n tag_155\n jump\t// in\n tag_215:\n /* \"#utility.yul\":3191:3194 */\n dup3\n /* \"#utility.yul\":3184:3218 */\n mstore\n /* \"#utility.yul\":3115:3224 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3230:3440 */\n tag_24:\n /* \"#utility.yul\":3317:3321 */\n 0x00\n /* \"#utility.yul\":3355:3357 */\n 0x20\n /* \"#utility.yul\":3344:3353 */\n dup3\n /* \"#utility.yul\":3340:3358 */\n add\n /* \"#utility.yul\":3332:3358 */\n swap1\n pop\n /* \"#utility.yul\":3368:3433 */\n tag_217\n /* \"#utility.yul\":3430:3431 */\n 0x00\n /* \"#utility.yul\":3419:3428 */\n dup4\n /* \"#utility.yul\":3415:3432 */\n add\n /* \"#utility.yul\":3406:3412 */\n dup5\n /* \"#utility.yul\":3368:3433 */\n tag_156\n jump\t// in\n tag_217:\n /* \"#utility.yul\":3230:3440 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3446:3564 */\n tag_157:\n /* \"#utility.yul\":3533:3557 */\n tag_219\n /* \"#utility.yul\":3551:3556 */\n dup2\n /* \"#utility.yul\":3533:3557 */\n tag_152\n jump\t// in\n tag_219:\n /* \"#utility.yul\":3528:3531 */\n dup3\n /* \"#utility.yul\":3521:3558 */\n mstore\n /* \"#utility.yul\":3446:3564 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3570:3792 */\n tag_28:\n /* \"#utility.yul\":3663:3667 */\n 0x00\n /* \"#utility.yul\":3701:3703 */\n 0x20\n /* \"#utility.yul\":3690:3699 */\n dup3\n /* \"#utility.yul\":3686:3704 */\n add\n /* \"#utility.yul\":3678:3704 */\n swap1\n pop\n /* \"#utility.yul\":3714:3785 */\n tag_221\n /* \"#utility.yul\":3782:3783 */\n 0x00\n /* \"#utility.yul\":3771:3780 */\n dup4\n /* \"#utility.yul\":3767:3784 */\n add\n /* \"#utility.yul\":3758:3764 */\n dup5\n /* \"#utility.yul\":3714:3785 */\n tag_157\n jump\t// in\n tag_221:\n /* \"#utility.yul\":3570:3792 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3798:4417 */\n tag_31:\n /* \"#utility.yul\":3875:3881 */\n 0x00\n /* \"#utility.yul\":3883:3889 */\n dup1\n /* \"#utility.yul\":3891:3897 */\n 0x00\n /* \"#utility.yul\":3940:3942 */\n 0x60\n /* \"#utility.yul\":3928:3937 */\n dup5\n /* \"#utility.yul\":3919:3926 */\n dup7\n /* \"#utility.yul\":3915:3938 */\n sub\n /* \"#utility.yul\":3911:3943 */\n slt\n /* \"#utility.yul\":3908:4027 */\n iszero\n tag_223\n jumpi\n /* \"#utility.yul\":3946:4025 */\n tag_224\n tag_146\n jump\t// in\n tag_224:\n /* \"#utility.yul\":3908:4027 */\n tag_223:\n /* \"#utility.yul\":4066:4067 */\n 0x00\n /* \"#utility.yul\":4091:4144 */\n tag_225\n /* \"#utility.yul\":4136:4143 */\n dup7\n /* \"#utility.yul\":4127:4133 */\n dup3\n /* \"#utility.yul\":4116:4125 */\n dup8\n /* \"#utility.yul\":4112:4134 */\n add\n /* \"#utility.yul\":4091:4144 */\n tag_151\n jump\t// in\n tag_225:\n /* \"#utility.yul\":4081:4144 */\n swap4\n pop\n /* \"#utility.yul\":4037:4154 */\n pop\n /* \"#utility.yul\":4193:4195 */\n 0x20\n /* \"#utility.yul\":4219:4272 */\n tag_226\n /* \"#utility.yul\":4264:4271 */\n dup7\n /* \"#utility.yul\":4255:4261 */\n dup3\n /* \"#utility.yul\":4244:4253 */\n dup8\n /* \"#utility.yul\":4240:4262 */\n add\n /* \"#utility.yul\":4219:4272 */\n tag_151\n jump\t// in\n tag_226:\n /* \"#utility.yul\":4209:4272 */\n swap3\n pop\n /* \"#utility.yul\":4164:4282 */\n pop\n /* \"#utility.yul\":4321:4323 */\n 0x40\n /* \"#utility.yul\":4347:4400 */\n tag_227\n /* \"#utility.yul\":4392:4399 */\n dup7\n /* \"#utility.yul\":4383:4389 */\n dup3\n /* \"#utility.yul\":4372:4381 */\n dup8\n /* \"#utility.yul\":4368:4390 */\n add\n /* \"#utility.yul\":4347:4400 */\n tag_154\n jump\t// in\n tag_227:\n /* \"#utility.yul\":4337:4400 */\n swap2\n pop\n /* \"#utility.yul\":4292:4410 */\n pop\n /* \"#utility.yul\":3798:4417 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":4423:4509 */\n tag_158:\n /* \"#utility.yul\":4458:4465 */\n 0x00\n /* \"#utility.yul\":4498:4502 */\n 0xff\n /* \"#utility.yul\":4491:4496 */\n dup3\n /* \"#utility.yul\":4487:4503 */\n and\n /* \"#utility.yul\":4476:4503 */\n swap1\n pop\n /* \"#utility.yul\":4423:4509 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4515:4627 */\n tag_159:\n /* \"#utility.yul\":4598:4620 */\n tag_230\n /* \"#utility.yul\":4614:4619 */\n dup2\n /* \"#utility.yul\":4598:4620 */\n tag_158\n jump\t// in\n tag_230:\n /* \"#utility.yul\":4593:4596 */\n dup3\n /* \"#utility.yul\":4586:4621 */\n mstore\n /* \"#utility.yul\":4515:4627 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4633:4847 */\n tag_37:\n /* \"#utility.yul\":4722:4726 */\n 0x00\n /* \"#utility.yul\":4760:4762 */\n 0x20\n /* \"#utility.yul\":4749:4758 */\n dup3\n /* \"#utility.yul\":4745:4763 */\n add\n /* \"#utility.yul\":4737:4763 */\n swap1\n pop\n /* \"#utility.yul\":4773:4840 */\n tag_232\n /* \"#utility.yul\":4837:4838 */\n 0x00\n /* \"#utility.yul\":4826:4835 */\n dup4\n /* \"#utility.yul\":4822:4839 */\n add\n /* \"#utility.yul\":4813:4819 */\n dup5\n /* \"#utility.yul\":4773:4840 */\n tag_159\n jump\t// in\n tag_232:\n /* \"#utility.yul\":4633:4847 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4853:5182 */\n tag_44:\n /* \"#utility.yul\":4912:4918 */\n 0x00\n /* \"#utility.yul\":4961:4963 */\n 0x20\n /* \"#utility.yul\":4949:4958 */\n dup3\n /* \"#utility.yul\":4940:4947 */\n dup5\n /* \"#utility.yul\":4936:4959 */\n sub\n /* \"#utility.yul\":4932:4964 */\n slt\n /* \"#utility.yul\":4929:5048 */\n iszero\n tag_234\n jumpi\n /* \"#utility.yul\":4967:5046 */\n tag_235\n tag_146\n jump\t// in\n tag_235:\n /* \"#utility.yul\":4929:5048 */\n tag_234:\n /* \"#utility.yul\":5087:5088 */\n 0x00\n /* \"#utility.yul\":5112:5165 */\n tag_236\n /* \"#utility.yul\":5157:5164 */\n dup5\n /* \"#utility.yul\":5148:5154 */\n dup3\n /* \"#utility.yul\":5137:5146 */\n dup6\n /* \"#utility.yul\":5133:5155 */\n add\n /* \"#utility.yul\":5112:5165 */\n tag_151\n jump\t// in\n tag_236:\n /* \"#utility.yul\":5102:5165 */\n swap2\n pop\n /* \"#utility.yul\":5058:5175 */\n pop\n /* \"#utility.yul\":4853:5182 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5188:5662 */\n tag_60:\n /* \"#utility.yul\":5256:5262 */\n 0x00\n /* \"#utility.yul\":5264:5270 */\n dup1\n /* \"#utility.yul\":5313:5315 */\n 0x40\n /* \"#utility.yul\":5301:5310 */\n dup4\n /* \"#utility.yul\":5292:5299 */\n dup6\n /* \"#utility.yul\":5288:5311 */\n sub\n /* \"#utility.yul\":5284:5316 */\n slt\n /* \"#utility.yul\":5281:5400 */\n iszero\n tag_238\n jumpi\n /* \"#utility.yul\":5319:5398 */\n tag_239\n tag_146\n jump\t// in\n tag_239:\n /* \"#utility.yul\":5281:5400 */\n tag_238:\n /* \"#utility.yul\":5439:5440 */\n 0x00\n /* \"#utility.yul\":5464:5517 */\n tag_240\n /* \"#utility.yul\":5509:5516 */\n dup6\n /* \"#utility.yul\":5500:5506 */\n dup3\n /* \"#utility.yul\":5489:5498 */\n dup7\n /* \"#utility.yul\":5485:5507 */\n add\n /* \"#utility.yul\":5464:5517 */\n tag_151\n jump\t// in\n tag_240:\n /* \"#utility.yul\":5454:5517 */\n swap3\n pop\n /* \"#utility.yul\":5410:5527 */\n pop\n /* \"#utility.yul\":5566:5568 */\n 0x20\n /* \"#utility.yul\":5592:5645 */\n tag_241\n /* \"#utility.yul\":5637:5644 */\n dup6\n /* \"#utility.yul\":5628:5634 */\n dup3\n /* \"#utility.yul\":5617:5626 */\n dup7\n /* \"#utility.yul\":5613:5635 */\n add\n /* \"#utility.yul\":5592:5645 */\n tag_151\n jump\t// in\n tag_241:\n /* \"#utility.yul\":5582:5645 */\n swap2\n pop\n /* \"#utility.yul\":5537:5655 */\n pop\n /* \"#utility.yul\":5188:5662 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5668:5848 */\n tag_160:\n /* \"#utility.yul\":5716:5793 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":5713:5714 */\n 0x00\n /* \"#utility.yul\":5706:5794 */\n mstore\n /* \"#utility.yul\":5813:5817 */\n 0x22\n /* \"#utility.yul\":5810:5811 */\n 0x04\n /* \"#utility.yul\":5803:5818 */\n mstore\n /* \"#utility.yul\":5837:5841 */\n 0x24\n /* \"#utility.yul\":5834:5835 */\n 0x00\n /* \"#utility.yul\":5827:5842 */\n revert\n /* \"#utility.yul\":5854:6174 */\n tag_65:\n /* \"#utility.yul\":5898:5904 */\n 0x00\n /* \"#utility.yul\":5935:5936 */\n 0x02\n /* \"#utility.yul\":5929:5933 */\n dup3\n /* \"#utility.yul\":5925:5937 */\n div\n /* \"#utility.yul\":5915:5937 */\n swap1\n pop\n /* \"#utility.yul\":5982:5983 */\n 0x01\n /* \"#utility.yul\":5976:5980 */\n dup3\n /* \"#utility.yul\":5972:5984 */\n and\n /* \"#utility.yul\":6003:6021 */\n dup1\n /* \"#utility.yul\":5993:6074 */\n tag_244\n jumpi\n /* \"#utility.yul\":6059:6063 */\n 0x7f\n /* \"#utility.yul\":6051:6057 */\n dup3\n /* \"#utility.yul\":6047:6064 */\n and\n /* \"#utility.yul\":6037:6064 */\n swap2\n pop\n /* \"#utility.yul\":5993:6074 */\n tag_244:\n /* \"#utility.yul\":6121:6123 */\n 0x20\n /* \"#utility.yul\":6113:6119 */\n dup3\n /* \"#utility.yul\":6110:6124 */\n lt\n /* \"#utility.yul\":6090:6108 */\n dup2\n /* \"#utility.yul\":6087:6125 */\n sub\n /* \"#utility.yul\":6084:6168 */\n tag_245\n jumpi\n /* \"#utility.yul\":6140:6158 */\n tag_246\n tag_160\n jump\t// in\n tag_246:\n /* \"#utility.yul\":6084:6168 */\n tag_245:\n /* \"#utility.yul\":5905:6174 */\n pop\n /* \"#utility.yul\":5854:6174 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6180:6360 */\n tag_161:\n /* \"#utility.yul\":6228:6305 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6225:6226 */\n 0x00\n /* \"#utility.yul\":6218:6306 */\n mstore\n /* \"#utility.yul\":6325:6329 */\n 0x11\n /* \"#utility.yul\":6322:6323 */\n 0x04\n /* \"#utility.yul\":6315:6330 */\n mstore\n /* \"#utility.yul\":6349:6353 */\n 0x24\n /* \"#utility.yul\":6346:6347 */\n 0x00\n /* \"#utility.yul\":6339:6354 */\n revert\n /* \"#utility.yul\":6366:6557 */\n tag_88:\n /* \"#utility.yul\":6406:6409 */\n 0x00\n /* \"#utility.yul\":6425:6445 */\n tag_249\n /* \"#utility.yul\":6443:6444 */\n dup3\n /* \"#utility.yul\":6425:6445 */\n tag_152\n jump\t// in\n tag_249:\n /* \"#utility.yul\":6420:6445 */\n swap2\n pop\n /* \"#utility.yul\":6459:6479 */\n tag_250\n /* \"#utility.yul\":6477:6478 */\n dup4\n /* \"#utility.yul\":6459:6479 */\n tag_152\n jump\t// in\n tag_250:\n /* \"#utility.yul\":6454:6479 */\n swap3\n pop\n /* \"#utility.yul\":6502:6503 */\n dup3\n /* \"#utility.yul\":6499:6500 */\n dup3\n /* \"#utility.yul\":6495:6504 */\n add\n /* \"#utility.yul\":6488:6504 */\n swap1\n pop\n /* \"#utility.yul\":6523:6526 */\n dup1\n /* \"#utility.yul\":6520:6521 */\n dup3\n /* \"#utility.yul\":6517:6527 */\n gt\n /* \"#utility.yul\":6514:6550 */\n iszero\n tag_251\n jumpi\n /* \"#utility.yul\":6530:6548 */\n tag_252\n tag_161\n jump\t// in\n tag_252:\n /* \"#utility.yul\":6514:6550 */\n tag_251:\n /* \"#utility.yul\":6366:6557 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6563:6787 */\n tag_162:\n /* \"#utility.yul\":6703:6737 */\n 0x45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77\n /* \"#utility.yul\":6699:6700 */\n 0x00\n /* \"#utility.yul\":6691:6697 */\n dup3\n /* \"#utility.yul\":6687:6701 */\n add\n /* \"#utility.yul\":6680:6738 */\n mstore\n /* \"#utility.yul\":6772:6779 */\n 0x207a65726f000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6767:6769 */\n 0x20\n /* \"#utility.yul\":6759:6765 */\n dup3\n /* \"#utility.yul\":6755:6770 */\n add\n /* \"#utility.yul\":6748:6780 */\n mstore\n /* \"#utility.yul\":6563:6787 */\n pop\n jump\t// out\n /* \"#utility.yul\":6793:7159 */\n tag_163:\n /* \"#utility.yul\":6935:6938 */\n 0x00\n /* \"#utility.yul\":6956:7023 */\n tag_255\n /* \"#utility.yul\":7020:7022 */\n 0x25\n /* \"#utility.yul\":7015:7018 */\n dup4\n /* \"#utility.yul\":6956:7023 */\n tag_141\n jump\t// in\n tag_255:\n /* \"#utility.yul\":6949:7023 */\n swap2\n pop\n /* \"#utility.yul\":7032:7125 */\n tag_256\n /* \"#utility.yul\":7121:7124 */\n dup3\n /* \"#utility.yul\":7032:7125 */\n tag_162\n jump\t// in\n tag_256:\n /* \"#utility.yul\":7150:7152 */\n 0x40\n /* \"#utility.yul\":7145:7148 */\n dup3\n /* \"#utility.yul\":7141:7153 */\n add\n /* \"#utility.yul\":7134:7153 */\n swap1\n pop\n /* \"#utility.yul\":6793:7159 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7165:7584 */\n tag_101:\n /* \"#utility.yul\":7331:7335 */\n 0x00\n /* \"#utility.yul\":7369:7371 */\n 0x20\n /* \"#utility.yul\":7358:7367 */\n dup3\n /* \"#utility.yul\":7354:7372 */\n add\n /* \"#utility.yul\":7346:7372 */\n swap1\n pop\n /* \"#utility.yul\":7418:7427 */\n dup2\n /* \"#utility.yul\":7412:7416 */\n dup2\n /* \"#utility.yul\":7408:7428 */\n sub\n /* \"#utility.yul\":7404:7405 */\n 0x00\n /* \"#utility.yul\":7393:7402 */\n dup4\n /* \"#utility.yul\":7389:7406 */\n add\n /* \"#utility.yul\":7382:7429 */\n mstore\n /* \"#utility.yul\":7446:7577 */\n tag_258\n /* \"#utility.yul\":7572:7576 */\n dup2\n /* \"#utility.yul\":7446:7577 */\n tag_163\n jump\t// in\n tag_258:\n /* \"#utility.yul\":7438:7577 */\n swap1\n pop\n /* \"#utility.yul\":7165:7584 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7590:7813 */\n tag_164:\n /* \"#utility.yul\":7730:7764 */\n 0x45524332303a20617070726f76652066726f6d20746865207a65726f20616464\n /* \"#utility.yul\":7726:7727 */\n 0x00\n /* \"#utility.yul\":7718:7724 */\n dup3\n /* \"#utility.yul\":7714:7728 */\n add\n /* \"#utility.yul\":7707:7765 */\n mstore\n /* \"#utility.yul\":7799:7805 */\n 0x7265737300000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":7794:7796 */\n 0x20\n /* \"#utility.yul\":7786:7792 */\n dup3\n /* \"#utility.yul\":7782:7797 */\n add\n /* \"#utility.yul\":7775:7806 */\n mstore\n /* \"#utility.yul\":7590:7813 */\n pop\n jump\t// out\n /* \"#utility.yul\":7819:8185 */\n tag_165:\n /* \"#utility.yul\":7961:7964 */\n 0x00\n /* \"#utility.yul\":7982:8049 */\n tag_261\n /* \"#utility.yul\":8046:8048 */\n 0x24\n /* \"#utility.yul\":8041:8044 */\n dup4\n /* \"#utility.yul\":7982:8049 */\n tag_141\n jump\t// in\n tag_261:\n /* \"#utility.yul\":7975:8049 */\n swap2\n pop\n /* \"#utility.yul\":8058:8151 */\n tag_262\n /* \"#utility.yul\":8147:8150 */\n dup3\n /* \"#utility.yul\":8058:8151 */\n tag_164\n jump\t// in\n tag_262:\n /* \"#utility.yul\":8176:8178 */\n 0x40\n /* \"#utility.yul\":8171:8174 */\n dup3\n /* \"#utility.yul\":8167:8179 */\n add\n /* \"#utility.yul\":8160:8179 */\n swap1\n pop\n /* \"#utility.yul\":7819:8185 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8191:8610 */\n tag_111:\n /* \"#utility.yul\":8357:8361 */\n 0x00\n /* \"#utility.yul\":8395:8397 */\n 0x20\n /* \"#utility.yul\":8384:8393 */\n dup3\n /* \"#utility.yul\":8380:8398 */\n add\n /* \"#utility.yul\":8372:8398 */\n swap1\n pop\n /* \"#utility.yul\":8444:8453 */\n dup2\n /* \"#utility.yul\":8438:8442 */\n dup2\n /* \"#utility.yul\":8434:8454 */\n sub\n /* \"#utility.yul\":8430:8431 */\n 0x00\n /* \"#utility.yul\":8419:8428 */\n dup4\n /* \"#utility.yul\":8415:8432 */\n add\n /* \"#utility.yul\":8408:8455 */\n mstore\n /* \"#utility.yul\":8472:8603 */\n tag_264\n /* \"#utility.yul\":8598:8602 */\n dup2\n /* \"#utility.yul\":8472:8603 */\n tag_165\n jump\t// in\n tag_264:\n /* \"#utility.yul\":8464:8603 */\n swap1\n pop\n /* \"#utility.yul\":8191:8610 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8616:8837 */\n tag_166:\n /* \"#utility.yul\":8756:8790 */\n 0x45524332303a20617070726f766520746f20746865207a65726f206164647265\n /* \"#utility.yul\":8752:8753 */\n 0x00\n /* \"#utility.yul\":8744:8750 */\n dup3\n /* \"#utility.yul\":8740:8754 */\n add\n /* \"#utility.yul\":8733:8791 */\n mstore\n /* \"#utility.yul\":8825:8829 */\n 0x7373000000000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":8820:8822 */\n 0x20\n /* \"#utility.yul\":8812:8818 */\n dup3\n /* \"#utility.yul\":8808:8823 */\n add\n /* \"#utility.yul\":8801:8830 */\n mstore\n /* \"#utility.yul\":8616:8837 */\n pop\n jump\t// out\n /* \"#utility.yul\":8843:9209 */\n tag_167:\n /* \"#utility.yul\":8985:8988 */\n 0x00\n /* \"#utility.yul\":9006:9073 */\n tag_267\n /* \"#utility.yul\":9070:9072 */\n 0x22\n /* \"#utility.yul\":9065:9068 */\n dup4\n /* \"#utility.yul\":9006:9073 */\n tag_141\n jump\t// in\n tag_267:\n /* \"#utility.yul\":8999:9073 */\n swap2\n pop\n /* \"#utility.yul\":9082:9175 */\n tag_268\n /* \"#utility.yul\":9171:9174 */\n dup3\n /* \"#utility.yul\":9082:9175 */\n tag_166\n jump\t// in\n tag_268:\n /* \"#utility.yul\":9200:9202 */\n 0x40\n /* \"#utility.yul\":9195:9198 */\n dup3\n /* \"#utility.yul\":9191:9203 */\n add\n /* \"#utility.yul\":9184:9203 */\n swap1\n pop\n /* \"#utility.yul\":8843:9209 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9215:9634 */\n tag_114:\n /* \"#utility.yul\":9381:9385 */\n 0x00\n /* \"#utility.yul\":9419:9421 */\n 0x20\n /* \"#utility.yul\":9408:9417 */\n dup3\n /* \"#utility.yul\":9404:9422 */\n add\n /* \"#utility.yul\":9396:9422 */\n swap1\n pop\n /* \"#utility.yul\":9468:9477 */\n dup2\n /* \"#utility.yul\":9462:9466 */\n dup2\n /* \"#utility.yul\":9458:9478 */\n sub\n /* \"#utility.yul\":9454:9455 */\n 0x00\n /* \"#utility.yul\":9443:9452 */\n dup4\n /* \"#utility.yul\":9439:9456 */\n add\n /* \"#utility.yul\":9432:9479 */\n mstore\n /* \"#utility.yul\":9496:9627 */\n tag_270\n /* \"#utility.yul\":9622:9626 */\n dup2\n /* \"#utility.yul\":9496:9627 */\n tag_167\n jump\t// in\n tag_270:\n /* \"#utility.yul\":9488:9627 */\n swap1\n pop\n /* \"#utility.yul\":9215:9634 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9640:9819 */\n tag_168:\n /* \"#utility.yul\":9780:9811 */\n 0x45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000\n /* \"#utility.yul\":9776:9777 */\n 0x00\n /* \"#utility.yul\":9768:9774 */\n dup3\n /* \"#utility.yul\":9764:9778 */\n add\n /* \"#utility.yul\":9757:9812 */\n mstore\n /* \"#utility.yul\":9640:9819 */\n pop\n jump\t// out\n /* \"#utility.yul\":9825:10191 */\n tag_169:\n /* \"#utility.yul\":9967:9970 */\n 0x00\n /* \"#utility.yul\":9988:10055 */\n tag_273\n /* \"#utility.yul\":10052:10054 */\n 0x1d\n /* \"#utility.yul\":10047:10050 */\n dup4\n /* \"#utility.yul\":9988:10055 */\n tag_141\n jump\t// in\n tag_273:\n /* \"#utility.yul\":9981:10055 */\n swap2\n pop\n /* \"#utility.yul\":10064:10157 */\n tag_274\n /* \"#utility.yul\":10153:10156 */\n dup3\n /* \"#utility.yul\":10064:10157 */\n tag_168\n jump\t// in\n tag_274:\n /* \"#utility.yul\":10182:10184 */\n 0x20\n /* \"#utility.yul\":10177:10180 */\n dup3\n /* \"#utility.yul\":10173:10185 */\n add\n /* \"#utility.yul\":10166:10185 */\n swap1\n pop\n /* \"#utility.yul\":9825:10191 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10197:10616 */\n tag_121:\n /* \"#utility.yul\":10363:10367 */\n 0x00\n /* \"#utility.yul\":10401:10403 */\n 0x20\n /* \"#utility.yul\":10390:10399 */\n dup3\n /* \"#utility.yul\":10386:10404 */\n add\n /* \"#utility.yul\":10378:10404 */\n swap1\n pop\n /* \"#utility.yul\":10450:10459 */\n dup2\n /* \"#utility.yul\":10444:10448 */\n dup2\n /* \"#utility.yul\":10440:10460 */\n sub\n /* \"#utility.yul\":10436:10437 */\n 0x00\n /* \"#utility.yul\":10425:10434 */\n dup4\n /* \"#utility.yul\":10421:10438 */\n add\n /* \"#utility.yul\":10414:10461 */\n mstore\n /* \"#utility.yul\":10478:10609 */\n tag_276\n /* \"#utility.yul\":10604:10608 */\n dup2\n /* \"#utility.yul\":10478:10609 */\n tag_169\n jump\t// in\n tag_276:\n /* \"#utility.yul\":10470:10609 */\n swap1\n pop\n /* \"#utility.yul\":10197:10616 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10622:10846 */\n tag_170:\n /* \"#utility.yul\":10762:10796 */\n 0x45524332303a207472616e736665722066726f6d20746865207a65726f206164\n /* \"#utility.yul\":10758:10759 */\n 0x00\n /* \"#utility.yul\":10750:10756 */\n dup3\n /* \"#utility.yul\":10746:10760 */\n add\n /* \"#utility.yul\":10739:10797 */\n mstore\n /* \"#utility.yul\":10831:10838 */\n 0x6472657373000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":10826:10828 */\n 0x20\n /* \"#utility.yul\":10818:10824 */\n dup3\n /* \"#utility.yul\":10814:10829 */\n add\n /* \"#utility.yul\":10807:10839 */\n mstore\n /* \"#utility.yul\":10622:10846 */\n pop\n jump\t// out\n /* \"#utility.yul\":10852:11218 */\n tag_171:\n /* \"#utility.yul\":10994:10997 */\n 0x00\n /* \"#utility.yul\":11015:11082 */\n tag_279\n /* \"#utility.yul\":11079:11081 */\n 0x25\n /* \"#utility.yul\":11074:11077 */\n dup4\n /* \"#utility.yul\":11015:11082 */\n tag_141\n jump\t// in\n tag_279:\n /* \"#utility.yul\":11008:11082 */\n swap2\n pop\n /* \"#utility.yul\":11091:11184 */\n tag_280\n /* \"#utility.yul\":11180:11183 */\n dup3\n /* \"#utility.yul\":11091:11184 */\n tag_170\n jump\t// in\n tag_280:\n /* \"#utility.yul\":11209:11211 */\n 0x40\n /* \"#utility.yul\":11204:11207 */\n dup3\n /* \"#utility.yul\":11200:11212 */\n add\n /* \"#utility.yul\":11193:11212 */\n swap1\n pop\n /* \"#utility.yul\":10852:11218 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11224:11643 */\n tag_126:\n /* \"#utility.yul\":11390:11394 */\n 0x00\n /* \"#utility.yul\":11428:11430 */\n 0x20\n /* \"#utility.yul\":11417:11426 */\n dup3\n /* \"#utility.yul\":11413:11431 */\n add\n /* \"#utility.yul\":11405:11431 */\n swap1\n pop\n /* \"#utility.yul\":11477:11486 */\n dup2\n /* \"#utility.yul\":11471:11475 */\n dup2\n /* \"#utility.yul\":11467:11487 */\n sub\n /* \"#utility.yul\":11463:11464 */\n 0x00\n /* \"#utility.yul\":11452:11461 */\n dup4\n /* \"#utility.yul\":11448:11465 */\n add\n /* \"#utility.yul\":11441:11488 */\n mstore\n /* \"#utility.yul\":11505:11636 */\n tag_282\n /* \"#utility.yul\":11631:11635 */\n dup2\n /* \"#utility.yul\":11505:11636 */\n tag_171\n jump\t// in\n tag_282:\n /* \"#utility.yul\":11497:11636 */\n swap1\n pop\n /* \"#utility.yul\":11224:11643 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11649:11871 */\n tag_172:\n /* \"#utility.yul\":11789:11823 */\n 0x45524332303a207472616e7366657220746f20746865207a65726f2061646472\n /* \"#utility.yul\":11785:11786 */\n 0x00\n /* \"#utility.yul\":11777:11783 */\n dup3\n /* \"#utility.yul\":11773:11787 */\n add\n /* \"#utility.yul\":11766:11824 */\n mstore\n /* \"#utility.yul\":11858:11863 */\n 0x6573730000000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":11853:11855 */\n 0x20\n /* \"#utility.yul\":11845:11851 */\n dup3\n /* \"#utility.yul\":11841:11856 */\n add\n /* \"#utility.yul\":11834:11864 */\n mstore\n /* \"#utility.yul\":11649:11871 */\n pop\n jump\t// out\n /* \"#utility.yul\":11877:12243 */\n tag_173:\n /* \"#utility.yul\":12019:12022 */\n 0x00\n /* \"#utility.yul\":12040:12107 */\n tag_285\n /* \"#utility.yul\":12104:12106 */\n 0x23\n /* \"#utility.yul\":12099:12102 */\n dup4\n /* \"#utility.yul\":12040:12107 */\n tag_141\n jump\t// in\n tag_285:\n /* \"#utility.yul\":12033:12107 */\n swap2\n pop\n /* \"#utility.yul\":12116:12209 */\n tag_286\n /* \"#utility.yul\":12205:12208 */\n dup3\n /* \"#utility.yul\":12116:12209 */\n tag_172\n jump\t// in\n tag_286:\n /* \"#utility.yul\":12234:12236 */\n 0x40\n /* \"#utility.yul\":12229:12232 */\n dup3\n /* \"#utility.yul\":12225:12237 */\n add\n /* \"#utility.yul\":12218:12237 */\n swap1\n pop\n /* \"#utility.yul\":11877:12243 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":12249:12668 */\n tag_129:\n /* \"#utility.yul\":12415:12419 */\n 0x00\n /* \"#utility.yul\":12453:12455 */\n 0x20\n /* \"#utility.yul\":12442:12451 */\n dup3\n /* \"#utility.yul\":12438:12456 */\n add\n /* \"#utility.yul\":12430:12456 */\n swap1\n pop\n /* \"#utility.yul\":12502:12511 */\n dup2\n /* \"#utility.yul\":12496:12500 */\n dup2\n /* \"#utility.yul\":12492:12512 */\n sub\n /* \"#utility.yul\":12488:12489 */\n 0x00\n /* \"#utility.yul\":12477:12486 */\n dup4\n /* \"#utility.yul\":12473:12490 */\n add\n /* \"#utility.yul\":12466:12513 */\n mstore\n /* \"#utility.yul\":12530:12661 */\n tag_288\n /* \"#utility.yul\":12656:12660 */\n dup2\n /* \"#utility.yul\":12530:12661 */\n tag_173\n jump\t// in\n tag_288:\n /* \"#utility.yul\":12522:12661 */\n swap1\n pop\n /* \"#utility.yul\":12249:12668 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":12674:12899 */\n tag_174:\n /* \"#utility.yul\":12814:12848 */\n 0x45524332303a207472616e7366657220616d6f756e7420657863656564732062\n /* \"#utility.yul\":12810:12811 */\n 0x00\n /* \"#utility.yul\":12802:12808 */\n dup3\n /* \"#utility.yul\":12798:12812 */\n add\n /* \"#utility.yul\":12791:12849 */\n mstore\n /* \"#utility.yul\":12883:12891 */\n 0x616c616e63650000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":12878:12880 */\n 0x20\n /* \"#utility.yul\":12870:12876 */\n dup3\n /* \"#utility.yul\":12866:12881 */\n add\n /* \"#utility.yul\":12859:12892 */\n mstore\n /* \"#utility.yul\":12674:12899 */\n pop\n jump\t// out\n /* \"#utility.yul\":12905:13271 */\n tag_175:\n /* \"#utility.yul\":13047:13050 */\n 0x00\n /* \"#utility.yul\":13068:13135 */\n tag_291\n /* \"#utility.yul\":13132:13134 */\n 0x26\n /* \"#utility.yul\":13127:13130 */\n dup4\n /* \"#utility.yul\":13068:13135 */\n tag_141\n jump\t// in\n tag_291:\n /* \"#utility.yul\":13061:13135 */\n swap2\n pop\n /* \"#utility.yul\":13144:13237 */\n tag_292\n /* \"#utility.yul\":13233:13236 */\n dup3\n /* \"#utility.yul\":13144:13237 */\n tag_174\n jump\t// in\n tag_292:\n /* \"#utility.yul\":13262:13264 */\n 0x40\n /* \"#utility.yul\":13257:13260 */\n dup3\n /* \"#utility.yul\":13253:13265 */\n add\n /* \"#utility.yul\":13246:13265 */\n swap1\n pop\n /* \"#utility.yul\":12905:13271 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":13277:13696 */\n tag_134:\n /* \"#utility.yul\":13443:13447 */\n 0x00\n /* \"#utility.yul\":13481:13483 */\n 0x20\n /* \"#utility.yul\":13470:13479 */\n dup3\n /* \"#utility.yul\":13466:13484 */\n add\n /* \"#utility.yul\":13458:13484 */\n swap1\n pop\n /* \"#utility.yul\":13530:13539 */\n dup2\n /* \"#utility.yul\":13524:13528 */\n dup2\n /* \"#utility.yul\":13520:13540 */\n sub\n /* \"#utility.yul\":13516:13517 */\n 0x00\n /* \"#utility.yul\":13505:13514 */\n dup4\n /* \"#utility.yul\":13501:13518 */\n add\n /* \"#utility.yul\":13494:13541 */\n mstore\n /* \"#utility.yul\":13558:13689 */\n tag_294\n /* \"#utility.yul\":13684:13688 */\n dup2\n /* \"#utility.yul\":13558:13689 */\n tag_175\n jump\t// in\n tag_294:\n /* \"#utility.yul\":13550:13689 */\n swap1\n pop\n /* \"#utility.yul\":13277:13696 */\n swap2\n swap1\n pop\n jump\t// out\n\n auxdata: 0xa2646970667358221220183ff4efe215f2dbeaa29ef53e289296d853a80978fc79c1323c24229aa81aae64736f6c63430008140033\n}\n", + "bytecode": { + "functionDebugData": { + "@_157": { + "entryPoint": null, + "id": 157, + "parameterSlots": 2, + "returnSlots": 0 + }, + "abi_decode_available_length_t_string_memory_ptr_fromMemory": { + "entryPoint": 376, + "id": null, + "parameterSlots": 3, + "returnSlots": 1 + }, + "abi_decode_t_string_memory_ptr_fromMemory": { + "entryPoint": 451, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": { + "entryPoint": 502, + "id": null, + "parameterSlots": 2, + "returnSlots": 2 + }, + "allocate_memory": { + "entryPoint": 247, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "allocate_unbounded": { + "entryPoint": 99, + "id": null, + "parameterSlots": 0, + "returnSlots": 1 + }, + "array_allocation_size_t_string_memory_ptr": { + "entryPoint": 278, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "array_dataslot_t_string_storage": { + "entryPoint": 746, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "array_length_t_string_memory_ptr": { + "entryPoint": 635, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "clean_up_bytearray_end_slots_t_string_storage": { + "entryPoint": 1067, + "id": null, + "parameterSlots": 3, + "returnSlots": 0 + }, + "cleanup_t_uint256": { + "entryPoint": 882, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "clear_storage_range_t_bytes1": { + "entryPoint": 1028, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "convert_t_uint256_to_t_uint256": { + "entryPoint": 902, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": { + "entryPoint": 1222, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "copy_memory_to_memory_with_cleanup": { + "entryPoint": 332, + "id": null, + "parameterSlots": 3, + "returnSlots": 0 + }, + "divide_by_32_ceil": { + "entryPoint": 767, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "extract_byte_array_length": { + "entryPoint": 693, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "extract_used_part_and_set_length_of_short_byte_array": { + "entryPoint": 1192, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "finalize_allocation": { + "entryPoint": 193, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "identity": { + "entryPoint": 892, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "mask_bytes_dynamic": { + "entryPoint": 1160, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "panic_error_0x22": { + "entryPoint": 646, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "panic_error_0x41": { + "entryPoint": 146, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "prepare_store_t_uint256": { + "entryPoint": 942, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": { + "entryPoint": 119, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": { + "entryPoint": 124, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": { + "entryPoint": 114, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": { + "entryPoint": 109, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "round_up_to_mul_of_32": { + "entryPoint": 129, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "shift_left_dynamic": { + "entryPoint": 783, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "shift_right_unsigned_dynamic": { + "entryPoint": 1147, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "storage_set_to_zero_t_uint256": { + "entryPoint": 1000, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "update_byte_slice_dynamic32": { + "entryPoint": 796, + "id": null, + "parameterSlots": 3, + "returnSlots": 1 + }, + "update_storage_value_t_uint256_to_t_uint256": { + "entryPoint": 952, + "id": null, + "parameterSlots": 3, + "returnSlots": 0 + }, + "zero_value_for_split_t_uint256": { + "entryPoint": 995, + "id": null, + "parameterSlots": 0, + "returnSlots": 1 + } + }, + "generatedSources": [ + { + "ast": { + "nodeType": "YulBlock", + "src": "0:8574:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "47:35:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "57:19:6", + "value": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "73:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "67:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "67:9:6" + }, + "variableNames": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "57:6:6" + } + ] + } + ] + }, + "name": "allocate_unbounded", + "nodeType": "YulFunctionDefinition", + "returnVariables": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "40:6:6", + "type": "" + } + ], + "src": "7:75:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "177:28:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "194:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "197:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "187:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "187:12:6" + }, + "nodeType": "YulExpressionStatement", + "src": "187:12:6" + } + ] + }, + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulFunctionDefinition", + "src": "88:117:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "300:28:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "317:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "320:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "310:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "310:12:6" + }, + "nodeType": "YulExpressionStatement", + "src": "310:12:6" + } + ] + }, + "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", + "nodeType": "YulFunctionDefinition", + "src": "211:117:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "423:28:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "440:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "443:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "433:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "433:12:6" + }, + "nodeType": "YulExpressionStatement", + "src": "433:12:6" + } + ] + }, + "name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", + "nodeType": "YulFunctionDefinition", + "src": "334:117:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "546:28:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "563:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "566:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "556:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "556:12:6" + }, + "nodeType": "YulExpressionStatement", + "src": "556:12:6" + } + ] + }, + "name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae", + "nodeType": "YulFunctionDefinition", + "src": "457:117:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "628:54:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "638:38:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "656:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "663:2:6", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "652:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "652:14:6" + }, + { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "672:2:6", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "not", + "nodeType": "YulIdentifier", + "src": "668:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "668:7:6" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "648:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "648:28:6" + }, + "variableNames": [ + { + "name": "result", + "nodeType": "YulIdentifier", + "src": "638:6:6" + } + ] + } + ] + }, + "name": "round_up_to_mul_of_32", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "611:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "result", + "nodeType": "YulTypedName", + "src": "621:6:6", + "type": "" + } + ], + "src": "580:102:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "716:152:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "733:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "736:77:6", + "type": "", + "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "726:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "726:88:6" + }, + "nodeType": "YulExpressionStatement", + "src": "726:88:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "830:1:6", + "type": "", + "value": "4" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "833:4:6", + "type": "", + "value": "0x41" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "823:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "823:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "823:15:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "854:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "857:4:6", + "type": "", + "value": "0x24" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "847:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "847:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "847:15:6" + } + ] + }, + "name": "panic_error_0x41", + "nodeType": "YulFunctionDefinition", + "src": "688:180:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "917:238:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "927:58:6", + "value": { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "949:6:6" + }, + { + "arguments": [ + { + "name": "size", + "nodeType": "YulIdentifier", + "src": "979:4:6" + } + ], + "functionName": { + "name": "round_up_to_mul_of_32", + "nodeType": "YulIdentifier", + "src": "957:21:6" + }, + "nodeType": "YulFunctionCall", + "src": "957:27:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "945:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "945:40:6" + }, + "variables": [ + { + "name": "newFreePtr", + "nodeType": "YulTypedName", + "src": "931:10:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1096:22:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "panic_error_0x41", + "nodeType": "YulIdentifier", + "src": "1098:16:6" + }, + "nodeType": "YulFunctionCall", + "src": "1098:18:6" + }, + "nodeType": "YulExpressionStatement", + "src": "1098:18:6" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "newFreePtr", + "nodeType": "YulIdentifier", + "src": "1039:10:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1051:18:6", + "type": "", + "value": "0xffffffffffffffff" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "1036:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "1036:34:6" + }, + { + "arguments": [ + { + "name": "newFreePtr", + "nodeType": "YulIdentifier", + "src": "1075:10:6" + }, + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "1087:6:6" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "1072:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "1072:22:6" + } + ], + "functionName": { + "name": "or", + "nodeType": "YulIdentifier", + "src": "1033:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "1033:62:6" + }, + "nodeType": "YulIf", + "src": "1030:88:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1134:2:6", + "type": "", + "value": "64" + }, + { + "name": "newFreePtr", + "nodeType": "YulIdentifier", + "src": "1138:10:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "1127:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "1127:22:6" + }, + "nodeType": "YulExpressionStatement", + "src": "1127:22:6" + } + ] + }, + "name": "finalize_allocation", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "903:6:6", + "type": "" + }, + { + "name": "size", + "nodeType": "YulTypedName", + "src": "911:4:6", + "type": "" + } + ], + "src": "874:281:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1202:88:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1212:30:6", + "value": { + "arguments": [], + "functionName": { + "name": "allocate_unbounded", + "nodeType": "YulIdentifier", + "src": "1222:18:6" + }, + "nodeType": "YulFunctionCall", + "src": "1222:20:6" + }, + "variableNames": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "1212:6:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "1271:6:6" + }, + { + "name": "size", + "nodeType": "YulIdentifier", + "src": "1279:4:6" + } + ], + "functionName": { + "name": "finalize_allocation", + "nodeType": "YulIdentifier", + "src": "1251:19:6" + }, + "nodeType": "YulFunctionCall", + "src": "1251:33:6" + }, + "nodeType": "YulExpressionStatement", + "src": "1251:33:6" + } + ] + }, + "name": "allocate_memory", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "size", + "nodeType": "YulTypedName", + "src": "1186:4:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "1195:6:6", + "type": "" + } + ], + "src": "1161:129:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1363:241:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "1468:22:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "panic_error_0x41", + "nodeType": "YulIdentifier", + "src": "1470:16:6" + }, + "nodeType": "YulFunctionCall", + "src": "1470:18:6" + }, + "nodeType": "YulExpressionStatement", + "src": "1470:18:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "1440:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1448:18:6", + "type": "", + "value": "0xffffffffffffffff" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "1437:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "1437:30:6" + }, + "nodeType": "YulIf", + "src": "1434:56:6" + }, + { + "nodeType": "YulAssignment", + "src": "1500:37:6", + "value": { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "1530:6:6" + } + ], + "functionName": { + "name": "round_up_to_mul_of_32", + "nodeType": "YulIdentifier", + "src": "1508:21:6" + }, + "nodeType": "YulFunctionCall", + "src": "1508:29:6" + }, + "variableNames": [ + { + "name": "size", + "nodeType": "YulIdentifier", + "src": "1500:4:6" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "1574:23:6", + "value": { + "arguments": [ + { + "name": "size", + "nodeType": "YulIdentifier", + "src": "1586:4:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1592:4:6", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "1582:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1582:15:6" + }, + "variableNames": [ + { + "name": "size", + "nodeType": "YulIdentifier", + "src": "1574:4:6" + } + ] + } + ] + }, + "name": "array_allocation_size_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "1347:6:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "size", + "nodeType": "YulTypedName", + "src": "1358:4:6", + "type": "" + } + ], + "src": "1296:308:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1672:184:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "1682:10:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1691:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "i", + "nodeType": "YulTypedName", + "src": "1686:1:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1751:63:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "dst", + "nodeType": "YulIdentifier", + "src": "1776:3:6" + }, + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "1781:1:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "1772:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1772:11:6" + }, + { + "arguments": [ + { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "1795:3:6" + }, + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "1800:1:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "1791:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1791:11:6" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "1785:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "1785:18:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "1765:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "1765:39:6" + }, + "nodeType": "YulExpressionStatement", + "src": "1765:39:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "1712:1:6" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "1715:6:6" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "1709:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "1709:13:6" + }, + "nodeType": "YulForLoop", + "post": { + "nodeType": "YulBlock", + "src": "1723:19:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1725:15:6", + "value": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "1734:1:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1737:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "1730:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1730:10:6" + }, + "variableNames": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "1725:1:6" + } + ] + } + ] + }, + "pre": { + "nodeType": "YulBlock", + "src": "1705:3:6", + "statements": [] + }, + "src": "1701:113:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "dst", + "nodeType": "YulIdentifier", + "src": "1834:3:6" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "1839:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "1830:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1830:16:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1848:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "1823:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "1823:27:6" + }, + "nodeType": "YulExpressionStatement", + "src": "1823:27:6" + } + ] + }, + "name": "copy_memory_to_memory_with_cleanup", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "src", + "nodeType": "YulTypedName", + "src": "1654:3:6", + "type": "" + }, + { + "name": "dst", + "nodeType": "YulTypedName", + "src": "1659:3:6", + "type": "" + }, + { + "name": "length", + "nodeType": "YulTypedName", + "src": "1664:6:6", + "type": "" + } + ], + "src": "1610:246:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1957:339:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1967:75:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "2034:6:6" + } + ], + "functionName": { + "name": "array_allocation_size_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "1992:41:6" + }, + "nodeType": "YulFunctionCall", + "src": "1992:49:6" + } + ], + "functionName": { + "name": "allocate_memory", + "nodeType": "YulIdentifier", + "src": "1976:15:6" + }, + "nodeType": "YulFunctionCall", + "src": "1976:66:6" + }, + "variableNames": [ + { + "name": "array", + "nodeType": "YulIdentifier", + "src": "1967:5:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "array", + "nodeType": "YulIdentifier", + "src": "2058:5:6" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "2065:6:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "2051:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "2051:21:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2051:21:6" + }, + { + "nodeType": "YulVariableDeclaration", + "src": "2081:27:6", + "value": { + "arguments": [ + { + "name": "array", + "nodeType": "YulIdentifier", + "src": "2096:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2103:4:6", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2092:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2092:16:6" + }, + "variables": [ + { + "name": "dst", + "nodeType": "YulTypedName", + "src": "2085:3:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2146:83:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae", + "nodeType": "YulIdentifier", + "src": "2148:77:6" + }, + "nodeType": "YulFunctionCall", + "src": "2148:79:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2148:79:6" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "2127:3:6" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "2132:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2123:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2123:16:6" + }, + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "2141:3:6" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "2120:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "2120:25:6" + }, + "nodeType": "YulIf", + "src": "2117:112:6" + }, + { + "expression": { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "2273:3:6" + }, + { + "name": "dst", + "nodeType": "YulIdentifier", + "src": "2278:3:6" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "2283:6:6" + } + ], + "functionName": { + "name": "copy_memory_to_memory_with_cleanup", + "nodeType": "YulIdentifier", + "src": "2238:34:6" + }, + "nodeType": "YulFunctionCall", + "src": "2238:52:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2238:52:6" + } + ] + }, + "name": "abi_decode_available_length_t_string_memory_ptr_fromMemory", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "src", + "nodeType": "YulTypedName", + "src": "1930:3:6", + "type": "" + }, + { + "name": "length", + "nodeType": "YulTypedName", + "src": "1935:6:6", + "type": "" + }, + { + "name": "end", + "nodeType": "YulTypedName", + "src": "1943:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "array", + "nodeType": "YulTypedName", + "src": "1951:5:6", + "type": "" + } + ], + "src": "1862:434:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2389:282:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "2438:83:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", + "nodeType": "YulIdentifier", + "src": "2440:77:6" + }, + "nodeType": "YulFunctionCall", + "src": "2440:79:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2440:79:6" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2417:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2425:4:6", + "type": "", + "value": "0x1f" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2413:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2413:17:6" + }, + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "2432:3:6" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "2409:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2409:27:6" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "2402:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "2402:35:6" + }, + "nodeType": "YulIf", + "src": "2399:122:6" + }, + { + "nodeType": "YulVariableDeclaration", + "src": "2530:27:6", + "value": { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2550:6:6" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "2544:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "2544:13:6" + }, + "variables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "2534:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "2566:99:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2638:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2646:4:6", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2634:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2634:17:6" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "2653:6:6" + }, + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "2661:3:6" + } + ], + "functionName": { + "name": "abi_decode_available_length_t_string_memory_ptr_fromMemory", + "nodeType": "YulIdentifier", + "src": "2575:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "2575:90:6" + }, + "variableNames": [ + { + "name": "array", + "nodeType": "YulIdentifier", + "src": "2566:5:6" + } + ] + } + ] + }, + "name": "abi_decode_t_string_memory_ptr_fromMemory", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "2367:6:6", + "type": "" + }, + { + "name": "end", + "nodeType": "YulTypedName", + "src": "2375:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "array", + "nodeType": "YulTypedName", + "src": "2383:5:6", + "type": "" + } + ], + "src": "2316:355:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2791:739:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "2837:83:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulIdentifier", + "src": "2839:77:6" + }, + "nodeType": "YulFunctionCall", + "src": "2839:79:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2839:79:6" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "2812:7:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "2821:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "2808:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2808:23:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2833:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "2804:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2804:32:6" + }, + "nodeType": "YulIf", + "src": "2801:119:6" + }, + { + "nodeType": "YulBlock", + "src": "2930:291:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "2945:38:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "2969:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2980:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2965:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2965:17:6" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "2959:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "2959:24:6" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "2949:6:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3030:83:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", + "nodeType": "YulIdentifier", + "src": "3032:77:6" + }, + "nodeType": "YulFunctionCall", + "src": "3032:79:6" + }, + "nodeType": "YulExpressionStatement", + "src": "3032:79:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "3002:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3010:18:6", + "type": "", + "value": "0xffffffffffffffff" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "2999:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "2999:30:6" + }, + "nodeType": "YulIf", + "src": "2996:117:6" + }, + { + "nodeType": "YulAssignment", + "src": "3127:84:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3183:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "3194:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3179:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3179:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "3203:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_string_memory_ptr_fromMemory", + "nodeType": "YulIdentifier", + "src": "3137:41:6" + }, + "nodeType": "YulFunctionCall", + "src": "3137:74:6" + }, + "variableNames": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "3127:6:6" + } + ] + } + ] + }, + { + "nodeType": "YulBlock", + "src": "3231:292:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "3246:39:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3270:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3281:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3266:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3266:18:6" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "3260:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "3260:25:6" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "3250:6:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3332:83:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", + "nodeType": "YulIdentifier", + "src": "3334:77:6" + }, + "nodeType": "YulFunctionCall", + "src": "3334:79:6" + }, + "nodeType": "YulExpressionStatement", + "src": "3334:79:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "3304:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3312:18:6", + "type": "", + "value": "0xffffffffffffffff" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "3301:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "3301:30:6" + }, + "nodeType": "YulIf", + "src": "3298:117:6" + }, + { + "nodeType": "YulAssignment", + "src": "3429:84:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3485:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "3496:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3481:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3481:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "3505:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_string_memory_ptr_fromMemory", + "nodeType": "YulIdentifier", + "src": "3439:41:6" + }, + "nodeType": "YulFunctionCall", + "src": "3439:74:6" + }, + "variableNames": [ + { + "name": "value1", + "nodeType": "YulIdentifier", + "src": "3429:6:6" + } + ] + } + ] + } + ] + }, + "name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "2753:9:6", + "type": "" + }, + { + "name": "dataEnd", + "nodeType": "YulTypedName", + "src": "2764:7:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "2776:6:6", + "type": "" + }, + { + "name": "value1", + "nodeType": "YulTypedName", + "src": "2784:6:6", + "type": "" + } + ], + "src": "2677:853:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3595:40:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3606:22:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3622:5:6" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "3616:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "3616:12:6" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "3606:6:6" + } + ] + } + ] + }, + "name": "array_length_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "3578:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "3588:6:6", + "type": "" + } + ], + "src": "3536:99:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3669:152:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3686:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3689:77:6", + "type": "", + "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "3679:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "3679:88:6" + }, + "nodeType": "YulExpressionStatement", + "src": "3679:88:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3783:1:6", + "type": "", + "value": "4" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3786:4:6", + "type": "", + "value": "0x22" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "3776:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "3776:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "3776:15:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3807:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3810:4:6", + "type": "", + "value": "0x24" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "3800:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "3800:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "3800:15:6" + } + ] + }, + "name": "panic_error_0x22", + "nodeType": "YulFunctionDefinition", + "src": "3641:180:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3878:269:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3888:22:6", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "3902:4:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3908:1:6", + "type": "", + "value": "2" + } + ], + "functionName": { + "name": "div", + "nodeType": "YulIdentifier", + "src": "3898:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3898:12:6" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "3888:6:6" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "3919:38:6", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "3949:4:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3955:1:6", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "3945:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3945:12:6" + }, + "variables": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulTypedName", + "src": "3923:18:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3996:51:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "4010:27:6", + "value": { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "4024:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4032:4:6", + "type": "", + "value": "0x7f" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "4020:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4020:17:6" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "4010:6:6" + } + ] + } + ] + }, + "condition": { + "arguments": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulIdentifier", + "src": "3976:18:6" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "3969:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "3969:26:6" + }, + "nodeType": "YulIf", + "src": "3966:81:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4099:42:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "panic_error_0x22", + "nodeType": "YulIdentifier", + "src": "4113:16:6" + }, + "nodeType": "YulFunctionCall", + "src": "4113:18:6" + }, + "nodeType": "YulExpressionStatement", + "src": "4113:18:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulIdentifier", + "src": "4063:18:6" + }, + { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "4086:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4094:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "4083:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "4083:14:6" + } + ], + "functionName": { + "name": "eq", + "nodeType": "YulIdentifier", + "src": "4060:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "4060:38:6" + }, + "nodeType": "YulIf", + "src": "4057:84:6" + } + ] + }, + "name": "extract_byte_array_length", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "data", + "nodeType": "YulTypedName", + "src": "3862:4:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "3871:6:6", + "type": "" + } + ], + "src": "3827:320:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4207:87:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "4217:11:6", + "value": { + "name": "ptr", + "nodeType": "YulIdentifier", + "src": "4225:3:6" + }, + "variableNames": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "4217:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4245:1:6", + "type": "", + "value": "0" + }, + { + "name": "ptr", + "nodeType": "YulIdentifier", + "src": "4248:3:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "4238:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "4238:14:6" + }, + "nodeType": "YulExpressionStatement", + "src": "4238:14:6" + }, + { + "nodeType": "YulAssignment", + "src": "4261:26:6", + "value": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4279:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4282:4:6", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "keccak256", + "nodeType": "YulIdentifier", + "src": "4269:9:6" + }, + "nodeType": "YulFunctionCall", + "src": "4269:18:6" + }, + "variableNames": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "4261:4:6" + } + ] + } + ] + }, + "name": "array_dataslot_t_string_storage", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "ptr", + "nodeType": "YulTypedName", + "src": "4194:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "data", + "nodeType": "YulTypedName", + "src": "4202:4:6", + "type": "" + } + ], + "src": "4153:141:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4344:49:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "4354:33:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "4372:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4379:2:6", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4368:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4368:14:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4384:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "div", + "nodeType": "YulIdentifier", + "src": "4364:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4364:23:6" + }, + "variableNames": [ + { + "name": "result", + "nodeType": "YulIdentifier", + "src": "4354:6:6" + } + ] + } + ] + }, + "name": "divide_by_32_ceil", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "4327:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "result", + "nodeType": "YulTypedName", + "src": "4337:6:6", + "type": "" + } + ], + "src": "4300:93:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4452:54:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "4462:37:6", + "value": { + "arguments": [ + { + "name": "bits", + "nodeType": "YulIdentifier", + "src": "4487:4:6" + }, + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "4493:5:6" + } + ], + "functionName": { + "name": "shl", + "nodeType": "YulIdentifier", + "src": "4483:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4483:16:6" + }, + "variableNames": [ + { + "name": "newValue", + "nodeType": "YulIdentifier", + "src": "4462:8:6" + } + ] + } + ] + }, + "name": "shift_left_dynamic", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "bits", + "nodeType": "YulTypedName", + "src": "4427:4:6", + "type": "" + }, + { + "name": "value", + "nodeType": "YulTypedName", + "src": "4433:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "newValue", + "nodeType": "YulTypedName", + "src": "4443:8:6", + "type": "" + } + ], + "src": "4399:107:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4588:317:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "4598:35:6", + "value": { + "arguments": [ + { + "name": "shiftBytes", + "nodeType": "YulIdentifier", + "src": "4619:10:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4631:1:6", + "type": "", + "value": "8" + } + ], + "functionName": { + "name": "mul", + "nodeType": "YulIdentifier", + "src": "4615:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4615:18:6" + }, + "variables": [ + { + "name": "shiftBits", + "nodeType": "YulTypedName", + "src": "4602:9:6", + "type": "" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "4642:109:6", + "value": { + "arguments": [ + { + "name": "shiftBits", + "nodeType": "YulIdentifier", + "src": "4673:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4684:66:6", + "type": "", + "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + } + ], + "functionName": { + "name": "shift_left_dynamic", + "nodeType": "YulIdentifier", + "src": "4654:18:6" + }, + "nodeType": "YulFunctionCall", + "src": "4654:97:6" + }, + "variables": [ + { + "name": "mask", + "nodeType": "YulTypedName", + "src": "4646:4:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "4760:51:6", + "value": { + "arguments": [ + { + "name": "shiftBits", + "nodeType": "YulIdentifier", + "src": "4791:9:6" + }, + { + "name": "toInsert", + "nodeType": "YulIdentifier", + "src": "4802:8:6" + } + ], + "functionName": { + "name": "shift_left_dynamic", + "nodeType": "YulIdentifier", + "src": "4772:18:6" + }, + "nodeType": "YulFunctionCall", + "src": "4772:39:6" + }, + "variableNames": [ + { + "name": "toInsert", + "nodeType": "YulIdentifier", + "src": "4760:8:6" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "4820:30:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "4833:5:6" + }, + { + "arguments": [ + { + "name": "mask", + "nodeType": "YulIdentifier", + "src": "4844:4:6" + } + ], + "functionName": { + "name": "not", + "nodeType": "YulIdentifier", + "src": "4840:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4840:9:6" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "4829:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4829:21:6" + }, + "variableNames": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "4820:5:6" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "4859:40:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "4872:5:6" + }, + { + "arguments": [ + { + "name": "toInsert", + "nodeType": "YulIdentifier", + "src": "4883:8:6" + }, + { + "name": "mask", + "nodeType": "YulIdentifier", + "src": "4893:4:6" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "4879:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4879:19:6" + } + ], + "functionName": { + "name": "or", + "nodeType": "YulIdentifier", + "src": "4869:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "4869:30:6" + }, + "variableNames": [ + { + "name": "result", + "nodeType": "YulIdentifier", + "src": "4859:6:6" + } + ] + } + ] + }, + "name": "update_byte_slice_dynamic32", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "4549:5:6", + "type": "" + }, + { + "name": "shiftBytes", + "nodeType": "YulTypedName", + "src": "4556:10:6", + "type": "" + }, + { + "name": "toInsert", + "nodeType": "YulTypedName", + "src": "4568:8:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "result", + "nodeType": "YulTypedName", + "src": "4581:6:6", + "type": "" + } + ], + "src": "4512:393:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4956:32:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "4966:16:6", + "value": { + "name": "value", + "nodeType": "YulIdentifier", + "src": "4977:5:6" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "4966:7:6" + } + ] + } + ] + }, + "name": "cleanup_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "4938:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "4948:7:6", + "type": "" + } + ], + "src": "4911:77:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5026:28:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "5036:12:6", + "value": { + "name": "value", + "nodeType": "YulIdentifier", + "src": "5043:5:6" + }, + "variableNames": [ + { + "name": "ret", + "nodeType": "YulIdentifier", + "src": "5036:3:6" + } + ] + } + ] + }, + "name": "identity", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "5012:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "ret", + "nodeType": "YulTypedName", + "src": "5022:3:6", + "type": "" + } + ], + "src": "4994:60:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5120:82:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "5130:66:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "5188:5:6" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "5170:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "5170:24:6" + } + ], + "functionName": { + "name": "identity", + "nodeType": "YulIdentifier", + "src": "5161:8:6" + }, + "nodeType": "YulFunctionCall", + "src": "5161:34:6" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "5143:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "5143:53:6" + }, + "variableNames": [ + { + "name": "converted", + "nodeType": "YulIdentifier", + "src": "5130:9:6" + } + ] + } + ] + }, + "name": "convert_t_uint256_to_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "5100:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "converted", + "nodeType": "YulTypedName", + "src": "5110:9:6", + "type": "" + } + ], + "src": "5060:142:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5255:28:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "5265:12:6", + "value": { + "name": "value", + "nodeType": "YulIdentifier", + "src": "5272:5:6" + }, + "variableNames": [ + { + "name": "ret", + "nodeType": "YulIdentifier", + "src": "5265:3:6" + } + ] + } + ] + }, + "name": "prepare_store_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "5241:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "ret", + "nodeType": "YulTypedName", + "src": "5251:3:6", + "type": "" + } + ], + "src": "5208:75:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5365:193:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "5375:63:6", + "value": { + "arguments": [ + { + "name": "value_0", + "nodeType": "YulIdentifier", + "src": "5430:7:6" + } + ], + "functionName": { + "name": "convert_t_uint256_to_t_uint256", + "nodeType": "YulIdentifier", + "src": "5399:30:6" + }, + "nodeType": "YulFunctionCall", + "src": "5399:39:6" + }, + "variables": [ + { + "name": "convertedValue_0", + "nodeType": "YulTypedName", + "src": "5379:16:6", + "type": "" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "5454:4:6" + }, + { + "arguments": [ + { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "5494:4:6" + } + ], + "functionName": { + "name": "sload", + "nodeType": "YulIdentifier", + "src": "5488:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "5488:11:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "5501:6:6" + }, + { + "arguments": [ + { + "name": "convertedValue_0", + "nodeType": "YulIdentifier", + "src": "5533:16:6" + } + ], + "functionName": { + "name": "prepare_store_t_uint256", + "nodeType": "YulIdentifier", + "src": "5509:23:6" + }, + "nodeType": "YulFunctionCall", + "src": "5509:41:6" + } + ], + "functionName": { + "name": "update_byte_slice_dynamic32", + "nodeType": "YulIdentifier", + "src": "5460:27:6" + }, + "nodeType": "YulFunctionCall", + "src": "5460:91:6" + } + ], + "functionName": { + "name": "sstore", + "nodeType": "YulIdentifier", + "src": "5447:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "5447:105:6" + }, + "nodeType": "YulExpressionStatement", + "src": "5447:105:6" + } + ] + }, + "name": "update_storage_value_t_uint256_to_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "slot", + "nodeType": "YulTypedName", + "src": "5342:4:6", + "type": "" + }, + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "5348:6:6", + "type": "" + }, + { + "name": "value_0", + "nodeType": "YulTypedName", + "src": "5356:7:6", + "type": "" + } + ], + "src": "5289:269:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5613:24:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "5623:8:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5630:1:6", + "type": "", + "value": "0" + }, + "variableNames": [ + { + "name": "ret", + "nodeType": "YulIdentifier", + "src": "5623:3:6" + } + ] + } + ] + }, + "name": "zero_value_for_split_t_uint256", + "nodeType": "YulFunctionDefinition", + "returnVariables": [ + { + "name": "ret", + "nodeType": "YulTypedName", + "src": "5609:3:6", + "type": "" + } + ], + "src": "5564:73:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5696:136:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "5706:46:6", + "value": { + "arguments": [], + "functionName": { + "name": "zero_value_for_split_t_uint256", + "nodeType": "YulIdentifier", + "src": "5720:30:6" + }, + "nodeType": "YulFunctionCall", + "src": "5720:32:6" + }, + "variables": [ + { + "name": "zero_0", + "nodeType": "YulTypedName", + "src": "5710:6:6", + "type": "" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "5805:4:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "5811:6:6" + }, + { + "name": "zero_0", + "nodeType": "YulIdentifier", + "src": "5819:6:6" + } + ], + "functionName": { + "name": "update_storage_value_t_uint256_to_t_uint256", + "nodeType": "YulIdentifier", + "src": "5761:43:6" + }, + "nodeType": "YulFunctionCall", + "src": "5761:65:6" + }, + "nodeType": "YulExpressionStatement", + "src": "5761:65:6" + } + ] + }, + "name": "storage_set_to_zero_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "slot", + "nodeType": "YulTypedName", + "src": "5682:4:6", + "type": "" + }, + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "5688:6:6", + "type": "" + } + ], + "src": "5643:189:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5888:136:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "5955:63:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "start", + "nodeType": "YulIdentifier", + "src": "5999:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6006:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "storage_set_to_zero_t_uint256", + "nodeType": "YulIdentifier", + "src": "5969:29:6" + }, + "nodeType": "YulFunctionCall", + "src": "5969:39:6" + }, + "nodeType": "YulExpressionStatement", + "src": "5969:39:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "start", + "nodeType": "YulIdentifier", + "src": "5908:5:6" + }, + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "5915:3:6" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "5905:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "5905:14:6" + }, + "nodeType": "YulForLoop", + "post": { + "nodeType": "YulBlock", + "src": "5920:26:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "5922:22:6", + "value": { + "arguments": [ + { + "name": "start", + "nodeType": "YulIdentifier", + "src": "5935:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5942:1:6", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5931:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5931:13:6" + }, + "variableNames": [ + { + "name": "start", + "nodeType": "YulIdentifier", + "src": "5922:5:6" + } + ] + } + ] + }, + "pre": { + "nodeType": "YulBlock", + "src": "5902:2:6", + "statements": [] + }, + "src": "5898:120:6" + } + ] + }, + "name": "clear_storage_range_t_bytes1", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "start", + "nodeType": "YulTypedName", + "src": "5876:5:6", + "type": "" + }, + { + "name": "end", + "nodeType": "YulTypedName", + "src": "5883:3:6", + "type": "" + } + ], + "src": "5838:186:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6109:464:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "6135:431:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "6149:54:6", + "value": { + "arguments": [ + { + "name": "array", + "nodeType": "YulIdentifier", + "src": "6197:5:6" + } + ], + "functionName": { + "name": "array_dataslot_t_string_storage", + "nodeType": "YulIdentifier", + "src": "6165:31:6" + }, + "nodeType": "YulFunctionCall", + "src": "6165:38:6" + }, + "variables": [ + { + "name": "dataArea", + "nodeType": "YulTypedName", + "src": "6153:8:6", + "type": "" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "6216:63:6", + "value": { + "arguments": [ + { + "name": "dataArea", + "nodeType": "YulIdentifier", + "src": "6239:8:6" + }, + { + "arguments": [ + { + "name": "startIndex", + "nodeType": "YulIdentifier", + "src": "6267:10:6" + } + ], + "functionName": { + "name": "divide_by_32_ceil", + "nodeType": "YulIdentifier", + "src": "6249:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "6249:29:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6235:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6235:44:6" + }, + "variables": [ + { + "name": "deleteStart", + "nodeType": "YulTypedName", + "src": "6220:11:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6436:27:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "6438:23:6", + "value": { + "name": "dataArea", + "nodeType": "YulIdentifier", + "src": "6453:8:6" + }, + "variableNames": [ + { + "name": "deleteStart", + "nodeType": "YulIdentifier", + "src": "6438:11:6" + } + ] + } + ] + }, + "condition": { + "arguments": [ + { + "name": "startIndex", + "nodeType": "YulIdentifier", + "src": "6420:10:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6432:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "6417:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "6417:18:6" + }, + "nodeType": "YulIf", + "src": "6414:49:6" + }, + { + "expression": { + "arguments": [ + { + "name": "deleteStart", + "nodeType": "YulIdentifier", + "src": "6505:11:6" + }, + { + "arguments": [ + { + "name": "dataArea", + "nodeType": "YulIdentifier", + "src": "6522:8:6" + }, + { + "arguments": [ + { + "name": "len", + "nodeType": "YulIdentifier", + "src": "6550:3:6" + } + ], + "functionName": { + "name": "divide_by_32_ceil", + "nodeType": "YulIdentifier", + "src": "6532:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "6532:22:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6518:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6518:37:6" + } + ], + "functionName": { + "name": "clear_storage_range_t_bytes1", + "nodeType": "YulIdentifier", + "src": "6476:28:6" + }, + "nodeType": "YulFunctionCall", + "src": "6476:80:6" + }, + "nodeType": "YulExpressionStatement", + "src": "6476:80:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "len", + "nodeType": "YulIdentifier", + "src": "6126:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6131:2:6", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "6123:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "6123:11:6" + }, + "nodeType": "YulIf", + "src": "6120:446:6" + } + ] + }, + "name": "clean_up_bytearray_end_slots_t_string_storage", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "array", + "nodeType": "YulTypedName", + "src": "6085:5:6", + "type": "" + }, + { + "name": "len", + "nodeType": "YulTypedName", + "src": "6092:3:6", + "type": "" + }, + { + "name": "startIndex", + "nodeType": "YulTypedName", + "src": "6097:10:6", + "type": "" + } + ], + "src": "6030:543:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6642:54:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "6652:37:6", + "value": { + "arguments": [ + { + "name": "bits", + "nodeType": "YulIdentifier", + "src": "6677:4:6" + }, + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "6683:5:6" + } + ], + "functionName": { + "name": "shr", + "nodeType": "YulIdentifier", + "src": "6673:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6673:16:6" + }, + "variableNames": [ + { + "name": "newValue", + "nodeType": "YulIdentifier", + "src": "6652:8:6" + } + ] + } + ] + }, + "name": "shift_right_unsigned_dynamic", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "bits", + "nodeType": "YulTypedName", + "src": "6617:4:6", + "type": "" + }, + { + "name": "value", + "nodeType": "YulTypedName", + "src": "6623:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "newValue", + "nodeType": "YulTypedName", + "src": "6633:8:6", + "type": "" + } + ], + "src": "6579:117:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6753:118:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "6763:68:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6812:1:6", + "type": "", + "value": "8" + }, + { + "name": "bytes", + "nodeType": "YulIdentifier", + "src": "6815:5:6" + } + ], + "functionName": { + "name": "mul", + "nodeType": "YulIdentifier", + "src": "6808:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6808:13:6" + }, + { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6827:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "not", + "nodeType": "YulIdentifier", + "src": "6823:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6823:6:6" + } + ], + "functionName": { + "name": "shift_right_unsigned_dynamic", + "nodeType": "YulIdentifier", + "src": "6779:28:6" + }, + "nodeType": "YulFunctionCall", + "src": "6779:51:6" + } + ], + "functionName": { + "name": "not", + "nodeType": "YulIdentifier", + "src": "6775:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6775:56:6" + }, + "variables": [ + { + "name": "mask", + "nodeType": "YulTypedName", + "src": "6767:4:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "6840:25:6", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "6854:4:6" + }, + { + "name": "mask", + "nodeType": "YulIdentifier", + "src": "6860:4:6" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "6850:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6850:15:6" + }, + "variableNames": [ + { + "name": "result", + "nodeType": "YulIdentifier", + "src": "6840:6:6" + } + ] + } + ] + }, + "name": "mask_bytes_dynamic", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "data", + "nodeType": "YulTypedName", + "src": "6730:4:6", + "type": "" + }, + { + "name": "bytes", + "nodeType": "YulTypedName", + "src": "6736:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "result", + "nodeType": "YulTypedName", + "src": "6746:6:6", + "type": "" + } + ], + "src": "6702:169:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6957:214:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "7090:37:6", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "7117:4:6" + }, + { + "name": "len", + "nodeType": "YulIdentifier", + "src": "7123:3:6" + } + ], + "functionName": { + "name": "mask_bytes_dynamic", + "nodeType": "YulIdentifier", + "src": "7098:18:6" + }, + "nodeType": "YulFunctionCall", + "src": "7098:29:6" + }, + "variableNames": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "7090:4:6" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "7136:29:6", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "7147:4:6" + }, + { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7157:1:6", + "type": "", + "value": "2" + }, + { + "name": "len", + "nodeType": "YulIdentifier", + "src": "7160:3:6" + } + ], + "functionName": { + "name": "mul", + "nodeType": "YulIdentifier", + "src": "7153:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "7153:11:6" + } + ], + "functionName": { + "name": "or", + "nodeType": "YulIdentifier", + "src": "7144:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "7144:21:6" + }, + "variableNames": [ + { + "name": "used", + "nodeType": "YulIdentifier", + "src": "7136:4:6" + } + ] + } + ] + }, + "name": "extract_used_part_and_set_length_of_short_byte_array", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "data", + "nodeType": "YulTypedName", + "src": "6938:4:6", + "type": "" + }, + { + "name": "len", + "nodeType": "YulTypedName", + "src": "6944:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "used", + "nodeType": "YulTypedName", + "src": "6952:4:6", + "type": "" + } + ], + "src": "6876:295:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7268:1303:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "7279:51:6", + "value": { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "7326:3:6" + } + ], + "functionName": { + "name": "array_length_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "7293:32:6" + }, + "nodeType": "YulFunctionCall", + "src": "7293:37:6" + }, + "variables": [ + { + "name": "newLen", + "nodeType": "YulTypedName", + "src": "7283:6:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7415:22:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "panic_error_0x41", + "nodeType": "YulIdentifier", + "src": "7417:16:6" + }, + "nodeType": "YulFunctionCall", + "src": "7417:18:6" + }, + "nodeType": "YulExpressionStatement", + "src": "7417:18:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "7387:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7395:18:6", + "type": "", + "value": "0xffffffffffffffff" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "7384:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "7384:30:6" + }, + "nodeType": "YulIf", + "src": "7381:56:6" + }, + { + "nodeType": "YulVariableDeclaration", + "src": "7447:52:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "7493:4:6" + } + ], + "functionName": { + "name": "sload", + "nodeType": "YulIdentifier", + "src": "7487:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "7487:11:6" + } + ], + "functionName": { + "name": "extract_byte_array_length", + "nodeType": "YulIdentifier", + "src": "7461:25:6" + }, + "nodeType": "YulFunctionCall", + "src": "7461:38:6" + }, + "variables": [ + { + "name": "oldLen", + "nodeType": "YulTypedName", + "src": "7451:6:6", + "type": "" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "7592:4:6" + }, + { + "name": "oldLen", + "nodeType": "YulIdentifier", + "src": "7598:6:6" + }, + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "7606:6:6" + } + ], + "functionName": { + "name": "clean_up_bytearray_end_slots_t_string_storage", + "nodeType": "YulIdentifier", + "src": "7546:45:6" + }, + "nodeType": "YulFunctionCall", + "src": "7546:67:6" + }, + "nodeType": "YulExpressionStatement", + "src": "7546:67:6" + }, + { + "nodeType": "YulVariableDeclaration", + "src": "7623:18:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7640:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "srcOffset", + "nodeType": "YulTypedName", + "src": "7627:9:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "7651:17:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7664:4:6", + "type": "", + "value": "0x20" + }, + "variableNames": [ + { + "name": "srcOffset", + "nodeType": "YulIdentifier", + "src": "7651:9:6" + } + ] + }, + { + "cases": [ + { + "body": { + "nodeType": "YulBlock", + "src": "7715:611:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "7729:37:6", + "value": { + "arguments": [ + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "7748:6:6" + }, + { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7760:4:6", + "type": "", + "value": "0x1f" + } + ], + "functionName": { + "name": "not", + "nodeType": "YulIdentifier", + "src": "7756:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "7756:9:6" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "7744:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "7744:22:6" + }, + "variables": [ + { + "name": "loopEnd", + "nodeType": "YulTypedName", + "src": "7733:7:6", + "type": "" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "7780:51:6", + "value": { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "7826:4:6" + } + ], + "functionName": { + "name": "array_dataslot_t_string_storage", + "nodeType": "YulIdentifier", + "src": "7794:31:6" + }, + "nodeType": "YulFunctionCall", + "src": "7794:37:6" + }, + "variables": [ + { + "name": "dstPtr", + "nodeType": "YulTypedName", + "src": "7784:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "7844:10:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7853:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "i", + "nodeType": "YulTypedName", + "src": "7848:1:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7912:163:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "dstPtr", + "nodeType": "YulIdentifier", + "src": "7937:6:6" + }, + { + "arguments": [ + { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "7955:3:6" + }, + { + "name": "srcOffset", + "nodeType": "YulIdentifier", + "src": "7960:9:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "7951:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "7951:19:6" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "7945:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "7945:26:6" + } + ], + "functionName": { + "name": "sstore", + "nodeType": "YulIdentifier", + "src": "7930:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "7930:42:6" + }, + "nodeType": "YulExpressionStatement", + "src": "7930:42:6" + }, + { + "nodeType": "YulAssignment", + "src": "7989:24:6", + "value": { + "arguments": [ + { + "name": "dstPtr", + "nodeType": "YulIdentifier", + "src": "8003:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8011:1:6", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "7999:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "7999:14:6" + }, + "variableNames": [ + { + "name": "dstPtr", + "nodeType": "YulIdentifier", + "src": "7989:6:6" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "8030:31:6", + "value": { + "arguments": [ + { + "name": "srcOffset", + "nodeType": "YulIdentifier", + "src": "8047:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8058:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8043:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8043:18:6" + }, + "variableNames": [ + { + "name": "srcOffset", + "nodeType": "YulIdentifier", + "src": "8030:9:6" + } + ] + } + ] + }, + "condition": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "7878:1:6" + }, + { + "name": "loopEnd", + "nodeType": "YulIdentifier", + "src": "7881:7:6" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "7875:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "7875:14:6" + }, + "nodeType": "YulForLoop", + "post": { + "nodeType": "YulBlock", + "src": "7890:21:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "7892:17:6", + "value": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "7901:1:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7904:4:6", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "7897:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "7897:12:6" + }, + "variableNames": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "7892:1:6" + } + ] + } + ] + }, + "pre": { + "nodeType": "YulBlock", + "src": "7871:3:6", + "statements": [] + }, + "src": "7867:208:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "8111:156:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "8129:43:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "8156:3:6" + }, + { + "name": "srcOffset", + "nodeType": "YulIdentifier", + "src": "8161:9:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8152:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8152:19:6" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "8146:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "8146:26:6" + }, + "variables": [ + { + "name": "lastValue", + "nodeType": "YulTypedName", + "src": "8133:9:6", + "type": "" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "dstPtr", + "nodeType": "YulIdentifier", + "src": "8196:6:6" + }, + { + "arguments": [ + { + "name": "lastValue", + "nodeType": "YulIdentifier", + "src": "8223:9:6" + }, + { + "arguments": [ + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "8238:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8246:4:6", + "type": "", + "value": "0x1f" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "8234:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8234:17:6" + } + ], + "functionName": { + "name": "mask_bytes_dynamic", + "nodeType": "YulIdentifier", + "src": "8204:18:6" + }, + "nodeType": "YulFunctionCall", + "src": "8204:48:6" + } + ], + "functionName": { + "name": "sstore", + "nodeType": "YulIdentifier", + "src": "8189:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "8189:64:6" + }, + "nodeType": "YulExpressionStatement", + "src": "8189:64:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "loopEnd", + "nodeType": "YulIdentifier", + "src": "8094:7:6" + }, + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "8103:6:6" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "8091:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "8091:19:6" + }, + "nodeType": "YulIf", + "src": "8088:179:6" + }, + { + "expression": { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "8287:4:6" + }, + { + "arguments": [ + { + "arguments": [ + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "8301:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8309:1:6", + "type": "", + "value": "2" + } + ], + "functionName": { + "name": "mul", + "nodeType": "YulIdentifier", + "src": "8297:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8297:14:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8313:1:6", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8293:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8293:22:6" + } + ], + "functionName": { + "name": "sstore", + "nodeType": "YulIdentifier", + "src": "8280:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "8280:36:6" + }, + "nodeType": "YulExpressionStatement", + "src": "8280:36:6" + } + ] + }, + "nodeType": "YulCase", + "src": "7708:618:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7713:1:6", + "type": "", + "value": "1" + } + }, + { + "body": { + "nodeType": "YulBlock", + "src": "8343:222:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "8357:14:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8370:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "8361:5:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "8394:67:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "8412:35:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "8431:3:6" + }, + { + "name": "srcOffset", + "nodeType": "YulIdentifier", + "src": "8436:9:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8427:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8427:19:6" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "8421:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "8421:26:6" + }, + "variableNames": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "8412:5:6" + } + ] + } + ] + }, + "condition": { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "8387:6:6" + }, + "nodeType": "YulIf", + "src": "8384:77:6" + }, + { + "expression": { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "8481:4:6" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "8540:5:6" + }, + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "8547:6:6" + } + ], + "functionName": { + "name": "extract_used_part_and_set_length_of_short_byte_array", + "nodeType": "YulIdentifier", + "src": "8487:52:6" + }, + "nodeType": "YulFunctionCall", + "src": "8487:67:6" + } + ], + "functionName": { + "name": "sstore", + "nodeType": "YulIdentifier", + "src": "8474:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "8474:81:6" + }, + "nodeType": "YulExpressionStatement", + "src": "8474:81:6" + } + ] + }, + "nodeType": "YulCase", + "src": "8335:230:6", + "value": "default" + } + ], + "expression": { + "arguments": [ + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "7688:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7696:2:6", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "7685:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "7685:14:6" + }, + "nodeType": "YulSwitch", + "src": "7678:887:6" + } + ] + }, + "name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "slot", + "nodeType": "YulTypedName", + "src": "7257:4:6", + "type": "" + }, + { + "name": "src", + "nodeType": "YulTypedName", + "src": "7263:3:6", + "type": "" + } + ], + "src": "7176:1395:6" + } + ] + }, + "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_string_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_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 abi_decode_available_length_t_string_memory_ptr_fromMemory(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_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_memory_to_memory_with_cleanup(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr_fromMemory(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := mload(offset)\n array := abi_decode_available_length_t_string_memory_ptr_fromMemory(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := mload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := mload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n}\n", + "id": 6, + "language": "Yul", + "name": "#utility.yul" + } + ], + "linkReferences": {}, + "object": "60806040523480156200001157600080fd5b50604051620017ec380380620017ec8339818101604052810190620000379190620001f6565b8160039081620000489190620004c6565b5080600490816200005a9190620004c6565b505050620005ad565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620000cc8262000081565b810181811067ffffffffffffffff82111715620000ee57620000ed62000092565b5b80604052505050565b60006200010362000063565b9050620001118282620000c1565b919050565b600067ffffffffffffffff82111562000134576200013362000092565b5b6200013f8262000081565b9050602081019050919050565b60005b838110156200016c5780820151818401526020810190506200014f565b60008484015250505050565b60006200018f620001898462000116565b620000f7565b905082815260208101848484011115620001ae57620001ad6200007c565b5b620001bb8482856200014c565b509392505050565b600082601f830112620001db57620001da62000077565b5b8151620001ed84826020860162000178565b91505092915050565b6000806040838503121562000210576200020f6200006d565b5b600083015167ffffffffffffffff81111562000231576200023062000072565b5b6200023f85828601620001c3565b925050602083015167ffffffffffffffff81111562000263576200026262000072565b5b6200027185828601620001c3565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002ce57607f821691505b602082108103620002e457620002e362000286565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200034e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200030f565b6200035a86836200030f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003a7620003a16200039b8462000372565b6200037c565b62000372565b9050919050565b6000819050919050565b620003c38362000386565b620003db620003d282620003ae565b8484546200031c565b825550505050565b600090565b620003f2620003e3565b620003ff818484620003b8565b505050565b5b8181101562000427576200041b600082620003e8565b60018101905062000405565b5050565b601f82111562000476576200044081620002ea565b6200044b84620002ff565b810160208510156200045b578190505b620004736200046a85620002ff565b83018262000404565b50505b505050565b600082821c905092915050565b60006200049b600019846008026200047b565b1980831691505092915050565b6000620004b6838362000488565b9150826002028217905092915050565b620004d1826200027b565b67ffffffffffffffff811115620004ed57620004ec62000092565b5b620004f98254620002b5565b620005068282856200042b565b600060209050601f8311600181146200053e576000841562000529578287015190505b620005358582620004a8565b865550620005a5565b601f1984166200054e86620002ea565b60005b82811015620005785784890151825560018201915060208501945060208101905062000551565b8683101562000598578489015162000594601f89168262000488565b8355505b6001600288020188555050505b505050505050565b61122f80620005bd6000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610b0c565b60405180910390f35b6100e660048036038101906100e19190610bc7565b610308565b6040516100f39190610c22565b60405180910390f35b61010461032b565b6040516101119190610c4c565b60405180910390f35b610134600480360381019061012f9190610c67565b610335565b6040516101419190610c22565b60405180910390f35b610152610364565b60405161015f9190610cd6565b60405180910390f35b610182600480360381019061017d9190610bc7565b61036d565b60405161018f9190610c22565b60405180910390f35b6101b260048036038101906101ad9190610cf1565b6103a4565b6040516101bf9190610c4c565b60405180910390f35b6101d06103ec565b6040516101dd9190610b0c565b60405180910390f35b61020060048036038101906101fb9190610bc7565b61047e565b60405161020d9190610c22565b60405180910390f35b610230600480360381019061022b9190610bc7565b6104f5565b60405161023d9190610c22565b60405180910390f35b610260600480360381019061025b9190610d1e565b610518565b60405161026d9190610c4c565b60405180910390f35b60606003805461028590610d8d565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610d8d565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b60008061031361059f565b90506103208185856105a7565b600191505092915050565b6000600254905090565b60008061034061059f565b905061034d858285610770565b6103588585856107fc565b60019150509392505050565b60006012905090565b60008061037861059f565b905061039981858561038a8589610518565b6103949190610ded565b6105a7565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546103fb90610d8d565b80601f016020809104026020016040519081016040528092919081815260200182805461042790610d8d565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60008061048961059f565b905060006104978286610518565b9050838110156104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390610e93565b60405180910390fd5b6104e982868684036105a7565b60019250505092915050565b60008061050061059f565b905061050d8185856107fc565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060d90610f25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067c90610fb7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107639190610c4c565b60405180910390a3505050565b600061077c8484610518565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107f657818110156107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df90611023565b60405180910390fd5b6107f584848484036105a7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361086b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610862906110b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d190611147565b60405180910390fd5b6108e5838383610a72565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561096b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610962906111d9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a599190610c4c565b60405180910390a3610a6c848484610a77565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ab6578082015181840152602081019050610a9b565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ade82610a7c565b610ae88185610a87565b9350610af8818560208601610a98565b610b0181610ac2565b840191505092915050565b60006020820190508181036000830152610b268184610ad3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610b5e82610b33565b9050919050565b610b6e81610b53565b8114610b7957600080fd5b50565b600081359050610b8b81610b65565b92915050565b6000819050919050565b610ba481610b91565b8114610baf57600080fd5b50565b600081359050610bc181610b9b565b92915050565b60008060408385031215610bde57610bdd610b2e565b5b6000610bec85828601610b7c565b9250506020610bfd85828601610bb2565b9150509250929050565b60008115159050919050565b610c1c81610c07565b82525050565b6000602082019050610c376000830184610c13565b92915050565b610c4681610b91565b82525050565b6000602082019050610c616000830184610c3d565b92915050565b600080600060608486031215610c8057610c7f610b2e565b5b6000610c8e86828701610b7c565b9350506020610c9f86828701610b7c565b9250506040610cb086828701610bb2565b9150509250925092565b600060ff82169050919050565b610cd081610cba565b82525050565b6000602082019050610ceb6000830184610cc7565b92915050565b600060208284031215610d0757610d06610b2e565b5b6000610d1584828501610b7c565b91505092915050565b60008060408385031215610d3557610d34610b2e565b5b6000610d4385828601610b7c565b9250506020610d5485828601610b7c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610da557607f821691505b602082108103610db857610db7610d5e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610df882610b91565b9150610e0383610b91565b9250828201905080821115610e1b57610e1a610dbe565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000610e7d602583610a87565b9150610e8882610e21565b604082019050919050565b60006020820190508181036000830152610eac81610e70565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000610f0f602483610a87565b9150610f1a82610eb3565b604082019050919050565b60006020820190508181036000830152610f3e81610f02565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000610fa1602283610a87565b9150610fac82610f45565b604082019050919050565b60006020820190508181036000830152610fd081610f94565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061100d601d83610a87565b915061101882610fd7565b602082019050919050565b6000602082019050818103600083015261103c81611000565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061109f602583610a87565b91506110aa82611043565b604082019050919050565b600060208201905081810360008301526110ce81611092565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611131602383610a87565b915061113c826110d5565b604082019050919050565b6000602082019050818103600083015261116081611124565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006111c3602683610a87565b91506111ce82611167565b604082019050919050565b600060208201905081810360008301526111f2816111b6565b905091905056fea2646970667358221220183ff4efe215f2dbeaa29ef53e289296d853a80978fc79c1323c24229aa81aae64736f6c63430008140033", + "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x17EC CODESIZE SUB DUP1 PUSH3 0x17EC DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x1F6 JUMP JUMPDEST DUP2 PUSH1 0x3 SWAP1 DUP2 PUSH3 0x48 SWAP2 SWAP1 PUSH3 0x4C6 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP2 PUSH3 0x5A SWAP2 SWAP1 PUSH3 0x4C6 JUMP JUMPDEST POP POP POP PUSH3 0x5AD 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 PUSH3 0xCC DUP3 PUSH3 0x81 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0xEE JUMPI PUSH3 0xED PUSH3 0x92 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x103 PUSH3 0x63 JUMP JUMPDEST SWAP1 POP PUSH3 0x111 DUP3 DUP3 PUSH3 0xC1 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x134 JUMPI PUSH3 0x133 PUSH3 0x92 JUMP JUMPDEST JUMPDEST PUSH3 0x13F DUP3 PUSH3 0x81 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x16C JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x14F JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x18F PUSH3 0x189 DUP5 PUSH3 0x116 JUMP JUMPDEST PUSH3 0xF7 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x1AE JUMPI PUSH3 0x1AD PUSH3 0x7C JUMP JUMPDEST JUMPDEST PUSH3 0x1BB DUP5 DUP3 DUP6 PUSH3 0x14C JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x1DB JUMPI PUSH3 0x1DA PUSH3 0x77 JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH3 0x1ED DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x178 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x210 JUMPI PUSH3 0x20F PUSH3 0x6D JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x231 JUMPI PUSH3 0x230 PUSH3 0x72 JUMP JUMPDEST JUMPDEST PUSH3 0x23F DUP6 DUP3 DUP7 ADD PUSH3 0x1C3 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x263 JUMPI PUSH3 0x262 PUSH3 0x72 JUMP JUMPDEST JUMPDEST PUSH3 0x271 DUP6 DUP3 DUP7 ADD PUSH3 0x1C3 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x2CE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x2E4 JUMPI PUSH3 0x2E3 PUSH3 0x286 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH3 0x34E PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH3 0x30F JUMP JUMPDEST PUSH3 0x35A DUP7 DUP4 PUSH3 0x30F JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x3A7 PUSH3 0x3A1 PUSH3 0x39B DUP5 PUSH3 0x372 JUMP JUMPDEST PUSH3 0x37C JUMP JUMPDEST PUSH3 0x372 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x3C3 DUP4 PUSH3 0x386 JUMP JUMPDEST PUSH3 0x3DB PUSH3 0x3D2 DUP3 PUSH3 0x3AE JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH3 0x31C JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH3 0x3F2 PUSH3 0x3E3 JUMP JUMPDEST PUSH3 0x3FF DUP2 DUP5 DUP5 PUSH3 0x3B8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x427 JUMPI PUSH3 0x41B PUSH1 0x0 DUP3 PUSH3 0x3E8 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH3 0x405 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x476 JUMPI PUSH3 0x440 DUP2 PUSH3 0x2EA JUMP JUMPDEST PUSH3 0x44B DUP5 PUSH3 0x2FF JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH3 0x45B JUMPI DUP2 SWAP1 POP JUMPDEST PUSH3 0x473 PUSH3 0x46A DUP6 PUSH3 0x2FF JUMP JUMPDEST DUP4 ADD DUP3 PUSH3 0x404 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x49B PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH3 0x47B JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x4B6 DUP4 DUP4 PUSH3 0x488 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x4D1 DUP3 PUSH3 0x27B JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x4ED JUMPI PUSH3 0x4EC PUSH3 0x92 JUMP JUMPDEST JUMPDEST PUSH3 0x4F9 DUP3 SLOAD PUSH3 0x2B5 JUMP JUMPDEST PUSH3 0x506 DUP3 DUP3 DUP6 PUSH3 0x42B JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x53E JUMPI PUSH1 0x0 DUP5 ISZERO PUSH3 0x529 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH3 0x535 DUP6 DUP3 PUSH3 0x4A8 JUMP JUMPDEST DUP7 SSTORE POP PUSH3 0x5A5 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH3 0x54E DUP7 PUSH3 0x2EA JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x578 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x551 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH3 0x598 JUMPI DUP5 DUP10 ADD MLOAD PUSH3 0x594 PUSH1 0x1F DUP10 AND DUP3 PUSH3 0x488 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x122F DUP1 PUSH3 0x5BD PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x168 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x198 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1C8 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E6 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x216 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x246 JUMPI PUSH2 0xA9 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xFC JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x11A JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x14A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0x276 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0xB0C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE1 SWAP2 SWAP1 PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0x308 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xC22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x32B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x111 SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x134 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12F SWAP2 SWAP1 PUSH2 0xC67 JUMP JUMPDEST PUSH2 0x335 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x141 SWAP2 SWAP1 PUSH2 0xC22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x152 PUSH2 0x364 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15F SWAP2 SWAP1 PUSH2 0xCD6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x182 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17D SWAP2 SWAP1 PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0x36D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0xC22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AD SWAP2 SWAP1 PUSH2 0xCF1 JUMP JUMPDEST PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D0 PUSH2 0x3EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DD SWAP2 SWAP1 PUSH2 0xB0C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x200 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1FB SWAP2 SWAP1 PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0x47E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xC22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x230 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22B SWAP2 SWAP1 PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0x4F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23D SWAP2 SWAP1 PUSH2 0xC22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x260 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x25B SWAP2 SWAP1 PUSH2 0xD1E JUMP JUMPDEST PUSH2 0x518 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x285 SWAP1 PUSH2 0xD8D JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x2B1 SWAP1 PUSH2 0xD8D JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2FE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2FE JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2E1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x313 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x320 DUP2 DUP6 DUP6 PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x340 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x34D DUP6 DUP3 DUP6 PUSH2 0x770 JUMP JUMPDEST PUSH2 0x358 DUP6 DUP6 DUP6 PUSH2 0x7FC JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x378 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x399 DUP2 DUP6 DUP6 PUSH2 0x38A DUP6 DUP10 PUSH2 0x518 JUMP JUMPDEST PUSH2 0x394 SWAP2 SWAP1 PUSH2 0xDED JUMP JUMPDEST PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x3FB SWAP1 PUSH2 0xD8D JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x427 SWAP1 PUSH2 0xD8D JUMP JUMPDEST DUP1 ISZERO PUSH2 0x474 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x449 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x474 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x457 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x489 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x497 DUP3 DUP7 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4D3 SWAP1 PUSH2 0xE93 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4E9 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x500 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x50D DUP2 DUP6 DUP6 PUSH2 0x7FC JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x616 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x60D SWAP1 PUSH2 0xF25 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x685 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x67C SWAP1 PUSH2 0xFB7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x763 SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x77C DUP5 DUP5 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x7F6 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x7E8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7DF SWAP1 PUSH2 0x1023 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7F5 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x5A7 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x86B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x862 SWAP1 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x8DA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8D1 SWAP1 PUSH2 0x1147 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8E5 DUP4 DUP4 DUP4 PUSH2 0xA72 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x96B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x962 SWAP1 PUSH2 0x11D9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA59 SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xA6C DUP5 DUP5 DUP5 PUSH2 0xA77 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xAB6 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xA9B 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 0xADE DUP3 PUSH2 0xA7C JUMP JUMPDEST PUSH2 0xAE8 DUP2 DUP6 PUSH2 0xA87 JUMP JUMPDEST SWAP4 POP PUSH2 0xAF8 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA98 JUMP JUMPDEST PUSH2 0xB01 DUP2 PUSH2 0xAC2 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 0xB26 DUP2 DUP5 PUSH2 0xAD3 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB5E DUP3 PUSH2 0xB33 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB6E DUP2 PUSH2 0xB53 JUMP JUMPDEST DUP2 EQ PUSH2 0xB79 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB8B DUP2 PUSH2 0xB65 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xBA4 DUP2 PUSH2 0xB91 JUMP JUMPDEST DUP2 EQ PUSH2 0xBAF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xBC1 DUP2 PUSH2 0xB9B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBDE JUMPI PUSH2 0xBDD PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xBEC DUP6 DUP3 DUP7 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xBFD DUP6 DUP3 DUP7 ADD PUSH2 0xBB2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC1C DUP2 PUSH2 0xC07 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xC37 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC13 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xC46 DUP2 PUSH2 0xB91 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xC61 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC3D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xC80 JUMPI PUSH2 0xC7F PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xC8E DUP7 DUP3 DUP8 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xC9F DUP7 DUP3 DUP8 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xCB0 DUP7 DUP3 DUP8 ADD PUSH2 0xBB2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xCD0 DUP2 PUSH2 0xCBA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCEB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xCC7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD07 JUMPI PUSH2 0xD06 PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD15 DUP5 DUP3 DUP6 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD35 JUMPI PUSH2 0xD34 PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD43 DUP6 DUP3 DUP7 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xD54 DUP6 DUP3 DUP7 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xDA5 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xDB8 JUMPI PUSH2 0xDB7 PUSH2 0xD5E JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xDF8 DUP3 PUSH2 0xB91 JUMP JUMPDEST SWAP2 POP PUSH2 0xE03 DUP4 PUSH2 0xB91 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0xE1B JUMPI PUSH2 0xE1A PUSH2 0xDBE JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE7D PUSH1 0x25 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0xE88 DUP3 PUSH2 0xE21 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 0xEAC DUP2 PUSH2 0xE70 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF0F PUSH1 0x24 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0xF1A DUP3 PUSH2 0xEB3 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 0xF3E DUP2 PUSH2 0xF02 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFA1 PUSH1 0x22 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0xFAC DUP3 PUSH2 0xF45 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 0xFD0 DUP2 PUSH2 0xF94 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x100D PUSH1 0x1D DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x1018 DUP3 PUSH2 0xFD7 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 0x103C DUP2 PUSH2 0x1000 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x109F PUSH1 0x25 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x10AA DUP3 PUSH2 0x1043 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 0x10CE DUP2 PUSH2 0x1092 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1131 PUSH1 0x23 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x113C DUP3 PUSH2 0x10D5 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 0x1160 DUP2 PUSH2 0x1124 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11C3 PUSH1 0x26 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x11CE DUP3 PUSH2 0x1167 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 0x11F2 DUP2 PUSH2 0x11B6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 XOR EXTCODEHASH DELEGATECALL 0xEF 0xE2 ISZERO CALLCODE 0xDB 0xEA LOG2 SWAP15 CREATE2 RETURNDATACOPY 0x28 SWAP3 SWAP7 0xD8 MSTORE8 0xA8 MULMOD PUSH25 0xFC79C1323C24229AA81AAE64736F6C63430008140033000000 ", + "sourceMap": "1532:11312:1:-:0;;;1980:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2054:5;2046;:13;;;;;;:::i;:::-;;2079:7;2069;:17;;;;;;:::i;:::-;;1980:113;;1532:11312;;7:75:6;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:308::-;1358:4;1448:18;1440:6;1437:30;1434:56;;;1470:18;;:::i;:::-;1434:56;1508:29;1530:6;1508:29;:::i;:::-;1500:37;;1592:4;1586;1582:15;1574:23;;1296:308;;;:::o;1610:246::-;1691:1;1701:113;1715:6;1712:1;1709:13;1701:113;;;1800:1;1795:3;1791:11;1785:18;1781:1;1776:3;1772:11;1765:39;1737:2;1734:1;1730:10;1725:15;;1701:113;;;1848:1;1839:6;1834:3;1830:16;1823:27;1672:184;1610:246;;;:::o;1862:434::-;1951:5;1976:66;1992:49;2034:6;1992:49;:::i;:::-;1976:66;:::i;:::-;1967:75;;2065:6;2058:5;2051:21;2103:4;2096:5;2092:16;2141:3;2132:6;2127:3;2123:16;2120:25;2117:112;;;2148:79;;:::i;:::-;2117:112;2238:52;2283:6;2278:3;2273;2238:52;:::i;:::-;1957:339;1862:434;;;;;:::o;2316:355::-;2383:5;2432:3;2425:4;2417:6;2413:17;2409:27;2399:122;;2440:79;;:::i;:::-;2399:122;2550:6;2544:13;2575:90;2661:3;2653:6;2646:4;2638:6;2634:17;2575:90;:::i;:::-;2566:99;;2389:282;2316:355;;;;:::o;2677:853::-;2776:6;2784;2833:2;2821:9;2812:7;2808:23;2804:32;2801:119;;;2839:79;;:::i;:::-;2801:119;2980:1;2969:9;2965:17;2959:24;3010:18;3002:6;2999:30;2996:117;;;3032:79;;:::i;:::-;2996:117;3137:74;3203:7;3194:6;3183:9;3179:22;3137:74;:::i;:::-;3127:84;;2930:291;3281:2;3270:9;3266:18;3260:25;3312:18;3304:6;3301:30;3298:117;;;3334:79;;:::i;:::-;3298:117;3439:74;3505:7;3496:6;3485:9;3481:22;3439:74;:::i;:::-;3429:84;;3231:292;2677:853;;;;;:::o;3536:99::-;3588:6;3622:5;3616:12;3606:22;;3536:99;;;:::o;3641:180::-;3689:77;3686:1;3679:88;3786:4;3783:1;3776:15;3810:4;3807:1;3800:15;3827:320;3871:6;3908:1;3902:4;3898:12;3888:22;;3955:1;3949:4;3945:12;3976:18;3966:81;;4032:4;4024:6;4020:17;4010:27;;3966:81;4094:2;4086:6;4083:14;4063:18;4060:38;4057:84;;4113:18;;:::i;:::-;4057:84;3878:269;3827:320;;;:::o;4153:141::-;4202:4;4225:3;4217:11;;4248:3;4245:1;4238:14;4282:4;4279:1;4269:18;4261:26;;4153:141;;;:::o;4300:93::-;4337:6;4384:2;4379;4372:5;4368:14;4364:23;4354:33;;4300:93;;;:::o;4399:107::-;4443:8;4493:5;4487:4;4483:16;4462:37;;4399:107;;;;:::o;4512:393::-;4581:6;4631:1;4619:10;4615:18;4654:97;4684:66;4673:9;4654:97;:::i;:::-;4772:39;4802:8;4791:9;4772:39;:::i;:::-;4760:51;;4844:4;4840:9;4833:5;4829:21;4820:30;;4893:4;4883:8;4879:19;4872:5;4869:30;4859:40;;4588:317;;4512:393;;;;;:::o;4911:77::-;4948:7;4977:5;4966:16;;4911:77;;;:::o;4994:60::-;5022:3;5043:5;5036:12;;4994:60;;;:::o;5060:142::-;5110:9;5143:53;5161:34;5170:24;5188:5;5170:24;:::i;:::-;5161:34;:::i;:::-;5143:53;:::i;:::-;5130:66;;5060:142;;;:::o;5208:75::-;5251:3;5272:5;5265:12;;5208:75;;;:::o;5289:269::-;5399:39;5430:7;5399:39;:::i;:::-;5460:91;5509:41;5533:16;5509:41;:::i;:::-;5501:6;5494:4;5488:11;5460:91;:::i;:::-;5454:4;5447:105;5365:193;5289:269;;;:::o;5564:73::-;5609:3;5564:73;:::o;5643:189::-;5720:32;;:::i;:::-;5761:65;5819:6;5811;5805:4;5761:65;:::i;:::-;5696:136;5643:189;;:::o;5838:186::-;5898:120;5915:3;5908:5;5905:14;5898:120;;;5969:39;6006:1;5999:5;5969:39;:::i;:::-;5942:1;5935:5;5931:13;5922:22;;5898:120;;;5838:186;;:::o;6030:543::-;6131:2;6126:3;6123:11;6120:446;;;6165:38;6197:5;6165:38;:::i;:::-;6249:29;6267:10;6249:29;:::i;:::-;6239:8;6235:44;6432:2;6420:10;6417:18;6414:49;;;6453:8;6438:23;;6414:49;6476:80;6532:22;6550:3;6532:22;:::i;:::-;6522:8;6518:37;6505:11;6476:80;:::i;:::-;6135:431;;6120:446;6030:543;;;:::o;6579:117::-;6633:8;6683:5;6677:4;6673:16;6652:37;;6579:117;;;;:::o;6702:169::-;6746:6;6779:51;6827:1;6823:6;6815:5;6812:1;6808:13;6779:51;:::i;:::-;6775:56;6860:4;6854;6850:15;6840:25;;6753:118;6702:169;;;;:::o;6876:295::-;6952:4;7098:29;7123:3;7117:4;7098:29;:::i;:::-;7090:37;;7160:3;7157:1;7153:11;7147:4;7144:21;7136:29;;6876:295;;;;:::o;7176:1395::-;7293:37;7326:3;7293:37;:::i;:::-;7395:18;7387:6;7384:30;7381:56;;;7417:18;;:::i;:::-;7381:56;7461:38;7493:4;7487:11;7461:38;:::i;:::-;7546:67;7606:6;7598;7592:4;7546:67;:::i;:::-;7640:1;7664:4;7651:17;;7696:2;7688:6;7685:14;7713:1;7708:618;;;;8370:1;8387:6;8384:77;;;8436:9;8431:3;8427:19;8421:26;8412:35;;8384:77;8487:67;8547:6;8540:5;8487:67;:::i;:::-;8481:4;8474:81;8343:222;7678:887;;7708:618;7760:4;7756:9;7748:6;7744:22;7794:37;7826:4;7794:37;:::i;:::-;7853:1;7867:208;7881:7;7878:1;7875:14;7867:208;;;7960:9;7955:3;7951:19;7945:26;7937:6;7930:42;8011:1;8003:6;7999:14;7989:24;;8058:2;8047:9;8043:18;8030:31;;7904:4;7901:1;7897:12;7892:17;;7867:208;;;8103:6;8094:7;8091:19;8088:179;;;8161:9;8156:3;8152:19;8146:26;8204:48;8246:4;8238:6;8234:17;8223:9;8204:48;:::i;:::-;8196:6;8189:64;8111:156;8088:179;8313:1;8309;8301:6;8297:14;8293:22;8287:4;8280:36;7715:611;;;7678:887;;7268:1303;;;7176:1395;;:::o;1532:11312:1:-;;;;;;;" + }, + "deployedBytecode": { + "functionDebugData": { + "@_afterTokenTransfer_698": { + "entryPoint": 2679, + "id": 698, + "parameterSlots": 3, + "returnSlots": 0 + }, + "@_approve_633": { + "entryPoint": 1447, + "id": 633, + "parameterSlots": 3, + "returnSlots": 0 + }, + "@_beforeTokenTransfer_687": { + "entryPoint": 2674, + "id": 687, + "parameterSlots": 3, + "returnSlots": 0 + }, + "@_msgSender_814": { + "entryPoint": 1439, + "id": 814, + "parameterSlots": 0, + "returnSlots": 1 + }, + "@_spendAllowance_676": { + "entryPoint": 1904, + "id": 676, + "parameterSlots": 3, + "returnSlots": 0 + }, + "@_transfer_459": { + "entryPoint": 2044, + "id": 459, + "parameterSlots": 3, + "returnSlots": 0 + }, + "@allowance_254": { + "entryPoint": 1304, + "id": 254, + "parameterSlots": 2, + "returnSlots": 1 + }, + "@approve_279": { + "entryPoint": 776, + "id": 279, + "parameterSlots": 2, + "returnSlots": 1 + }, + "@balanceOf_211": { + "entryPoint": 932, + "id": 211, + "parameterSlots": 1, + "returnSlots": 1 + }, + "@decimals_187": { + "entryPoint": 868, + "id": 187, + "parameterSlots": 0, + "returnSlots": 1 + }, + "@decreaseAllowance_382": { + "entryPoint": 1150, + "id": 382, + "parameterSlots": 2, + "returnSlots": 1 + }, + "@increaseAllowance_341": { + "entryPoint": 877, + "id": 341, + "parameterSlots": 2, + "returnSlots": 1 + }, + "@name_167": { + "entryPoint": 630, + "id": 167, + "parameterSlots": 0, + "returnSlots": 1 + }, + "@symbol_177": { + "entryPoint": 1004, + "id": 177, + "parameterSlots": 0, + "returnSlots": 1 + }, + "@totalSupply_197": { + "entryPoint": 811, + "id": 197, + "parameterSlots": 0, + "returnSlots": 1 + }, + "@transferFrom_312": { + "entryPoint": 821, + "id": 312, + "parameterSlots": 3, + "returnSlots": 1 + }, + "@transfer_236": { + "entryPoint": 1269, + "id": 236, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_t_address": { + "entryPoint": 2940, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_t_uint256": { + "entryPoint": 2994, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_tuple_t_address": { + "entryPoint": 3313, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_tuple_t_addresst_address": { + "entryPoint": 3358, + "id": null, + "parameterSlots": 2, + "returnSlots": 2 + }, + "abi_decode_tuple_t_addresst_addresst_uint256": { + "entryPoint": 3175, + "id": null, + "parameterSlots": 2, + "returnSlots": 3 + }, + "abi_decode_tuple_t_addresst_uint256": { + "entryPoint": 3015, + "id": null, + "parameterSlots": 2, + "returnSlots": 2 + }, + "abi_encode_t_bool_to_t_bool_fromStack": { + "entryPoint": 3091, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": { + "entryPoint": 2771, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack": { + "entryPoint": 4388, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack": { + "entryPoint": 3988, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack": { + "entryPoint": 4096, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack": { + "entryPoint": 4534, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack": { + "entryPoint": 4242, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack": { + "entryPoint": 3842, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack": { + "entryPoint": 3696, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_uint256_to_t_uint256_fromStack": { + "entryPoint": 3133, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "abi_encode_t_uint8_to_t_uint8_fromStack": { + "entryPoint": 3271, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": { + "entryPoint": 3106, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 2828, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 4423, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 4023, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 4131, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 4569, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 4277, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 3877, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 3731, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": { + "entryPoint": 3148, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": { + "entryPoint": 3286, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "allocate_unbounded": { + "entryPoint": null, + "id": null, + "parameterSlots": 0, + "returnSlots": 1 + }, + "array_length_t_string_memory_ptr": { + "entryPoint": 2684, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "array_storeLengthForEncoding_t_string_memory_ptr_fromStack": { + "entryPoint": 2695, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "checked_add_t_uint256": { + "entryPoint": 3565, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "cleanup_t_address": { + "entryPoint": 2899, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "cleanup_t_bool": { + "entryPoint": 3079, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "cleanup_t_uint160": { + "entryPoint": 2867, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "cleanup_t_uint256": { + "entryPoint": 2961, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "cleanup_t_uint8": { + "entryPoint": 3258, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "copy_memory_to_memory_with_cleanup": { + "entryPoint": 2712, + "id": null, + "parameterSlots": 3, + "returnSlots": 0 + }, + "extract_byte_array_length": { + "entryPoint": 3469, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "panic_error_0x11": { + "entryPoint": 3518, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "panic_error_0x22": { + "entryPoint": 3422, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": { + "entryPoint": null, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": { + "entryPoint": 2862, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "round_up_to_mul_of_32": { + "entryPoint": 2754, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f": { + "entryPoint": 4309, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029": { + "entryPoint": 3909, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe": { + "entryPoint": 4055, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6": { + "entryPoint": 4455, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea": { + "entryPoint": 4163, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208": { + "entryPoint": 3763, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8": { + "entryPoint": 3617, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "validator_revert_t_address": { + "entryPoint": 2917, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "validator_revert_t_uint256": { + "entryPoint": 2971, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + } + }, + "generatedSources": [ + { + "ast": { + "nodeType": "YulBlock", + "src": "0:13699:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "66:40:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "77:22:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "93:5:6" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "87:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "87:12:6" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "77:6:6" + } + ] + } + ] + }, + "name": "array_length_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "49:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "59:6:6", + "type": "" + } + ], + "src": "7:99:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "208:73:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "225:3:6" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "230:6:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "218:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "218:19:6" + }, + "nodeType": "YulExpressionStatement", + "src": "218:19:6" + }, + { + "nodeType": "YulAssignment", + "src": "246:29:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "265:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "270:4:6", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "261:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "261:14:6" + }, + "variableNames": [ + { + "name": "updated_pos", + "nodeType": "YulIdentifier", + "src": "246:11:6" + } + ] + } + ] + }, + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "180:3:6", + "type": "" + }, + { + "name": "length", + "nodeType": "YulTypedName", + "src": "185:6:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "updated_pos", + "nodeType": "YulTypedName", + "src": "196:11:6", + "type": "" + } + ], + "src": "112:169:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "349:184:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "359:10:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "368:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "i", + "nodeType": "YulTypedName", + "src": "363:1:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "428:63:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "dst", + "nodeType": "YulIdentifier", + "src": "453:3:6" + }, + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "458:1:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "449:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "449:11:6" + }, + { + "arguments": [ + { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "472:3:6" + }, + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "477:1:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "468:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "468:11:6" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "462:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "462:18:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "442:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "442:39:6" + }, + "nodeType": "YulExpressionStatement", + "src": "442:39:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "389:1:6" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "392:6:6" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "386:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "386:13:6" + }, + "nodeType": "YulForLoop", + "post": { + "nodeType": "YulBlock", + "src": "400:19:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "402:15:6", + "value": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "411:1:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "414:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "407:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "407:10:6" + }, + "variableNames": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "402:1:6" + } + ] + } + ] + }, + "pre": { + "nodeType": "YulBlock", + "src": "382:3:6", + "statements": [] + }, + "src": "378:113:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "dst", + "nodeType": "YulIdentifier", + "src": "511:3:6" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "516:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "507:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "507:16:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "525:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "500:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "500:27:6" + }, + "nodeType": "YulExpressionStatement", + "src": "500:27:6" + } + ] + }, + "name": "copy_memory_to_memory_with_cleanup", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "src", + "nodeType": "YulTypedName", + "src": "331:3:6", + "type": "" + }, + { + "name": "dst", + "nodeType": "YulTypedName", + "src": "336:3:6", + "type": "" + }, + { + "name": "length", + "nodeType": "YulTypedName", + "src": "341:6:6", + "type": "" + } + ], + "src": "287:246:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "587:54:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "597:38:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "615:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "622:2:6", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "611:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "611:14:6" + }, + { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "631:2:6", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "not", + "nodeType": "YulIdentifier", + "src": "627:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "627:7:6" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "607:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "607:28:6" + }, + "variableNames": [ + { + "name": "result", + "nodeType": "YulIdentifier", + "src": "597:6:6" + } + ] + } + ] + }, + "name": "round_up_to_mul_of_32", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "570:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "result", + "nodeType": "YulTypedName", + "src": "580:6:6", + "type": "" + } + ], + "src": "539:102:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "739:285:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "749:53:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "796:5:6" + } + ], + "functionName": { + "name": "array_length_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "763:32:6" + }, + "nodeType": "YulFunctionCall", + "src": "763:39:6" + }, + "variables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "753:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "811:78:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "877:3:6" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "882:6:6" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "818:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "818:71:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "811:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "937:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "944:4:6", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "933:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "933:16:6" + }, + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "951:3:6" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "956:6:6" + } + ], + "functionName": { + "name": "copy_memory_to_memory_with_cleanup", + "nodeType": "YulIdentifier", + "src": "898:34:6" + }, + "nodeType": "YulFunctionCall", + "src": "898:65:6" + }, + "nodeType": "YulExpressionStatement", + "src": "898:65:6" + }, + { + "nodeType": "YulAssignment", + "src": "972:46:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "983:3:6" + }, + { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "1010:6:6" + } + ], + "functionName": { + "name": "round_up_to_mul_of_32", + "nodeType": "YulIdentifier", + "src": "988:21:6" + }, + "nodeType": "YulFunctionCall", + "src": "988:29:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "979:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "979:39:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "972:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "720:5:6", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "727:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "735:3:6", + "type": "" + } + ], + "src": "647:377:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1148:195:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1158:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "1170:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1181:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "1166:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1166:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "1158:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "1205:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1216:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "1201:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1201:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "1224:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "1230:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "1220:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1220:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "1194:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "1194:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "1194:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "1250:86:6", + "value": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "1322:6:6" + }, + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "1331:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "1258:63:6" + }, + "nodeType": "YulFunctionCall", + "src": "1258:78:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "1250:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "1120:9:6", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "1132:6:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "1143:4:6", + "type": "" + } + ], + "src": "1030:313:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1389:35:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1399:19:6", + "value": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1415:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "1409:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "1409:9:6" + }, + "variableNames": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "1399:6:6" + } + ] + } + ] + }, + "name": "allocate_unbounded", + "nodeType": "YulFunctionDefinition", + "returnVariables": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "1382:6:6", + "type": "" + } + ], + "src": "1349:75:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1519:28:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1536:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1539:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "1529:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "1529:12:6" + }, + "nodeType": "YulExpressionStatement", + "src": "1529:12:6" + } + ] + }, + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulFunctionDefinition", + "src": "1430:117:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1642:28:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1659:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1662:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "1652:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "1652:12:6" + }, + "nodeType": "YulExpressionStatement", + "src": "1652:12:6" + } + ] + }, + "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", + "nodeType": "YulFunctionDefinition", + "src": "1553:117:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1721:81:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1731:65:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1746:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1753:42:6", + "type": "", + "value": "0xffffffffffffffffffffffffffffffffffffffff" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "1742:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1742:54:6" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "1731:7:6" + } + ] + } + ] + }, + "name": "cleanup_t_uint160", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "1703:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "1713:7:6", + "type": "" + } + ], + "src": "1676:126:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1853:51:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1863:35:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1892:5:6" + } + ], + "functionName": { + "name": "cleanup_t_uint160", + "nodeType": "YulIdentifier", + "src": "1874:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "1874:24:6" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "1863:7:6" + } + ] + } + ] + }, + "name": "cleanup_t_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "1835:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "1845:7:6", + "type": "" + } + ], + "src": "1808:96:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1953:79:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "2010:16:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2019:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2022:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "2012:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "2012:12:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2012:12:6" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1976:5:6" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2001:5:6" + } + ], + "functionName": { + "name": "cleanup_t_address", + "nodeType": "YulIdentifier", + "src": "1983:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "1983:24:6" + } + ], + "functionName": { + "name": "eq", + "nodeType": "YulIdentifier", + "src": "1973:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "1973:35:6" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "1966:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "1966:43:6" + }, + "nodeType": "YulIf", + "src": "1963:63:6" + } + ] + }, + "name": "validator_revert_t_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "1946:5:6", + "type": "" + } + ], + "src": "1910:122:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2090:87:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "2100:29:6", + "value": { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2122:6:6" + } + ], + "functionName": { + "name": "calldataload", + "nodeType": "YulIdentifier", + "src": "2109:12:6" + }, + "nodeType": "YulFunctionCall", + "src": "2109:20:6" + }, + "variableNames": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2100:5:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2165:5:6" + } + ], + "functionName": { + "name": "validator_revert_t_address", + "nodeType": "YulIdentifier", + "src": "2138:26:6" + }, + "nodeType": "YulFunctionCall", + "src": "2138:33:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2138:33:6" + } + ] + }, + "name": "abi_decode_t_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "2068:6:6", + "type": "" + }, + { + "name": "end", + "nodeType": "YulTypedName", + "src": "2076:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "2084:5:6", + "type": "" + } + ], + "src": "2038:139:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2228:32:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "2238:16:6", + "value": { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2249:5:6" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "2238:7:6" + } + ] + } + ] + }, + "name": "cleanup_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "2210:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "2220:7:6", + "type": "" + } + ], + "src": "2183:77:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2309:79:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "2366:16:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2375:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2378:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "2368:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "2368:12:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2368:12:6" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2332:5:6" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2357:5:6" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "2339:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "2339:24:6" + } + ], + "functionName": { + "name": "eq", + "nodeType": "YulIdentifier", + "src": "2329:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "2329:35:6" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "2322:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "2322:43:6" + }, + "nodeType": "YulIf", + "src": "2319:63:6" + } + ] + }, + "name": "validator_revert_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "2302:5:6", + "type": "" + } + ], + "src": "2266:122:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2446:87:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "2456:29:6", + "value": { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2478:6:6" + } + ], + "functionName": { + "name": "calldataload", + "nodeType": "YulIdentifier", + "src": "2465:12:6" + }, + "nodeType": "YulFunctionCall", + "src": "2465:20:6" + }, + "variableNames": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2456:5:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2521:5:6" + } + ], + "functionName": { + "name": "validator_revert_t_uint256", + "nodeType": "YulIdentifier", + "src": "2494:26:6" + }, + "nodeType": "YulFunctionCall", + "src": "2494:33:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2494:33:6" + } + ] + }, + "name": "abi_decode_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "2424:6:6", + "type": "" + }, + { + "name": "end", + "nodeType": "YulTypedName", + "src": "2432:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "2440:5:6", + "type": "" + } + ], + "src": "2394:139:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2622:391:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "2668:83:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulIdentifier", + "src": "2670:77:6" + }, + "nodeType": "YulFunctionCall", + "src": "2670:79:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2670:79:6" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "2643:7:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "2652:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "2639:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2639:23:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2664:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "2635:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2635:32:6" + }, + "nodeType": "YulIf", + "src": "2632:119:6" + }, + { + "nodeType": "YulBlock", + "src": "2761:117:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "2776:15:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2790:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "2780:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "2805:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "2840:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2851:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2836:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2836:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "2860:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_address", + "nodeType": "YulIdentifier", + "src": "2815:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "2815:53:6" + }, + "variableNames": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "2805:6:6" + } + ] + } + ] + }, + { + "nodeType": "YulBlock", + "src": "2888:118:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "2903:16:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2917:2:6", + "type": "", + "value": "32" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "2907:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "2933:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "2968:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2979:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2964:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2964:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "2988:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_uint256", + "nodeType": "YulIdentifier", + "src": "2943:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "2943:53:6" + }, + "variableNames": [ + { + "name": "value1", + "nodeType": "YulIdentifier", + "src": "2933:6:6" + } + ] + } + ] + } + ] + }, + "name": "abi_decode_tuple_t_addresst_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "2584:9:6", + "type": "" + }, + { + "name": "dataEnd", + "nodeType": "YulTypedName", + "src": "2595:7:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "2607:6:6", + "type": "" + }, + { + "name": "value1", + "nodeType": "YulTypedName", + "src": "2615:6:6", + "type": "" + } + ], + "src": "2539:474:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3061:48:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3071:32:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3096:5:6" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "3089:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "3089:13:6" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "3082:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "3082:21:6" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "3071:7:6" + } + ] + } + ] + }, + "name": "cleanup_t_bool", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "3043:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "3053:7:6", + "type": "" + } + ], + "src": "3019:90:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3174:50:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "3191:3:6" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3211:5:6" + } + ], + "functionName": { + "name": "cleanup_t_bool", + "nodeType": "YulIdentifier", + "src": "3196:14:6" + }, + "nodeType": "YulFunctionCall", + "src": "3196:21:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "3184:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "3184:34:6" + }, + "nodeType": "YulExpressionStatement", + "src": "3184:34:6" + } + ] + }, + "name": "abi_encode_t_bool_to_t_bool_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "3162:5:6", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "3169:3:6", + "type": "" + } + ], + "src": "3115:109:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3322:118:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3332:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3344:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3355:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3340:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3340:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "3332:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "3406:6:6" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3419:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3430:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3415:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3415:17:6" + } + ], + "functionName": { + "name": "abi_encode_t_bool_to_t_bool_fromStack", + "nodeType": "YulIdentifier", + "src": "3368:37:6" + }, + "nodeType": "YulFunctionCall", + "src": "3368:65:6" + }, + "nodeType": "YulExpressionStatement", + "src": "3368:65:6" + } + ] + }, + "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "3294:9:6", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "3306:6:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "3317:4:6", + "type": "" + } + ], + "src": "3230:210:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3511:53:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "3528:3:6" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3551:5:6" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "3533:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "3533:24:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "3521:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "3521:37:6" + }, + "nodeType": "YulExpressionStatement", + "src": "3521:37:6" + } + ] + }, + "name": "abi_encode_t_uint256_to_t_uint256_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "3499:5:6", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "3506:3:6", + "type": "" + } + ], + "src": "3446:118:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3668:124:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3678:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3690:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3701:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3686:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3686:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "3678:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "3758:6:6" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3771:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3782:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3767:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3767:17:6" + } + ], + "functionName": { + "name": "abi_encode_t_uint256_to_t_uint256_fromStack", + "nodeType": "YulIdentifier", + "src": "3714:43:6" + }, + "nodeType": "YulFunctionCall", + "src": "3714:71:6" + }, + "nodeType": "YulExpressionStatement", + "src": "3714:71:6" + } + ] + }, + "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "3640:9:6", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "3652:6:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "3663:4:6", + "type": "" + } + ], + "src": "3570:222:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3898:519:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "3944:83:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulIdentifier", + "src": "3946:77:6" + }, + "nodeType": "YulFunctionCall", + "src": "3946:79:6" + }, + "nodeType": "YulExpressionStatement", + "src": "3946:79:6" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "3919:7:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3928:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "3915:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3915:23:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3940:2:6", + "type": "", + "value": "96" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "3911:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3911:32:6" + }, + "nodeType": "YulIf", + "src": "3908:119:6" + }, + { + "nodeType": "YulBlock", + "src": "4037:117:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "4052:15:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4066:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "4056:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "4081:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "4116:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "4127:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4112:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4112:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "4136:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_address", + "nodeType": "YulIdentifier", + "src": "4091:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "4091:53:6" + }, + "variableNames": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "4081:6:6" + } + ] + } + ] + }, + { + "nodeType": "YulBlock", + "src": "4164:118:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "4179:16:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4193:2:6", + "type": "", + "value": "32" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "4183:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "4209:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "4244:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "4255:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4240:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4240:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "4264:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_address", + "nodeType": "YulIdentifier", + "src": "4219:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "4219:53:6" + }, + "variableNames": [ + { + "name": "value1", + "nodeType": "YulIdentifier", + "src": "4209:6:6" + } + ] + } + ] + }, + { + "nodeType": "YulBlock", + "src": "4292:118:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "4307:16:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4321:2:6", + "type": "", + "value": "64" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "4311:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "4337:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "4372:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "4383:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4368:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4368:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "4392:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_uint256", + "nodeType": "YulIdentifier", + "src": "4347:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "4347:53:6" + }, + "variableNames": [ + { + "name": "value2", + "nodeType": "YulIdentifier", + "src": "4337:6:6" + } + ] + } + ] + } + ] + }, + "name": "abi_decode_tuple_t_addresst_addresst_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "3852:9:6", + "type": "" + }, + { + "name": "dataEnd", + "nodeType": "YulTypedName", + "src": "3863:7:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "3875:6:6", + "type": "" + }, + { + "name": "value1", + "nodeType": "YulTypedName", + "src": "3883:6:6", + "type": "" + }, + { + "name": "value2", + "nodeType": "YulTypedName", + "src": "3891:6:6", + "type": "" + } + ], + "src": "3798:619:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4466:43:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "4476:27:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "4491:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4498:4:6", + "type": "", + "value": "0xff" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "4487:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4487:16:6" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "4476:7:6" + } + ] + } + ] + }, + "name": "cleanup_t_uint8", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "4448:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "4458:7:6", + "type": "" + } + ], + "src": "4423:86:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4576:51:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "4593:3:6" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "4614:5:6" + } + ], + "functionName": { + "name": "cleanup_t_uint8", + "nodeType": "YulIdentifier", + "src": "4598:15:6" + }, + "nodeType": "YulFunctionCall", + "src": "4598:22:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "4586:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "4586:35:6" + }, + "nodeType": "YulExpressionStatement", + "src": "4586:35:6" + } + ] + }, + "name": "abi_encode_t_uint8_to_t_uint8_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "4564:5:6", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "4571:3:6", + "type": "" + } + ], + "src": "4515:112:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4727:120:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "4737:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "4749:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4760:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4745:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4745:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "4737:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "4813:6:6" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "4826:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4837:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4822:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4822:17:6" + } + ], + "functionName": { + "name": "abi_encode_t_uint8_to_t_uint8_fromStack", + "nodeType": "YulIdentifier", + "src": "4773:39:6" + }, + "nodeType": "YulFunctionCall", + "src": "4773:67:6" + }, + "nodeType": "YulExpressionStatement", + "src": "4773:67:6" + } + ] + }, + "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "4699:9:6", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "4711:6:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "4722:4:6", + "type": "" + } + ], + "src": "4633:214:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4919:263:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "4965:83:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulIdentifier", + "src": "4967:77:6" + }, + "nodeType": "YulFunctionCall", + "src": "4967:79:6" + }, + "nodeType": "YulExpressionStatement", + "src": "4967:79:6" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "4940:7:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "4949:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "4936:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4936:23:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4961:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "4932:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4932:32:6" + }, + "nodeType": "YulIf", + "src": "4929:119:6" + }, + { + "nodeType": "YulBlock", + "src": "5058:117:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "5073:15:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5087:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "5077:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "5102:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5137:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "5148:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5133:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5133:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "5157:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_address", + "nodeType": "YulIdentifier", + "src": "5112:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "5112:53:6" + }, + "variableNames": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "5102:6:6" + } + ] + } + ] + } + ] + }, + "name": "abi_decode_tuple_t_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "4889:9:6", + "type": "" + }, + { + "name": "dataEnd", + "nodeType": "YulTypedName", + "src": "4900:7:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "4912:6:6", + "type": "" + } + ], + "src": "4853:329:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5271:391:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "5317:83:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulIdentifier", + "src": "5319:77:6" + }, + "nodeType": "YulFunctionCall", + "src": "5319:79:6" + }, + "nodeType": "YulExpressionStatement", + "src": "5319:79:6" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "5292:7:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5301:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "5288:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5288:23:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5313:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "5284:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5284:32:6" + }, + "nodeType": "YulIf", + "src": "5281:119:6" + }, + { + "nodeType": "YulBlock", + "src": "5410:117:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "5425:15:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5439:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "5429:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "5454:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5489:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "5500:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5485:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5485:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "5509:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_address", + "nodeType": "YulIdentifier", + "src": "5464:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "5464:53:6" + }, + "variableNames": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "5454:6:6" + } + ] + } + ] + }, + { + "nodeType": "YulBlock", + "src": "5537:118:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "5552:16:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5566:2:6", + "type": "", + "value": "32" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "5556:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "5582:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5617:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "5628:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5613:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5613:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "5637:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_address", + "nodeType": "YulIdentifier", + "src": "5592:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "5592:53:6" + }, + "variableNames": [ + { + "name": "value1", + "nodeType": "YulIdentifier", + "src": "5582:6:6" + } + ] + } + ] + } + ] + }, + "name": "abi_decode_tuple_t_addresst_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "5233:9:6", + "type": "" + }, + { + "name": "dataEnd", + "nodeType": "YulTypedName", + "src": "5244:7:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "5256:6:6", + "type": "" + }, + { + "name": "value1", + "nodeType": "YulTypedName", + "src": "5264:6:6", + "type": "" + } + ], + "src": "5188:474:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5696:152:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5713:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5716:77:6", + "type": "", + "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "5706:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "5706:88:6" + }, + "nodeType": "YulExpressionStatement", + "src": "5706:88:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5810:1:6", + "type": "", + "value": "4" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5813:4:6", + "type": "", + "value": "0x22" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "5803:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "5803:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "5803:15:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5834:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5837:4:6", + "type": "", + "value": "0x24" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "5827:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "5827:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "5827:15:6" + } + ] + }, + "name": "panic_error_0x22", + "nodeType": "YulFunctionDefinition", + "src": "5668:180:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5905:269:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "5915:22:6", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "5929:4:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5935:1:6", + "type": "", + "value": "2" + } + ], + "functionName": { + "name": "div", + "nodeType": "YulIdentifier", + "src": "5925:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5925:12:6" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "5915:6:6" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "5946:38:6", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "5976:4:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5982:1:6", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "5972:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5972:12:6" + }, + "variables": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulTypedName", + "src": "5950:18:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6023:51:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "6037:27:6", + "value": { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "6051:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6059:4:6", + "type": "", + "value": "0x7f" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "6047:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6047:17:6" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "6037:6:6" + } + ] + } + ] + }, + "condition": { + "arguments": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulIdentifier", + "src": "6003:18:6" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "5996:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "5996:26:6" + }, + "nodeType": "YulIf", + "src": "5993:81:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6126:42:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "panic_error_0x22", + "nodeType": "YulIdentifier", + "src": "6140:16:6" + }, + "nodeType": "YulFunctionCall", + "src": "6140:18:6" + }, + "nodeType": "YulExpressionStatement", + "src": "6140:18:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulIdentifier", + "src": "6090:18:6" + }, + { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "6113:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6121:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "6110:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "6110:14:6" + } + ], + "functionName": { + "name": "eq", + "nodeType": "YulIdentifier", + "src": "6087:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "6087:38:6" + }, + "nodeType": "YulIf", + "src": "6084:84:6" + } + ] + }, + "name": "extract_byte_array_length", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "data", + "nodeType": "YulTypedName", + "src": "5889:4:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "5898:6:6", + "type": "" + } + ], + "src": "5854:320:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6208:152:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6225:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6228:77:6", + "type": "", + "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "6218:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "6218:88:6" + }, + "nodeType": "YulExpressionStatement", + "src": "6218:88:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6322:1:6", + "type": "", + "value": "4" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6325:4:6", + "type": "", + "value": "0x11" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "6315:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "6315:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "6315:15:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6346:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6349:4:6", + "type": "", + "value": "0x24" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "6339:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "6339:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "6339:15:6" + } + ] + }, + "name": "panic_error_0x11", + "nodeType": "YulFunctionDefinition", + "src": "6180:180:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6410:147:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "6420:25:6", + "value": { + "arguments": [ + { + "name": "x", + "nodeType": "YulIdentifier", + "src": "6443:1:6" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "6425:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "6425:20:6" + }, + "variableNames": [ + { + "name": "x", + "nodeType": "YulIdentifier", + "src": "6420:1:6" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "6454:25:6", + "value": { + "arguments": [ + { + "name": "y", + "nodeType": "YulIdentifier", + "src": "6477:1:6" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "6459:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "6459:20:6" + }, + "variableNames": [ + { + "name": "y", + "nodeType": "YulIdentifier", + "src": "6454:1:6" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "6488:16:6", + "value": { + "arguments": [ + { + "name": "x", + "nodeType": "YulIdentifier", + "src": "6499:1:6" + }, + { + "name": "y", + "nodeType": "YulIdentifier", + "src": "6502:1:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6495:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6495:9:6" + }, + "variableNames": [ + { + "name": "sum", + "nodeType": "YulIdentifier", + "src": "6488:3:6" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6528:22:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "panic_error_0x11", + "nodeType": "YulIdentifier", + "src": "6530:16:6" + }, + "nodeType": "YulFunctionCall", + "src": "6530:18:6" + }, + "nodeType": "YulExpressionStatement", + "src": "6530:18:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "x", + "nodeType": "YulIdentifier", + "src": "6520:1:6" + }, + { + "name": "sum", + "nodeType": "YulIdentifier", + "src": "6523:3:6" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "6517:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "6517:10:6" + }, + "nodeType": "YulIf", + "src": "6514:36:6" + } + ] + }, + "name": "checked_add_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "x", + "nodeType": "YulTypedName", + "src": "6397:1:6", + "type": "" + }, + { + "name": "y", + "nodeType": "YulTypedName", + "src": "6400:1:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "sum", + "nodeType": "YulTypedName", + "src": "6406:3:6", + "type": "" + } + ], + "src": "6366:191:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6669:118:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "6691:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6699:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6687:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6687:14:6" + }, + { + "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77", + "kind": "string", + "nodeType": "YulLiteral", + "src": "6703:34:6", + "type": "", + "value": "ERC20: decreased allowance below" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "6680:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "6680:58:6" + }, + "nodeType": "YulExpressionStatement", + "src": "6680:58:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "6759:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6767:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6755:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6755:15:6" + }, + { + "hexValue": "207a65726f", + "kind": "string", + "nodeType": "YulLiteral", + "src": "6772:7:6", + "type": "", + "value": " zero" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "6748:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "6748:32:6" + }, + "nodeType": "YulExpressionStatement", + "src": "6748:32:6" + } + ] + }, + "name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "6661:6:6", + "type": "" + } + ], + "src": "6563:224:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6939:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "6949:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "7015:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7020:2:6", + "type": "", + "value": "37" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "6956:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "6956:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "6949:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "7121:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8", + "nodeType": "YulIdentifier", + "src": "7032:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "7032:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "7032:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "7134:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "7145:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7150:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "7141:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "7141:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "7134:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "6927:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "6935:3:6", + "type": "" + } + ], + "src": "6793:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7336:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "7346:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "7358:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7369:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "7354:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "7354:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "7346:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "7393:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7404:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "7389:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "7389:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "7412:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "7418:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "7408:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "7408:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "7382:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "7382:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "7382:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "7438:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "7572:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "7446:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "7446:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "7438:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "7316:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "7331:4:6", + "type": "" + } + ], + "src": "7165:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7696:117:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "7718:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7726:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "7714:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "7714:14:6" + }, + { + "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464", + "kind": "string", + "nodeType": "YulLiteral", + "src": "7730:34:6", + "type": "", + "value": "ERC20: approve from the zero add" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "7707:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "7707:58:6" + }, + "nodeType": "YulExpressionStatement", + "src": "7707:58:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "7786:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7794:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "7782:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "7782:15:6" + }, + { + "hexValue": "72657373", + "kind": "string", + "nodeType": "YulLiteral", + "src": "7799:6:6", + "type": "", + "value": "ress" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "7775:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "7775:31:6" + }, + "nodeType": "YulExpressionStatement", + "src": "7775:31:6" + } + ] + }, + "name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "7688:6:6", + "type": "" + } + ], + "src": "7590:223:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7965:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "7975:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8041:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8046:2:6", + "type": "", + "value": "36" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "7982:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "7982:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "7975:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8147:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208", + "nodeType": "YulIdentifier", + "src": "8058:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "8058:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "8058:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "8160:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8171:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8176:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8167:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8167:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "8160:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "7953:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "7961:3:6", + "type": "" + } + ], + "src": "7819:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "8362:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "8372:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "8384:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8395:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8380:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8380:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "8372:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "8419:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8430:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8415:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8415:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "8438:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "8444:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "8434:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8434:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "8408:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "8408:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "8408:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "8464:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "8598:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "8472:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "8472:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "8464:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "8342:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "8357:4:6", + "type": "" + } + ], + "src": "8191:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "8722:115:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "8744:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8752:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8740:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8740:14:6" + }, + { + "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265", + "kind": "string", + "nodeType": "YulLiteral", + "src": "8756:34:6", + "type": "", + "value": "ERC20: approve to the zero addre" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "8733:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "8733:58:6" + }, + "nodeType": "YulExpressionStatement", + "src": "8733:58:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "8812:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8820:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8808:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8808:15:6" + }, + { + "hexValue": "7373", + "kind": "string", + "nodeType": "YulLiteral", + "src": "8825:4:6", + "type": "", + "value": "ss" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "8801:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "8801:29:6" + }, + "nodeType": "YulExpressionStatement", + "src": "8801:29:6" + } + ] + }, + "name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "8714:6:6", + "type": "" + } + ], + "src": "8616:221:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "8989:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "8999:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9065:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9070:2:6", + "type": "", + "value": "34" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "9006:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "9006:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8999:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9171:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029", + "nodeType": "YulIdentifier", + "src": "9082:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "9082:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "9082:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "9184:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9195:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9200:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "9191:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "9191:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "9184:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "8977:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "8985:3:6", + "type": "" + } + ], + "src": "8843:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "9386:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "9396:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "9408:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9419:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "9404:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "9404:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "9396:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "9443:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9454:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "9439:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "9439:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "9462:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "9468:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "9458:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "9458:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "9432:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "9432:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "9432:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "9488:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "9622:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "9496:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "9496:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "9488:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "9366:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "9381:4:6", + "type": "" + } + ], + "src": "9215:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "9746:73:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "9768:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9776:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "9764:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "9764:14:6" + }, + { + "hexValue": "45524332303a20696e73756666696369656e7420616c6c6f77616e6365", + "kind": "string", + "nodeType": "YulLiteral", + "src": "9780:31:6", + "type": "", + "value": "ERC20: insufficient allowance" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "9757:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "9757:55:6" + }, + "nodeType": "YulExpressionStatement", + "src": "9757:55:6" + } + ] + }, + "name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "9738:6:6", + "type": "" + } + ], + "src": "9640:179:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "9971:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "9981:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "10047:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10052:2:6", + "type": "", + "value": "29" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "9988:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "9988:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9981:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "10153:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe", + "nodeType": "YulIdentifier", + "src": "10064:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "10064:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "10064:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "10166:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "10177:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10182:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10173:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "10173:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "10166:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "9959:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "9967:3:6", + "type": "" + } + ], + "src": "9825:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "10368:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "10378:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "10390:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10401:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10386:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "10386:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "10378:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "10425:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10436:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10421:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "10421:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "10444:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "10450:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "10440:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "10440:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "10414:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "10414:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "10414:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "10470:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "10604:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "10478:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "10478:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "10470:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "10348:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "10363:4:6", + "type": "" + } + ], + "src": "10197:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "10728:118:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "10750:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10758:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10746:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "10746:14:6" + }, + { + "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164", + "kind": "string", + "nodeType": "YulLiteral", + "src": "10762:34:6", + "type": "", + "value": "ERC20: transfer from the zero ad" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "10739:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "10739:58:6" + }, + "nodeType": "YulExpressionStatement", + "src": "10739:58:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "10818:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10826:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10814:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "10814:15:6" + }, + { + "hexValue": "6472657373", + "kind": "string", + "nodeType": "YulLiteral", + "src": "10831:7:6", + "type": "", + "value": "dress" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "10807:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "10807:32:6" + }, + "nodeType": "YulExpressionStatement", + "src": "10807:32:6" + } + ] + }, + "name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "10720:6:6", + "type": "" + } + ], + "src": "10622:224:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "10998:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "11008:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "11074:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11079:2:6", + "type": "", + "value": "37" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "11015:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "11015:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "11008:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "11180:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea", + "nodeType": "YulIdentifier", + "src": "11091:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "11091:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "11091:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "11193:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "11204:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11209:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "11200:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "11200:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "11193:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "10986:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "10994:3:6", + "type": "" + } + ], + "src": "10852:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "11395:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "11405:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "11417:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11428:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "11413:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "11413:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "11405:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "11452:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11463:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "11448:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "11448:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "11471:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "11477:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "11467:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "11467:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "11441:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "11441:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "11441:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "11497:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "11631:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "11505:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "11505:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "11497:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "11375:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "11390:4:6", + "type": "" + } + ], + "src": "11224:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "11755:116:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "11777:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11785:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "11773:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "11773:14:6" + }, + { + "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472", + "kind": "string", + "nodeType": "YulLiteral", + "src": "11789:34:6", + "type": "", + "value": "ERC20: transfer to the zero addr" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "11766:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "11766:58:6" + }, + "nodeType": "YulExpressionStatement", + "src": "11766:58:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "11845:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11853:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "11841:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "11841:15:6" + }, + { + "hexValue": "657373", + "kind": "string", + "nodeType": "YulLiteral", + "src": "11858:5:6", + "type": "", + "value": "ess" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "11834:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "11834:30:6" + }, + "nodeType": "YulExpressionStatement", + "src": "11834:30:6" + } + ] + }, + "name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "11747:6:6", + "type": "" + } + ], + "src": "11649:222:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "12023:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "12033:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "12099:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12104:2:6", + "type": "", + "value": "35" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "12040:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "12040:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "12033:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "12205:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f", + "nodeType": "YulIdentifier", + "src": "12116:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "12116:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "12116:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "12218:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "12229:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12234:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "12225:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "12225:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "12218:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "12011:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "12019:3:6", + "type": "" + } + ], + "src": "11877:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "12420:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "12430:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "12442:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12453:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "12438:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "12438:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "12430:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "12477:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12488:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "12473:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "12473:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "12496:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "12502:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "12492:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "12492:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "12466:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "12466:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "12466:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "12522:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "12656:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "12530:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "12530:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "12522:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "12400:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "12415:4:6", + "type": "" + } + ], + "src": "12249:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "12780:119:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "12802:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12810:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "12798:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "12798:14:6" + }, + { + "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062", + "kind": "string", + "nodeType": "YulLiteral", + "src": "12814:34:6", + "type": "", + "value": "ERC20: transfer amount exceeds b" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "12791:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "12791:58:6" + }, + "nodeType": "YulExpressionStatement", + "src": "12791:58:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "12870:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12878:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "12866:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "12866:15:6" + }, + { + "hexValue": "616c616e6365", + "kind": "string", + "nodeType": "YulLiteral", + "src": "12883:8:6", + "type": "", + "value": "alance" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "12859:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "12859:33:6" + }, + "nodeType": "YulExpressionStatement", + "src": "12859:33:6" + } + ] + }, + "name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "12772:6:6", + "type": "" + } + ], + "src": "12674:225:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "13051:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "13061:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "13127:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13132:2:6", + "type": "", + "value": "38" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "13068:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "13068:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "13061:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "13233:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6", + "nodeType": "YulIdentifier", + "src": "13144:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "13144:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "13144:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "13246:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "13257:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13262:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "13253:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "13253:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "13246:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "13039:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "13047:3:6", + "type": "" + } + ], + "src": "12905:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "13448:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "13458:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "13470:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13481:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "13466:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "13466:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "13458:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "13505:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13516:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "13501:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "13501:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "13524:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "13530:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "13520:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "13520:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "13494:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "13494:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "13494:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "13550:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "13684:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "13558:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "13558:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "13550:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "13428:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "13443:4:6", + "type": "" + } + ], + "src": "13277:419:6" + } + ] + }, + "contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\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 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_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_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_string_memory_ptr__to_t_string_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_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\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_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 validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\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_addresst_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_address(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 cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\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 abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(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_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: decreased allowance below\")\n\n mstore(add(memPtr, 32), \" zero\")\n\n }\n\n function abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__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_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve from the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__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_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve to the zero addre\")\n\n mstore(add(memPtr, 32), \"ss\")\n\n }\n\n function abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__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_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: insufficient allowance\")\n\n }\n\n function abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 29)\n store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__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_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer from the zero ad\")\n\n mstore(add(memPtr, 32), \"dress\")\n\n }\n\n function abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__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_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(memPtr, 32), \"ess\")\n\n }\n\n function abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__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_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer amount exceeds b\")\n\n mstore(add(memPtr, 32), \"alance\")\n\n }\n\n function abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__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_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n", + "id": 6, + "language": "Yul", + "name": "#utility.yul" + } + ], + "immutableReferences": {}, + "linkReferences": {}, + "object": "608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610b0c565b60405180910390f35b6100e660048036038101906100e19190610bc7565b610308565b6040516100f39190610c22565b60405180910390f35b61010461032b565b6040516101119190610c4c565b60405180910390f35b610134600480360381019061012f9190610c67565b610335565b6040516101419190610c22565b60405180910390f35b610152610364565b60405161015f9190610cd6565b60405180910390f35b610182600480360381019061017d9190610bc7565b61036d565b60405161018f9190610c22565b60405180910390f35b6101b260048036038101906101ad9190610cf1565b6103a4565b6040516101bf9190610c4c565b60405180910390f35b6101d06103ec565b6040516101dd9190610b0c565b60405180910390f35b61020060048036038101906101fb9190610bc7565b61047e565b60405161020d9190610c22565b60405180910390f35b610230600480360381019061022b9190610bc7565b6104f5565b60405161023d9190610c22565b60405180910390f35b610260600480360381019061025b9190610d1e565b610518565b60405161026d9190610c4c565b60405180910390f35b60606003805461028590610d8d565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610d8d565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b60008061031361059f565b90506103208185856105a7565b600191505092915050565b6000600254905090565b60008061034061059f565b905061034d858285610770565b6103588585856107fc565b60019150509392505050565b60006012905090565b60008061037861059f565b905061039981858561038a8589610518565b6103949190610ded565b6105a7565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546103fb90610d8d565b80601f016020809104026020016040519081016040528092919081815260200182805461042790610d8d565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60008061048961059f565b905060006104978286610518565b9050838110156104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390610e93565b60405180910390fd5b6104e982868684036105a7565b60019250505092915050565b60008061050061059f565b905061050d8185856107fc565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060d90610f25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067c90610fb7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107639190610c4c565b60405180910390a3505050565b600061077c8484610518565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107f657818110156107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df90611023565b60405180910390fd5b6107f584848484036105a7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361086b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610862906110b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d190611147565b60405180910390fd5b6108e5838383610a72565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561096b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610962906111d9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a599190610c4c565b60405180910390a3610a6c848484610a77565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ab6578082015181840152602081019050610a9b565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ade82610a7c565b610ae88185610a87565b9350610af8818560208601610a98565b610b0181610ac2565b840191505092915050565b60006020820190508181036000830152610b268184610ad3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610b5e82610b33565b9050919050565b610b6e81610b53565b8114610b7957600080fd5b50565b600081359050610b8b81610b65565b92915050565b6000819050919050565b610ba481610b91565b8114610baf57600080fd5b50565b600081359050610bc181610b9b565b92915050565b60008060408385031215610bde57610bdd610b2e565b5b6000610bec85828601610b7c565b9250506020610bfd85828601610bb2565b9150509250929050565b60008115159050919050565b610c1c81610c07565b82525050565b6000602082019050610c376000830184610c13565b92915050565b610c4681610b91565b82525050565b6000602082019050610c616000830184610c3d565b92915050565b600080600060608486031215610c8057610c7f610b2e565b5b6000610c8e86828701610b7c565b9350506020610c9f86828701610b7c565b9250506040610cb086828701610bb2565b9150509250925092565b600060ff82169050919050565b610cd081610cba565b82525050565b6000602082019050610ceb6000830184610cc7565b92915050565b600060208284031215610d0757610d06610b2e565b5b6000610d1584828501610b7c565b91505092915050565b60008060408385031215610d3557610d34610b2e565b5b6000610d4385828601610b7c565b9250506020610d5485828601610b7c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610da557607f821691505b602082108103610db857610db7610d5e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610df882610b91565b9150610e0383610b91565b9250828201905080821115610e1b57610e1a610dbe565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000610e7d602583610a87565b9150610e8882610e21565b604082019050919050565b60006020820190508181036000830152610eac81610e70565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000610f0f602483610a87565b9150610f1a82610eb3565b604082019050919050565b60006020820190508181036000830152610f3e81610f02565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000610fa1602283610a87565b9150610fac82610f45565b604082019050919050565b60006020820190508181036000830152610fd081610f94565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061100d601d83610a87565b915061101882610fd7565b602082019050919050565b6000602082019050818103600083015261103c81611000565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061109f602583610a87565b91506110aa82611043565b604082019050919050565b600060208201905081810360008301526110ce81611092565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611131602383610a87565b915061113c826110d5565b604082019050919050565b6000602082019050818103600083015261116081611124565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006111c3602683610a87565b91506111ce82611167565b604082019050919050565b600060208201905081810360008301526111f2816111b6565b905091905056fea2646970667358221220183ff4efe215f2dbeaa29ef53e289296d853a80978fc79c1323c24229aa81aae64736f6c63430008140033", + "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x168 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x198 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1C8 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E6 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x216 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x246 JUMPI PUSH2 0xA9 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xFC JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x11A JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x14A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0x276 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0xB0C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE1 SWAP2 SWAP1 PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0x308 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xC22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x32B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x111 SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x134 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12F SWAP2 SWAP1 PUSH2 0xC67 JUMP JUMPDEST PUSH2 0x335 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x141 SWAP2 SWAP1 PUSH2 0xC22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x152 PUSH2 0x364 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15F SWAP2 SWAP1 PUSH2 0xCD6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x182 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17D SWAP2 SWAP1 PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0x36D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0xC22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AD SWAP2 SWAP1 PUSH2 0xCF1 JUMP JUMPDEST PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D0 PUSH2 0x3EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DD SWAP2 SWAP1 PUSH2 0xB0C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x200 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1FB SWAP2 SWAP1 PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0x47E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xC22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x230 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22B SWAP2 SWAP1 PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0x4F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23D SWAP2 SWAP1 PUSH2 0xC22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x260 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x25B SWAP2 SWAP1 PUSH2 0xD1E JUMP JUMPDEST PUSH2 0x518 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x285 SWAP1 PUSH2 0xD8D JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x2B1 SWAP1 PUSH2 0xD8D JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2FE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2FE JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2E1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x313 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x320 DUP2 DUP6 DUP6 PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x340 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x34D DUP6 DUP3 DUP6 PUSH2 0x770 JUMP JUMPDEST PUSH2 0x358 DUP6 DUP6 DUP6 PUSH2 0x7FC JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x378 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x399 DUP2 DUP6 DUP6 PUSH2 0x38A DUP6 DUP10 PUSH2 0x518 JUMP JUMPDEST PUSH2 0x394 SWAP2 SWAP1 PUSH2 0xDED JUMP JUMPDEST PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x3FB SWAP1 PUSH2 0xD8D JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x427 SWAP1 PUSH2 0xD8D JUMP JUMPDEST DUP1 ISZERO PUSH2 0x474 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x449 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x474 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x457 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x489 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x497 DUP3 DUP7 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4D3 SWAP1 PUSH2 0xE93 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4E9 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x500 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x50D DUP2 DUP6 DUP6 PUSH2 0x7FC JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x616 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x60D SWAP1 PUSH2 0xF25 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x685 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x67C SWAP1 PUSH2 0xFB7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x763 SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x77C DUP5 DUP5 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x7F6 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x7E8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7DF SWAP1 PUSH2 0x1023 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7F5 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x5A7 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x86B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x862 SWAP1 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x8DA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8D1 SWAP1 PUSH2 0x1147 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8E5 DUP4 DUP4 DUP4 PUSH2 0xA72 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x96B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x962 SWAP1 PUSH2 0x11D9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA59 SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xA6C DUP5 DUP5 DUP5 PUSH2 0xA77 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xAB6 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xA9B 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 0xADE DUP3 PUSH2 0xA7C JUMP JUMPDEST PUSH2 0xAE8 DUP2 DUP6 PUSH2 0xA87 JUMP JUMPDEST SWAP4 POP PUSH2 0xAF8 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA98 JUMP JUMPDEST PUSH2 0xB01 DUP2 PUSH2 0xAC2 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 0xB26 DUP2 DUP5 PUSH2 0xAD3 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB5E DUP3 PUSH2 0xB33 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB6E DUP2 PUSH2 0xB53 JUMP JUMPDEST DUP2 EQ PUSH2 0xB79 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB8B DUP2 PUSH2 0xB65 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xBA4 DUP2 PUSH2 0xB91 JUMP JUMPDEST DUP2 EQ PUSH2 0xBAF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xBC1 DUP2 PUSH2 0xB9B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBDE JUMPI PUSH2 0xBDD PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xBEC DUP6 DUP3 DUP7 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xBFD DUP6 DUP3 DUP7 ADD PUSH2 0xBB2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC1C DUP2 PUSH2 0xC07 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xC37 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC13 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xC46 DUP2 PUSH2 0xB91 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xC61 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC3D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xC80 JUMPI PUSH2 0xC7F PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xC8E DUP7 DUP3 DUP8 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xC9F DUP7 DUP3 DUP8 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xCB0 DUP7 DUP3 DUP8 ADD PUSH2 0xBB2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xCD0 DUP2 PUSH2 0xCBA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCEB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xCC7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD07 JUMPI PUSH2 0xD06 PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD15 DUP5 DUP3 DUP6 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD35 JUMPI PUSH2 0xD34 PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD43 DUP6 DUP3 DUP7 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xD54 DUP6 DUP3 DUP7 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xDA5 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xDB8 JUMPI PUSH2 0xDB7 PUSH2 0xD5E JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xDF8 DUP3 PUSH2 0xB91 JUMP JUMPDEST SWAP2 POP PUSH2 0xE03 DUP4 PUSH2 0xB91 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0xE1B JUMPI PUSH2 0xE1A PUSH2 0xDBE JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE7D PUSH1 0x25 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0xE88 DUP3 PUSH2 0xE21 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 0xEAC DUP2 PUSH2 0xE70 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF0F PUSH1 0x24 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0xF1A DUP3 PUSH2 0xEB3 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 0xF3E DUP2 PUSH2 0xF02 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFA1 PUSH1 0x22 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0xFAC DUP3 PUSH2 0xF45 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 0xFD0 DUP2 PUSH2 0xF94 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x100D PUSH1 0x1D DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x1018 DUP3 PUSH2 0xFD7 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 0x103C DUP2 PUSH2 0x1000 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x109F PUSH1 0x25 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x10AA DUP3 PUSH2 0x1043 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 0x10CE DUP2 PUSH2 0x1092 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1131 PUSH1 0x23 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x113C DUP3 PUSH2 0x10D5 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 0x1160 DUP2 PUSH2 0x1124 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11C3 PUSH1 0x26 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x11CE DUP3 PUSH2 0x1167 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 0x11F2 DUP2 PUSH2 0x11B6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 XOR EXTCODEHASH DELEGATECALL 0xEF 0xE2 ISZERO CALLCODE 0xDB 0xEA LOG2 SWAP15 CREATE2 RETURNDATACOPY 0x28 SWAP3 SWAP7 0xD8 MSTORE8 0xA8 MULMOD PUSH25 0xFC79C1323C24229AA81AAE64736F6C63430008140033000000 ", + "sourceMap": "1532:11312:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4444:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3255:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5203:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3104:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5854:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3419:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2369:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6575:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3740:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3987:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2158:98;2212:13;2244:5;2237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;:::o;4444:197::-;4527:4;4543:13;4559:12;:10;:12::i;:::-;4543:28;;4581:32;4590:5;4597:7;4606:6;4581:8;:32::i;:::-;4630:4;4623:11;;;4444:197;;;;:::o;3255:106::-;3316:7;3342:12;;3335:19;;3255:106;:::o;5203:256::-;5300:4;5316:15;5334:12;:10;:12::i;:::-;5316:30;;5356:38;5372:4;5378:7;5387:6;5356:15;:38::i;:::-;5404:27;5414:4;5420:2;5424:6;5404:9;:27::i;:::-;5448:4;5441:11;;;5203:256;;;;;:::o;3104:91::-;3162:5;3186:2;3179:9;;3104:91;:::o;5854:234::-;5942:4;5958:13;5974:12;:10;:12::i;:::-;5958:28;;5996:64;6005:5;6012:7;6049:10;6021:25;6031:5;6038:7;6021:9;:25::i;:::-;:38;;;;:::i;:::-;5996:8;:64::i;:::-;6077:4;6070:11;;;5854:234;;;;:::o;3419:125::-;3493:7;3519:9;:18;3529:7;3519:18;;;;;;;;;;;;;;;;3512:25;;3419:125;;;:::o;2369:102::-;2425:13;2457:7;2450:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2369:102;:::o;6575:427::-;6668:4;6684:13;6700:12;:10;:12::i;:::-;6684:28;;6722:24;6749:25;6759:5;6766:7;6749:9;:25::i;:::-;6722:52;;6812:15;6792:16;:35;;6784:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6903:60;6912:5;6919:7;6947:15;6928:16;:34;6903:8;:60::i;:::-;6991:4;6984:11;;;;6575:427;;;;:::o;3740:189::-;3819:4;3835:13;3851:12;:10;:12::i;:::-;3835:28;;3873;3883:5;3890:2;3894:6;3873:9;:28::i;:::-;3918:4;3911:11;;;3740:189;;;;:::o;3987:149::-;4076:7;4102:11;:18;4114:5;4102:18;;;;;;;;;;;;;;;:27;4121:7;4102:27;;;;;;;;;;;;;;;;4095:34;;3987:149;;;;:::o;640:96:4:-;693:7;719:10;712:17;;640:96;:::o;10457:340:1:-;10575:1;10558:19;;:5;:19;;;10550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10655:1;10636:21;;:7;:21;;;10628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10737:6;10707:11;:18;10719:5;10707:18;;;;;;;;;;;;;;;:27;10726:7;10707:27;;;;;;;;;;;;;;;:36;;;;10774:7;10758:32;;10767:5;10758:32;;;10783:6;10758:32;;;;;;:::i;:::-;;;;;;;;10457:340;;;:::o;11078:411::-;11178:24;11205:25;11215:5;11222:7;11205:9;:25::i;:::-;11178:52;;11264:17;11244:16;:37;11240:243;;11325:6;11305:16;:26;;11297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11407:51;11416:5;11423:7;11451:6;11432:16;:25;11407:8;:51::i;:::-;11240:243;11168:321;11078:411;;;:::o;7456:788::-;7568:1;7552:18;;:4;:18;;;7544:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7644:1;7630:16;;:2;:16;;;7622:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7697:38;7718:4;7724:2;7728:6;7697:20;:38::i;:::-;7746:19;7768:9;:15;7778:4;7768:15;;;;;;;;;;;;;;;;7746:37;;7816:6;7801:11;:21;;7793:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7931:6;7917:11;:20;7899:9;:15;7909:4;7899:15;;;;;;;;;;;;;;;:38;;;;8131:6;8114:9;:13;8124:2;8114:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8178:2;8163:26;;8172:4;8163:26;;;8182:6;8163:26;;;;;;:::i;:::-;;;;;;;;8200:37;8220:4;8226:2;8230:6;8200:19;:37::i;:::-;7534:710;7456:788;;;:::o;12073:91::-;;;;:::o;12752:90::-;;;;:::o;7:99:6:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:474::-;5256:6;5264;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5566:2;5592:53;5637:7;5628:6;5617:9;5613:22;5592:53;:::i;:::-;5582:63;;5537:118;5188:474;;;;;:::o;5668:180::-;5716:77;5713:1;5706:88;5813:4;5810:1;5803:15;5837:4;5834:1;5827:15;5854:320;5898:6;5935:1;5929:4;5925:12;5915:22;;5982:1;5976:4;5972:12;6003:18;5993:81;;6059:4;6051:6;6047:17;6037:27;;5993:81;6121:2;6113:6;6110:14;6090:18;6087:38;6084:84;;6140:18;;:::i;:::-;6084:84;5905:269;5854:320;;;:::o;6180:180::-;6228:77;6225:1;6218:88;6325:4;6322:1;6315:15;6349:4;6346:1;6339:15;6366:191;6406:3;6425:20;6443:1;6425:20;:::i;:::-;6420:25;;6459:20;6477:1;6459:20;:::i;:::-;6454:25;;6502:1;6499;6495:9;6488:16;;6523:3;6520:1;6517:10;6514:36;;;6530:18;;:::i;:::-;6514:36;6366:191;;;;:::o;6563:224::-;6703:34;6699:1;6691:6;6687:14;6680:58;6772:7;6767:2;6759:6;6755:15;6748:32;6563:224;:::o;6793:366::-;6935:3;6956:67;7020:2;7015:3;6956:67;:::i;:::-;6949:74;;7032:93;7121:3;7032:93;:::i;:::-;7150:2;7145:3;7141:12;7134:19;;6793:366;;;:::o;7165:419::-;7331:4;7369:2;7358:9;7354:18;7346:26;;7418:9;7412:4;7408:20;7404:1;7393:9;7389:17;7382:47;7446:131;7572:4;7446:131;:::i;:::-;7438:139;;7165:419;;;:::o;7590:223::-;7730:34;7726:1;7718:6;7714:14;7707:58;7799:6;7794:2;7786:6;7782:15;7775:31;7590:223;:::o;7819:366::-;7961:3;7982:67;8046:2;8041:3;7982:67;:::i;:::-;7975:74;;8058:93;8147:3;8058:93;:::i;:::-;8176:2;8171:3;8167:12;8160:19;;7819:366;;;:::o;8191:419::-;8357:4;8395:2;8384:9;8380:18;8372:26;;8444:9;8438:4;8434:20;8430:1;8419:9;8415:17;8408:47;8472:131;8598:4;8472:131;:::i;:::-;8464:139;;8191:419;;;:::o;8616:221::-;8756:34;8752:1;8744:6;8740:14;8733:58;8825:4;8820:2;8812:6;8808:15;8801:29;8616:221;:::o;8843:366::-;8985:3;9006:67;9070:2;9065:3;9006:67;:::i;:::-;8999:74;;9082:93;9171:3;9082:93;:::i;:::-;9200:2;9195:3;9191:12;9184:19;;8843:366;;;:::o;9215:419::-;9381:4;9419:2;9408:9;9404:18;9396:26;;9468:9;9462:4;9458:20;9454:1;9443:9;9439:17;9432:47;9496:131;9622:4;9496:131;:::i;:::-;9488:139;;9215:419;;;:::o;9640:179::-;9780:31;9776:1;9768:6;9764:14;9757:55;9640:179;:::o;9825:366::-;9967:3;9988:67;10052:2;10047:3;9988:67;:::i;:::-;9981:74;;10064:93;10153:3;10064:93;:::i;:::-;10182:2;10177:3;10173:12;10166:19;;9825:366;;;:::o;10197:419::-;10363:4;10401:2;10390:9;10386:18;10378:26;;10450:9;10444:4;10440:20;10436:1;10425:9;10421:17;10414:47;10478:131;10604:4;10478:131;:::i;:::-;10470:139;;10197:419;;;:::o;10622:224::-;10762:34;10758:1;10750:6;10746:14;10739:58;10831:7;10826:2;10818:6;10814:15;10807:32;10622:224;:::o;10852:366::-;10994:3;11015:67;11079:2;11074:3;11015:67;:::i;:::-;11008:74;;11091:93;11180:3;11091:93;:::i;:::-;11209:2;11204:3;11200:12;11193:19;;10852:366;;;:::o;11224:419::-;11390:4;11428:2;11417:9;11413:18;11405:26;;11477:9;11471:4;11467:20;11463:1;11452:9;11448:17;11441:47;11505:131;11631:4;11505:131;:::i;:::-;11497:139;;11224:419;;;:::o;11649:222::-;11789:34;11785:1;11777:6;11773:14;11766:58;11858:5;11853:2;11845:6;11841:15;11834:30;11649:222;:::o;11877:366::-;12019:3;12040:67;12104:2;12099:3;12040:67;:::i;:::-;12033:74;;12116:93;12205:3;12116:93;:::i;:::-;12234:2;12229:3;12225:12;12218:19;;11877:366;;;:::o;12249:419::-;12415:4;12453:2;12442:9;12438:18;12430:26;;12502:9;12496:4;12492:20;12488:1;12477:9;12473:17;12466:47;12530:131;12656:4;12530:131;:::i;:::-;12522:139;;12249:419;;;:::o;12674:225::-;12814:34;12810:1;12802:6;12798:14;12791:58;12883:8;12878:2;12870:6;12866:15;12859:33;12674:225;:::o;12905:366::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:419::-;13443:4;13481:2;13470:9;13466:18;13458:26;;13530:9;13524:4;13520:20;13516:1;13505:9;13501:17;13494:47;13558:131;13684:4;13558:131;:::i;:::-;13550:139;;13277:419;;;:::o" + }, + "gasEstimates": { + "creation": { + "codeDepositCost": "931000", + "executionCost": "infinite", + "totalCost": "infinite" + }, + "external": { + "allowance(address,address)": "infinite", + "approve(address,uint256)": "infinite", + "balanceOf(address)": "2863", + "decimals()": "432", + "decreaseAllowance(address,uint256)": "infinite", + "increaseAllowance(address,uint256)": "infinite", + "name()": "infinite", + "symbol()": "infinite", + "totalSupply()": "2482", + "transfer(address,uint256)": "infinite", + "transferFrom(address,address,uint256)": "infinite" + }, + "internal": { + "_afterTokenTransfer(address,address,uint256)": "15", + "_approve(address,address,uint256)": "infinite", + "_beforeTokenTransfer(address,address,uint256)": "15", + "_burn(address,uint256)": "infinite", + "_mint(address,uint256)": "infinite", + "_spendAllowance(address,address,uint256)": "infinite", + "_transfer(address,address,uint256)": "infinite" + } + }, + "legacyAssembly": { + ".code": [ + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "80" + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 1532, + "end": 12844, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "CALLVALUE", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "PUSH [tag]", + "source": 1, + "value": "1" + }, + { + "begin": 1980, + "end": 2093, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 1980, + "end": 2093, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "REVERT", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "tag", + "source": 1, + "value": "1" + }, + { + "begin": 1980, + "end": 2093, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "POP", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 1980, + "end": 2093, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "PUSHSIZE", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "CODESIZE", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "SUB", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "PUSHSIZE", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "DUP4", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "CODECOPY", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "DUP2", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "DUP2", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "ADD", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 1980, + "end": 2093, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "DUP2", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "ADD", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "PUSH [tag]", + "source": 1, + "value": "2" + }, + { + "begin": 1980, + "end": 2093, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "PUSH [tag]", + "source": 1, + "value": "3" + }, + { + "begin": 1980, + "end": 2093, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "tag", + "source": 1, + "value": "2" + }, + { + "begin": 1980, + "end": 2093, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2054, + "end": 2059, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2046, + "end": 2051, + "name": "PUSH", + "source": 1, + "value": "3" + }, + { + "begin": 2046, + "end": 2059, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2046, + "end": 2059, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2046, + "end": 2059, + "name": "PUSH [tag]", + "source": 1, + "value": "6" + }, + { + "begin": 2046, + "end": 2059, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2046, + "end": 2059, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2046, + "end": 2059, + "name": "PUSH [tag]", + "source": 1, + "value": "7" + }, + { + "begin": 2046, + "end": 2059, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2046, + "end": 2059, + "name": "tag", + "source": 1, + "value": "6" + }, + { + "begin": 2046, + "end": 2059, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2046, + "end": 2059, + "name": "POP", + "source": 1 + }, + { + "begin": 2079, + "end": 2086, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2069, + "end": 2076, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 2069, + "end": 2086, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2069, + "end": 2086, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2069, + "end": 2086, + "name": "PUSH [tag]", + "source": 1, + "value": "8" + }, + { + "begin": 2069, + "end": 2086, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2069, + "end": 2086, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2069, + "end": 2086, + "name": "PUSH [tag]", + "source": 1, + "value": "7" + }, + { + "begin": 2069, + "end": 2086, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2069, + "end": 2086, + "name": "tag", + "source": 1, + "value": "8" + }, + { + "begin": 2069, + "end": 2086, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2069, + "end": 2086, + "name": "POP", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "POP", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "POP", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH [tag]", + "source": 1, + "value": "9" + }, + { + "begin": 1532, + "end": 12844, + "name": "JUMP", + "source": 1 + }, + { + "begin": 7, + "end": 82, + "name": "tag", + "source": 6, + "value": "10" + }, + { + "begin": 7, + "end": 82, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 40, + "end": 46, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 73, + "end": 75, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 67, + "end": 76, + "name": "MLOAD", + "source": 6 + }, + { + "begin": 57, + "end": 76, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 57, + "end": 76, + "name": "POP", + "source": 6 + }, + { + "begin": 7, + "end": 82, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 7, + "end": 82, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 88, + "end": 205, + "name": "tag", + "source": 6, + "value": "11" + }, + { + "begin": 88, + "end": 205, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 197, + "end": 198, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 194, + "end": 195, + "name": "DUP1", + "source": 6 + }, + { + "begin": 187, + "end": 199, + "name": "REVERT", + "source": 6 + }, + { + "begin": 211, + "end": 328, + "name": "tag", + "source": 6, + "value": "12" + }, + { + "begin": 211, + "end": 328, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 320, + "end": 321, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 317, + "end": 318, + "name": "DUP1", + "source": 6 + }, + { + "begin": 310, + "end": 322, + "name": "REVERT", + "source": 6 + }, + { + "begin": 334, + "end": 451, + "name": "tag", + "source": 6, + "value": "13" + }, + { + "begin": 334, + "end": 451, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 443, + "end": 444, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 440, + "end": 441, + "name": "DUP1", + "source": 6 + }, + { + "begin": 433, + "end": 445, + "name": "REVERT", + "source": 6 + }, + { + "begin": 457, + "end": 574, + "name": "tag", + "source": 6, + "value": "14" + }, + { + "begin": 457, + "end": 574, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 566, + "end": 567, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 563, + "end": 564, + "name": "DUP1", + "source": 6 + }, + { + "begin": 556, + "end": 568, + "name": "REVERT", + "source": 6 + }, + { + "begin": 580, + "end": 682, + "name": "tag", + "source": 6, + "value": "15" + }, + { + "begin": 580, + "end": 682, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 621, + "end": 627, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 672, + "end": 674, + "name": "PUSH", + "source": 6, + "value": "1F" + }, + { + "begin": 668, + "end": 675, + "name": "NOT", + "source": 6 + }, + { + "begin": 663, + "end": 665, + "name": "PUSH", + "source": 6, + "value": "1F" + }, + { + "begin": 656, + "end": 661, + "name": "DUP4", + "source": 6 + }, + { + "begin": 652, + "end": 666, + "name": "ADD", + "source": 6 + }, + { + "begin": 648, + "end": 676, + "name": "AND", + "source": 6 + }, + { + "begin": 638, + "end": 676, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 638, + "end": 676, + "name": "POP", + "source": 6 + }, + { + "begin": 580, + "end": 682, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 580, + "end": 682, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 580, + "end": 682, + "name": "POP", + "source": 6 + }, + { + "begin": 580, + "end": 682, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 688, + "end": 868, + "name": "tag", + "source": 6, + "value": "16" + }, + { + "begin": 688, + "end": 868, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 736, + "end": 813, + "name": "PUSH", + "source": 6, + "value": "4E487B7100000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 733, + "end": 734, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 726, + "end": 814, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 833, + "end": 837, + "name": "PUSH", + "source": 6, + "value": "41" + }, + { + "begin": 830, + "end": 831, + "name": "PUSH", + "source": 6, + "value": "4" + }, + { + "begin": 823, + "end": 838, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 857, + "end": 861, + "name": "PUSH", + "source": 6, + "value": "24" + }, + { + "begin": 854, + "end": 855, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 847, + "end": 862, + "name": "REVERT", + "source": 6 + }, + { + "begin": 874, + "end": 1155, + "name": "tag", + "source": 6, + "value": "17" + }, + { + "begin": 874, + "end": 1155, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 957, + "end": 984, + "name": "PUSH [tag]", + "source": 6, + "value": "51" + }, + { + "begin": 979, + "end": 983, + "name": "DUP3", + "source": 6 + }, + { + "begin": 957, + "end": 984, + "name": "PUSH [tag]", + "source": 6, + "value": "15" + }, + { + "begin": 957, + "end": 984, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 957, + "end": 984, + "name": "tag", + "source": 6, + "value": "51" + }, + { + "begin": 957, + "end": 984, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 949, + "end": 955, + "name": "DUP2", + "source": 6 + }, + { + "begin": 945, + "end": 985, + "name": "ADD", + "source": 6 + }, + { + "begin": 1087, + "end": 1093, + "name": "DUP2", + "source": 6 + }, + { + "begin": 1075, + "end": 1085, + "name": "DUP2", + "source": 6 + }, + { + "begin": 1072, + "end": 1094, + "name": "LT", + "source": 6 + }, + { + "begin": 1051, + "end": 1069, + "name": "PUSH", + "source": 6, + "value": "FFFFFFFFFFFFFFFF" + }, + { + "begin": 1039, + "end": 1049, + "name": "DUP3", + "source": 6 + }, + { + "begin": 1036, + "end": 1070, + "name": "GT", + "source": 6 + }, + { + "begin": 1033, + "end": 1095, + "name": "OR", + "source": 6 + }, + { + "begin": 1030, + "end": 1118, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 1030, + "end": 1118, + "name": "PUSH [tag]", + "source": 6, + "value": "52" + }, + { + "begin": 1030, + "end": 1118, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 1098, + "end": 1116, + "name": "PUSH [tag]", + "source": 6, + "value": "53" + }, + { + "begin": 1098, + "end": 1116, + "name": "PUSH [tag]", + "source": 6, + "value": "16" + }, + { + "begin": 1098, + "end": 1116, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1098, + "end": 1116, + "name": "tag", + "source": 6, + "value": "53" + }, + { + "begin": 1098, + "end": 1116, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1030, + "end": 1118, + "name": "tag", + "source": 6, + "value": "52" + }, + { + "begin": 1030, + "end": 1118, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1138, + "end": 1148, + "name": "DUP1", + "source": 6 + }, + { + "begin": 1134, + "end": 1136, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 1127, + "end": 1149, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 917, + "end": 1155, + "name": "POP", + "source": 6 + }, + { + "begin": 874, + "end": 1155, + "name": "POP", + "source": 6 + }, + { + "begin": 874, + "end": 1155, + "name": "POP", + "source": 6 + }, + { + "begin": 874, + "end": 1155, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1161, + "end": 1290, + "name": "tag", + "source": 6, + "value": "18" + }, + { + "begin": 1161, + "end": 1290, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1195, + "end": 1201, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 1222, + "end": 1242, + "name": "PUSH [tag]", + "source": 6, + "value": "55" + }, + { + "begin": 1222, + "end": 1242, + "name": "PUSH [tag]", + "source": 6, + "value": "10" + }, + { + "begin": 1222, + "end": 1242, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1222, + "end": 1242, + "name": "tag", + "source": 6, + "value": "55" + }, + { + "begin": 1222, + "end": 1242, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1212, + "end": 1242, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1212, + "end": 1242, + "name": "POP", + "source": 6 + }, + { + "begin": 1251, + "end": 1284, + "name": "PUSH [tag]", + "source": 6, + "value": "56" + }, + { + "begin": 1279, + "end": 1283, + "name": "DUP3", + "source": 6 + }, + { + "begin": 1271, + "end": 1277, + "name": "DUP3", + "source": 6 + }, + { + "begin": 1251, + "end": 1284, + "name": "PUSH [tag]", + "source": 6, + "value": "17" + }, + { + "begin": 1251, + "end": 1284, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1251, + "end": 1284, + "name": "tag", + "source": 6, + "value": "56" + }, + { + "begin": 1251, + "end": 1284, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1161, + "end": 1290, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 1161, + "end": 1290, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1161, + "end": 1290, + "name": "POP", + "source": 6 + }, + { + "begin": 1161, + "end": 1290, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1296, + "end": 1604, + "name": "tag", + "source": 6, + "value": "19" + }, + { + "begin": 1296, + "end": 1604, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1358, + "end": 1362, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 1448, + "end": 1466, + "name": "PUSH", + "source": 6, + "value": "FFFFFFFFFFFFFFFF" + }, + { + "begin": 1440, + "end": 1446, + "name": "DUP3", + "source": 6 + }, + { + "begin": 1437, + "end": 1467, + "name": "GT", + "source": 6 + }, + { + "begin": 1434, + "end": 1490, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 1434, + "end": 1490, + "name": "PUSH [tag]", + "source": 6, + "value": "58" + }, + { + "begin": 1434, + "end": 1490, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 1470, + "end": 1488, + "name": "PUSH [tag]", + "source": 6, + "value": "59" + }, + { + "begin": 1470, + "end": 1488, + "name": "PUSH [tag]", + "source": 6, + "value": "16" + }, + { + "begin": 1470, + "end": 1488, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1470, + "end": 1488, + "name": "tag", + "source": 6, + "value": "59" + }, + { + "begin": 1470, + "end": 1488, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1434, + "end": 1490, + "name": "tag", + "source": 6, + "value": "58" + }, + { + "begin": 1434, + "end": 1490, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1508, + "end": 1537, + "name": "PUSH [tag]", + "source": 6, + "value": "60" + }, + { + "begin": 1530, + "end": 1536, + "name": "DUP3", + "source": 6 + }, + { + "begin": 1508, + "end": 1537, + "name": "PUSH [tag]", + "source": 6, + "value": "15" + }, + { + "begin": 1508, + "end": 1537, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1508, + "end": 1537, + "name": "tag", + "source": 6, + "value": "60" + }, + { + "begin": 1508, + "end": 1537, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1500, + "end": 1537, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1500, + "end": 1537, + "name": "POP", + "source": 6 + }, + { + "begin": 1592, + "end": 1596, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 1586, + "end": 1590, + "name": "DUP2", + "source": 6 + }, + { + "begin": 1582, + "end": 1597, + "name": "ADD", + "source": 6 + }, + { + "begin": 1574, + "end": 1597, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1574, + "end": 1597, + "name": "POP", + "source": 6 + }, + { + "begin": 1296, + "end": 1604, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 1296, + "end": 1604, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1296, + "end": 1604, + "name": "POP", + "source": 6 + }, + { + "begin": 1296, + "end": 1604, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1610, + "end": 1856, + "name": "tag", + "source": 6, + "value": "20" + }, + { + "begin": 1610, + "end": 1856, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1691, + "end": 1692, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 1701, + "end": 1814, + "name": "tag", + "source": 6, + "value": "62" + }, + { + "begin": 1701, + "end": 1814, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1715, + "end": 1721, + "name": "DUP4", + "source": 6 + }, + { + "begin": 1712, + "end": 1713, + "name": "DUP2", + "source": 6 + }, + { + "begin": 1709, + "end": 1722, + "name": "LT", + "source": 6 + }, + { + "begin": 1701, + "end": 1814, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 1701, + "end": 1814, + "name": "PUSH [tag]", + "source": 6, + "value": "64" + }, + { + "begin": 1701, + "end": 1814, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 1800, + "end": 1801, + "name": "DUP1", + "source": 6 + }, + { + "begin": 1795, + "end": 1798, + "name": "DUP3", + "source": 6 + }, + { + "begin": 1791, + "end": 1802, + "name": "ADD", + "source": 6 + }, + { + "begin": 1785, + "end": 1803, + "name": "MLOAD", + "source": 6 + }, + { + "begin": 1781, + "end": 1782, + "name": "DUP2", + "source": 6 + }, + { + "begin": 1776, + "end": 1779, + "name": "DUP5", + "source": 6 + }, + { + "begin": 1772, + "end": 1783, + "name": "ADD", + "source": 6 + }, + { + "begin": 1765, + "end": 1804, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 1737, + "end": 1739, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 1734, + "end": 1735, + "name": "DUP2", + "source": 6 + }, + { + "begin": 1730, + "end": 1740, + "name": "ADD", + "source": 6 + }, + { + "begin": 1725, + "end": 1740, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1725, + "end": 1740, + "name": "POP", + "source": 6 + }, + { + "begin": 1701, + "end": 1814, + "name": "PUSH [tag]", + "source": 6, + "value": "62" + }, + { + "begin": 1701, + "end": 1814, + "name": "JUMP", + "source": 6 + }, + { + "begin": 1701, + "end": 1814, + "name": "tag", + "source": 6, + "value": "64" + }, + { + "begin": 1701, + "end": 1814, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1848, + "end": 1849, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 1839, + "end": 1845, + "name": "DUP5", + "source": 6 + }, + { + "begin": 1834, + "end": 1837, + "name": "DUP5", + "source": 6 + }, + { + "begin": 1830, + "end": 1846, + "name": "ADD", + "source": 6 + }, + { + "begin": 1823, + "end": 1850, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 1672, + "end": 1856, + "name": "POP", + "source": 6 + }, + { + "begin": 1610, + "end": 1856, + "name": "POP", + "source": 6 + }, + { + "begin": 1610, + "end": 1856, + "name": "POP", + "source": 6 + }, + { + "begin": 1610, + "end": 1856, + "name": "POP", + "source": 6 + }, + { + "begin": 1610, + "end": 1856, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1862, + "end": 2296, + "name": "tag", + "source": 6, + "value": "21" + }, + { + "begin": 1862, + "end": 2296, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1951, + "end": 1956, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 1976, + "end": 2042, + "name": "PUSH [tag]", + "source": 6, + "value": "66" + }, + { + "begin": 1992, + "end": 2041, + "name": "PUSH [tag]", + "source": 6, + "value": "67" + }, + { + "begin": 2034, + "end": 2040, + "name": "DUP5", + "source": 6 + }, + { + "begin": 1992, + "end": 2041, + "name": "PUSH [tag]", + "source": 6, + "value": "19" + }, + { + "begin": 1992, + "end": 2041, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1992, + "end": 2041, + "name": "tag", + "source": 6, + "value": "67" + }, + { + "begin": 1992, + "end": 2041, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1976, + "end": 2042, + "name": "PUSH [tag]", + "source": 6, + "value": "18" + }, + { + "begin": 1976, + "end": 2042, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1976, + "end": 2042, + "name": "tag", + "source": 6, + "value": "66" + }, + { + "begin": 1976, + "end": 2042, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1967, + "end": 2042, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1967, + "end": 2042, + "name": "POP", + "source": 6 + }, + { + "begin": 2065, + "end": 2071, + "name": "DUP3", + "source": 6 + }, + { + "begin": 2058, + "end": 2063, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2051, + "end": 2072, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 2103, + "end": 2107, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 2096, + "end": 2101, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2092, + "end": 2108, + "name": "ADD", + "source": 6 + }, + { + "begin": 2141, + "end": 2144, + "name": "DUP5", + "source": 6 + }, + { + "begin": 2132, + "end": 2138, + "name": "DUP5", + "source": 6 + }, + { + "begin": 2127, + "end": 2130, + "name": "DUP5", + "source": 6 + }, + { + "begin": 2123, + "end": 2139, + "name": "ADD", + "source": 6 + }, + { + "begin": 2120, + "end": 2145, + "name": "GT", + "source": 6 + }, + { + "begin": 2117, + "end": 2229, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 2117, + "end": 2229, + "name": "PUSH [tag]", + "source": 6, + "value": "68" + }, + { + "begin": 2117, + "end": 2229, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 2148, + "end": 2227, + "name": "PUSH [tag]", + "source": 6, + "value": "69" + }, + { + "begin": 2148, + "end": 2227, + "name": "PUSH [tag]", + "source": 6, + "value": "14" + }, + { + "begin": 2148, + "end": 2227, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2148, + "end": 2227, + "name": "tag", + "source": 6, + "value": "69" + }, + { + "begin": 2148, + "end": 2227, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2117, + "end": 2229, + "name": "tag", + "source": 6, + "value": "68" + }, + { + "begin": 2117, + "end": 2229, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2238, + "end": 2290, + "name": "PUSH [tag]", + "source": 6, + "value": "70" + }, + { + "begin": 2283, + "end": 2289, + "name": "DUP5", + "source": 6 + }, + { + "begin": 2278, + "end": 2281, + "name": "DUP3", + "source": 6 + }, + { + "begin": 2273, + "end": 2276, + "name": "DUP6", + "source": 6 + }, + { + "begin": 2238, + "end": 2290, + "name": "PUSH [tag]", + "source": 6, + "value": "20" + }, + { + "begin": 2238, + "end": 2290, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2238, + "end": 2290, + "name": "tag", + "source": 6, + "value": "70" + }, + { + "begin": 2238, + "end": 2290, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1957, + "end": 2296, + "name": "POP", + "source": 6 + }, + { + "begin": 1862, + "end": 2296, + "name": "SWAP4", + "source": 6 + }, + { + "begin": 1862, + "end": 2296, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 1862, + "end": 2296, + "name": "POP", + "source": 6 + }, + { + "begin": 1862, + "end": 2296, + "name": "POP", + "source": 6 + }, + { + "begin": 1862, + "end": 2296, + "name": "POP", + "source": 6 + }, + { + "begin": 1862, + "end": 2296, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2316, + "end": 2671, + "name": "tag", + "source": 6, + "value": "22" + }, + { + "begin": 2316, + "end": 2671, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2383, + "end": 2388, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 2432, + "end": 2435, + "name": "DUP3", + "source": 6 + }, + { + "begin": 2425, + "end": 2429, + "name": "PUSH", + "source": 6, + "value": "1F" + }, + { + "begin": 2417, + "end": 2423, + "name": "DUP4", + "source": 6 + }, + { + "begin": 2413, + "end": 2430, + "name": "ADD", + "source": 6 + }, + { + "begin": 2409, + "end": 2436, + "name": "SLT", + "source": 6 + }, + { + "begin": 2399, + "end": 2521, + "name": "PUSH [tag]", + "source": 6, + "value": "72" + }, + { + "begin": 2399, + "end": 2521, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 2440, + "end": 2519, + "name": "PUSH [tag]", + "source": 6, + "value": "73" + }, + { + "begin": 2440, + "end": 2519, + "name": "PUSH [tag]", + "source": 6, + "value": "13" + }, + { + "begin": 2440, + "end": 2519, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2440, + "end": 2519, + "name": "tag", + "source": 6, + "value": "73" + }, + { + "begin": 2440, + "end": 2519, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2399, + "end": 2521, + "name": "tag", + "source": 6, + "value": "72" + }, + { + "begin": 2399, + "end": 2521, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2550, + "end": 2556, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2544, + "end": 2557, + "name": "MLOAD", + "source": 6 + }, + { + "begin": 2575, + "end": 2665, + "name": "PUSH [tag]", + "source": 6, + "value": "74" + }, + { + "begin": 2661, + "end": 2664, + "name": "DUP5", + "source": 6 + }, + { + "begin": 2653, + "end": 2659, + "name": "DUP3", + "source": 6 + }, + { + "begin": 2646, + "end": 2650, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 2638, + "end": 2644, + "name": "DUP7", + "source": 6 + }, + { + "begin": 2634, + "end": 2651, + "name": "ADD", + "source": 6 + }, + { + "begin": 2575, + "end": 2665, + "name": "PUSH [tag]", + "source": 6, + "value": "21" + }, + { + "begin": 2575, + "end": 2665, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2575, + "end": 2665, + "name": "tag", + "source": 6, + "value": "74" + }, + { + "begin": 2575, + "end": 2665, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2566, + "end": 2665, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 2566, + "end": 2665, + "name": "POP", + "source": 6 + }, + { + "begin": 2389, + "end": 2671, + "name": "POP", + "source": 6 + }, + { + "begin": 2316, + "end": 2671, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 2316, + "end": 2671, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 2316, + "end": 2671, + "name": "POP", + "source": 6 + }, + { + "begin": 2316, + "end": 2671, + "name": "POP", + "source": 6 + }, + { + "begin": 2316, + "end": 2671, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2677, + "end": 3530, + "name": "tag", + "source": 6, + "value": "3" + }, + { + "begin": 2677, + "end": 3530, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2776, + "end": 2782, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 2784, + "end": 2790, + "name": "DUP1", + "source": 6 + }, + { + "begin": 2833, + "end": 2835, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 2821, + "end": 2830, + "name": "DUP4", + "source": 6 + }, + { + "begin": 2812, + "end": 2819, + "name": "DUP6", + "source": 6 + }, + { + "begin": 2808, + "end": 2831, + "name": "SUB", + "source": 6 + }, + { + "begin": 2804, + "end": 2836, + "name": "SLT", + "source": 6 + }, + { + "begin": 2801, + "end": 2920, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 2801, + "end": 2920, + "name": "PUSH [tag]", + "source": 6, + "value": "76" + }, + { + "begin": 2801, + "end": 2920, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 2839, + "end": 2918, + "name": "PUSH [tag]", + "source": 6, + "value": "77" + }, + { + "begin": 2839, + "end": 2918, + "name": "PUSH [tag]", + "source": 6, + "value": "11" + }, + { + "begin": 2839, + "end": 2918, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2839, + "end": 2918, + "name": "tag", + "source": 6, + "value": "77" + }, + { + "begin": 2839, + "end": 2918, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2801, + "end": 2920, + "name": "tag", + "source": 6, + "value": "76" + }, + { + "begin": 2801, + "end": 2920, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2980, + "end": 2981, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 2969, + "end": 2978, + "name": "DUP4", + "source": 6 + }, + { + "begin": 2965, + "end": 2982, + "name": "ADD", + "source": 6 + }, + { + "begin": 2959, + "end": 2983, + "name": "MLOAD", + "source": 6 + }, + { + "begin": 3010, + "end": 3028, + "name": "PUSH", + "source": 6, + "value": "FFFFFFFFFFFFFFFF" + }, + { + "begin": 3002, + "end": 3008, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2999, + "end": 3029, + "name": "GT", + "source": 6 + }, + { + "begin": 2996, + "end": 3113, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 2996, + "end": 3113, + "name": "PUSH [tag]", + "source": 6, + "value": "78" + }, + { + "begin": 2996, + "end": 3113, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 3032, + "end": 3111, + "name": "PUSH [tag]", + "source": 6, + "value": "79" + }, + { + "begin": 3032, + "end": 3111, + "name": "PUSH [tag]", + "source": 6, + "value": "12" + }, + { + "begin": 3032, + "end": 3111, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3032, + "end": 3111, + "name": "tag", + "source": 6, + "value": "79" + }, + { + "begin": 3032, + "end": 3111, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2996, + "end": 3113, + "name": "tag", + "source": 6, + "value": "78" + }, + { + "begin": 2996, + "end": 3113, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3137, + "end": 3211, + "name": "PUSH [tag]", + "source": 6, + "value": "80" + }, + { + "begin": 3203, + "end": 3210, + "name": "DUP6", + "source": 6 + }, + { + "begin": 3194, + "end": 3200, + "name": "DUP3", + "source": 6 + }, + { + "begin": 3183, + "end": 3192, + "name": "DUP7", + "source": 6 + }, + { + "begin": 3179, + "end": 3201, + "name": "ADD", + "source": 6 + }, + { + "begin": 3137, + "end": 3211, + "name": "PUSH [tag]", + "source": 6, + "value": "22" + }, + { + "begin": 3137, + "end": 3211, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3137, + "end": 3211, + "name": "tag", + "source": 6, + "value": "80" + }, + { + "begin": 3137, + "end": 3211, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3127, + "end": 3211, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 3127, + "end": 3211, + "name": "POP", + "source": 6 + }, + { + "begin": 2930, + "end": 3221, + "name": "POP", + "source": 6 + }, + { + "begin": 3281, + "end": 3283, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 3270, + "end": 3279, + "name": "DUP4", + "source": 6 + }, + { + "begin": 3266, + "end": 3284, + "name": "ADD", + "source": 6 + }, + { + "begin": 3260, + "end": 3285, + "name": "MLOAD", + "source": 6 + }, + { + "begin": 3312, + "end": 3330, + "name": "PUSH", + "source": 6, + "value": "FFFFFFFFFFFFFFFF" + }, + { + "begin": 3304, + "end": 3310, + "name": "DUP2", + "source": 6 + }, + { + "begin": 3301, + "end": 3331, + "name": "GT", + "source": 6 + }, + { + "begin": 3298, + "end": 3415, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 3298, + "end": 3415, + "name": "PUSH [tag]", + "source": 6, + "value": "81" + }, + { + "begin": 3298, + "end": 3415, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 3334, + "end": 3413, + "name": "PUSH [tag]", + "source": 6, + "value": "82" + }, + { + "begin": 3334, + "end": 3413, + "name": "PUSH [tag]", + "source": 6, + "value": "12" + }, + { + "begin": 3334, + "end": 3413, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3334, + "end": 3413, + "name": "tag", + "source": 6, + "value": "82" + }, + { + "begin": 3334, + "end": 3413, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3298, + "end": 3415, + "name": "tag", + "source": 6, + "value": "81" + }, + { + "begin": 3298, + "end": 3415, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3439, + "end": 3513, + "name": "PUSH [tag]", + "source": 6, + "value": "83" + }, + { + "begin": 3505, + "end": 3512, + "name": "DUP6", + "source": 6 + }, + { + "begin": 3496, + "end": 3502, + "name": "DUP3", + "source": 6 + }, + { + "begin": 3485, + "end": 3494, + "name": "DUP7", + "source": 6 + }, + { + "begin": 3481, + "end": 3503, + "name": "ADD", + "source": 6 + }, + { + "begin": 3439, + "end": 3513, + "name": "PUSH [tag]", + "source": 6, + "value": "22" + }, + { + "begin": 3439, + "end": 3513, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3439, + "end": 3513, + "name": "tag", + "source": 6, + "value": "83" + }, + { + "begin": 3439, + "end": 3513, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3429, + "end": 3513, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 3429, + "end": 3513, + "name": "POP", + "source": 6 + }, + { + "begin": 3231, + "end": 3523, + "name": "POP", + "source": 6 + }, + { + "begin": 2677, + "end": 3530, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 2677, + "end": 3530, + "name": "POP", + "source": 6 + }, + { + "begin": 2677, + "end": 3530, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 2677, + "end": 3530, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 2677, + "end": 3530, + "name": "POP", + "source": 6 + }, + { + "begin": 2677, + "end": 3530, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3536, + "end": 3635, + "name": "tag", + "source": 6, + "value": "23" + }, + { + "begin": 3536, + "end": 3635, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3588, + "end": 3594, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 3622, + "end": 3627, + "name": "DUP2", + "source": 6 + }, + { + "begin": 3616, + "end": 3628, + "name": "MLOAD", + "source": 6 + }, + { + "begin": 3606, + "end": 3628, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 3606, + "end": 3628, + "name": "POP", + "source": 6 + }, + { + "begin": 3536, + "end": 3635, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 3536, + "end": 3635, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 3536, + "end": 3635, + "name": "POP", + "source": 6 + }, + { + "begin": 3536, + "end": 3635, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3641, + "end": 3821, + "name": "tag", + "source": 6, + "value": "24" + }, + { + "begin": 3641, + "end": 3821, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3689, + "end": 3766, + "name": "PUSH", + "source": 6, + "value": "4E487B7100000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 3686, + "end": 3687, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 3679, + "end": 3767, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 3786, + "end": 3790, + "name": "PUSH", + "source": 6, + "value": "22" + }, + { + "begin": 3783, + "end": 3784, + "name": "PUSH", + "source": 6, + "value": "4" + }, + { + "begin": 3776, + "end": 3791, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 3810, + "end": 3814, + "name": "PUSH", + "source": 6, + "value": "24" + }, + { + "begin": 3807, + "end": 3808, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 3800, + "end": 3815, + "name": "REVERT", + "source": 6 + }, + { + "begin": 3827, + "end": 4147, + "name": "tag", + "source": 6, + "value": "25" + }, + { + "begin": 3827, + "end": 4147, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3871, + "end": 3877, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 3908, + "end": 3909, + "name": "PUSH", + "source": 6, + "value": "2" + }, + { + "begin": 3902, + "end": 3906, + "name": "DUP3", + "source": 6 + }, + { + "begin": 3898, + "end": 3910, + "name": "DIV", + "source": 6 + }, + { + "begin": 3888, + "end": 3910, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 3888, + "end": 3910, + "name": "POP", + "source": 6 + }, + { + "begin": 3955, + "end": 3956, + "name": "PUSH", + "source": 6, + "value": "1" + }, + { + "begin": 3949, + "end": 3953, + "name": "DUP3", + "source": 6 + }, + { + "begin": 3945, + "end": 3957, + "name": "AND", + "source": 6 + }, + { + "begin": 3976, + "end": 3994, + "name": "DUP1", + "source": 6 + }, + { + "begin": 3966, + "end": 4047, + "name": "PUSH [tag]", + "source": 6, + "value": "87" + }, + { + "begin": 3966, + "end": 4047, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 4032, + "end": 4036, + "name": "PUSH", + "source": 6, + "value": "7F" + }, + { + "begin": 4024, + "end": 4030, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4020, + "end": 4037, + "name": "AND", + "source": 6 + }, + { + "begin": 4010, + "end": 4037, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 4010, + "end": 4037, + "name": "POP", + "source": 6 + }, + { + "begin": 3966, + "end": 4047, + "name": "tag", + "source": 6, + "value": "87" + }, + { + "begin": 3966, + "end": 4047, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4094, + "end": 4096, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 4086, + "end": 4092, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4083, + "end": 4097, + "name": "LT", + "source": 6 + }, + { + "begin": 4063, + "end": 4081, + "name": "DUP2", + "source": 6 + }, + { + "begin": 4060, + "end": 4098, + "name": "SUB", + "source": 6 + }, + { + "begin": 4057, + "end": 4141, + "name": "PUSH [tag]", + "source": 6, + "value": "88" + }, + { + "begin": 4057, + "end": 4141, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 4113, + "end": 4131, + "name": "PUSH [tag]", + "source": 6, + "value": "89" + }, + { + "begin": 4113, + "end": 4131, + "name": "PUSH [tag]", + "source": 6, + "value": "24" + }, + { + "begin": 4113, + "end": 4131, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4113, + "end": 4131, + "name": "tag", + "source": 6, + "value": "89" + }, + { + "begin": 4113, + "end": 4131, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4057, + "end": 4141, + "name": "tag", + "source": 6, + "value": "88" + }, + { + "begin": 4057, + "end": 4141, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3878, + "end": 4147, + "name": "POP", + "source": 6 + }, + { + "begin": 3827, + "end": 4147, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 3827, + "end": 4147, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 3827, + "end": 4147, + "name": "POP", + "source": 6 + }, + { + "begin": 3827, + "end": 4147, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4153, + "end": 4294, + "name": "tag", + "source": 6, + "value": "26" + }, + { + "begin": 4153, + "end": 4294, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4202, + "end": 4206, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 4225, + "end": 4228, + "name": "DUP2", + "source": 6 + }, + { + "begin": 4217, + "end": 4228, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 4217, + "end": 4228, + "name": "POP", + "source": 6 + }, + { + "begin": 4248, + "end": 4251, + "name": "DUP2", + "source": 6 + }, + { + "begin": 4245, + "end": 4246, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 4238, + "end": 4252, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 4282, + "end": 4286, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 4279, + "end": 4280, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 4269, + "end": 4287, + "name": "KECCAK256", + "source": 6 + }, + { + "begin": 4261, + "end": 4287, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 4261, + "end": 4287, + "name": "POP", + "source": 6 + }, + { + "begin": 4153, + "end": 4294, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 4153, + "end": 4294, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 4153, + "end": 4294, + "name": "POP", + "source": 6 + }, + { + "begin": 4153, + "end": 4294, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4300, + "end": 4393, + "name": "tag", + "source": 6, + "value": "27" + }, + { + "begin": 4300, + "end": 4393, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4337, + "end": 4343, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 4384, + "end": 4386, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 4379, + "end": 4381, + "name": "PUSH", + "source": 6, + "value": "1F" + }, + { + "begin": 4372, + "end": 4377, + "name": "DUP4", + "source": 6 + }, + { + "begin": 4368, + "end": 4382, + "name": "ADD", + "source": 6 + }, + { + "begin": 4364, + "end": 4387, + "name": "DIV", + "source": 6 + }, + { + "begin": 4354, + "end": 4387, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 4354, + "end": 4387, + "name": "POP", + "source": 6 + }, + { + "begin": 4300, + "end": 4393, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 4300, + "end": 4393, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 4300, + "end": 4393, + "name": "POP", + "source": 6 + }, + { + "begin": 4300, + "end": 4393, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4399, + "end": 4506, + "name": "tag", + "source": 6, + "value": "28" + }, + { + "begin": 4399, + "end": 4506, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4443, + "end": 4451, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 4493, + "end": 4498, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4487, + "end": 4491, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4483, + "end": 4499, + "name": "SHL", + "source": 6 + }, + { + "begin": 4462, + "end": 4499, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 4462, + "end": 4499, + "name": "POP", + "source": 6 + }, + { + "begin": 4399, + "end": 4506, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 4399, + "end": 4506, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 4399, + "end": 4506, + "name": "POP", + "source": 6 + }, + { + "begin": 4399, + "end": 4506, + "name": "POP", + "source": 6 + }, + { + "begin": 4399, + "end": 4506, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4512, + "end": 4905, + "name": "tag", + "source": 6, + "value": "29" + }, + { + "begin": 4512, + "end": 4905, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4581, + "end": 4587, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 4631, + "end": 4632, + "name": "PUSH", + "source": 6, + "value": "8" + }, + { + "begin": 4619, + "end": 4629, + "name": "DUP4", + "source": 6 + }, + { + "begin": 4615, + "end": 4633, + "name": "MUL", + "source": 6 + }, + { + "begin": 4654, + "end": 4751, + "name": "PUSH [tag]", + "source": 6, + "value": "94" + }, + { + "begin": 4684, + "end": 4750, + "name": "PUSH", + "source": 6, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 4673, + "end": 4682, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4654, + "end": 4751, + "name": "PUSH [tag]", + "source": 6, + "value": "28" + }, + { + "begin": 4654, + "end": 4751, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4654, + "end": 4751, + "name": "tag", + "source": 6, + "value": "94" + }, + { + "begin": 4654, + "end": 4751, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4772, + "end": 4811, + "name": "PUSH [tag]", + "source": 6, + "value": "95" + }, + { + "begin": 4802, + "end": 4810, + "name": "DUP7", + "source": 6 + }, + { + "begin": 4791, + "end": 4800, + "name": "DUP4", + "source": 6 + }, + { + "begin": 4772, + "end": 4811, + "name": "PUSH [tag]", + "source": 6, + "value": "28" + }, + { + "begin": 4772, + "end": 4811, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4772, + "end": 4811, + "name": "tag", + "source": 6, + "value": "95" + }, + { + "begin": 4772, + "end": 4811, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4760, + "end": 4811, + "name": "SWAP6", + "source": 6 + }, + { + "begin": 4760, + "end": 4811, + "name": "POP", + "source": 6 + }, + { + "begin": 4844, + "end": 4848, + "name": "DUP1", + "source": 6 + }, + { + "begin": 4840, + "end": 4849, + "name": "NOT", + "source": 6 + }, + { + "begin": 4833, + "end": 4838, + "name": "DUP5", + "source": 6 + }, + { + "begin": 4829, + "end": 4850, + "name": "AND", + "source": 6 + }, + { + "begin": 4820, + "end": 4850, + "name": "SWAP4", + "source": 6 + }, + { + "begin": 4820, + "end": 4850, + "name": "POP", + "source": 6 + }, + { + "begin": 4893, + "end": 4897, + "name": "DUP1", + "source": 6 + }, + { + "begin": 4883, + "end": 4891, + "name": "DUP7", + "source": 6 + }, + { + "begin": 4879, + "end": 4898, + "name": "AND", + "source": 6 + }, + { + "begin": 4872, + "end": 4877, + "name": "DUP5", + "source": 6 + }, + { + "begin": 4869, + "end": 4899, + "name": "OR", + "source": 6 + }, + { + "begin": 4859, + "end": 4899, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 4859, + "end": 4899, + "name": "POP", + "source": 6 + }, + { + "begin": 4588, + "end": 4905, + "name": "POP", + "source": 6 + }, + { + "begin": 4588, + "end": 4905, + "name": "POP", + "source": 6 + }, + { + "begin": 4512, + "end": 4905, + "name": "SWAP4", + "source": 6 + }, + { + "begin": 4512, + "end": 4905, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 4512, + "end": 4905, + "name": "POP", + "source": 6 + }, + { + "begin": 4512, + "end": 4905, + "name": "POP", + "source": 6 + }, + { + "begin": 4512, + "end": 4905, + "name": "POP", + "source": 6 + }, + { + "begin": 4512, + "end": 4905, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4911, + "end": 4988, + "name": "tag", + "source": 6, + "value": "30" + }, + { + "begin": 4911, + "end": 4988, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4948, + "end": 4955, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 4977, + "end": 4982, + "name": "DUP2", + "source": 6 + }, + { + "begin": 4966, + "end": 4982, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 4966, + "end": 4982, + "name": "POP", + "source": 6 + }, + { + "begin": 4911, + "end": 4988, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 4911, + "end": 4988, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 4911, + "end": 4988, + "name": "POP", + "source": 6 + }, + { + "begin": 4911, + "end": 4988, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4994, + "end": 5054, + "name": "tag", + "source": 6, + "value": "31" + }, + { + "begin": 4994, + "end": 5054, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5022, + "end": 5025, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 5043, + "end": 5048, + "name": "DUP2", + "source": 6 + }, + { + "begin": 5036, + "end": 5048, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 5036, + "end": 5048, + "name": "POP", + "source": 6 + }, + { + "begin": 4994, + "end": 5054, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 4994, + "end": 5054, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 4994, + "end": 5054, + "name": "POP", + "source": 6 + }, + { + "begin": 4994, + "end": 5054, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5060, + "end": 5202, + "name": "tag", + "source": 6, + "value": "32" + }, + { + "begin": 5060, + "end": 5202, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5110, + "end": 5119, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 5143, + "end": 5196, + "name": "PUSH [tag]", + "source": 6, + "value": "99" + }, + { + "begin": 5161, + "end": 5195, + "name": "PUSH [tag]", + "source": 6, + "value": "100" + }, + { + "begin": 5170, + "end": 5194, + "name": "PUSH [tag]", + "source": 6, + "value": "101" + }, + { + "begin": 5188, + "end": 5193, + "name": "DUP5", + "source": 6 + }, + { + "begin": 5170, + "end": 5194, + "name": "PUSH [tag]", + "source": 6, + "value": "30" + }, + { + "begin": 5170, + "end": 5194, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5170, + "end": 5194, + "name": "tag", + "source": 6, + "value": "101" + }, + { + "begin": 5170, + "end": 5194, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5161, + "end": 5195, + "name": "PUSH [tag]", + "source": 6, + "value": "31" + }, + { + "begin": 5161, + "end": 5195, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5161, + "end": 5195, + "name": "tag", + "source": 6, + "value": "100" + }, + { + "begin": 5161, + "end": 5195, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5143, + "end": 5196, + "name": "PUSH [tag]", + "source": 6, + "value": "30" + }, + { + "begin": 5143, + "end": 5196, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5143, + "end": 5196, + "name": "tag", + "source": 6, + "value": "99" + }, + { + "begin": 5143, + "end": 5196, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5130, + "end": 5196, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 5130, + "end": 5196, + "name": "POP", + "source": 6 + }, + { + "begin": 5060, + "end": 5202, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 5060, + "end": 5202, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 5060, + "end": 5202, + "name": "POP", + "source": 6 + }, + { + "begin": 5060, + "end": 5202, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5208, + "end": 5283, + "name": "tag", + "source": 6, + "value": "33" + }, + { + "begin": 5208, + "end": 5283, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5251, + "end": 5254, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 5272, + "end": 5277, + "name": "DUP2", + "source": 6 + }, + { + "begin": 5265, + "end": 5277, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 5265, + "end": 5277, + "name": "POP", + "source": 6 + }, + { + "begin": 5208, + "end": 5283, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 5208, + "end": 5283, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 5208, + "end": 5283, + "name": "POP", + "source": 6 + }, + { + "begin": 5208, + "end": 5283, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5289, + "end": 5558, + "name": "tag", + "source": 6, + "value": "34" + }, + { + "begin": 5289, + "end": 5558, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5399, + "end": 5438, + "name": "PUSH [tag]", + "source": 6, + "value": "104" + }, + { + "begin": 5430, + "end": 5437, + "name": "DUP4", + "source": 6 + }, + { + "begin": 5399, + "end": 5438, + "name": "PUSH [tag]", + "source": 6, + "value": "32" + }, + { + "begin": 5399, + "end": 5438, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5399, + "end": 5438, + "name": "tag", + "source": 6, + "value": "104" + }, + { + "begin": 5399, + "end": 5438, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5460, + "end": 5551, + "name": "PUSH [tag]", + "source": 6, + "value": "105" + }, + { + "begin": 5509, + "end": 5550, + "name": "PUSH [tag]", + "source": 6, + "value": "106" + }, + { + "begin": 5533, + "end": 5549, + "name": "DUP3", + "source": 6 + }, + { + "begin": 5509, + "end": 5550, + "name": "PUSH [tag]", + "source": 6, + "value": "33" + }, + { + "begin": 5509, + "end": 5550, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5509, + "end": 5550, + "name": "tag", + "source": 6, + "value": "106" + }, + { + "begin": 5509, + "end": 5550, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5501, + "end": 5507, + "name": "DUP5", + "source": 6 + }, + { + "begin": 5494, + "end": 5498, + "name": "DUP5", + "source": 6 + }, + { + "begin": 5488, + "end": 5499, + "name": "SLOAD", + "source": 6 + }, + { + "begin": 5460, + "end": 5551, + "name": "PUSH [tag]", + "source": 6, + "value": "29" + }, + { + "begin": 5460, + "end": 5551, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5460, + "end": 5551, + "name": "tag", + "source": 6, + "value": "105" + }, + { + "begin": 5460, + "end": 5551, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5454, + "end": 5458, + "name": "DUP3", + "source": 6 + }, + { + "begin": 5447, + "end": 5552, + "name": "SSTORE", + "source": 6 + }, + { + "begin": 5365, + "end": 5558, + "name": "POP", + "source": 6 + }, + { + "begin": 5289, + "end": 5558, + "name": "POP", + "source": 6 + }, + { + "begin": 5289, + "end": 5558, + "name": "POP", + "source": 6 + }, + { + "begin": 5289, + "end": 5558, + "name": "POP", + "source": 6 + }, + { + "begin": 5289, + "end": 5558, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5564, + "end": 5637, + "name": "tag", + "source": 6, + "value": "35" + }, + { + "begin": 5564, + "end": 5637, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5609, + "end": 5612, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 5564, + "end": 5637, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 5564, + "end": 5637, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5643, + "end": 5832, + "name": "tag", + "source": 6, + "value": "36" + }, + { + "begin": 5643, + "end": 5832, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5720, + "end": 5752, + "name": "PUSH [tag]", + "source": 6, + "value": "109" + }, + { + "begin": 5720, + "end": 5752, + "name": "PUSH [tag]", + "source": 6, + "value": "35" + }, + { + "begin": 5720, + "end": 5752, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5720, + "end": 5752, + "name": "tag", + "source": 6, + "value": "109" + }, + { + "begin": 5720, + "end": 5752, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5761, + "end": 5826, + "name": "PUSH [tag]", + "source": 6, + "value": "110" + }, + { + "begin": 5819, + "end": 5825, + "name": "DUP2", + "source": 6 + }, + { + "begin": 5811, + "end": 5817, + "name": "DUP5", + "source": 6 + }, + { + "begin": 5805, + "end": 5809, + "name": "DUP5", + "source": 6 + }, + { + "begin": 5761, + "end": 5826, + "name": "PUSH [tag]", + "source": 6, + "value": "34" + }, + { + "begin": 5761, + "end": 5826, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5761, + "end": 5826, + "name": "tag", + "source": 6, + "value": "110" + }, + { + "begin": 5761, + "end": 5826, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5696, + "end": 5832, + "name": "POP", + "source": 6 + }, + { + "begin": 5643, + "end": 5832, + "name": "POP", + "source": 6 + }, + { + "begin": 5643, + "end": 5832, + "name": "POP", + "source": 6 + }, + { + "begin": 5643, + "end": 5832, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5838, + "end": 6024, + "name": "tag", + "source": 6, + "value": "37" + }, + { + "begin": 5838, + "end": 6024, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5898, + "end": 6018, + "name": "tag", + "source": 6, + "value": "112" + }, + { + "begin": 5898, + "end": 6018, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5915, + "end": 5918, + "name": "DUP2", + "source": 6 + }, + { + "begin": 5908, + "end": 5913, + "name": "DUP2", + "source": 6 + }, + { + "begin": 5905, + "end": 5919, + "name": "LT", + "source": 6 + }, + { + "begin": 5898, + "end": 6018, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 5898, + "end": 6018, + "name": "PUSH [tag]", + "source": 6, + "value": "114" + }, + { + "begin": 5898, + "end": 6018, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 5969, + "end": 6008, + "name": "PUSH [tag]", + "source": 6, + "value": "115" + }, + { + "begin": 6006, + "end": 6007, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 5999, + "end": 6004, + "name": "DUP3", + "source": 6 + }, + { + "begin": 5969, + "end": 6008, + "name": "PUSH [tag]", + "source": 6, + "value": "36" + }, + { + "begin": 5969, + "end": 6008, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5969, + "end": 6008, + "name": "tag", + "source": 6, + "value": "115" + }, + { + "begin": 5969, + "end": 6008, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5942, + "end": 5943, + "name": "PUSH", + "source": 6, + "value": "1" + }, + { + "begin": 5935, + "end": 5940, + "name": "DUP2", + "source": 6 + }, + { + "begin": 5931, + "end": 5944, + "name": "ADD", + "source": 6 + }, + { + "begin": 5922, + "end": 5944, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 5922, + "end": 5944, + "name": "POP", + "source": 6 + }, + { + "begin": 5898, + "end": 6018, + "name": "PUSH [tag]", + "source": 6, + "value": "112" + }, + { + "begin": 5898, + "end": 6018, + "name": "JUMP", + "source": 6 + }, + { + "begin": 5898, + "end": 6018, + "name": "tag", + "source": 6, + "value": "114" + }, + { + "begin": 5898, + "end": 6018, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5838, + "end": 6024, + "name": "POP", + "source": 6 + }, + { + "begin": 5838, + "end": 6024, + "name": "POP", + "source": 6 + }, + { + "begin": 5838, + "end": 6024, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6030, + "end": 6573, + "name": "tag", + "source": 6, + "value": "38" + }, + { + "begin": 6030, + "end": 6573, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6131, + "end": 6133, + "name": "PUSH", + "source": 6, + "value": "1F" + }, + { + "begin": 6126, + "end": 6129, + "name": "DUP3", + "source": 6 + }, + { + "begin": 6123, + "end": 6134, + "name": "GT", + "source": 6 + }, + { + "begin": 6120, + "end": 6566, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 6120, + "end": 6566, + "name": "PUSH [tag]", + "source": 6, + "value": "117" + }, + { + "begin": 6120, + "end": 6566, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 6165, + "end": 6203, + "name": "PUSH [tag]", + "source": 6, + "value": "118" + }, + { + "begin": 6197, + "end": 6202, + "name": "DUP2", + "source": 6 + }, + { + "begin": 6165, + "end": 6203, + "name": "PUSH [tag]", + "source": 6, + "value": "26" + }, + { + "begin": 6165, + "end": 6203, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6165, + "end": 6203, + "name": "tag", + "source": 6, + "value": "118" + }, + { + "begin": 6165, + "end": 6203, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6249, + "end": 6278, + "name": "PUSH [tag]", + "source": 6, + "value": "119" + }, + { + "begin": 6267, + "end": 6277, + "name": "DUP5", + "source": 6 + }, + { + "begin": 6249, + "end": 6278, + "name": "PUSH [tag]", + "source": 6, + "value": "27" + }, + { + "begin": 6249, + "end": 6278, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6249, + "end": 6278, + "name": "tag", + "source": 6, + "value": "119" + }, + { + "begin": 6249, + "end": 6278, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6239, + "end": 6247, + "name": "DUP2", + "source": 6 + }, + { + "begin": 6235, + "end": 6279, + "name": "ADD", + "source": 6 + }, + { + "begin": 6432, + "end": 6434, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 6420, + "end": 6430, + "name": "DUP6", + "source": 6 + }, + { + "begin": 6417, + "end": 6435, + "name": "LT", + "source": 6 + }, + { + "begin": 6414, + "end": 6463, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 6414, + "end": 6463, + "name": "PUSH [tag]", + "source": 6, + "value": "120" + }, + { + "begin": 6414, + "end": 6463, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 6453, + "end": 6461, + "name": "DUP2", + "source": 6 + }, + { + "begin": 6438, + "end": 6461, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 6438, + "end": 6461, + "name": "POP", + "source": 6 + }, + { + "begin": 6414, + "end": 6463, + "name": "tag", + "source": 6, + "value": "120" + }, + { + "begin": 6414, + "end": 6463, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6476, + "end": 6556, + "name": "PUSH [tag]", + "source": 6, + "value": "121" + }, + { + "begin": 6532, + "end": 6554, + "name": "PUSH [tag]", + "source": 6, + "value": "122" + }, + { + "begin": 6550, + "end": 6553, + "name": "DUP6", + "source": 6 + }, + { + "begin": 6532, + "end": 6554, + "name": "PUSH [tag]", + "source": 6, + "value": "27" + }, + { + "begin": 6532, + "end": 6554, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6532, + "end": 6554, + "name": "tag", + "source": 6, + "value": "122" + }, + { + "begin": 6532, + "end": 6554, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6522, + "end": 6530, + "name": "DUP4", + "source": 6 + }, + { + "begin": 6518, + "end": 6555, + "name": "ADD", + "source": 6 + }, + { + "begin": 6505, + "end": 6516, + "name": "DUP3", + "source": 6 + }, + { + "begin": 6476, + "end": 6556, + "name": "PUSH [tag]", + "source": 6, + "value": "37" + }, + { + "begin": 6476, + "end": 6556, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6476, + "end": 6556, + "name": "tag", + "source": 6, + "value": "121" + }, + { + "begin": 6476, + "end": 6556, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6135, + "end": 6566, + "name": "POP", + "source": 6 + }, + { + "begin": 6135, + "end": 6566, + "name": "POP", + "source": 6 + }, + { + "begin": 6120, + "end": 6566, + "name": "tag", + "source": 6, + "value": "117" + }, + { + "begin": 6120, + "end": 6566, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6030, + "end": 6573, + "name": "POP", + "source": 6 + }, + { + "begin": 6030, + "end": 6573, + "name": "POP", + "source": 6 + }, + { + "begin": 6030, + "end": 6573, + "name": "POP", + "source": 6 + }, + { + "begin": 6030, + "end": 6573, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6579, + "end": 6696, + "name": "tag", + "source": 6, + "value": "39" + }, + { + "begin": 6579, + "end": 6696, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6633, + "end": 6641, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 6683, + "end": 6688, + "name": "DUP3", + "source": 6 + }, + { + "begin": 6677, + "end": 6681, + "name": "DUP3", + "source": 6 + }, + { + "begin": 6673, + "end": 6689, + "name": "SHR", + "source": 6 + }, + { + "begin": 6652, + "end": 6689, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 6652, + "end": 6689, + "name": "POP", + "source": 6 + }, + { + "begin": 6579, + "end": 6696, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 6579, + "end": 6696, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 6579, + "end": 6696, + "name": "POP", + "source": 6 + }, + { + "begin": 6579, + "end": 6696, + "name": "POP", + "source": 6 + }, + { + "begin": 6579, + "end": 6696, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6702, + "end": 6871, + "name": "tag", + "source": 6, + "value": "40" + }, + { + "begin": 6702, + "end": 6871, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6746, + "end": 6752, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 6779, + "end": 6830, + "name": "PUSH [tag]", + "source": 6, + "value": "125" + }, + { + "begin": 6827, + "end": 6828, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 6823, + "end": 6829, + "name": "NOT", + "source": 6 + }, + { + "begin": 6815, + "end": 6820, + "name": "DUP5", + "source": 6 + }, + { + "begin": 6812, + "end": 6813, + "name": "PUSH", + "source": 6, + "value": "8" + }, + { + "begin": 6808, + "end": 6821, + "name": "MUL", + "source": 6 + }, + { + "begin": 6779, + "end": 6830, + "name": "PUSH [tag]", + "source": 6, + "value": "39" + }, + { + "begin": 6779, + "end": 6830, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6779, + "end": 6830, + "name": "tag", + "source": 6, + "value": "125" + }, + { + "begin": 6779, + "end": 6830, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6775, + "end": 6831, + "name": "NOT", + "source": 6 + }, + { + "begin": 6860, + "end": 6864, + "name": "DUP1", + "source": 6 + }, + { + "begin": 6854, + "end": 6858, + "name": "DUP4", + "source": 6 + }, + { + "begin": 6850, + "end": 6865, + "name": "AND", + "source": 6 + }, + { + "begin": 6840, + "end": 6865, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 6840, + "end": 6865, + "name": "POP", + "source": 6 + }, + { + "begin": 6753, + "end": 6871, + "name": "POP", + "source": 6 + }, + { + "begin": 6702, + "end": 6871, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 6702, + "end": 6871, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 6702, + "end": 6871, + "name": "POP", + "source": 6 + }, + { + "begin": 6702, + "end": 6871, + "name": "POP", + "source": 6 + }, + { + "begin": 6702, + "end": 6871, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6876, + "end": 7171, + "name": "tag", + "source": 6, + "value": "41" + }, + { + "begin": 6876, + "end": 7171, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6952, + "end": 6956, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 7098, + "end": 7127, + "name": "PUSH [tag]", + "source": 6, + "value": "127" + }, + { + "begin": 7123, + "end": 7126, + "name": "DUP4", + "source": 6 + }, + { + "begin": 7117, + "end": 7121, + "name": "DUP4", + "source": 6 + }, + { + "begin": 7098, + "end": 7127, + "name": "PUSH [tag]", + "source": 6, + "value": "40" + }, + { + "begin": 7098, + "end": 7127, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 7098, + "end": 7127, + "name": "tag", + "source": 6, + "value": "127" + }, + { + "begin": 7098, + "end": 7127, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7090, + "end": 7127, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 7090, + "end": 7127, + "name": "POP", + "source": 6 + }, + { + "begin": 7160, + "end": 7163, + "name": "DUP3", + "source": 6 + }, + { + "begin": 7157, + "end": 7158, + "name": "PUSH", + "source": 6, + "value": "2" + }, + { + "begin": 7153, + "end": 7164, + "name": "MUL", + "source": 6 + }, + { + "begin": 7147, + "end": 7151, + "name": "DUP3", + "source": 6 + }, + { + "begin": 7144, + "end": 7165, + "name": "OR", + "source": 6 + }, + { + "begin": 7136, + "end": 7165, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 7136, + "end": 7165, + "name": "POP", + "source": 6 + }, + { + "begin": 6876, + "end": 7171, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 6876, + "end": 7171, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 6876, + "end": 7171, + "name": "POP", + "source": 6 + }, + { + "begin": 6876, + "end": 7171, + "name": "POP", + "source": 6 + }, + { + "begin": 6876, + "end": 7171, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 7176, + "end": 8571, + "name": "tag", + "source": 6, + "value": "7" + }, + { + "begin": 7176, + "end": 8571, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7293, + "end": 7330, + "name": "PUSH [tag]", + "source": 6, + "value": "129" + }, + { + "begin": 7326, + "end": 7329, + "name": "DUP3", + "source": 6 + }, + { + "begin": 7293, + "end": 7330, + "name": "PUSH [tag]", + "source": 6, + "value": "23" + }, + { + "begin": 7293, + "end": 7330, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 7293, + "end": 7330, + "name": "tag", + "source": 6, + "value": "129" + }, + { + "begin": 7293, + "end": 7330, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7395, + "end": 7413, + "name": "PUSH", + "source": 6, + "value": "FFFFFFFFFFFFFFFF" + }, + { + "begin": 7387, + "end": 7393, + "name": "DUP2", + "source": 6 + }, + { + "begin": 7384, + "end": 7414, + "name": "GT", + "source": 6 + }, + { + "begin": 7381, + "end": 7437, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 7381, + "end": 7437, + "name": "PUSH [tag]", + "source": 6, + "value": "130" + }, + { + "begin": 7381, + "end": 7437, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 7417, + "end": 7435, + "name": "PUSH [tag]", + "source": 6, + "value": "131" + }, + { + "begin": 7417, + "end": 7435, + "name": "PUSH [tag]", + "source": 6, + "value": "16" + }, + { + "begin": 7417, + "end": 7435, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 7417, + "end": 7435, + "name": "tag", + "source": 6, + "value": "131" + }, + { + "begin": 7417, + "end": 7435, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7381, + "end": 7437, + "name": "tag", + "source": 6, + "value": "130" + }, + { + "begin": 7381, + "end": 7437, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7461, + "end": 7499, + "name": "PUSH [tag]", + "source": 6, + "value": "132" + }, + { + "begin": 7493, + "end": 7497, + "name": "DUP3", + "source": 6 + }, + { + "begin": 7487, + "end": 7498, + "name": "SLOAD", + "source": 6 + }, + { + "begin": 7461, + "end": 7499, + "name": "PUSH [tag]", + "source": 6, + "value": "25" + }, + { + "begin": 7461, + "end": 7499, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 7461, + "end": 7499, + "name": "tag", + "source": 6, + "value": "132" + }, + { + "begin": 7461, + "end": 7499, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7546, + "end": 7613, + "name": "PUSH [tag]", + "source": 6, + "value": "133" + }, + { + "begin": 7606, + "end": 7612, + "name": "DUP3", + "source": 6 + }, + { + "begin": 7598, + "end": 7604, + "name": "DUP3", + "source": 6 + }, + { + "begin": 7592, + "end": 7596, + "name": "DUP6", + "source": 6 + }, + { + "begin": 7546, + "end": 7613, + "name": "PUSH [tag]", + "source": 6, + "value": "38" + }, + { + "begin": 7546, + "end": 7613, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 7546, + "end": 7613, + "name": "tag", + "source": 6, + "value": "133" + }, + { + "begin": 7546, + "end": 7613, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7640, + "end": 7641, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 7664, + "end": 7668, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 7651, + "end": 7668, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 7651, + "end": 7668, + "name": "POP", + "source": 6 + }, + { + "begin": 7696, + "end": 7698, + "name": "PUSH", + "source": 6, + "value": "1F" + }, + { + "begin": 7688, + "end": 7694, + "name": "DUP4", + "source": 6 + }, + { + "begin": 7685, + "end": 7699, + "name": "GT", + "source": 6 + }, + { + "begin": 7713, + "end": 7714, + "name": "PUSH", + "source": 6, + "value": "1" + }, + { + "begin": 7708, + "end": 8326, + "name": "DUP2", + "source": 6 + }, + { + "begin": 7708, + "end": 8326, + "name": "EQ", + "source": 6 + }, + { + "begin": 7708, + "end": 8326, + "name": "PUSH [tag]", + "source": 6, + "value": "135" + }, + { + "begin": 7708, + "end": 8326, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 8370, + "end": 8371, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 8387, + "end": 8393, + "name": "DUP5", + "source": 6 + }, + { + "begin": 8384, + "end": 8461, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 8384, + "end": 8461, + "name": "PUSH [tag]", + "source": 6, + "value": "136" + }, + { + "begin": 8384, + "end": 8461, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 8436, + "end": 8445, + "name": "DUP3", + "source": 6 + }, + { + "begin": 8431, + "end": 8434, + "name": "DUP8", + "source": 6 + }, + { + "begin": 8427, + "end": 8446, + "name": "ADD", + "source": 6 + }, + { + "begin": 8421, + "end": 8447, + "name": "MLOAD", + "source": 6 + }, + { + "begin": 8412, + "end": 8447, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 8412, + "end": 8447, + "name": "POP", + "source": 6 + }, + { + "begin": 8384, + "end": 8461, + "name": "tag", + "source": 6, + "value": "136" + }, + { + "begin": 8384, + "end": 8461, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 8487, + "end": 8554, + "name": "PUSH [tag]", + "source": 6, + "value": "137" + }, + { + "begin": 8547, + "end": 8553, + "name": "DUP6", + "source": 6 + }, + { + "begin": 8540, + "end": 8545, + "name": "DUP3", + "source": 6 + }, + { + "begin": 8487, + "end": 8554, + "name": "PUSH [tag]", + "source": 6, + "value": "41" + }, + { + "begin": 8487, + "end": 8554, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 8487, + "end": 8554, + "name": "tag", + "source": 6, + "value": "137" + }, + { + "begin": 8487, + "end": 8554, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 8481, + "end": 8485, + "name": "DUP7", + "source": 6 + }, + { + "begin": 8474, + "end": 8555, + "name": "SSTORE", + "source": 6 + }, + { + "begin": 8343, + "end": 8565, + "name": "POP", + "source": 6 + }, + { + "begin": 7678, + "end": 8565, + "name": "PUSH [tag]", + "source": 6, + "value": "134" + }, + { + "begin": 7678, + "end": 8565, + "name": "JUMP", + "source": 6 + }, + { + "begin": 7708, + "end": 8326, + "name": "tag", + "source": 6, + "value": "135" + }, + { + "begin": 7708, + "end": 8326, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7760, + "end": 7764, + "name": "PUSH", + "source": 6, + "value": "1F" + }, + { + "begin": 7756, + "end": 7765, + "name": "NOT", + "source": 6 + }, + { + "begin": 7748, + "end": 7754, + "name": "DUP5", + "source": 6 + }, + { + "begin": 7744, + "end": 7766, + "name": "AND", + "source": 6 + }, + { + "begin": 7794, + "end": 7831, + "name": "PUSH [tag]", + "source": 6, + "value": "138" + }, + { + "begin": 7826, + "end": 7830, + "name": "DUP7", + "source": 6 + }, + { + "begin": 7794, + "end": 7831, + "name": "PUSH [tag]", + "source": 6, + "value": "26" + }, + { + "begin": 7794, + "end": 7831, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 7794, + "end": 7831, + "name": "tag", + "source": 6, + "value": "138" + }, + { + "begin": 7794, + "end": 7831, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7853, + "end": 7854, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 7867, + "end": 8075, + "name": "tag", + "source": 6, + "value": "139" + }, + { + "begin": 7867, + "end": 8075, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7881, + "end": 7888, + "name": "DUP3", + "source": 6 + }, + { + "begin": 7878, + "end": 7879, + "name": "DUP2", + "source": 6 + }, + { + "begin": 7875, + "end": 7889, + "name": "LT", + "source": 6 + }, + { + "begin": 7867, + "end": 8075, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 7867, + "end": 8075, + "name": "PUSH [tag]", + "source": 6, + "value": "141" + }, + { + "begin": 7867, + "end": 8075, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 7960, + "end": 7969, + "name": "DUP5", + "source": 6 + }, + { + "begin": 7955, + "end": 7958, + "name": "DUP10", + "source": 6 + }, + { + "begin": 7951, + "end": 7970, + "name": "ADD", + "source": 6 + }, + { + "begin": 7945, + "end": 7971, + "name": "MLOAD", + "source": 6 + }, + { + "begin": 7937, + "end": 7943, + "name": "DUP3", + "source": 6 + }, + { + "begin": 7930, + "end": 7972, + "name": "SSTORE", + "source": 6 + }, + { + "begin": 8011, + "end": 8012, + "name": "PUSH", + "source": 6, + "value": "1" + }, + { + "begin": 8003, + "end": 8009, + "name": "DUP3", + "source": 6 + }, + { + "begin": 7999, + "end": 8013, + "name": "ADD", + "source": 6 + }, + { + "begin": 7989, + "end": 8013, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 7989, + "end": 8013, + "name": "POP", + "source": 6 + }, + { + "begin": 8058, + "end": 8060, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 8047, + "end": 8056, + "name": "DUP6", + "source": 6 + }, + { + "begin": 8043, + "end": 8061, + "name": "ADD", + "source": 6 + }, + { + "begin": 8030, + "end": 8061, + "name": "SWAP5", + "source": 6 + }, + { + "begin": 8030, + "end": 8061, + "name": "POP", + "source": 6 + }, + { + "begin": 7904, + "end": 7908, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 7901, + "end": 7902, + "name": "DUP2", + "source": 6 + }, + { + "begin": 7897, + "end": 7909, + "name": "ADD", + "source": 6 + }, + { + "begin": 7892, + "end": 7909, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 7892, + "end": 7909, + "name": "POP", + "source": 6 + }, + { + "begin": 7867, + "end": 8075, + "name": "PUSH [tag]", + "source": 6, + "value": "139" + }, + { + "begin": 7867, + "end": 8075, + "name": "JUMP", + "source": 6 + }, + { + "begin": 7867, + "end": 8075, + "name": "tag", + "source": 6, + "value": "141" + }, + { + "begin": 7867, + "end": 8075, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 8103, + "end": 8109, + "name": "DUP7", + "source": 6 + }, + { + "begin": 8094, + "end": 8101, + "name": "DUP4", + "source": 6 + }, + { + "begin": 8091, + "end": 8110, + "name": "LT", + "source": 6 + }, + { + "begin": 8088, + "end": 8267, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 8088, + "end": 8267, + "name": "PUSH [tag]", + "source": 6, + "value": "142" + }, + { + "begin": 8088, + "end": 8267, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 8161, + "end": 8170, + "name": "DUP5", + "source": 6 + }, + { + "begin": 8156, + "end": 8159, + "name": "DUP10", + "source": 6 + }, + { + "begin": 8152, + "end": 8171, + "name": "ADD", + "source": 6 + }, + { + "begin": 8146, + "end": 8172, + "name": "MLOAD", + "source": 6 + }, + { + "begin": 8204, + "end": 8252, + "name": "PUSH [tag]", + "source": 6, + "value": "143" + }, + { + "begin": 8246, + "end": 8250, + "name": "PUSH", + "source": 6, + "value": "1F" + }, + { + "begin": 8238, + "end": 8244, + "name": "DUP10", + "source": 6 + }, + { + "begin": 8234, + "end": 8251, + "name": "AND", + "source": 6 + }, + { + "begin": 8223, + "end": 8232, + "name": "DUP3", + "source": 6 + }, + { + "begin": 8204, + "end": 8252, + "name": "PUSH [tag]", + "source": 6, + "value": "40" + }, + { + "begin": 8204, + "end": 8252, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 8204, + "end": 8252, + "name": "tag", + "source": 6, + "value": "143" + }, + { + "begin": 8204, + "end": 8252, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 8196, + "end": 8202, + "name": "DUP4", + "source": 6 + }, + { + "begin": 8189, + "end": 8253, + "name": "SSTORE", + "source": 6 + }, + { + "begin": 8111, + "end": 8267, + "name": "POP", + "source": 6 + }, + { + "begin": 8088, + "end": 8267, + "name": "tag", + "source": 6, + "value": "142" + }, + { + "begin": 8088, + "end": 8267, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 8313, + "end": 8314, + "name": "PUSH", + "source": 6, + "value": "1" + }, + { + "begin": 8309, + "end": 8310, + "name": "PUSH", + "source": 6, + "value": "2" + }, + { + "begin": 8301, + "end": 8307, + "name": "DUP9", + "source": 6 + }, + { + "begin": 8297, + "end": 8311, + "name": "MUL", + "source": 6 + }, + { + "begin": 8293, + "end": 8315, + "name": "ADD", + "source": 6 + }, + { + "begin": 8287, + "end": 8291, + "name": "DUP9", + "source": 6 + }, + { + "begin": 8280, + "end": 8316, + "name": "SSTORE", + "source": 6 + }, + { + "begin": 7715, + "end": 8326, + "name": "POP", + "source": 6 + }, + { + "begin": 7715, + "end": 8326, + "name": "POP", + "source": 6 + }, + { + "begin": 7715, + "end": 8326, + "name": "POP", + "source": 6 + }, + { + "begin": 7678, + "end": 8565, + "name": "tag", + "source": 6, + "value": "134" + }, + { + "begin": 7678, + "end": 8565, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7678, + "end": 8565, + "name": "POP", + "source": 6 + }, + { + "begin": 7268, + "end": 8571, + "name": "POP", + "source": 6 + }, + { + "begin": 7268, + "end": 8571, + "name": "POP", + "source": 6 + }, + { + "begin": 7268, + "end": 8571, + "name": "POP", + "source": 6 + }, + { + "begin": 7176, + "end": 8571, + "name": "POP", + "source": 6 + }, + { + "begin": 7176, + "end": 8571, + "name": "POP", + "source": 6 + }, + { + "begin": 7176, + "end": 8571, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1532, + "end": 12844, + "name": "tag", + "source": 1, + "value": "9" + }, + { + "begin": 1532, + "end": 12844, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH #[$]", + "source": 1, + "value": "0000000000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 1532, + "end": 12844, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH [$]", + "source": 1, + "value": "0000000000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 1532, + "end": 12844, + "name": "CODECOPY", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 1532, + "end": 12844, + "name": "RETURN", + "source": 1 + } + ], + ".data": { + "0": { + ".auxdata": "a2646970667358221220183ff4efe215f2dbeaa29ef53e289296d853a80978fc79c1323c24229aa81aae64736f6c63430008140033", + ".code": [ + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "80" + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 1532, + "end": 12844, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "CALLVALUE", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH [tag]", + "source": 1, + "value": "1" + }, + { + "begin": 1532, + "end": 12844, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 1532, + "end": 12844, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "REVERT", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "tag", + "source": 1, + "value": "1" + }, + { + "begin": 1532, + "end": 12844, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "POP", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 1532, + "end": 12844, + "name": "CALLDATASIZE", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "LT", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH [tag]", + "source": 1, + "value": "2" + }, + { + "begin": 1532, + "end": 12844, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 1532, + "end": 12844, + "name": "CALLDATALOAD", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "E0" + }, + { + "begin": 1532, + "end": 12844, + "name": "SHR", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "39509351" + }, + { + "begin": 1532, + "end": 12844, + "name": "GT", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH [tag]", + "source": 1, + "value": "14" + }, + { + "begin": 1532, + "end": 12844, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "39509351" + }, + { + "begin": 1532, + "end": 12844, + "name": "EQ", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH [tag]", + "source": 1, + "value": "8" + }, + { + "begin": 1532, + "end": 12844, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "70A08231" + }, + { + "begin": 1532, + "end": 12844, + "name": "EQ", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH [tag]", + "source": 1, + "value": "9" + }, + { + "begin": 1532, + "end": 12844, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "95D89B41" + }, + { + "begin": 1532, + "end": 12844, + "name": "EQ", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH [tag]", + "source": 1, + "value": "10" + }, + { + "begin": 1532, + "end": 12844, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "A457C2D7" + }, + { + "begin": 1532, + "end": 12844, + "name": "EQ", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH [tag]", + "source": 1, + "value": "11" + }, + { + "begin": 1532, + "end": 12844, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "A9059CBB" + }, + { + "begin": 1532, + "end": 12844, + "name": "EQ", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH [tag]", + "source": 1, + "value": "12" + }, + { + "begin": 1532, + "end": 12844, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "DD62ED3E" + }, + { + "begin": 1532, + "end": 12844, + "name": "EQ", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH [tag]", + "source": 1, + "value": "13" + }, + { + "begin": 1532, + "end": 12844, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH [tag]", + "source": 1, + "value": "2" + }, + { + "begin": 1532, + "end": 12844, + "name": "JUMP", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "tag", + "source": 1, + "value": "14" + }, + { + "begin": 1532, + "end": 12844, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "6FDDE03" + }, + { + "begin": 1532, + "end": 12844, + "name": "EQ", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH [tag]", + "source": 1, + "value": "3" + }, + { + "begin": 1532, + "end": 12844, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "95EA7B3" + }, + { + "begin": 1532, + "end": 12844, + "name": "EQ", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH [tag]", + "source": 1, + "value": "4" + }, + { + "begin": 1532, + "end": 12844, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "18160DDD" + }, + { + "begin": 1532, + "end": 12844, + "name": "EQ", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH [tag]", + "source": 1, + "value": "5" + }, + { + "begin": 1532, + "end": 12844, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "23B872DD" + }, + { + "begin": 1532, + "end": 12844, + "name": "EQ", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH [tag]", + "source": 1, + "value": "6" + }, + { + "begin": 1532, + "end": 12844, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "313CE567" + }, + { + "begin": 1532, + "end": 12844, + "name": "EQ", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH [tag]", + "source": 1, + "value": "7" + }, + { + "begin": 1532, + "end": 12844, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "tag", + "source": 1, + "value": "2" + }, + { + "begin": 1532, + "end": 12844, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 1532, + "end": 12844, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1532, + "end": 12844, + "name": "REVERT", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "tag", + "source": 1, + "value": "3" + }, + { + "begin": 2158, + "end": 2256, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "PUSH [tag]", + "source": 1, + "value": "15" + }, + { + "begin": 2158, + "end": 2256, + "name": "PUSH [tag]", + "source": 1, + "value": "16" + }, + { + "begin": 2158, + "end": 2256, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "tag", + "source": 1, + "value": "15" + }, + { + "begin": 2158, + "end": 2256, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 2158, + "end": 2256, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "PUSH [tag]", + "source": 1, + "value": "17" + }, + { + "begin": 2158, + "end": 2256, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "PUSH [tag]", + "source": 1, + "value": "18" + }, + { + "begin": 2158, + "end": 2256, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "tag", + "source": 1, + "value": "17" + }, + { + "begin": 2158, + "end": 2256, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 2158, + "end": 2256, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "SUB", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "RETURN", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "tag", + "source": 1, + "value": "4" + }, + { + "begin": 4444, + "end": 4641, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "PUSH [tag]", + "source": 1, + "value": "19" + }, + { + "begin": 4444, + "end": 4641, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 4444, + "end": 4641, + "name": "DUP1", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "CALLDATASIZE", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "SUB", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "DUP2", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "ADD", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "PUSH [tag]", + "source": 1, + "value": "20" + }, + { + "begin": 4444, + "end": 4641, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "PUSH [tag]", + "source": 1, + "value": "21" + }, + { + "begin": 4444, + "end": 4641, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "tag", + "source": 1, + "value": "20" + }, + { + "begin": 4444, + "end": 4641, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "PUSH [tag]", + "source": 1, + "value": "22" + }, + { + "begin": 4444, + "end": 4641, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "tag", + "source": 1, + "value": "19" + }, + { + "begin": 4444, + "end": 4641, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 4444, + "end": 4641, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "PUSH [tag]", + "source": 1, + "value": "23" + }, + { + "begin": 4444, + "end": 4641, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "PUSH [tag]", + "source": 1, + "value": "24" + }, + { + "begin": 4444, + "end": 4641, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "tag", + "source": 1, + "value": "23" + }, + { + "begin": 4444, + "end": 4641, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 4444, + "end": 4641, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "DUP1", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "SUB", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "RETURN", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "tag", + "source": 1, + "value": "5" + }, + { + "begin": 3255, + "end": 3361, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "PUSH [tag]", + "source": 1, + "value": "25" + }, + { + "begin": 3255, + "end": 3361, + "name": "PUSH [tag]", + "source": 1, + "value": "26" + }, + { + "begin": 3255, + "end": 3361, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "tag", + "source": 1, + "value": "25" + }, + { + "begin": 3255, + "end": 3361, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 3255, + "end": 3361, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "PUSH [tag]", + "source": 1, + "value": "27" + }, + { + "begin": 3255, + "end": 3361, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "PUSH [tag]", + "source": 1, + "value": "28" + }, + { + "begin": 3255, + "end": 3361, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "tag", + "source": 1, + "value": "27" + }, + { + "begin": 3255, + "end": 3361, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 3255, + "end": 3361, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "DUP1", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "SUB", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "RETURN", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "tag", + "source": 1, + "value": "6" + }, + { + "begin": 5203, + "end": 5459, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "PUSH [tag]", + "source": 1, + "value": "29" + }, + { + "begin": 5203, + "end": 5459, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 5203, + "end": 5459, + "name": "DUP1", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "CALLDATASIZE", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "SUB", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "DUP2", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "ADD", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "PUSH [tag]", + "source": 1, + "value": "30" + }, + { + "begin": 5203, + "end": 5459, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "PUSH [tag]", + "source": 1, + "value": "31" + }, + { + "begin": 5203, + "end": 5459, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "tag", + "source": 1, + "value": "30" + }, + { + "begin": 5203, + "end": 5459, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "PUSH [tag]", + "source": 1, + "value": "32" + }, + { + "begin": 5203, + "end": 5459, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "tag", + "source": 1, + "value": "29" + }, + { + "begin": 5203, + "end": 5459, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 5203, + "end": 5459, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "PUSH [tag]", + "source": 1, + "value": "33" + }, + { + "begin": 5203, + "end": 5459, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "PUSH [tag]", + "source": 1, + "value": "24" + }, + { + "begin": 5203, + "end": 5459, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "tag", + "source": 1, + "value": "33" + }, + { + "begin": 5203, + "end": 5459, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 5203, + "end": 5459, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "DUP1", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "SUB", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "RETURN", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "tag", + "source": 1, + "value": "7" + }, + { + "begin": 3104, + "end": 3195, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "PUSH [tag]", + "source": 1, + "value": "34" + }, + { + "begin": 3104, + "end": 3195, + "name": "PUSH [tag]", + "source": 1, + "value": "35" + }, + { + "begin": 3104, + "end": 3195, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "tag", + "source": 1, + "value": "34" + }, + { + "begin": 3104, + "end": 3195, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 3104, + "end": 3195, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "PUSH [tag]", + "source": 1, + "value": "36" + }, + { + "begin": 3104, + "end": 3195, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "PUSH [tag]", + "source": 1, + "value": "37" + }, + { + "begin": 3104, + "end": 3195, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "tag", + "source": 1, + "value": "36" + }, + { + "begin": 3104, + "end": 3195, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 3104, + "end": 3195, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "DUP1", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "SUB", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "RETURN", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "tag", + "source": 1, + "value": "8" + }, + { + "begin": 5854, + "end": 6088, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "PUSH [tag]", + "source": 1, + "value": "38" + }, + { + "begin": 5854, + "end": 6088, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 5854, + "end": 6088, + "name": "DUP1", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "CALLDATASIZE", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "SUB", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "DUP2", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "ADD", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "PUSH [tag]", + "source": 1, + "value": "39" + }, + { + "begin": 5854, + "end": 6088, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "PUSH [tag]", + "source": 1, + "value": "21" + }, + { + "begin": 5854, + "end": 6088, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "tag", + "source": 1, + "value": "39" + }, + { + "begin": 5854, + "end": 6088, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "PUSH [tag]", + "source": 1, + "value": "40" + }, + { + "begin": 5854, + "end": 6088, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "tag", + "source": 1, + "value": "38" + }, + { + "begin": 5854, + "end": 6088, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 5854, + "end": 6088, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "PUSH [tag]", + "source": 1, + "value": "41" + }, + { + "begin": 5854, + "end": 6088, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "PUSH [tag]", + "source": 1, + "value": "24" + }, + { + "begin": 5854, + "end": 6088, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "tag", + "source": 1, + "value": "41" + }, + { + "begin": 5854, + "end": 6088, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 5854, + "end": 6088, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "DUP1", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "SUB", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "RETURN", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "tag", + "source": 1, + "value": "9" + }, + { + "begin": 3419, + "end": 3544, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "PUSH [tag]", + "source": 1, + "value": "42" + }, + { + "begin": 3419, + "end": 3544, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 3419, + "end": 3544, + "name": "DUP1", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "CALLDATASIZE", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "SUB", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "DUP2", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "ADD", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "PUSH [tag]", + "source": 1, + "value": "43" + }, + { + "begin": 3419, + "end": 3544, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "PUSH [tag]", + "source": 1, + "value": "44" + }, + { + "begin": 3419, + "end": 3544, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "tag", + "source": 1, + "value": "43" + }, + { + "begin": 3419, + "end": 3544, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "PUSH [tag]", + "source": 1, + "value": "45" + }, + { + "begin": 3419, + "end": 3544, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "tag", + "source": 1, + "value": "42" + }, + { + "begin": 3419, + "end": 3544, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 3419, + "end": 3544, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "PUSH [tag]", + "source": 1, + "value": "46" + }, + { + "begin": 3419, + "end": 3544, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "PUSH [tag]", + "source": 1, + "value": "28" + }, + { + "begin": 3419, + "end": 3544, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "tag", + "source": 1, + "value": "46" + }, + { + "begin": 3419, + "end": 3544, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 3419, + "end": 3544, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "DUP1", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "SUB", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "RETURN", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "tag", + "source": 1, + "value": "10" + }, + { + "begin": 2369, + "end": 2471, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "PUSH [tag]", + "source": 1, + "value": "47" + }, + { + "begin": 2369, + "end": 2471, + "name": "PUSH [tag]", + "source": 1, + "value": "48" + }, + { + "begin": 2369, + "end": 2471, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "tag", + "source": 1, + "value": "47" + }, + { + "begin": 2369, + "end": 2471, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 2369, + "end": 2471, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "PUSH [tag]", + "source": 1, + "value": "49" + }, + { + "begin": 2369, + "end": 2471, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "PUSH [tag]", + "source": 1, + "value": "18" + }, + { + "begin": 2369, + "end": 2471, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "tag", + "source": 1, + "value": "49" + }, + { + "begin": 2369, + "end": 2471, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 2369, + "end": 2471, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "SUB", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "RETURN", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "tag", + "source": 1, + "value": "11" + }, + { + "begin": 6575, + "end": 7002, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "PUSH [tag]", + "source": 1, + "value": "50" + }, + { + "begin": 6575, + "end": 7002, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 6575, + "end": 7002, + "name": "DUP1", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "CALLDATASIZE", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "SUB", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "DUP2", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "ADD", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "PUSH [tag]", + "source": 1, + "value": "51" + }, + { + "begin": 6575, + "end": 7002, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "PUSH [tag]", + "source": 1, + "value": "21" + }, + { + "begin": 6575, + "end": 7002, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "tag", + "source": 1, + "value": "51" + }, + { + "begin": 6575, + "end": 7002, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "PUSH [tag]", + "source": 1, + "value": "52" + }, + { + "begin": 6575, + "end": 7002, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "tag", + "source": 1, + "value": "50" + }, + { + "begin": 6575, + "end": 7002, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 6575, + "end": 7002, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "PUSH [tag]", + "source": 1, + "value": "53" + }, + { + "begin": 6575, + "end": 7002, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "PUSH [tag]", + "source": 1, + "value": "24" + }, + { + "begin": 6575, + "end": 7002, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "tag", + "source": 1, + "value": "53" + }, + { + "begin": 6575, + "end": 7002, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 6575, + "end": 7002, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "DUP1", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "SUB", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "RETURN", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "tag", + "source": 1, + "value": "12" + }, + { + "begin": 3740, + "end": 3929, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "PUSH [tag]", + "source": 1, + "value": "54" + }, + { + "begin": 3740, + "end": 3929, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 3740, + "end": 3929, + "name": "DUP1", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "CALLDATASIZE", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "SUB", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "DUP2", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "ADD", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "PUSH [tag]", + "source": 1, + "value": "55" + }, + { + "begin": 3740, + "end": 3929, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "PUSH [tag]", + "source": 1, + "value": "21" + }, + { + "begin": 3740, + "end": 3929, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "tag", + "source": 1, + "value": "55" + }, + { + "begin": 3740, + "end": 3929, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "PUSH [tag]", + "source": 1, + "value": "56" + }, + { + "begin": 3740, + "end": 3929, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "tag", + "source": 1, + "value": "54" + }, + { + "begin": 3740, + "end": 3929, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 3740, + "end": 3929, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "PUSH [tag]", + "source": 1, + "value": "57" + }, + { + "begin": 3740, + "end": 3929, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "PUSH [tag]", + "source": 1, + "value": "24" + }, + { + "begin": 3740, + "end": 3929, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "tag", + "source": 1, + "value": "57" + }, + { + "begin": 3740, + "end": 3929, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 3740, + "end": 3929, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "DUP1", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "SUB", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "RETURN", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "tag", + "source": 1, + "value": "13" + }, + { + "begin": 3987, + "end": 4136, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "PUSH [tag]", + "source": 1, + "value": "58" + }, + { + "begin": 3987, + "end": 4136, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 3987, + "end": 4136, + "name": "DUP1", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "CALLDATASIZE", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "SUB", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "DUP2", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "ADD", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "PUSH [tag]", + "source": 1, + "value": "59" + }, + { + "begin": 3987, + "end": 4136, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "PUSH [tag]", + "source": 1, + "value": "60" + }, + { + "begin": 3987, + "end": 4136, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "tag", + "source": 1, + "value": "59" + }, + { + "begin": 3987, + "end": 4136, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "PUSH [tag]", + "source": 1, + "value": "61" + }, + { + "begin": 3987, + "end": 4136, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "tag", + "source": 1, + "value": "58" + }, + { + "begin": 3987, + "end": 4136, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 3987, + "end": 4136, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "PUSH [tag]", + "source": 1, + "value": "62" + }, + { + "begin": 3987, + "end": 4136, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "PUSH [tag]", + "source": 1, + "value": "28" + }, + { + "begin": 3987, + "end": 4136, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "tag", + "source": 1, + "value": "62" + }, + { + "begin": 3987, + "end": 4136, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 3987, + "end": 4136, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "DUP1", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "SUB", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "RETURN", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "tag", + "source": 1, + "value": "16" + }, + { + "begin": 2158, + "end": 2256, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2212, + "end": 2225, + "name": "PUSH", + "source": 1, + "value": "60" + }, + { + "begin": 2244, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "3" + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH [tag]", + "source": 1, + "value": "64" + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH [tag]", + "source": 1, + "value": "65" + }, + { + "begin": 2237, + "end": 2249, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "tag", + "source": 1, + "value": "64" + }, + { + "begin": 2237, + "end": 2249, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "1F" + }, + { + "begin": 2237, + "end": 2249, + "name": "ADD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DIV", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "MUL", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2237, + "end": 2249, + "name": "ADD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 2237, + "end": 2249, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "ADD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 2237, + "end": 2249, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2237, + "end": 2249, + "name": "ADD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP3", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH [tag]", + "source": 1, + "value": "66" + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH [tag]", + "source": 1, + "value": "65" + }, + { + "begin": 2237, + "end": 2249, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "tag", + "source": 1, + "value": "66" + }, + { + "begin": 2237, + "end": 2249, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH [tag]", + "source": 1, + "value": "67" + }, + { + "begin": 2237, + "end": 2249, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "1F" + }, + { + "begin": 2237, + "end": 2249, + "name": "LT", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH [tag]", + "source": 1, + "value": "68" + }, + { + "begin": 2237, + "end": 2249, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "100" + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP4", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DIV", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "MUL", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP4", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2237, + "end": 2249, + "name": "ADD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH [tag]", + "source": 1, + "value": "67" + }, + { + "begin": 2237, + "end": 2249, + "name": "JUMP", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "tag", + "source": 1, + "value": "68" + }, + { + "begin": 2237, + "end": 2249, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP3", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "ADD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 2237, + "end": 2249, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 2237, + "end": 2249, + "name": "KECCAK256", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "tag", + "source": 1, + "value": "69" + }, + { + "begin": 2237, + "end": 2249, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 2237, + "end": 2249, + "name": "ADD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2237, + "end": 2249, + "name": "ADD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP4", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "GT", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH [tag]", + "source": 1, + "value": "69" + }, + { + "begin": 2237, + "end": 2249, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP3", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SUB", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "1F" + }, + { + "begin": 2237, + "end": 2249, + "name": "AND", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP3", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "ADD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "tag", + "source": 1, + "value": "67" + }, + { + "begin": 2237, + "end": 2249, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "POP", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "POP", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "POP", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "POP", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "POP", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "POP", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "tag", + "source": 1, + "value": "22" + }, + { + "begin": 4444, + "end": 4641, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4527, + "end": 4531, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 4543, + "end": 4556, + "name": "DUP1", + "source": 1 + }, + { + "begin": 4559, + "end": 4571, + "name": "PUSH [tag]", + "source": 1, + "value": "71" + }, + { + "begin": 4559, + "end": 4569, + "name": "PUSH [tag]", + "source": 1, + "value": "72" + }, + { + "begin": 4559, + "end": 4571, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 4559, + "end": 4571, + "name": "tag", + "source": 1, + "value": "71" + }, + { + "begin": 4559, + "end": 4571, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4543, + "end": 4571, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 4543, + "end": 4571, + "name": "POP", + "source": 1 + }, + { + "begin": 4581, + "end": 4613, + "name": "PUSH [tag]", + "source": 1, + "value": "73" + }, + { + "begin": 4590, + "end": 4595, + "name": "DUP2", + "source": 1 + }, + { + "begin": 4597, + "end": 4604, + "name": "DUP6", + "source": 1 + }, + { + "begin": 4606, + "end": 4612, + "name": "DUP6", + "source": 1 + }, + { + "begin": 4581, + "end": 4589, + "name": "PUSH [tag]", + "source": 1, + "value": "74" + }, + { + "begin": 4581, + "end": 4613, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 4581, + "end": 4613, + "name": "tag", + "source": 1, + "value": "73" + }, + { + "begin": 4581, + "end": 4613, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4630, + "end": 4634, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 4623, + "end": 4634, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 4623, + "end": 4634, + "name": "POP", + "source": 1 + }, + { + "begin": 4623, + "end": 4634, + "name": "POP", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "POP", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "POP", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "tag", + "source": 1, + "value": "26" + }, + { + "begin": 3255, + "end": 3361, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3316, + "end": 3323, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 3342, + "end": 3354, + "name": "PUSH", + "source": 1, + "value": "2" + }, + { + "begin": 3342, + "end": 3354, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 3335, + "end": 3354, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3335, + "end": 3354, + "name": "POP", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "tag", + "source": 1, + "value": "32" + }, + { + "begin": 5203, + "end": 5459, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5300, + "end": 5304, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 5316, + "end": 5331, + "name": "DUP1", + "source": 1 + }, + { + "begin": 5334, + "end": 5346, + "name": "PUSH [tag]", + "source": 1, + "value": "77" + }, + { + "begin": 5334, + "end": 5344, + "name": "PUSH [tag]", + "source": 1, + "value": "72" + }, + { + "begin": 5334, + "end": 5346, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5334, + "end": 5346, + "name": "tag", + "source": 1, + "value": "77" + }, + { + "begin": 5334, + "end": 5346, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5316, + "end": 5346, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5316, + "end": 5346, + "name": "POP", + "source": 1 + }, + { + "begin": 5356, + "end": 5394, + "name": "PUSH [tag]", + "source": 1, + "value": "78" + }, + { + "begin": 5372, + "end": 5376, + "name": "DUP6", + "source": 1 + }, + { + "begin": 5378, + "end": 5385, + "name": "DUP3", + "source": 1 + }, + { + "begin": 5387, + "end": 5393, + "name": "DUP6", + "source": 1 + }, + { + "begin": 5356, + "end": 5371, + "name": "PUSH [tag]", + "source": 1, + "value": "79" + }, + { + "begin": 5356, + "end": 5394, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5356, + "end": 5394, + "name": "tag", + "source": 1, + "value": "78" + }, + { + "begin": 5356, + "end": 5394, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5404, + "end": 5431, + "name": "PUSH [tag]", + "source": 1, + "value": "80" + }, + { + "begin": 5414, + "end": 5418, + "name": "DUP6", + "source": 1 + }, + { + "begin": 5420, + "end": 5422, + "name": "DUP6", + "source": 1 + }, + { + "begin": 5424, + "end": 5430, + "name": "DUP6", + "source": 1 + }, + { + "begin": 5404, + "end": 5413, + "name": "PUSH [tag]", + "source": 1, + "value": "81" + }, + { + "begin": 5404, + "end": 5431, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5404, + "end": 5431, + "name": "tag", + "source": 1, + "value": "80" + }, + { + "begin": 5404, + "end": 5431, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5448, + "end": 5452, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 5441, + "end": 5452, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 5441, + "end": 5452, + "name": "POP", + "source": 1 + }, + { + "begin": 5441, + "end": 5452, + "name": "POP", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "SWAP4", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "POP", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "POP", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "POP", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "tag", + "source": 1, + "value": "35" + }, + { + "begin": 3104, + "end": 3195, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3162, + "end": 3167, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 3186, + "end": 3188, + "name": "PUSH", + "source": 1, + "value": "12" + }, + { + "begin": 3179, + "end": 3188, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3179, + "end": 3188, + "name": "POP", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "tag", + "source": 1, + "value": "40" + }, + { + "begin": 5854, + "end": 6088, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5942, + "end": 5946, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 5958, + "end": 5971, + "name": "DUP1", + "source": 1 + }, + { + "begin": 5974, + "end": 5986, + "name": "PUSH [tag]", + "source": 1, + "value": "84" + }, + { + "begin": 5974, + "end": 5984, + "name": "PUSH [tag]", + "source": 1, + "value": "72" + }, + { + "begin": 5974, + "end": 5986, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5974, + "end": 5986, + "name": "tag", + "source": 1, + "value": "84" + }, + { + "begin": 5974, + "end": 5986, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5958, + "end": 5986, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5958, + "end": 5986, + "name": "POP", + "source": 1 + }, + { + "begin": 5996, + "end": 6060, + "name": "PUSH [tag]", + "source": 1, + "value": "85" + }, + { + "begin": 6005, + "end": 6010, + "name": "DUP2", + "source": 1 + }, + { + "begin": 6012, + "end": 6019, + "name": "DUP6", + "source": 1 + }, + { + "begin": 6049, + "end": 6059, + "name": "DUP6", + "source": 1 + }, + { + "begin": 6021, + "end": 6046, + "name": "PUSH [tag]", + "source": 1, + "value": "86" + }, + { + "begin": 6031, + "end": 6036, + "name": "DUP6", + "source": 1 + }, + { + "begin": 6038, + "end": 6045, + "name": "DUP10", + "source": 1 + }, + { + "begin": 6021, + "end": 6030, + "name": "PUSH [tag]", + "source": 1, + "value": "61" + }, + { + "begin": 6021, + "end": 6046, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 6021, + "end": 6046, + "name": "tag", + "source": 1, + "value": "86" + }, + { + "begin": 6021, + "end": 6046, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6021, + "end": 6059, + "name": "PUSH [tag]", + "source": 1, + "value": "87" + }, + { + "begin": 6021, + "end": 6059, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 6021, + "end": 6059, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 6021, + "end": 6059, + "name": "PUSH [tag]", + "source": 1, + "value": "88" + }, + { + "begin": 6021, + "end": 6059, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 6021, + "end": 6059, + "name": "tag", + "source": 1, + "value": "87" + }, + { + "begin": 6021, + "end": 6059, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5996, + "end": 6004, + "name": "PUSH [tag]", + "source": 1, + "value": "74" + }, + { + "begin": 5996, + "end": 6060, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5996, + "end": 6060, + "name": "tag", + "source": 1, + "value": "85" + }, + { + "begin": 5996, + "end": 6060, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6077, + "end": 6081, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 6070, + "end": 6081, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 6070, + "end": 6081, + "name": "POP", + "source": 1 + }, + { + "begin": 6070, + "end": 6081, + "name": "POP", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "POP", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "POP", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "tag", + "source": 1, + "value": "45" + }, + { + "begin": 3419, + "end": 3544, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3493, + "end": 3500, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 3519, + "end": 3528, + "name": "DUP1", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 3529, + "end": 3536, + "name": "DUP4", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 3519, + "end": 3537, + "name": "AND", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 3519, + "end": 3537, + "name": "AND", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "DUP2", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 3519, + "end": 3537, + "name": "ADD", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "DUP2", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 3519, + "end": 3537, + "name": "ADD", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 3519, + "end": 3537, + "name": "KECCAK256", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 3512, + "end": 3537, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3512, + "end": 3537, + "name": "POP", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "POP", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "tag", + "source": 1, + "value": "48" + }, + { + "begin": 2369, + "end": 2471, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2425, + "end": 2438, + "name": "PUSH", + "source": 1, + "value": "60" + }, + { + "begin": 2457, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH [tag]", + "source": 1, + "value": "91" + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH [tag]", + "source": 1, + "value": "65" + }, + { + "begin": 2450, + "end": 2464, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "tag", + "source": 1, + "value": "91" + }, + { + "begin": 2450, + "end": 2464, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "1F" + }, + { + "begin": 2450, + "end": 2464, + "name": "ADD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DIV", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "MUL", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2450, + "end": 2464, + "name": "ADD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 2450, + "end": 2464, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "ADD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 2450, + "end": 2464, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2450, + "end": 2464, + "name": "ADD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP3", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH [tag]", + "source": 1, + "value": "92" + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH [tag]", + "source": 1, + "value": "65" + }, + { + "begin": 2450, + "end": 2464, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "tag", + "source": 1, + "value": "92" + }, + { + "begin": 2450, + "end": 2464, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH [tag]", + "source": 1, + "value": "93" + }, + { + "begin": 2450, + "end": 2464, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "1F" + }, + { + "begin": 2450, + "end": 2464, + "name": "LT", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH [tag]", + "source": 1, + "value": "94" + }, + { + "begin": 2450, + "end": 2464, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "100" + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP4", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DIV", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "MUL", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP4", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2450, + "end": 2464, + "name": "ADD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH [tag]", + "source": 1, + "value": "93" + }, + { + "begin": 2450, + "end": 2464, + "name": "JUMP", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "tag", + "source": 1, + "value": "94" + }, + { + "begin": 2450, + "end": 2464, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP3", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "ADD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 2450, + "end": 2464, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 2450, + "end": 2464, + "name": "KECCAK256", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "tag", + "source": 1, + "value": "95" + }, + { + "begin": 2450, + "end": 2464, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 2450, + "end": 2464, + "name": "ADD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2450, + "end": 2464, + "name": "ADD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP4", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "GT", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH [tag]", + "source": 1, + "value": "95" + }, + { + "begin": 2450, + "end": 2464, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP3", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SUB", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "1F" + }, + { + "begin": 2450, + "end": 2464, + "name": "AND", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP3", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "ADD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "tag", + "source": 1, + "value": "93" + }, + { + "begin": 2450, + "end": 2464, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "POP", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "POP", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "POP", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "POP", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "POP", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "POP", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "tag", + "source": 1, + "value": "52" + }, + { + "begin": 6575, + "end": 7002, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6668, + "end": 6672, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 6684, + "end": 6697, + "name": "DUP1", + "source": 1 + }, + { + "begin": 6700, + "end": 6712, + "name": "PUSH [tag]", + "source": 1, + "value": "97" + }, + { + "begin": 6700, + "end": 6710, + "name": "PUSH [tag]", + "source": 1, + "value": "72" + }, + { + "begin": 6700, + "end": 6712, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 6700, + "end": 6712, + "name": "tag", + "source": 1, + "value": "97" + }, + { + "begin": 6700, + "end": 6712, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6684, + "end": 6712, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 6684, + "end": 6712, + "name": "POP", + "source": 1 + }, + { + "begin": 6722, + "end": 6746, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 6749, + "end": 6774, + "name": "PUSH [tag]", + "source": 1, + "value": "98" + }, + { + "begin": 6759, + "end": 6764, + "name": "DUP3", + "source": 1 + }, + { + "begin": 6766, + "end": 6773, + "name": "DUP7", + "source": 1 + }, + { + "begin": 6749, + "end": 6758, + "name": "PUSH [tag]", + "source": 1, + "value": "61" + }, + { + "begin": 6749, + "end": 6774, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 6749, + "end": 6774, + "name": "tag", + "source": 1, + "value": "98" + }, + { + "begin": 6749, + "end": 6774, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6722, + "end": 6774, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 6722, + "end": 6774, + "name": "POP", + "source": 1 + }, + { + "begin": 6812, + "end": 6827, + "name": "DUP4", + "source": 1 + }, + { + "begin": 6792, + "end": 6808, + "name": "DUP2", + "source": 1 + }, + { + "begin": 6792, + "end": 6827, + "name": "LT", + "source": 1 + }, + { + "begin": 6792, + "end": 6827, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "PUSH [tag]", + "source": 1, + "value": "99" + }, + { + "begin": 6784, + "end": 6869, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 6784, + "end": 6869, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "PUSH", + "source": 1, + "value": "8C379A000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 6784, + "end": 6869, + "name": "DUP2", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 6784, + "end": 6869, + "name": "ADD", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "PUSH [tag]", + "source": 1, + "value": "100" + }, + { + "begin": 6784, + "end": 6869, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "PUSH [tag]", + "source": 1, + "value": "101" + }, + { + "begin": 6784, + "end": 6869, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "tag", + "source": 1, + "value": "100" + }, + { + "begin": 6784, + "end": 6869, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 6784, + "end": 6869, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "DUP1", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "SUB", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "REVERT", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "tag", + "source": 1, + "value": "99" + }, + { + "begin": 6784, + "end": 6869, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6903, + "end": 6963, + "name": "PUSH [tag]", + "source": 1, + "value": "102" + }, + { + "begin": 6912, + "end": 6917, + "name": "DUP3", + "source": 1 + }, + { + "begin": 6919, + "end": 6926, + "name": "DUP7", + "source": 1 + }, + { + "begin": 6947, + "end": 6962, + "name": "DUP7", + "source": 1 + }, + { + "begin": 6928, + "end": 6944, + "name": "DUP5", + "source": 1 + }, + { + "begin": 6928, + "end": 6962, + "name": "SUB", + "source": 1 + }, + { + "begin": 6903, + "end": 6911, + "name": "PUSH [tag]", + "source": 1, + "value": "74" + }, + { + "begin": 6903, + "end": 6963, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 6903, + "end": 6963, + "name": "tag", + "source": 1, + "value": "102" + }, + { + "begin": 6903, + "end": 6963, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6991, + "end": 6995, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 6984, + "end": 6995, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 6984, + "end": 6995, + "name": "POP", + "source": 1 + }, + { + "begin": 6984, + "end": 6995, + "name": "POP", + "source": 1 + }, + { + "begin": 6984, + "end": 6995, + "name": "POP", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "POP", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "POP", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "tag", + "source": 1, + "value": "56" + }, + { + "begin": 3740, + "end": 3929, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3819, + "end": 3823, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 3835, + "end": 3848, + "name": "DUP1", + "source": 1 + }, + { + "begin": 3851, + "end": 3863, + "name": "PUSH [tag]", + "source": 1, + "value": "104" + }, + { + "begin": 3851, + "end": 3861, + "name": "PUSH [tag]", + "source": 1, + "value": "72" + }, + { + "begin": 3851, + "end": 3863, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3851, + "end": 3863, + "name": "tag", + "source": 1, + "value": "104" + }, + { + "begin": 3851, + "end": 3863, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3835, + "end": 3863, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3835, + "end": 3863, + "name": "POP", + "source": 1 + }, + { + "begin": 3873, + "end": 3901, + "name": "PUSH [tag]", + "source": 1, + "value": "105" + }, + { + "begin": 3883, + "end": 3888, + "name": "DUP2", + "source": 1 + }, + { + "begin": 3890, + "end": 3892, + "name": "DUP6", + "source": 1 + }, + { + "begin": 3894, + "end": 3900, + "name": "DUP6", + "source": 1 + }, + { + "begin": 3873, + "end": 3882, + "name": "PUSH [tag]", + "source": 1, + "value": "81" + }, + { + "begin": 3873, + "end": 3901, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3873, + "end": 3901, + "name": "tag", + "source": 1, + "value": "105" + }, + { + "begin": 3873, + "end": 3901, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3918, + "end": 3922, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 3911, + "end": 3922, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3911, + "end": 3922, + "name": "POP", + "source": 1 + }, + { + "begin": 3911, + "end": 3922, + "name": "POP", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "POP", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "POP", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "tag", + "source": 1, + "value": "61" + }, + { + "begin": 3987, + "end": 4136, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4076, + "end": 4083, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 4102, + "end": 4113, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 4102, + "end": 4120, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 4114, + "end": 4119, + "name": "DUP5", + "source": 1 + }, + { + "begin": 4102, + "end": 4120, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 4102, + "end": 4120, + "name": "AND", + "source": 1 + }, + { + "begin": 4102, + "end": 4120, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 4102, + "end": 4120, + "name": "AND", + "source": 1 + }, + { + "begin": 4102, + "end": 4120, + "name": "DUP2", + "source": 1 + }, + { + "begin": 4102, + "end": 4120, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 4102, + "end": 4120, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 4102, + "end": 4120, + "name": "ADD", + "source": 1 + }, + { + "begin": 4102, + "end": 4120, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 4102, + "end": 4120, + "name": "DUP2", + "source": 1 + }, + { + "begin": 4102, + "end": 4120, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 4102, + "end": 4120, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 4102, + "end": 4120, + "name": "ADD", + "source": 1 + }, + { + "begin": 4102, + "end": 4120, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 4102, + "end": 4120, + "name": "KECCAK256", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 4121, + "end": 4128, + "name": "DUP4", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 4102, + "end": 4129, + "name": "AND", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 4102, + "end": 4129, + "name": "AND", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "DUP2", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 4102, + "end": 4129, + "name": "ADD", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "DUP2", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 4102, + "end": 4129, + "name": "ADD", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 4102, + "end": 4129, + "name": "KECCAK256", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 4095, + "end": 4129, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 4095, + "end": 4129, + "name": "POP", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "POP", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "POP", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 640, + "end": 736, + "name": "tag", + "source": 4, + "value": "72" + }, + { + "begin": 640, + "end": 736, + "name": "JUMPDEST", + "source": 4 + }, + { + "begin": 693, + "end": 700, + "name": "PUSH", + "source": 4, + "value": "0" + }, + { + "begin": 719, + "end": 729, + "name": "CALLER", + "source": 4 + }, + { + "begin": 712, + "end": 729, + "name": "SWAP1", + "source": 4 + }, + { + "begin": 712, + "end": 729, + "name": "POP", + "source": 4 + }, + { + "begin": 640, + "end": 736, + "name": "SWAP1", + "source": 4 + }, + { + "begin": 640, + "end": 736, + "jumpType": "[out]", + "name": "JUMP", + "source": 4 + }, + { + "begin": 10457, + "end": 10797, + "name": "tag", + "source": 1, + "value": "74" + }, + { + "begin": 10457, + "end": 10797, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 10575, + "end": 10576, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 10558, + "end": 10577, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 10558, + "end": 10577, + "name": "AND", + "source": 1 + }, + { + "begin": 10558, + "end": 10563, + "name": "DUP4", + "source": 1 + }, + { + "begin": 10558, + "end": 10577, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 10558, + "end": 10577, + "name": "AND", + "source": 1 + }, + { + "begin": 10558, + "end": 10577, + "name": "SUB", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "PUSH [tag]", + "source": 1, + "value": "109" + }, + { + "begin": 10550, + "end": 10618, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 10550, + "end": 10618, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "PUSH", + "source": 1, + "value": "8C379A000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 10550, + "end": 10618, + "name": "DUP2", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 10550, + "end": 10618, + "name": "ADD", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "PUSH [tag]", + "source": 1, + "value": "110" + }, + { + "begin": 10550, + "end": 10618, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "PUSH [tag]", + "source": 1, + "value": "111" + }, + { + "begin": 10550, + "end": 10618, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "tag", + "source": 1, + "value": "110" + }, + { + "begin": 10550, + "end": 10618, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 10550, + "end": 10618, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "DUP1", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "SUB", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "REVERT", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "tag", + "source": 1, + "value": "109" + }, + { + "begin": 10550, + "end": 10618, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 10655, + "end": 10656, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 10636, + "end": 10657, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 10636, + "end": 10657, + "name": "AND", + "source": 1 + }, + { + "begin": 10636, + "end": 10643, + "name": "DUP3", + "source": 1 + }, + { + "begin": 10636, + "end": 10657, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 10636, + "end": 10657, + "name": "AND", + "source": 1 + }, + { + "begin": 10636, + "end": 10657, + "name": "SUB", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "PUSH [tag]", + "source": 1, + "value": "112" + }, + { + "begin": 10628, + "end": 10696, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 10628, + "end": 10696, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "PUSH", + "source": 1, + "value": "8C379A000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 10628, + "end": 10696, + "name": "DUP2", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 10628, + "end": 10696, + "name": "ADD", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "PUSH [tag]", + "source": 1, + "value": "113" + }, + { + "begin": 10628, + "end": 10696, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "PUSH [tag]", + "source": 1, + "value": "114" + }, + { + "begin": 10628, + "end": 10696, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "tag", + "source": 1, + "value": "113" + }, + { + "begin": 10628, + "end": 10696, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 10628, + "end": 10696, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "DUP1", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "SUB", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "REVERT", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "tag", + "source": 1, + "value": "112" + }, + { + "begin": 10628, + "end": 10696, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 10737, + "end": 10743, + "name": "DUP1", + "source": 1 + }, + { + "begin": 10707, + "end": 10718, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 10707, + "end": 10725, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 10719, + "end": 10724, + "name": "DUP6", + "source": 1 + }, + { + "begin": 10707, + "end": 10725, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 10707, + "end": 10725, + "name": "AND", + "source": 1 + }, + { + "begin": 10707, + "end": 10725, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 10707, + "end": 10725, + "name": "AND", + "source": 1 + }, + { + "begin": 10707, + "end": 10725, + "name": "DUP2", + "source": 1 + }, + { + "begin": 10707, + "end": 10725, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 10707, + "end": 10725, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 10707, + "end": 10725, + "name": "ADD", + "source": 1 + }, + { + "begin": 10707, + "end": 10725, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10707, + "end": 10725, + "name": "DUP2", + "source": 1 + }, + { + "begin": 10707, + "end": 10725, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 10707, + "end": 10725, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 10707, + "end": 10725, + "name": "ADD", + "source": 1 + }, + { + "begin": 10707, + "end": 10725, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 10707, + "end": 10725, + "name": "KECCAK256", + "source": 1 + }, + { + "begin": 10707, + "end": 10734, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 10726, + "end": 10733, + "name": "DUP5", + "source": 1 + }, + { + "begin": 10707, + "end": 10734, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 10707, + "end": 10734, + "name": "AND", + "source": 1 + }, + { + "begin": 10707, + "end": 10734, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 10707, + "end": 10734, + "name": "AND", + "source": 1 + }, + { + "begin": 10707, + "end": 10734, + "name": "DUP2", + "source": 1 + }, + { + "begin": 10707, + "end": 10734, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 10707, + "end": 10734, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 10707, + "end": 10734, + "name": "ADD", + "source": 1 + }, + { + "begin": 10707, + "end": 10734, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10707, + "end": 10734, + "name": "DUP2", + "source": 1 + }, + { + "begin": 10707, + "end": 10734, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 10707, + "end": 10734, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 10707, + "end": 10734, + "name": "ADD", + "source": 1 + }, + { + "begin": 10707, + "end": 10734, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 10707, + "end": 10734, + "name": "KECCAK256", + "source": 1 + }, + { + "begin": 10707, + "end": 10743, + "name": "DUP2", + "source": 1 + }, + { + "begin": 10707, + "end": 10743, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10707, + "end": 10743, + "name": "SSTORE", + "source": 1 + }, + { + "begin": 10707, + "end": 10743, + "name": "POP", + "source": 1 + }, + { + "begin": 10774, + "end": 10781, + "name": "DUP2", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 10758, + "end": 10790, + "name": "AND", + "source": 1 + }, + { + "begin": 10767, + "end": 10772, + "name": "DUP4", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 10758, + "end": 10790, + "name": "AND", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "PUSH", + "source": 1, + "value": "8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925" + }, + { + "begin": 10783, + "end": 10789, + "name": "DUP4", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 10758, + "end": 10790, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "PUSH [tag]", + "source": 1, + "value": "115" + }, + { + "begin": 10758, + "end": 10790, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "PUSH [tag]", + "source": 1, + "value": "28" + }, + { + "begin": 10758, + "end": 10790, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "tag", + "source": 1, + "value": "115" + }, + { + "begin": 10758, + "end": 10790, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 10758, + "end": 10790, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "DUP1", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "SUB", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "LOG3", + "source": 1 + }, + { + "begin": 10457, + "end": 10797, + "name": "POP", + "source": 1 + }, + { + "begin": 10457, + "end": 10797, + "name": "POP", + "source": 1 + }, + { + "begin": 10457, + "end": 10797, + "name": "POP", + "source": 1 + }, + { + "begin": 10457, + "end": 10797, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 11078, + "end": 11489, + "name": "tag", + "source": 1, + "value": "79" + }, + { + "begin": 11078, + "end": 11489, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 11178, + "end": 11202, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 11205, + "end": 11230, + "name": "PUSH [tag]", + "source": 1, + "value": "117" + }, + { + "begin": 11215, + "end": 11220, + "name": "DUP5", + "source": 1 + }, + { + "begin": 11222, + "end": 11229, + "name": "DUP5", + "source": 1 + }, + { + "begin": 11205, + "end": 11214, + "name": "PUSH [tag]", + "source": 1, + "value": "61" + }, + { + "begin": 11205, + "end": 11230, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 11205, + "end": 11230, + "name": "tag", + "source": 1, + "value": "117" + }, + { + "begin": 11205, + "end": 11230, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 11178, + "end": 11230, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 11178, + "end": 11230, + "name": "POP", + "source": 1 + }, + { + "begin": 11264, + "end": 11281, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 11244, + "end": 11260, + "name": "DUP2", + "source": 1 + }, + { + "begin": 11244, + "end": 11281, + "name": "EQ", + "source": 1 + }, + { + "begin": 11240, + "end": 11483, + "name": "PUSH [tag]", + "source": 1, + "value": "118" + }, + { + "begin": 11240, + "end": 11483, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 11325, + "end": 11331, + "name": "DUP2", + "source": 1 + }, + { + "begin": 11305, + "end": 11321, + "name": "DUP2", + "source": 1 + }, + { + "begin": 11305, + "end": 11331, + "name": "LT", + "source": 1 + }, + { + "begin": 11305, + "end": 11331, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "PUSH [tag]", + "source": 1, + "value": "119" + }, + { + "begin": 11297, + "end": 11365, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 11297, + "end": 11365, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "PUSH", + "source": 1, + "value": "8C379A000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 11297, + "end": 11365, + "name": "DUP2", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 11297, + "end": 11365, + "name": "ADD", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "PUSH [tag]", + "source": 1, + "value": "120" + }, + { + "begin": 11297, + "end": 11365, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "PUSH [tag]", + "source": 1, + "value": "121" + }, + { + "begin": 11297, + "end": 11365, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "tag", + "source": 1, + "value": "120" + }, + { + "begin": 11297, + "end": 11365, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 11297, + "end": 11365, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "DUP1", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "SUB", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "REVERT", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "tag", + "source": 1, + "value": "119" + }, + { + "begin": 11297, + "end": 11365, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 11407, + "end": 11458, + "name": "PUSH [tag]", + "source": 1, + "value": "122" + }, + { + "begin": 11416, + "end": 11421, + "name": "DUP5", + "source": 1 + }, + { + "begin": 11423, + "end": 11430, + "name": "DUP5", + "source": 1 + }, + { + "begin": 11451, + "end": 11457, + "name": "DUP5", + "source": 1 + }, + { + "begin": 11432, + "end": 11448, + "name": "DUP5", + "source": 1 + }, + { + "begin": 11432, + "end": 11457, + "name": "SUB", + "source": 1 + }, + { + "begin": 11407, + "end": 11415, + "name": "PUSH [tag]", + "source": 1, + "value": "74" + }, + { + "begin": 11407, + "end": 11458, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 11407, + "end": 11458, + "name": "tag", + "source": 1, + "value": "122" + }, + { + "begin": 11407, + "end": 11458, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 11240, + "end": 11483, + "name": "tag", + "source": 1, + "value": "118" + }, + { + "begin": 11240, + "end": 11483, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 11168, + "end": 11489, + "name": "POP", + "source": 1 + }, + { + "begin": 11078, + "end": 11489, + "name": "POP", + "source": 1 + }, + { + "begin": 11078, + "end": 11489, + "name": "POP", + "source": 1 + }, + { + "begin": 11078, + "end": 11489, + "name": "POP", + "source": 1 + }, + { + "begin": 11078, + "end": 11489, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 7456, + "end": 8244, + "name": "tag", + "source": 1, + "value": "81" + }, + { + "begin": 7456, + "end": 8244, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7568, + "end": 7569, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 7552, + "end": 7570, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 7552, + "end": 7570, + "name": "AND", + "source": 1 + }, + { + "begin": 7552, + "end": 7556, + "name": "DUP4", + "source": 1 + }, + { + "begin": 7552, + "end": 7570, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 7552, + "end": 7570, + "name": "AND", + "source": 1 + }, + { + "begin": 7552, + "end": 7570, + "name": "SUB", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "PUSH [tag]", + "source": 1, + "value": "124" + }, + { + "begin": 7544, + "end": 7612, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 7544, + "end": 7612, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "PUSH", + "source": 1, + "value": "8C379A000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 7544, + "end": 7612, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 7544, + "end": 7612, + "name": "ADD", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "PUSH [tag]", + "source": 1, + "value": "125" + }, + { + "begin": 7544, + "end": 7612, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "PUSH [tag]", + "source": 1, + "value": "126" + }, + { + "begin": 7544, + "end": 7612, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "tag", + "source": 1, + "value": "125" + }, + { + "begin": 7544, + "end": 7612, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 7544, + "end": 7612, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "DUP1", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "SUB", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "REVERT", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "tag", + "source": 1, + "value": "124" + }, + { + "begin": 7544, + "end": 7612, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7644, + "end": 7645, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 7630, + "end": 7646, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 7630, + "end": 7646, + "name": "AND", + "source": 1 + }, + { + "begin": 7630, + "end": 7632, + "name": "DUP3", + "source": 1 + }, + { + "begin": 7630, + "end": 7646, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 7630, + "end": 7646, + "name": "AND", + "source": 1 + }, + { + "begin": 7630, + "end": 7646, + "name": "SUB", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "PUSH [tag]", + "source": 1, + "value": "127" + }, + { + "begin": 7622, + "end": 7686, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 7622, + "end": 7686, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "PUSH", + "source": 1, + "value": "8C379A000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 7622, + "end": 7686, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 7622, + "end": 7686, + "name": "ADD", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "PUSH [tag]", + "source": 1, + "value": "128" + }, + { + "begin": 7622, + "end": 7686, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "PUSH [tag]", + "source": 1, + "value": "129" + }, + { + "begin": 7622, + "end": 7686, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "tag", + "source": 1, + "value": "128" + }, + { + "begin": 7622, + "end": 7686, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 7622, + "end": 7686, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "DUP1", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "SUB", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "REVERT", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "tag", + "source": 1, + "value": "127" + }, + { + "begin": 7622, + "end": 7686, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7697, + "end": 7735, + "name": "PUSH [tag]", + "source": 1, + "value": "130" + }, + { + "begin": 7718, + "end": 7722, + "name": "DUP4", + "source": 1 + }, + { + "begin": 7724, + "end": 7726, + "name": "DUP4", + "source": 1 + }, + { + "begin": 7728, + "end": 7734, + "name": "DUP4", + "source": 1 + }, + { + "begin": 7697, + "end": 7717, + "name": "PUSH [tag]", + "source": 1, + "value": "131" + }, + { + "begin": 7697, + "end": 7735, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 7697, + "end": 7735, + "name": "tag", + "source": 1, + "value": "130" + }, + { + "begin": 7697, + "end": 7735, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7746, + "end": 7765, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 7768, + "end": 7777, + "name": "DUP1", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 7778, + "end": 7782, + "name": "DUP6", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 7768, + "end": 7783, + "name": "AND", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 7768, + "end": 7783, + "name": "AND", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 7768, + "end": 7783, + "name": "ADD", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 7768, + "end": 7783, + "name": "ADD", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 7768, + "end": 7783, + "name": "KECCAK256", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 7746, + "end": 7783, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7746, + "end": 7783, + "name": "POP", + "source": 1 + }, + { + "begin": 7816, + "end": 7822, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7801, + "end": 7812, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7801, + "end": 7822, + "name": "LT", + "source": 1 + }, + { + "begin": 7801, + "end": 7822, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "PUSH [tag]", + "source": 1, + "value": "132" + }, + { + "begin": 7793, + "end": 7865, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 7793, + "end": 7865, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "PUSH", + "source": 1, + "value": "8C379A000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 7793, + "end": 7865, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 7793, + "end": 7865, + "name": "ADD", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "PUSH [tag]", + "source": 1, + "value": "133" + }, + { + "begin": 7793, + "end": 7865, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "PUSH [tag]", + "source": 1, + "value": "134" + }, + { + "begin": 7793, + "end": 7865, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "tag", + "source": 1, + "value": "133" + }, + { + "begin": 7793, + "end": 7865, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 7793, + "end": 7865, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "DUP1", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "SUB", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "REVERT", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "tag", + "source": 1, + "value": "132" + }, + { + "begin": 7793, + "end": 7865, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7931, + "end": 7937, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7917, + "end": 7928, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7917, + "end": 7937, + "name": "SUB", + "source": 1 + }, + { + "begin": 7899, + "end": 7908, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 7899, + "end": 7914, + "name": "DUP1", + "source": 1 + }, + { + "begin": 7909, + "end": 7913, + "name": "DUP7", + "source": 1 + }, + { + "begin": 7899, + "end": 7914, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 7899, + "end": 7914, + "name": "AND", + "source": 1 + }, + { + "begin": 7899, + "end": 7914, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 7899, + "end": 7914, + "name": "AND", + "source": 1 + }, + { + "begin": 7899, + "end": 7914, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7899, + "end": 7914, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 7899, + "end": 7914, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 7899, + "end": 7914, + "name": "ADD", + "source": 1 + }, + { + "begin": 7899, + "end": 7914, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7899, + "end": 7914, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7899, + "end": 7914, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 7899, + "end": 7914, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 7899, + "end": 7914, + "name": "ADD", + "source": 1 + }, + { + "begin": 7899, + "end": 7914, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 7899, + "end": 7914, + "name": "KECCAK256", + "source": 1 + }, + { + "begin": 7899, + "end": 7937, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7899, + "end": 7937, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7899, + "end": 7937, + "name": "SSTORE", + "source": 1 + }, + { + "begin": 7899, + "end": 7937, + "name": "POP", + "source": 1 + }, + { + "begin": 8131, + "end": 8137, + "name": "DUP2", + "source": 1 + }, + { + "begin": 8114, + "end": 8123, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 8114, + "end": 8127, + "name": "DUP1", + "source": 1 + }, + { + "begin": 8124, + "end": 8126, + "name": "DUP6", + "source": 1 + }, + { + "begin": 8114, + "end": 8127, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 8114, + "end": 8127, + "name": "AND", + "source": 1 + }, + { + "begin": 8114, + "end": 8127, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 8114, + "end": 8127, + "name": "AND", + "source": 1 + }, + { + "begin": 8114, + "end": 8127, + "name": "DUP2", + "source": 1 + }, + { + "begin": 8114, + "end": 8127, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 8114, + "end": 8127, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 8114, + "end": 8127, + "name": "ADD", + "source": 1 + }, + { + "begin": 8114, + "end": 8127, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 8114, + "end": 8127, + "name": "DUP2", + "source": 1 + }, + { + "begin": 8114, + "end": 8127, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 8114, + "end": 8127, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 8114, + "end": 8127, + "name": "ADD", + "source": 1 + }, + { + "begin": 8114, + "end": 8127, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 8114, + "end": 8127, + "name": "KECCAK256", + "source": 1 + }, + { + "begin": 8114, + "end": 8127, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 8114, + "end": 8137, + "name": "DUP3", + "source": 1 + }, + { + "begin": 8114, + "end": 8137, + "name": "DUP3", + "source": 1 + }, + { + "begin": 8114, + "end": 8137, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 8114, + "end": 8137, + "name": "ADD", + "source": 1 + }, + { + "begin": 8114, + "end": 8137, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 8114, + "end": 8137, + "name": "POP", + "source": 1 + }, + { + "begin": 8114, + "end": 8137, + "name": "POP", + "source": 1 + }, + { + "begin": 8114, + "end": 8137, + "name": "DUP2", + "source": 1 + }, + { + "begin": 8114, + "end": 8137, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 8114, + "end": 8137, + "name": "SSTORE", + "source": 1 + }, + { + "begin": 8114, + "end": 8137, + "name": "POP", + "source": 1 + }, + { + "begin": 8178, + "end": 8180, + "name": "DUP3", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 8163, + "end": 8189, + "name": "AND", + "source": 1 + }, + { + "begin": 8172, + "end": 8176, + "name": "DUP5", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 8163, + "end": 8189, + "name": "AND", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "PUSH", + "source": 1, + "value": "DDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF" + }, + { + "begin": 8182, + "end": 8188, + "name": "DUP5", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 8163, + "end": 8189, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "PUSH [tag]", + "source": 1, + "value": "135" + }, + { + "begin": 8163, + "end": 8189, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "PUSH [tag]", + "source": 1, + "value": "28" + }, + { + "begin": 8163, + "end": 8189, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "tag", + "source": 1, + "value": "135" + }, + { + "begin": 8163, + "end": 8189, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 8163, + "end": 8189, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "DUP1", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "SUB", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "LOG3", + "source": 1 + }, + { + "begin": 8200, + "end": 8237, + "name": "PUSH [tag]", + "source": 1, + "value": "136" + }, + { + "begin": 8220, + "end": 8224, + "name": "DUP5", + "source": 1 + }, + { + "begin": 8226, + "end": 8228, + "name": "DUP5", + "source": 1 + }, + { + "begin": 8230, + "end": 8236, + "name": "DUP5", + "source": 1 + }, + { + "begin": 8200, + "end": 8219, + "name": "PUSH [tag]", + "source": 1, + "value": "137" + }, + { + "begin": 8200, + "end": 8237, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 8200, + "end": 8237, + "name": "tag", + "source": 1, + "value": "136" + }, + { + "begin": 8200, + "end": 8237, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7534, + "end": 8244, + "name": "POP", + "source": 1 + }, + { + "begin": 7456, + "end": 8244, + "name": "POP", + "source": 1 + }, + { + "begin": 7456, + "end": 8244, + "name": "POP", + "source": 1 + }, + { + "begin": 7456, + "end": 8244, + "name": "POP", + "source": 1 + }, + { + "begin": 7456, + "end": 8244, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 12073, + "end": 12164, + "name": "tag", + "source": 1, + "value": "131" + }, + { + "begin": 12073, + "end": 12164, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 12073, + "end": 12164, + "name": "POP", + "source": 1 + }, + { + "begin": 12073, + "end": 12164, + "name": "POP", + "source": 1 + }, + { + "begin": 12073, + "end": 12164, + "name": "POP", + "source": 1 + }, + { + "begin": 12073, + "end": 12164, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 12752, + "end": 12842, + "name": "tag", + "source": 1, + "value": "137" + }, + { + "begin": 12752, + "end": 12842, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 12752, + "end": 12842, + "name": "POP", + "source": 1 + }, + { + "begin": 12752, + "end": 12842, + "name": "POP", + "source": 1 + }, + { + "begin": 12752, + "end": 12842, + "name": "POP", + "source": 1 + }, + { + "begin": 12752, + "end": 12842, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 7, + "end": 106, + "name": "tag", + "source": 6, + "value": "140" + }, + { + "begin": 7, + "end": 106, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 59, + "end": 65, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 93, + "end": 98, + "name": "DUP2", + "source": 6 + }, + { + "begin": 87, + "end": 99, + "name": "MLOAD", + "source": 6 + }, + { + "begin": 77, + "end": 99, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 77, + "end": 99, + "name": "POP", + "source": 6 + }, + { + "begin": 7, + "end": 106, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 7, + "end": 106, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 7, + "end": 106, + "name": "POP", + "source": 6 + }, + { + "begin": 7, + "end": 106, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 112, + "end": 281, + "name": "tag", + "source": 6, + "value": "141" + }, + { + "begin": 112, + "end": 281, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 196, + "end": 207, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 230, + "end": 236, + "name": "DUP3", + "source": 6 + }, + { + "begin": 225, + "end": 228, + "name": "DUP3", + "source": 6 + }, + { + "begin": 218, + "end": 237, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 270, + "end": 274, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 265, + "end": 268, + "name": "DUP3", + "source": 6 + }, + { + "begin": 261, + "end": 275, + "name": "ADD", + "source": 6 + }, + { + "begin": 246, + "end": 275, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 246, + "end": 275, + "name": "POP", + "source": 6 + }, + { + "begin": 112, + "end": 281, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 112, + "end": 281, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 112, + "end": 281, + "name": "POP", + "source": 6 + }, + { + "begin": 112, + "end": 281, + "name": "POP", + "source": 6 + }, + { + "begin": 112, + "end": 281, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 287, + "end": 533, + "name": "tag", + "source": 6, + "value": "142" + }, + { + "begin": 287, + "end": 533, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 368, + "end": 369, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 378, + "end": 491, + "name": "tag", + "source": 6, + "value": "180" + }, + { + "begin": 378, + "end": 491, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 392, + "end": 398, + "name": "DUP4", + "source": 6 + }, + { + "begin": 389, + "end": 390, + "name": "DUP2", + "source": 6 + }, + { + "begin": 386, + "end": 399, + "name": "LT", + "source": 6 + }, + { + "begin": 378, + "end": 491, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 378, + "end": 491, + "name": "PUSH [tag]", + "source": 6, + "value": "182" + }, + { + "begin": 378, + "end": 491, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 477, + "end": 478, + "name": "DUP1", + "source": 6 + }, + { + "begin": 472, + "end": 475, + "name": "DUP3", + "source": 6 + }, + { + "begin": 468, + "end": 479, + "name": "ADD", + "source": 6 + }, + { + "begin": 462, + "end": 480, + "name": "MLOAD", + "source": 6 + }, + { + "begin": 458, + "end": 459, + "name": "DUP2", + "source": 6 + }, + { + "begin": 453, + "end": 456, + "name": "DUP5", + "source": 6 + }, + { + "begin": 449, + "end": 460, + "name": "ADD", + "source": 6 + }, + { + "begin": 442, + "end": 481, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 414, + "end": 416, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 411, + "end": 412, + "name": "DUP2", + "source": 6 + }, + { + "begin": 407, + "end": 417, + "name": "ADD", + "source": 6 + }, + { + "begin": 402, + "end": 417, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 402, + "end": 417, + "name": "POP", + "source": 6 + }, + { + "begin": 378, + "end": 491, + "name": "PUSH [tag]", + "source": 6, + "value": "180" + }, + { + "begin": 378, + "end": 491, + "name": "JUMP", + "source": 6 + }, + { + "begin": 378, + "end": 491, + "name": "tag", + "source": 6, + "value": "182" + }, + { + "begin": 378, + "end": 491, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 525, + "end": 526, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 516, + "end": 522, + "name": "DUP5", + "source": 6 + }, + { + "begin": 511, + "end": 514, + "name": "DUP5", + "source": 6 + }, + { + "begin": 507, + "end": 523, + "name": "ADD", + "source": 6 + }, + { + "begin": 500, + "end": 527, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 349, + "end": 533, + "name": "POP", + "source": 6 + }, + { + "begin": 287, + "end": 533, + "name": "POP", + "source": 6 + }, + { + "begin": 287, + "end": 533, + "name": "POP", + "source": 6 + }, + { + "begin": 287, + "end": 533, + "name": "POP", + "source": 6 + }, + { + "begin": 287, + "end": 533, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 539, + "end": 641, + "name": "tag", + "source": 6, + "value": "143" + }, + { + "begin": 539, + "end": 641, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 580, + "end": 586, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 631, + "end": 633, + "name": "PUSH", + "source": 6, + "value": "1F" + }, + { + "begin": 627, + "end": 634, + "name": "NOT", + "source": 6 + }, + { + "begin": 622, + "end": 624, + "name": "PUSH", + "source": 6, + "value": "1F" + }, + { + "begin": 615, + "end": 620, + "name": "DUP4", + "source": 6 + }, + { + "begin": 611, + "end": 625, + "name": "ADD", + "source": 6 + }, + { + "begin": 607, + "end": 635, + "name": "AND", + "source": 6 + }, + { + "begin": 597, + "end": 635, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 597, + "end": 635, + "name": "POP", + "source": 6 + }, + { + "begin": 539, + "end": 641, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 539, + "end": 641, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 539, + "end": 641, + "name": "POP", + "source": 6 + }, + { + "begin": 539, + "end": 641, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 647, + "end": 1024, + "name": "tag", + "source": 6, + "value": "144" + }, + { + "begin": 647, + "end": 1024, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 735, + "end": 738, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 763, + "end": 802, + "name": "PUSH [tag]", + "source": 6, + "value": "185" + }, + { + "begin": 796, + "end": 801, + "name": "DUP3", + "source": 6 + }, + { + "begin": 763, + "end": 802, + "name": "PUSH [tag]", + "source": 6, + "value": "140" + }, + { + "begin": 763, + "end": 802, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 763, + "end": 802, + "name": "tag", + "source": 6, + "value": "185" + }, + { + "begin": 763, + "end": 802, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 818, + "end": 889, + "name": "PUSH [tag]", + "source": 6, + "value": "186" + }, + { + "begin": 882, + "end": 888, + "name": "DUP2", + "source": 6 + }, + { + "begin": 877, + "end": 880, + "name": "DUP6", + "source": 6 + }, + { + "begin": 818, + "end": 889, + "name": "PUSH [tag]", + "source": 6, + "value": "141" + }, + { + "begin": 818, + "end": 889, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 818, + "end": 889, + "name": "tag", + "source": 6, + "value": "186" + }, + { + "begin": 818, + "end": 889, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 811, + "end": 889, + "name": "SWAP4", + "source": 6 + }, + { + "begin": 811, + "end": 889, + "name": "POP", + "source": 6 + }, + { + "begin": 898, + "end": 963, + "name": "PUSH [tag]", + "source": 6, + "value": "187" + }, + { + "begin": 956, + "end": 962, + "name": "DUP2", + "source": 6 + }, + { + "begin": 951, + "end": 954, + "name": "DUP6", + "source": 6 + }, + { + "begin": 944, + "end": 948, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 937, + "end": 942, + "name": "DUP7", + "source": 6 + }, + { + "begin": 933, + "end": 949, + "name": "ADD", + "source": 6 + }, + { + "begin": 898, + "end": 963, + "name": "PUSH [tag]", + "source": 6, + "value": "142" + }, + { + "begin": 898, + "end": 963, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 898, + "end": 963, + "name": "tag", + "source": 6, + "value": "187" + }, + { + "begin": 898, + "end": 963, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 988, + "end": 1017, + "name": "PUSH [tag]", + "source": 6, + "value": "188" + }, + { + "begin": 1010, + "end": 1016, + "name": "DUP2", + "source": 6 + }, + { + "begin": 988, + "end": 1017, + "name": "PUSH [tag]", + "source": 6, + "value": "143" + }, + { + "begin": 988, + "end": 1017, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 988, + "end": 1017, + "name": "tag", + "source": 6, + "value": "188" + }, + { + "begin": 988, + "end": 1017, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 983, + "end": 986, + "name": "DUP5", + "source": 6 + }, + { + "begin": 979, + "end": 1018, + "name": "ADD", + "source": 6 + }, + { + "begin": 972, + "end": 1018, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 972, + "end": 1018, + "name": "POP", + "source": 6 + }, + { + "begin": 739, + "end": 1024, + "name": "POP", + "source": 6 + }, + { + "begin": 647, + "end": 1024, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 647, + "end": 1024, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 647, + "end": 1024, + "name": "POP", + "source": 6 + }, + { + "begin": 647, + "end": 1024, + "name": "POP", + "source": 6 + }, + { + "begin": 647, + "end": 1024, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1030, + "end": 1343, + "name": "tag", + "source": 6, + "value": "18" + }, + { + "begin": 1030, + "end": 1343, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1143, + "end": 1147, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 1181, + "end": 1183, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 1170, + "end": 1179, + "name": "DUP3", + "source": 6 + }, + { + "begin": 1166, + "end": 1184, + "name": "ADD", + "source": 6 + }, + { + "begin": 1158, + "end": 1184, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1158, + "end": 1184, + "name": "POP", + "source": 6 + }, + { + "begin": 1230, + "end": 1239, + "name": "DUP2", + "source": 6 + }, + { + "begin": 1224, + "end": 1228, + "name": "DUP2", + "source": 6 + }, + { + "begin": 1220, + "end": 1240, + "name": "SUB", + "source": 6 + }, + { + "begin": 1216, + "end": 1217, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 1205, + "end": 1214, + "name": "DUP4", + "source": 6 + }, + { + "begin": 1201, + "end": 1218, + "name": "ADD", + "source": 6 + }, + { + "begin": 1194, + "end": 1241, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 1258, + "end": 1336, + "name": "PUSH [tag]", + "source": 6, + "value": "190" + }, + { + "begin": 1331, + "end": 1335, + "name": "DUP2", + "source": 6 + }, + { + "begin": 1322, + "end": 1328, + "name": "DUP5", + "source": 6 + }, + { + "begin": 1258, + "end": 1336, + "name": "PUSH [tag]", + "source": 6, + "value": "144" + }, + { + "begin": 1258, + "end": 1336, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1258, + "end": 1336, + "name": "tag", + "source": 6, + "value": "190" + }, + { + "begin": 1258, + "end": 1336, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1250, + "end": 1336, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1250, + "end": 1336, + "name": "POP", + "source": 6 + }, + { + "begin": 1030, + "end": 1343, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 1030, + "end": 1343, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 1030, + "end": 1343, + "name": "POP", + "source": 6 + }, + { + "begin": 1030, + "end": 1343, + "name": "POP", + "source": 6 + }, + { + "begin": 1030, + "end": 1343, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1430, + "end": 1547, + "name": "tag", + "source": 6, + "value": "146" + }, + { + "begin": 1430, + "end": 1547, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1539, + "end": 1540, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 1536, + "end": 1537, + "name": "DUP1", + "source": 6 + }, + { + "begin": 1529, + "end": 1541, + "name": "REVERT", + "source": 6 + }, + { + "begin": 1676, + "end": 1802, + "name": "tag", + "source": 6, + "value": "148" + }, + { + "begin": 1676, + "end": 1802, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1713, + "end": 1720, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 1753, + "end": 1795, + "name": "PUSH", + "source": 6, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 1746, + "end": 1751, + "name": "DUP3", + "source": 6 + }, + { + "begin": 1742, + "end": 1796, + "name": "AND", + "source": 6 + }, + { + "begin": 1731, + "end": 1796, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1731, + "end": 1796, + "name": "POP", + "source": 6 + }, + { + "begin": 1676, + "end": 1802, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 1676, + "end": 1802, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1676, + "end": 1802, + "name": "POP", + "source": 6 + }, + { + "begin": 1676, + "end": 1802, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1808, + "end": 1904, + "name": "tag", + "source": 6, + "value": "149" + }, + { + "begin": 1808, + "end": 1904, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1845, + "end": 1852, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 1874, + "end": 1898, + "name": "PUSH [tag]", + "source": 6, + "value": "196" + }, + { + "begin": 1892, + "end": 1897, + "name": "DUP3", + "source": 6 + }, + { + "begin": 1874, + "end": 1898, + "name": "PUSH [tag]", + "source": 6, + "value": "148" + }, + { + "begin": 1874, + "end": 1898, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1874, + "end": 1898, + "name": "tag", + "source": 6, + "value": "196" + }, + { + "begin": 1874, + "end": 1898, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1863, + "end": 1898, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1863, + "end": 1898, + "name": "POP", + "source": 6 + }, + { + "begin": 1808, + "end": 1904, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 1808, + "end": 1904, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1808, + "end": 1904, + "name": "POP", + "source": 6 + }, + { + "begin": 1808, + "end": 1904, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1910, + "end": 2032, + "name": "tag", + "source": 6, + "value": "150" + }, + { + "begin": 1910, + "end": 2032, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1983, + "end": 2007, + "name": "PUSH [tag]", + "source": 6, + "value": "198" + }, + { + "begin": 2001, + "end": 2006, + "name": "DUP2", + "source": 6 + }, + { + "begin": 1983, + "end": 2007, + "name": "PUSH [tag]", + "source": 6, + "value": "149" + }, + { + "begin": 1983, + "end": 2007, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1983, + "end": 2007, + "name": "tag", + "source": 6, + "value": "198" + }, + { + "begin": 1983, + "end": 2007, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1976, + "end": 1981, + "name": "DUP2", + "source": 6 + }, + { + "begin": 1973, + "end": 2008, + "name": "EQ", + "source": 6 + }, + { + "begin": 1963, + "end": 2026, + "name": "PUSH [tag]", + "source": 6, + "value": "199" + }, + { + "begin": 1963, + "end": 2026, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 2022, + "end": 2023, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 2019, + "end": 2020, + "name": "DUP1", + "source": 6 + }, + { + "begin": 2012, + "end": 2024, + "name": "REVERT", + "source": 6 + }, + { + "begin": 1963, + "end": 2026, + "name": "tag", + "source": 6, + "value": "199" + }, + { + "begin": 1963, + "end": 2026, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1910, + "end": 2032, + "name": "POP", + "source": 6 + }, + { + "begin": 1910, + "end": 2032, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2038, + "end": 2177, + "name": "tag", + "source": 6, + "value": "151" + }, + { + "begin": 2038, + "end": 2177, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2084, + "end": 2089, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 2122, + "end": 2128, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2109, + "end": 2129, + "name": "CALLDATALOAD", + "source": 6 + }, + { + "begin": 2100, + "end": 2129, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 2100, + "end": 2129, + "name": "POP", + "source": 6 + }, + { + "begin": 2138, + "end": 2171, + "name": "PUSH [tag]", + "source": 6, + "value": "201" + }, + { + "begin": 2165, + "end": 2170, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2138, + "end": 2171, + "name": "PUSH [tag]", + "source": 6, + "value": "150" + }, + { + "begin": 2138, + "end": 2171, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2138, + "end": 2171, + "name": "tag", + "source": 6, + "value": "201" + }, + { + "begin": 2138, + "end": 2171, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2038, + "end": 2177, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 2038, + "end": 2177, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 2038, + "end": 2177, + "name": "POP", + "source": 6 + }, + { + "begin": 2038, + "end": 2177, + "name": "POP", + "source": 6 + }, + { + "begin": 2038, + "end": 2177, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2183, + "end": 2260, + "name": "tag", + "source": 6, + "value": "152" + }, + { + "begin": 2183, + "end": 2260, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2220, + "end": 2227, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 2249, + "end": 2254, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2238, + "end": 2254, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 2238, + "end": 2254, + "name": "POP", + "source": 6 + }, + { + "begin": 2183, + "end": 2260, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 2183, + "end": 2260, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 2183, + "end": 2260, + "name": "POP", + "source": 6 + }, + { + "begin": 2183, + "end": 2260, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2266, + "end": 2388, + "name": "tag", + "source": 6, + "value": "153" + }, + { + "begin": 2266, + "end": 2388, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2339, + "end": 2363, + "name": "PUSH [tag]", + "source": 6, + "value": "204" + }, + { + "begin": 2357, + "end": 2362, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2339, + "end": 2363, + "name": "PUSH [tag]", + "source": 6, + "value": "152" + }, + { + "begin": 2339, + "end": 2363, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2339, + "end": 2363, + "name": "tag", + "source": 6, + "value": "204" + }, + { + "begin": 2339, + "end": 2363, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2332, + "end": 2337, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2329, + "end": 2364, + "name": "EQ", + "source": 6 + }, + { + "begin": 2319, + "end": 2382, + "name": "PUSH [tag]", + "source": 6, + "value": "205" + }, + { + "begin": 2319, + "end": 2382, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 2378, + "end": 2379, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 2375, + "end": 2376, + "name": "DUP1", + "source": 6 + }, + { + "begin": 2368, + "end": 2380, + "name": "REVERT", + "source": 6 + }, + { + "begin": 2319, + "end": 2382, + "name": "tag", + "source": 6, + "value": "205" + }, + { + "begin": 2319, + "end": 2382, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2266, + "end": 2388, + "name": "POP", + "source": 6 + }, + { + "begin": 2266, + "end": 2388, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2394, + "end": 2533, + "name": "tag", + "source": 6, + "value": "154" + }, + { + "begin": 2394, + "end": 2533, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2440, + "end": 2445, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 2478, + "end": 2484, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2465, + "end": 2485, + "name": "CALLDATALOAD", + "source": 6 + }, + { + "begin": 2456, + "end": 2485, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 2456, + "end": 2485, + "name": "POP", + "source": 6 + }, + { + "begin": 2494, + "end": 2527, + "name": "PUSH [tag]", + "source": 6, + "value": "207" + }, + { + "begin": 2521, + "end": 2526, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2494, + "end": 2527, + "name": "PUSH [tag]", + "source": 6, + "value": "153" + }, + { + "begin": 2494, + "end": 2527, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2494, + "end": 2527, + "name": "tag", + "source": 6, + "value": "207" + }, + { + "begin": 2494, + "end": 2527, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2394, + "end": 2533, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 2394, + "end": 2533, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 2394, + "end": 2533, + "name": "POP", + "source": 6 + }, + { + "begin": 2394, + "end": 2533, + "name": "POP", + "source": 6 + }, + { + "begin": 2394, + "end": 2533, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2539, + "end": 3013, + "name": "tag", + "source": 6, + "value": "21" + }, + { + "begin": 2539, + "end": 3013, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2607, + "end": 2613, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 2615, + "end": 2621, + "name": "DUP1", + "source": 6 + }, + { + "begin": 2664, + "end": 2666, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 2652, + "end": 2661, + "name": "DUP4", + "source": 6 + }, + { + "begin": 2643, + "end": 2650, + "name": "DUP6", + "source": 6 + }, + { + "begin": 2639, + "end": 2662, + "name": "SUB", + "source": 6 + }, + { + "begin": 2635, + "end": 2667, + "name": "SLT", + "source": 6 + }, + { + "begin": 2632, + "end": 2751, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 2632, + "end": 2751, + "name": "PUSH [tag]", + "source": 6, + "value": "209" + }, + { + "begin": 2632, + "end": 2751, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 2670, + "end": 2749, + "name": "PUSH [tag]", + "source": 6, + "value": "210" + }, + { + "begin": 2670, + "end": 2749, + "name": "PUSH [tag]", + "source": 6, + "value": "146" + }, + { + "begin": 2670, + "end": 2749, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2670, + "end": 2749, + "name": "tag", + "source": 6, + "value": "210" + }, + { + "begin": 2670, + "end": 2749, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2632, + "end": 2751, + "name": "tag", + "source": 6, + "value": "209" + }, + { + "begin": 2632, + "end": 2751, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2790, + "end": 2791, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 2815, + "end": 2868, + "name": "PUSH [tag]", + "source": 6, + "value": "211" + }, + { + "begin": 2860, + "end": 2867, + "name": "DUP6", + "source": 6 + }, + { + "begin": 2851, + "end": 2857, + "name": "DUP3", + "source": 6 + }, + { + "begin": 2840, + "end": 2849, + "name": "DUP7", + "source": 6 + }, + { + "begin": 2836, + "end": 2858, + "name": "ADD", + "source": 6 + }, + { + "begin": 2815, + "end": 2868, + "name": "PUSH [tag]", + "source": 6, + "value": "151" + }, + { + "begin": 2815, + "end": 2868, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2815, + "end": 2868, + "name": "tag", + "source": 6, + "value": "211" + }, + { + "begin": 2815, + "end": 2868, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2805, + "end": 2868, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 2805, + "end": 2868, + "name": "POP", + "source": 6 + }, + { + "begin": 2761, + "end": 2878, + "name": "POP", + "source": 6 + }, + { + "begin": 2917, + "end": 2919, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 2943, + "end": 2996, + "name": "PUSH [tag]", + "source": 6, + "value": "212" + }, + { + "begin": 2988, + "end": 2995, + "name": "DUP6", + "source": 6 + }, + { + "begin": 2979, + "end": 2985, + "name": "DUP3", + "source": 6 + }, + { + "begin": 2968, + "end": 2977, + "name": "DUP7", + "source": 6 + }, + { + "begin": 2964, + "end": 2986, + "name": "ADD", + "source": 6 + }, + { + "begin": 2943, + "end": 2996, + "name": "PUSH [tag]", + "source": 6, + "value": "154" + }, + { + "begin": 2943, + "end": 2996, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2943, + "end": 2996, + "name": "tag", + "source": 6, + "value": "212" + }, + { + "begin": 2943, + "end": 2996, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2933, + "end": 2996, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 2933, + "end": 2996, + "name": "POP", + "source": 6 + }, + { + "begin": 2888, + "end": 3006, + "name": "POP", + "source": 6 + }, + { + "begin": 2539, + "end": 3013, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 2539, + "end": 3013, + "name": "POP", + "source": 6 + }, + { + "begin": 2539, + "end": 3013, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 2539, + "end": 3013, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 2539, + "end": 3013, + "name": "POP", + "source": 6 + }, + { + "begin": 2539, + "end": 3013, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3019, + "end": 3109, + "name": "tag", + "source": 6, + "value": "155" + }, + { + "begin": 3019, + "end": 3109, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3053, + "end": 3060, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 3096, + "end": 3101, + "name": "DUP2", + "source": 6 + }, + { + "begin": 3089, + "end": 3102, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 3082, + "end": 3103, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 3071, + "end": 3103, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 3071, + "end": 3103, + "name": "POP", + "source": 6 + }, + { + "begin": 3019, + "end": 3109, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 3019, + "end": 3109, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 3019, + "end": 3109, + "name": "POP", + "source": 6 + }, + { + "begin": 3019, + "end": 3109, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3115, + "end": 3224, + "name": "tag", + "source": 6, + "value": "156" + }, + { + "begin": 3115, + "end": 3224, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3196, + "end": 3217, + "name": "PUSH [tag]", + "source": 6, + "value": "215" + }, + { + "begin": 3211, + "end": 3216, + "name": "DUP2", + "source": 6 + }, + { + "begin": 3196, + "end": 3217, + "name": "PUSH [tag]", + "source": 6, + "value": "155" + }, + { + "begin": 3196, + "end": 3217, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3196, + "end": 3217, + "name": "tag", + "source": 6, + "value": "215" + }, + { + "begin": 3196, + "end": 3217, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3191, + "end": 3194, + "name": "DUP3", + "source": 6 + }, + { + "begin": 3184, + "end": 3218, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 3115, + "end": 3224, + "name": "POP", + "source": 6 + }, + { + "begin": 3115, + "end": 3224, + "name": "POP", + "source": 6 + }, + { + "begin": 3115, + "end": 3224, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3230, + "end": 3440, + "name": "tag", + "source": 6, + "value": "24" + }, + { + "begin": 3230, + "end": 3440, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3317, + "end": 3321, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 3355, + "end": 3357, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 3344, + "end": 3353, + "name": "DUP3", + "source": 6 + }, + { + "begin": 3340, + "end": 3358, + "name": "ADD", + "source": 6 + }, + { + "begin": 3332, + "end": 3358, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 3332, + "end": 3358, + "name": "POP", + "source": 6 + }, + { + "begin": 3368, + "end": 3433, + "name": "PUSH [tag]", + "source": 6, + "value": "217" + }, + { + "begin": 3430, + "end": 3431, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 3419, + "end": 3428, + "name": "DUP4", + "source": 6 + }, + { + "begin": 3415, + "end": 3432, + "name": "ADD", + "source": 6 + }, + { + "begin": 3406, + "end": 3412, + "name": "DUP5", + "source": 6 + }, + { + "begin": 3368, + "end": 3433, + "name": "PUSH [tag]", + "source": 6, + "value": "156" + }, + { + "begin": 3368, + "end": 3433, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3368, + "end": 3433, + "name": "tag", + "source": 6, + "value": "217" + }, + { + "begin": 3368, + "end": 3433, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3230, + "end": 3440, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 3230, + "end": 3440, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 3230, + "end": 3440, + "name": "POP", + "source": 6 + }, + { + "begin": 3230, + "end": 3440, + "name": "POP", + "source": 6 + }, + { + "begin": 3230, + "end": 3440, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3446, + "end": 3564, + "name": "tag", + "source": 6, + "value": "157" + }, + { + "begin": 3446, + "end": 3564, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3533, + "end": 3557, + "name": "PUSH [tag]", + "source": 6, + "value": "219" + }, + { + "begin": 3551, + "end": 3556, + "name": "DUP2", + "source": 6 + }, + { + "begin": 3533, + "end": 3557, + "name": "PUSH [tag]", + "source": 6, + "value": "152" + }, + { + "begin": 3533, + "end": 3557, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3533, + "end": 3557, + "name": "tag", + "source": 6, + "value": "219" + }, + { + "begin": 3533, + "end": 3557, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3528, + "end": 3531, + "name": "DUP3", + "source": 6 + }, + { + "begin": 3521, + "end": 3558, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 3446, + "end": 3564, + "name": "POP", + "source": 6 + }, + { + "begin": 3446, + "end": 3564, + "name": "POP", + "source": 6 + }, + { + "begin": 3446, + "end": 3564, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3570, + "end": 3792, + "name": "tag", + "source": 6, + "value": "28" + }, + { + "begin": 3570, + "end": 3792, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3663, + "end": 3667, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 3701, + "end": 3703, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 3690, + "end": 3699, + "name": "DUP3", + "source": 6 + }, + { + "begin": 3686, + "end": 3704, + "name": "ADD", + "source": 6 + }, + { + "begin": 3678, + "end": 3704, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 3678, + "end": 3704, + "name": "POP", + "source": 6 + }, + { + "begin": 3714, + "end": 3785, + "name": "PUSH [tag]", + "source": 6, + "value": "221" + }, + { + "begin": 3782, + "end": 3783, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 3771, + "end": 3780, + "name": "DUP4", + "source": 6 + }, + { + "begin": 3767, + "end": 3784, + "name": "ADD", + "source": 6 + }, + { + "begin": 3758, + "end": 3764, + "name": "DUP5", + "source": 6 + }, + { + "begin": 3714, + "end": 3785, + "name": "PUSH [tag]", + "source": 6, + "value": "157" + }, + { + "begin": 3714, + "end": 3785, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3714, + "end": 3785, + "name": "tag", + "source": 6, + "value": "221" + }, + { + "begin": 3714, + "end": 3785, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3570, + "end": 3792, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 3570, + "end": 3792, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 3570, + "end": 3792, + "name": "POP", + "source": 6 + }, + { + "begin": 3570, + "end": 3792, + "name": "POP", + "source": 6 + }, + { + "begin": 3570, + "end": 3792, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3798, + "end": 4417, + "name": "tag", + "source": 6, + "value": "31" + }, + { + "begin": 3798, + "end": 4417, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3875, + "end": 3881, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 3883, + "end": 3889, + "name": "DUP1", + "source": 6 + }, + { + "begin": 3891, + "end": 3897, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 3940, + "end": 3942, + "name": "PUSH", + "source": 6, + "value": "60" + }, + { + "begin": 3928, + "end": 3937, + "name": "DUP5", + "source": 6 + }, + { + "begin": 3919, + "end": 3926, + "name": "DUP7", + "source": 6 + }, + { + "begin": 3915, + "end": 3938, + "name": "SUB", + "source": 6 + }, + { + "begin": 3911, + "end": 3943, + "name": "SLT", + "source": 6 + }, + { + "begin": 3908, + "end": 4027, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 3908, + "end": 4027, + "name": "PUSH [tag]", + "source": 6, + "value": "223" + }, + { + "begin": 3908, + "end": 4027, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 3946, + "end": 4025, + "name": "PUSH [tag]", + "source": 6, + "value": "224" + }, + { + "begin": 3946, + "end": 4025, + "name": "PUSH [tag]", + "source": 6, + "value": "146" + }, + { + "begin": 3946, + "end": 4025, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3946, + "end": 4025, + "name": "tag", + "source": 6, + "value": "224" + }, + { + "begin": 3946, + "end": 4025, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3908, + "end": 4027, + "name": "tag", + "source": 6, + "value": "223" + }, + { + "begin": 3908, + "end": 4027, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4066, + "end": 4067, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 4091, + "end": 4144, + "name": "PUSH [tag]", + "source": 6, + "value": "225" + }, + { + "begin": 4136, + "end": 4143, + "name": "DUP7", + "source": 6 + }, + { + "begin": 4127, + "end": 4133, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4116, + "end": 4125, + "name": "DUP8", + "source": 6 + }, + { + "begin": 4112, + "end": 4134, + "name": "ADD", + "source": 6 + }, + { + "begin": 4091, + "end": 4144, + "name": "PUSH [tag]", + "source": 6, + "value": "151" + }, + { + "begin": 4091, + "end": 4144, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4091, + "end": 4144, + "name": "tag", + "source": 6, + "value": "225" + }, + { + "begin": 4091, + "end": 4144, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4081, + "end": 4144, + "name": "SWAP4", + "source": 6 + }, + { + "begin": 4081, + "end": 4144, + "name": "POP", + "source": 6 + }, + { + "begin": 4037, + "end": 4154, + "name": "POP", + "source": 6 + }, + { + "begin": 4193, + "end": 4195, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 4219, + "end": 4272, + "name": "PUSH [tag]", + "source": 6, + "value": "226" + }, + { + "begin": 4264, + "end": 4271, + "name": "DUP7", + "source": 6 + }, + { + "begin": 4255, + "end": 4261, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4244, + "end": 4253, + "name": "DUP8", + "source": 6 + }, + { + "begin": 4240, + "end": 4262, + "name": "ADD", + "source": 6 + }, + { + "begin": 4219, + "end": 4272, + "name": "PUSH [tag]", + "source": 6, + "value": "151" + }, + { + "begin": 4219, + "end": 4272, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4219, + "end": 4272, + "name": "tag", + "source": 6, + "value": "226" + }, + { + "begin": 4219, + "end": 4272, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4209, + "end": 4272, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 4209, + "end": 4272, + "name": "POP", + "source": 6 + }, + { + "begin": 4164, + "end": 4282, + "name": "POP", + "source": 6 + }, + { + "begin": 4321, + "end": 4323, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 4347, + "end": 4400, + "name": "PUSH [tag]", + "source": 6, + "value": "227" + }, + { + "begin": 4392, + "end": 4399, + "name": "DUP7", + "source": 6 + }, + { + "begin": 4383, + "end": 4389, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4372, + "end": 4381, + "name": "DUP8", + "source": 6 + }, + { + "begin": 4368, + "end": 4390, + "name": "ADD", + "source": 6 + }, + { + "begin": 4347, + "end": 4400, + "name": "PUSH [tag]", + "source": 6, + "value": "154" + }, + { + "begin": 4347, + "end": 4400, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4347, + "end": 4400, + "name": "tag", + "source": 6, + "value": "227" + }, + { + "begin": 4347, + "end": 4400, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4337, + "end": 4400, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 4337, + "end": 4400, + "name": "POP", + "source": 6 + }, + { + "begin": 4292, + "end": 4410, + "name": "POP", + "source": 6 + }, + { + "begin": 3798, + "end": 4417, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 3798, + "end": 4417, + "name": "POP", + "source": 6 + }, + { + "begin": 3798, + "end": 4417, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 3798, + "end": 4417, + "name": "POP", + "source": 6 + }, + { + "begin": 3798, + "end": 4417, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 3798, + "end": 4417, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4423, + "end": 4509, + "name": "tag", + "source": 6, + "value": "158" + }, + { + "begin": 4423, + "end": 4509, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4458, + "end": 4465, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 4498, + "end": 4502, + "name": "PUSH", + "source": 6, + "value": "FF" + }, + { + "begin": 4491, + "end": 4496, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4487, + "end": 4503, + "name": "AND", + "source": 6 + }, + { + "begin": 4476, + "end": 4503, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 4476, + "end": 4503, + "name": "POP", + "source": 6 + }, + { + "begin": 4423, + "end": 4509, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 4423, + "end": 4509, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 4423, + "end": 4509, + "name": "POP", + "source": 6 + }, + { + "begin": 4423, + "end": 4509, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4515, + "end": 4627, + "name": "tag", + "source": 6, + "value": "159" + }, + { + "begin": 4515, + "end": 4627, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4598, + "end": 4620, + "name": "PUSH [tag]", + "source": 6, + "value": "230" + }, + { + "begin": 4614, + "end": 4619, + "name": "DUP2", + "source": 6 + }, + { + "begin": 4598, + "end": 4620, + "name": "PUSH [tag]", + "source": 6, + "value": "158" + }, + { + "begin": 4598, + "end": 4620, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4598, + "end": 4620, + "name": "tag", + "source": 6, + "value": "230" + }, + { + "begin": 4598, + "end": 4620, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4593, + "end": 4596, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4586, + "end": 4621, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 4515, + "end": 4627, + "name": "POP", + "source": 6 + }, + { + "begin": 4515, + "end": 4627, + "name": "POP", + "source": 6 + }, + { + "begin": 4515, + "end": 4627, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4633, + "end": 4847, + "name": "tag", + "source": 6, + "value": "37" + }, + { + "begin": 4633, + "end": 4847, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4722, + "end": 4726, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 4760, + "end": 4762, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 4749, + "end": 4758, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4745, + "end": 4763, + "name": "ADD", + "source": 6 + }, + { + "begin": 4737, + "end": 4763, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 4737, + "end": 4763, + "name": "POP", + "source": 6 + }, + { + "begin": 4773, + "end": 4840, + "name": "PUSH [tag]", + "source": 6, + "value": "232" + }, + { + "begin": 4837, + "end": 4838, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 4826, + "end": 4835, + "name": "DUP4", + "source": 6 + }, + { + "begin": 4822, + "end": 4839, + "name": "ADD", + "source": 6 + }, + { + "begin": 4813, + "end": 4819, + "name": "DUP5", + "source": 6 + }, + { + "begin": 4773, + "end": 4840, + "name": "PUSH [tag]", + "source": 6, + "value": "159" + }, + { + "begin": 4773, + "end": 4840, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4773, + "end": 4840, + "name": "tag", + "source": 6, + "value": "232" + }, + { + "begin": 4773, + "end": 4840, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4633, + "end": 4847, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 4633, + "end": 4847, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 4633, + "end": 4847, + "name": "POP", + "source": 6 + }, + { + "begin": 4633, + "end": 4847, + "name": "POP", + "source": 6 + }, + { + "begin": 4633, + "end": 4847, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4853, + "end": 5182, + "name": "tag", + "source": 6, + "value": "44" + }, + { + "begin": 4853, + "end": 5182, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4912, + "end": 4918, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 4961, + "end": 4963, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 4949, + "end": 4958, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4940, + "end": 4947, + "name": "DUP5", + "source": 6 + }, + { + "begin": 4936, + "end": 4959, + "name": "SUB", + "source": 6 + }, + { + "begin": 4932, + "end": 4964, + "name": "SLT", + "source": 6 + }, + { + "begin": 4929, + "end": 5048, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 4929, + "end": 5048, + "name": "PUSH [tag]", + "source": 6, + "value": "234" + }, + { + "begin": 4929, + "end": 5048, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 4967, + "end": 5046, + "name": "PUSH [tag]", + "source": 6, + "value": "235" + }, + { + "begin": 4967, + "end": 5046, + "name": "PUSH [tag]", + "source": 6, + "value": "146" + }, + { + "begin": 4967, + "end": 5046, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4967, + "end": 5046, + "name": "tag", + "source": 6, + "value": "235" + }, + { + "begin": 4967, + "end": 5046, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4929, + "end": 5048, + "name": "tag", + "source": 6, + "value": "234" + }, + { + "begin": 4929, + "end": 5048, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5087, + "end": 5088, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 5112, + "end": 5165, + "name": "PUSH [tag]", + "source": 6, + "value": "236" + }, + { + "begin": 5157, + "end": 5164, + "name": "DUP5", + "source": 6 + }, + { + "begin": 5148, + "end": 5154, + "name": "DUP3", + "source": 6 + }, + { + "begin": 5137, + "end": 5146, + "name": "DUP6", + "source": 6 + }, + { + "begin": 5133, + "end": 5155, + "name": "ADD", + "source": 6 + }, + { + "begin": 5112, + "end": 5165, + "name": "PUSH [tag]", + "source": 6, + "value": "151" + }, + { + "begin": 5112, + "end": 5165, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5112, + "end": 5165, + "name": "tag", + "source": 6, + "value": "236" + }, + { + "begin": 5112, + "end": 5165, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5102, + "end": 5165, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 5102, + "end": 5165, + "name": "POP", + "source": 6 + }, + { + "begin": 5058, + "end": 5175, + "name": "POP", + "source": 6 + }, + { + "begin": 4853, + "end": 5182, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 4853, + "end": 5182, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 4853, + "end": 5182, + "name": "POP", + "source": 6 + }, + { + "begin": 4853, + "end": 5182, + "name": "POP", + "source": 6 + }, + { + "begin": 4853, + "end": 5182, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5188, + "end": 5662, + "name": "tag", + "source": 6, + "value": "60" + }, + { + "begin": 5188, + "end": 5662, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5256, + "end": 5262, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 5264, + "end": 5270, + "name": "DUP1", + "source": 6 + }, + { + "begin": 5313, + "end": 5315, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 5301, + "end": 5310, + "name": "DUP4", + "source": 6 + }, + { + "begin": 5292, + "end": 5299, + "name": "DUP6", + "source": 6 + }, + { + "begin": 5288, + "end": 5311, + "name": "SUB", + "source": 6 + }, + { + "begin": 5284, + "end": 5316, + "name": "SLT", + "source": 6 + }, + { + "begin": 5281, + "end": 5400, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 5281, + "end": 5400, + "name": "PUSH [tag]", + "source": 6, + "value": "238" + }, + { + "begin": 5281, + "end": 5400, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 5319, + "end": 5398, + "name": "PUSH [tag]", + "source": 6, + "value": "239" + }, + { + "begin": 5319, + "end": 5398, + "name": "PUSH [tag]", + "source": 6, + "value": "146" + }, + { + "begin": 5319, + "end": 5398, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5319, + "end": 5398, + "name": "tag", + "source": 6, + "value": "239" + }, + { + "begin": 5319, + "end": 5398, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5281, + "end": 5400, + "name": "tag", + "source": 6, + "value": "238" + }, + { + "begin": 5281, + "end": 5400, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5439, + "end": 5440, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 5464, + "end": 5517, + "name": "PUSH [tag]", + "source": 6, + "value": "240" + }, + { + "begin": 5509, + "end": 5516, + "name": "DUP6", + "source": 6 + }, + { + "begin": 5500, + "end": 5506, + "name": "DUP3", + "source": 6 + }, + { + "begin": 5489, + "end": 5498, + "name": "DUP7", + "source": 6 + }, + { + "begin": 5485, + "end": 5507, + "name": "ADD", + "source": 6 + }, + { + "begin": 5464, + "end": 5517, + "name": "PUSH [tag]", + "source": 6, + "value": "151" + }, + { + "begin": 5464, + "end": 5517, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5464, + "end": 5517, + "name": "tag", + "source": 6, + "value": "240" + }, + { + "begin": 5464, + "end": 5517, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5454, + "end": 5517, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 5454, + "end": 5517, + "name": "POP", + "source": 6 + }, + { + "begin": 5410, + "end": 5527, + "name": "POP", + "source": 6 + }, + { + "begin": 5566, + "end": 5568, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 5592, + "end": 5645, + "name": "PUSH [tag]", + "source": 6, + "value": "241" + }, + { + "begin": 5637, + "end": 5644, + "name": "DUP6", + "source": 6 + }, + { + "begin": 5628, + "end": 5634, + "name": "DUP3", + "source": 6 + }, + { + "begin": 5617, + "end": 5626, + "name": "DUP7", + "source": 6 + }, + { + "begin": 5613, + "end": 5635, + "name": "ADD", + "source": 6 + }, + { + "begin": 5592, + "end": 5645, + "name": "PUSH [tag]", + "source": 6, + "value": "151" + }, + { + "begin": 5592, + "end": 5645, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5592, + "end": 5645, + "name": "tag", + "source": 6, + "value": "241" + }, + { + "begin": 5592, + "end": 5645, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5582, + "end": 5645, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 5582, + "end": 5645, + "name": "POP", + "source": 6 + }, + { + "begin": 5537, + "end": 5655, + "name": "POP", + "source": 6 + }, + { + "begin": 5188, + "end": 5662, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 5188, + "end": 5662, + "name": "POP", + "source": 6 + }, + { + "begin": 5188, + "end": 5662, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 5188, + "end": 5662, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 5188, + "end": 5662, + "name": "POP", + "source": 6 + }, + { + "begin": 5188, + "end": 5662, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5668, + "end": 5848, + "name": "tag", + "source": 6, + "value": "160" + }, + { + "begin": 5668, + "end": 5848, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5716, + "end": 5793, + "name": "PUSH", + "source": 6, + "value": "4E487B7100000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 5713, + "end": 5714, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 5706, + "end": 5794, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 5813, + "end": 5817, + "name": "PUSH", + "source": 6, + "value": "22" + }, + { + "begin": 5810, + "end": 5811, + "name": "PUSH", + "source": 6, + "value": "4" + }, + { + "begin": 5803, + "end": 5818, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 5837, + "end": 5841, + "name": "PUSH", + "source": 6, + "value": "24" + }, + { + "begin": 5834, + "end": 5835, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 5827, + "end": 5842, + "name": "REVERT", + "source": 6 + }, + { + "begin": 5854, + "end": 6174, + "name": "tag", + "source": 6, + "value": "65" + }, + { + "begin": 5854, + "end": 6174, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5898, + "end": 5904, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 5935, + "end": 5936, + "name": "PUSH", + "source": 6, + "value": "2" + }, + { + "begin": 5929, + "end": 5933, + "name": "DUP3", + "source": 6 + }, + { + "begin": 5925, + "end": 5937, + "name": "DIV", + "source": 6 + }, + { + "begin": 5915, + "end": 5937, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 5915, + "end": 5937, + "name": "POP", + "source": 6 + }, + { + "begin": 5982, + "end": 5983, + "name": "PUSH", + "source": 6, + "value": "1" + }, + { + "begin": 5976, + "end": 5980, + "name": "DUP3", + "source": 6 + }, + { + "begin": 5972, + "end": 5984, + "name": "AND", + "source": 6 + }, + { + "begin": 6003, + "end": 6021, + "name": "DUP1", + "source": 6 + }, + { + "begin": 5993, + "end": 6074, + "name": "PUSH [tag]", + "source": 6, + "value": "244" + }, + { + "begin": 5993, + "end": 6074, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 6059, + "end": 6063, + "name": "PUSH", + "source": 6, + "value": "7F" + }, + { + "begin": 6051, + "end": 6057, + "name": "DUP3", + "source": 6 + }, + { + "begin": 6047, + "end": 6064, + "name": "AND", + "source": 6 + }, + { + "begin": 6037, + "end": 6064, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 6037, + "end": 6064, + "name": "POP", + "source": 6 + }, + { + "begin": 5993, + "end": 6074, + "name": "tag", + "source": 6, + "value": "244" + }, + { + "begin": 5993, + "end": 6074, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6121, + "end": 6123, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 6113, + "end": 6119, + "name": "DUP3", + "source": 6 + }, + { + "begin": 6110, + "end": 6124, + "name": "LT", + "source": 6 + }, + { + "begin": 6090, + "end": 6108, + "name": "DUP2", + "source": 6 + }, + { + "begin": 6087, + "end": 6125, + "name": "SUB", + "source": 6 + }, + { + "begin": 6084, + "end": 6168, + "name": "PUSH [tag]", + "source": 6, + "value": "245" + }, + { + "begin": 6084, + "end": 6168, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 6140, + "end": 6158, + "name": "PUSH [tag]", + "source": 6, + "value": "246" + }, + { + "begin": 6140, + "end": 6158, + "name": "PUSH [tag]", + "source": 6, + "value": "160" + }, + { + "begin": 6140, + "end": 6158, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6140, + "end": 6158, + "name": "tag", + "source": 6, + "value": "246" + }, + { + "begin": 6140, + "end": 6158, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6084, + "end": 6168, + "name": "tag", + "source": 6, + "value": "245" + }, + { + "begin": 6084, + "end": 6168, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5905, + "end": 6174, + "name": "POP", + "source": 6 + }, + { + "begin": 5854, + "end": 6174, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 5854, + "end": 6174, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 5854, + "end": 6174, + "name": "POP", + "source": 6 + }, + { + "begin": 5854, + "end": 6174, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6180, + "end": 6360, + "name": "tag", + "source": 6, + "value": "161" + }, + { + "begin": 6180, + "end": 6360, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6228, + "end": 6305, + "name": "PUSH", + "source": 6, + "value": "4E487B7100000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 6225, + "end": 6226, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 6218, + "end": 6306, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 6325, + "end": 6329, + "name": "PUSH", + "source": 6, + "value": "11" + }, + { + "begin": 6322, + "end": 6323, + "name": "PUSH", + "source": 6, + "value": "4" + }, + { + "begin": 6315, + "end": 6330, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 6349, + "end": 6353, + "name": "PUSH", + "source": 6, + "value": "24" + }, + { + "begin": 6346, + "end": 6347, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 6339, + "end": 6354, + "name": "REVERT", + "source": 6 + }, + { + "begin": 6366, + "end": 6557, + "name": "tag", + "source": 6, + "value": "88" + }, + { + "begin": 6366, + "end": 6557, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6406, + "end": 6409, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 6425, + "end": 6445, + "name": "PUSH [tag]", + "source": 6, + "value": "249" + }, + { + "begin": 6443, + "end": 6444, + "name": "DUP3", + "source": 6 + }, + { + "begin": 6425, + "end": 6445, + "name": "PUSH [tag]", + "source": 6, + "value": "152" + }, + { + "begin": 6425, + "end": 6445, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6425, + "end": 6445, + "name": "tag", + "source": 6, + "value": "249" + }, + { + "begin": 6425, + "end": 6445, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6420, + "end": 6445, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 6420, + "end": 6445, + "name": "POP", + "source": 6 + }, + { + "begin": 6459, + "end": 6479, + "name": "PUSH [tag]", + "source": 6, + "value": "250" + }, + { + "begin": 6477, + "end": 6478, + "name": "DUP4", + "source": 6 + }, + { + "begin": 6459, + "end": 6479, + "name": "PUSH [tag]", + "source": 6, + "value": "152" + }, + { + "begin": 6459, + "end": 6479, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6459, + "end": 6479, + "name": "tag", + "source": 6, + "value": "250" + }, + { + "begin": 6459, + "end": 6479, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6454, + "end": 6479, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 6454, + "end": 6479, + "name": "POP", + "source": 6 + }, + { + "begin": 6502, + "end": 6503, + "name": "DUP3", + "source": 6 + }, + { + "begin": 6499, + "end": 6500, + "name": "DUP3", + "source": 6 + }, + { + "begin": 6495, + "end": 6504, + "name": "ADD", + "source": 6 + }, + { + "begin": 6488, + "end": 6504, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 6488, + "end": 6504, + "name": "POP", + "source": 6 + }, + { + "begin": 6523, + "end": 6526, + "name": "DUP1", + "source": 6 + }, + { + "begin": 6520, + "end": 6521, + "name": "DUP3", + "source": 6 + }, + { + "begin": 6517, + "end": 6527, + "name": "GT", + "source": 6 + }, + { + "begin": 6514, + "end": 6550, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 6514, + "end": 6550, + "name": "PUSH [tag]", + "source": 6, + "value": "251" + }, + { + "begin": 6514, + "end": 6550, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 6530, + "end": 6548, + "name": "PUSH [tag]", + "source": 6, + "value": "252" + }, + { + "begin": 6530, + "end": 6548, + "name": "PUSH [tag]", + "source": 6, + "value": "161" + }, + { + "begin": 6530, + "end": 6548, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6530, + "end": 6548, + "name": "tag", + "source": 6, + "value": "252" + }, + { + "begin": 6530, + "end": 6548, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6514, + "end": 6550, + "name": "tag", + "source": 6, + "value": "251" + }, + { + "begin": 6514, + "end": 6550, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6366, + "end": 6557, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 6366, + "end": 6557, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 6366, + "end": 6557, + "name": "POP", + "source": 6 + }, + { + "begin": 6366, + "end": 6557, + "name": "POP", + "source": 6 + }, + { + "begin": 6366, + "end": 6557, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6563, + "end": 6787, + "name": "tag", + "source": 6, + "value": "162" + }, + { + "begin": 6563, + "end": 6787, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6703, + "end": 6737, + "name": "PUSH", + "source": 6, + "value": "45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77" + }, + { + "begin": 6699, + "end": 6700, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 6691, + "end": 6697, + "name": "DUP3", + "source": 6 + }, + { + "begin": 6687, + "end": 6701, + "name": "ADD", + "source": 6 + }, + { + "begin": 6680, + "end": 6738, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 6772, + "end": 6779, + "name": "PUSH", + "source": 6, + "value": "207A65726F000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 6767, + "end": 6769, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 6759, + "end": 6765, + "name": "DUP3", + "source": 6 + }, + { + "begin": 6755, + "end": 6770, + "name": "ADD", + "source": 6 + }, + { + "begin": 6748, + "end": 6780, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 6563, + "end": 6787, + "name": "POP", + "source": 6 + }, + { + "begin": 6563, + "end": 6787, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6793, + "end": 7159, + "name": "tag", + "source": 6, + "value": "163" + }, + { + "begin": 6793, + "end": 7159, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6935, + "end": 6938, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 6956, + "end": 7023, + "name": "PUSH [tag]", + "source": 6, + "value": "255" + }, + { + "begin": 7020, + "end": 7022, + "name": "PUSH", + "source": 6, + "value": "25" + }, + { + "begin": 7015, + "end": 7018, + "name": "DUP4", + "source": 6 + }, + { + "begin": 6956, + "end": 7023, + "name": "PUSH [tag]", + "source": 6, + "value": "141" + }, + { + "begin": 6956, + "end": 7023, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6956, + "end": 7023, + "name": "tag", + "source": 6, + "value": "255" + }, + { + "begin": 6956, + "end": 7023, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6949, + "end": 7023, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 6949, + "end": 7023, + "name": "POP", + "source": 6 + }, + { + "begin": 7032, + "end": 7125, + "name": "PUSH [tag]", + "source": 6, + "value": "256" + }, + { + "begin": 7121, + "end": 7124, + "name": "DUP3", + "source": 6 + }, + { + "begin": 7032, + "end": 7125, + "name": "PUSH [tag]", + "source": 6, + "value": "162" + }, + { + "begin": 7032, + "end": 7125, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 7032, + "end": 7125, + "name": "tag", + "source": 6, + "value": "256" + }, + { + "begin": 7032, + "end": 7125, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7150, + "end": 7152, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 7145, + "end": 7148, + "name": "DUP3", + "source": 6 + }, + { + "begin": 7141, + "end": 7153, + "name": "ADD", + "source": 6 + }, + { + "begin": 7134, + "end": 7153, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 7134, + "end": 7153, + "name": "POP", + "source": 6 + }, + { + "begin": 6793, + "end": 7159, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 6793, + "end": 7159, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 6793, + "end": 7159, + "name": "POP", + "source": 6 + }, + { + "begin": 6793, + "end": 7159, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 7165, + "end": 7584, + "name": "tag", + "source": 6, + "value": "101" + }, + { + "begin": 7165, + "end": 7584, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7331, + "end": 7335, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 7369, + "end": 7371, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 7358, + "end": 7367, + "name": "DUP3", + "source": 6 + }, + { + "begin": 7354, + "end": 7372, + "name": "ADD", + "source": 6 + }, + { + "begin": 7346, + "end": 7372, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 7346, + "end": 7372, + "name": "POP", + "source": 6 + }, + { + "begin": 7418, + "end": 7427, + "name": "DUP2", + "source": 6 + }, + { + "begin": 7412, + "end": 7416, + "name": "DUP2", + "source": 6 + }, + { + "begin": 7408, + "end": 7428, + "name": "SUB", + "source": 6 + }, + { + "begin": 7404, + "end": 7405, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 7393, + "end": 7402, + "name": "DUP4", + "source": 6 + }, + { + "begin": 7389, + "end": 7406, + "name": "ADD", + "source": 6 + }, + { + "begin": 7382, + "end": 7429, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 7446, + "end": 7577, + "name": "PUSH [tag]", + "source": 6, + "value": "258" + }, + { + "begin": 7572, + "end": 7576, + "name": "DUP2", + "source": 6 + }, + { + "begin": 7446, + "end": 7577, + "name": "PUSH [tag]", + "source": 6, + "value": "163" + }, + { + "begin": 7446, + "end": 7577, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 7446, + "end": 7577, + "name": "tag", + "source": 6, + "value": "258" + }, + { + "begin": 7446, + "end": 7577, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7438, + "end": 7577, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 7438, + "end": 7577, + "name": "POP", + "source": 6 + }, + { + "begin": 7165, + "end": 7584, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 7165, + "end": 7584, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 7165, + "end": 7584, + "name": "POP", + "source": 6 + }, + { + "begin": 7165, + "end": 7584, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 7590, + "end": 7813, + "name": "tag", + "source": 6, + "value": "164" + }, + { + "begin": 7590, + "end": 7813, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7730, + "end": 7764, + "name": "PUSH", + "source": 6, + "value": "45524332303A20617070726F76652066726F6D20746865207A65726F20616464" + }, + { + "begin": 7726, + "end": 7727, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 7718, + "end": 7724, + "name": "DUP3", + "source": 6 + }, + { + "begin": 7714, + "end": 7728, + "name": "ADD", + "source": 6 + }, + { + "begin": 7707, + "end": 7765, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 7799, + "end": 7805, + "name": "PUSH", + "source": 6, + "value": "7265737300000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 7794, + "end": 7796, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 7786, + "end": 7792, + "name": "DUP3", + "source": 6 + }, + { + "begin": 7782, + "end": 7797, + "name": "ADD", + "source": 6 + }, + { + "begin": 7775, + "end": 7806, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 7590, + "end": 7813, + "name": "POP", + "source": 6 + }, + { + "begin": 7590, + "end": 7813, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 7819, + "end": 8185, + "name": "tag", + "source": 6, + "value": "165" + }, + { + "begin": 7819, + "end": 8185, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7961, + "end": 7964, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 7982, + "end": 8049, + "name": "PUSH [tag]", + "source": 6, + "value": "261" + }, + { + "begin": 8046, + "end": 8048, + "name": "PUSH", + "source": 6, + "value": "24" + }, + { + "begin": 8041, + "end": 8044, + "name": "DUP4", + "source": 6 + }, + { + "begin": 7982, + "end": 8049, + "name": "PUSH [tag]", + "source": 6, + "value": "141" + }, + { + "begin": 7982, + "end": 8049, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 7982, + "end": 8049, + "name": "tag", + "source": 6, + "value": "261" + }, + { + "begin": 7982, + "end": 8049, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7975, + "end": 8049, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 7975, + "end": 8049, + "name": "POP", + "source": 6 + }, + { + "begin": 8058, + "end": 8151, + "name": "PUSH [tag]", + "source": 6, + "value": "262" + }, + { + "begin": 8147, + "end": 8150, + "name": "DUP3", + "source": 6 + }, + { + "begin": 8058, + "end": 8151, + "name": "PUSH [tag]", + "source": 6, + "value": "164" + }, + { + "begin": 8058, + "end": 8151, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 8058, + "end": 8151, + "name": "tag", + "source": 6, + "value": "262" + }, + { + "begin": 8058, + "end": 8151, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 8176, + "end": 8178, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 8171, + "end": 8174, + "name": "DUP3", + "source": 6 + }, + { + "begin": 8167, + "end": 8179, + "name": "ADD", + "source": 6 + }, + { + "begin": 8160, + "end": 8179, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 8160, + "end": 8179, + "name": "POP", + "source": 6 + }, + { + "begin": 7819, + "end": 8185, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 7819, + "end": 8185, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 7819, + "end": 8185, + "name": "POP", + "source": 6 + }, + { + "begin": 7819, + "end": 8185, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 8191, + "end": 8610, + "name": "tag", + "source": 6, + "value": "111" + }, + { + "begin": 8191, + "end": 8610, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 8357, + "end": 8361, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 8395, + "end": 8397, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 8384, + "end": 8393, + "name": "DUP3", + "source": 6 + }, + { + "begin": 8380, + "end": 8398, + "name": "ADD", + "source": 6 + }, + { + "begin": 8372, + "end": 8398, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 8372, + "end": 8398, + "name": "POP", + "source": 6 + }, + { + "begin": 8444, + "end": 8453, + "name": "DUP2", + "source": 6 + }, + { + "begin": 8438, + "end": 8442, + "name": "DUP2", + "source": 6 + }, + { + "begin": 8434, + "end": 8454, + "name": "SUB", + "source": 6 + }, + { + "begin": 8430, + "end": 8431, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 8419, + "end": 8428, + "name": "DUP4", + "source": 6 + }, + { + "begin": 8415, + "end": 8432, + "name": "ADD", + "source": 6 + }, + { + "begin": 8408, + "end": 8455, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 8472, + "end": 8603, + "name": "PUSH [tag]", + "source": 6, + "value": "264" + }, + { + "begin": 8598, + "end": 8602, + "name": "DUP2", + "source": 6 + }, + { + "begin": 8472, + "end": 8603, + "name": "PUSH [tag]", + "source": 6, + "value": "165" + }, + { + "begin": 8472, + "end": 8603, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 8472, + "end": 8603, + "name": "tag", + "source": 6, + "value": "264" + }, + { + "begin": 8472, + "end": 8603, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 8464, + "end": 8603, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 8464, + "end": 8603, + "name": "POP", + "source": 6 + }, + { + "begin": 8191, + "end": 8610, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 8191, + "end": 8610, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 8191, + "end": 8610, + "name": "POP", + "source": 6 + }, + { + "begin": 8191, + "end": 8610, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 8616, + "end": 8837, + "name": "tag", + "source": 6, + "value": "166" + }, + { + "begin": 8616, + "end": 8837, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 8756, + "end": 8790, + "name": "PUSH", + "source": 6, + "value": "45524332303A20617070726F766520746F20746865207A65726F206164647265" + }, + { + "begin": 8752, + "end": 8753, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 8744, + "end": 8750, + "name": "DUP3", + "source": 6 + }, + { + "begin": 8740, + "end": 8754, + "name": "ADD", + "source": 6 + }, + { + "begin": 8733, + "end": 8791, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 8825, + "end": 8829, + "name": "PUSH", + "source": 6, + "value": "7373000000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 8820, + "end": 8822, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 8812, + "end": 8818, + "name": "DUP3", + "source": 6 + }, + { + "begin": 8808, + "end": 8823, + "name": "ADD", + "source": 6 + }, + { + "begin": 8801, + "end": 8830, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 8616, + "end": 8837, + "name": "POP", + "source": 6 + }, + { + "begin": 8616, + "end": 8837, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 8843, + "end": 9209, + "name": "tag", + "source": 6, + "value": "167" + }, + { + "begin": 8843, + "end": 9209, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 8985, + "end": 8988, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 9006, + "end": 9073, + "name": "PUSH [tag]", + "source": 6, + "value": "267" + }, + { + "begin": 9070, + "end": 9072, + "name": "PUSH", + "source": 6, + "value": "22" + }, + { + "begin": 9065, + "end": 9068, + "name": "DUP4", + "source": 6 + }, + { + "begin": 9006, + "end": 9073, + "name": "PUSH [tag]", + "source": 6, + "value": "141" + }, + { + "begin": 9006, + "end": 9073, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 9006, + "end": 9073, + "name": "tag", + "source": 6, + "value": "267" + }, + { + "begin": 9006, + "end": 9073, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 8999, + "end": 9073, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 8999, + "end": 9073, + "name": "POP", + "source": 6 + }, + { + "begin": 9082, + "end": 9175, + "name": "PUSH [tag]", + "source": 6, + "value": "268" + }, + { + "begin": 9171, + "end": 9174, + "name": "DUP3", + "source": 6 + }, + { + "begin": 9082, + "end": 9175, + "name": "PUSH [tag]", + "source": 6, + "value": "166" + }, + { + "begin": 9082, + "end": 9175, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 9082, + "end": 9175, + "name": "tag", + "source": 6, + "value": "268" + }, + { + "begin": 9082, + "end": 9175, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 9200, + "end": 9202, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 9195, + "end": 9198, + "name": "DUP3", + "source": 6 + }, + { + "begin": 9191, + "end": 9203, + "name": "ADD", + "source": 6 + }, + { + "begin": 9184, + "end": 9203, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 9184, + "end": 9203, + "name": "POP", + "source": 6 + }, + { + "begin": 8843, + "end": 9209, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 8843, + "end": 9209, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 8843, + "end": 9209, + "name": "POP", + "source": 6 + }, + { + "begin": 8843, + "end": 9209, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 9215, + "end": 9634, + "name": "tag", + "source": 6, + "value": "114" + }, + { + "begin": 9215, + "end": 9634, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 9381, + "end": 9385, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 9419, + "end": 9421, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 9408, + "end": 9417, + "name": "DUP3", + "source": 6 + }, + { + "begin": 9404, + "end": 9422, + "name": "ADD", + "source": 6 + }, + { + "begin": 9396, + "end": 9422, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 9396, + "end": 9422, + "name": "POP", + "source": 6 + }, + { + "begin": 9468, + "end": 9477, + "name": "DUP2", + "source": 6 + }, + { + "begin": 9462, + "end": 9466, + "name": "DUP2", + "source": 6 + }, + { + "begin": 9458, + "end": 9478, + "name": "SUB", + "source": 6 + }, + { + "begin": 9454, + "end": 9455, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 9443, + "end": 9452, + "name": "DUP4", + "source": 6 + }, + { + "begin": 9439, + "end": 9456, + "name": "ADD", + "source": 6 + }, + { + "begin": 9432, + "end": 9479, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 9496, + "end": 9627, + "name": "PUSH [tag]", + "source": 6, + "value": "270" + }, + { + "begin": 9622, + "end": 9626, + "name": "DUP2", + "source": 6 + }, + { + "begin": 9496, + "end": 9627, + "name": "PUSH [tag]", + "source": 6, + "value": "167" + }, + { + "begin": 9496, + "end": 9627, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 9496, + "end": 9627, + "name": "tag", + "source": 6, + "value": "270" + }, + { + "begin": 9496, + "end": 9627, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 9488, + "end": 9627, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 9488, + "end": 9627, + "name": "POP", + "source": 6 + }, + { + "begin": 9215, + "end": 9634, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 9215, + "end": 9634, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 9215, + "end": 9634, + "name": "POP", + "source": 6 + }, + { + "begin": 9215, + "end": 9634, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 9640, + "end": 9819, + "name": "tag", + "source": 6, + "value": "168" + }, + { + "begin": 9640, + "end": 9819, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 9780, + "end": 9811, + "name": "PUSH", + "source": 6, + "value": "45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000" + }, + { + "begin": 9776, + "end": 9777, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 9768, + "end": 9774, + "name": "DUP3", + "source": 6 + }, + { + "begin": 9764, + "end": 9778, + "name": "ADD", + "source": 6 + }, + { + "begin": 9757, + "end": 9812, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 9640, + "end": 9819, + "name": "POP", + "source": 6 + }, + { + "begin": 9640, + "end": 9819, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 9825, + "end": 10191, + "name": "tag", + "source": 6, + "value": "169" + }, + { + "begin": 9825, + "end": 10191, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 9967, + "end": 9970, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 9988, + "end": 10055, + "name": "PUSH [tag]", + "source": 6, + "value": "273" + }, + { + "begin": 10052, + "end": 10054, + "name": "PUSH", + "source": 6, + "value": "1D" + }, + { + "begin": 10047, + "end": 10050, + "name": "DUP4", + "source": 6 + }, + { + "begin": 9988, + "end": 10055, + "name": "PUSH [tag]", + "source": 6, + "value": "141" + }, + { + "begin": 9988, + "end": 10055, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 9988, + "end": 10055, + "name": "tag", + "source": 6, + "value": "273" + }, + { + "begin": 9988, + "end": 10055, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 9981, + "end": 10055, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 9981, + "end": 10055, + "name": "POP", + "source": 6 + }, + { + "begin": 10064, + "end": 10157, + "name": "PUSH [tag]", + "source": 6, + "value": "274" + }, + { + "begin": 10153, + "end": 10156, + "name": "DUP3", + "source": 6 + }, + { + "begin": 10064, + "end": 10157, + "name": "PUSH [tag]", + "source": 6, + "value": "168" + }, + { + "begin": 10064, + "end": 10157, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 10064, + "end": 10157, + "name": "tag", + "source": 6, + "value": "274" + }, + { + "begin": 10064, + "end": 10157, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 10182, + "end": 10184, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 10177, + "end": 10180, + "name": "DUP3", + "source": 6 + }, + { + "begin": 10173, + "end": 10185, + "name": "ADD", + "source": 6 + }, + { + "begin": 10166, + "end": 10185, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 10166, + "end": 10185, + "name": "POP", + "source": 6 + }, + { + "begin": 9825, + "end": 10191, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 9825, + "end": 10191, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 9825, + "end": 10191, + "name": "POP", + "source": 6 + }, + { + "begin": 9825, + "end": 10191, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 10197, + "end": 10616, + "name": "tag", + "source": 6, + "value": "121" + }, + { + "begin": 10197, + "end": 10616, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 10363, + "end": 10367, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 10401, + "end": 10403, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 10390, + "end": 10399, + "name": "DUP3", + "source": 6 + }, + { + "begin": 10386, + "end": 10404, + "name": "ADD", + "source": 6 + }, + { + "begin": 10378, + "end": 10404, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 10378, + "end": 10404, + "name": "POP", + "source": 6 + }, + { + "begin": 10450, + "end": 10459, + "name": "DUP2", + "source": 6 + }, + { + "begin": 10444, + "end": 10448, + "name": "DUP2", + "source": 6 + }, + { + "begin": 10440, + "end": 10460, + "name": "SUB", + "source": 6 + }, + { + "begin": 10436, + "end": 10437, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 10425, + "end": 10434, + "name": "DUP4", + "source": 6 + }, + { + "begin": 10421, + "end": 10438, + "name": "ADD", + "source": 6 + }, + { + "begin": 10414, + "end": 10461, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 10478, + "end": 10609, + "name": "PUSH [tag]", + "source": 6, + "value": "276" + }, + { + "begin": 10604, + "end": 10608, + "name": "DUP2", + "source": 6 + }, + { + "begin": 10478, + "end": 10609, + "name": "PUSH [tag]", + "source": 6, + "value": "169" + }, + { + "begin": 10478, + "end": 10609, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 10478, + "end": 10609, + "name": "tag", + "source": 6, + "value": "276" + }, + { + "begin": 10478, + "end": 10609, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 10470, + "end": 10609, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 10470, + "end": 10609, + "name": "POP", + "source": 6 + }, + { + "begin": 10197, + "end": 10616, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 10197, + "end": 10616, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 10197, + "end": 10616, + "name": "POP", + "source": 6 + }, + { + "begin": 10197, + "end": 10616, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 10622, + "end": 10846, + "name": "tag", + "source": 6, + "value": "170" + }, + { + "begin": 10622, + "end": 10846, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 10762, + "end": 10796, + "name": "PUSH", + "source": 6, + "value": "45524332303A207472616E736665722066726F6D20746865207A65726F206164" + }, + { + "begin": 10758, + "end": 10759, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 10750, + "end": 10756, + "name": "DUP3", + "source": 6 + }, + { + "begin": 10746, + "end": 10760, + "name": "ADD", + "source": 6 + }, + { + "begin": 10739, + "end": 10797, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 10831, + "end": 10838, + "name": "PUSH", + "source": 6, + "value": "6472657373000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 10826, + "end": 10828, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 10818, + "end": 10824, + "name": "DUP3", + "source": 6 + }, + { + "begin": 10814, + "end": 10829, + "name": "ADD", + "source": 6 + }, + { + "begin": 10807, + "end": 10839, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 10622, + "end": 10846, + "name": "POP", + "source": 6 + }, + { + "begin": 10622, + "end": 10846, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 10852, + "end": 11218, + "name": "tag", + "source": 6, + "value": "171" + }, + { + "begin": 10852, + "end": 11218, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 10994, + "end": 10997, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 11015, + "end": 11082, + "name": "PUSH [tag]", + "source": 6, + "value": "279" + }, + { + "begin": 11079, + "end": 11081, + "name": "PUSH", + "source": 6, + "value": "25" + }, + { + "begin": 11074, + "end": 11077, + "name": "DUP4", + "source": 6 + }, + { + "begin": 11015, + "end": 11082, + "name": "PUSH [tag]", + "source": 6, + "value": "141" + }, + { + "begin": 11015, + "end": 11082, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 11015, + "end": 11082, + "name": "tag", + "source": 6, + "value": "279" + }, + { + "begin": 11015, + "end": 11082, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 11008, + "end": 11082, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 11008, + "end": 11082, + "name": "POP", + "source": 6 + }, + { + "begin": 11091, + "end": 11184, + "name": "PUSH [tag]", + "source": 6, + "value": "280" + }, + { + "begin": 11180, + "end": 11183, + "name": "DUP3", + "source": 6 + }, + { + "begin": 11091, + "end": 11184, + "name": "PUSH [tag]", + "source": 6, + "value": "170" + }, + { + "begin": 11091, + "end": 11184, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 11091, + "end": 11184, + "name": "tag", + "source": 6, + "value": "280" + }, + { + "begin": 11091, + "end": 11184, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 11209, + "end": 11211, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 11204, + "end": 11207, + "name": "DUP3", + "source": 6 + }, + { + "begin": 11200, + "end": 11212, + "name": "ADD", + "source": 6 + }, + { + "begin": 11193, + "end": 11212, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 11193, + "end": 11212, + "name": "POP", + "source": 6 + }, + { + "begin": 10852, + "end": 11218, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 10852, + "end": 11218, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 10852, + "end": 11218, + "name": "POP", + "source": 6 + }, + { + "begin": 10852, + "end": 11218, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 11224, + "end": 11643, + "name": "tag", + "source": 6, + "value": "126" + }, + { + "begin": 11224, + "end": 11643, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 11390, + "end": 11394, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 11428, + "end": 11430, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 11417, + "end": 11426, + "name": "DUP3", + "source": 6 + }, + { + "begin": 11413, + "end": 11431, + "name": "ADD", + "source": 6 + }, + { + "begin": 11405, + "end": 11431, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 11405, + "end": 11431, + "name": "POP", + "source": 6 + }, + { + "begin": 11477, + "end": 11486, + "name": "DUP2", + "source": 6 + }, + { + "begin": 11471, + "end": 11475, + "name": "DUP2", + "source": 6 + }, + { + "begin": 11467, + "end": 11487, + "name": "SUB", + "source": 6 + }, + { + "begin": 11463, + "end": 11464, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 11452, + "end": 11461, + "name": "DUP4", + "source": 6 + }, + { + "begin": 11448, + "end": 11465, + "name": "ADD", + "source": 6 + }, + { + "begin": 11441, + "end": 11488, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 11505, + "end": 11636, + "name": "PUSH [tag]", + "source": 6, + "value": "282" + }, + { + "begin": 11631, + "end": 11635, + "name": "DUP2", + "source": 6 + }, + { + "begin": 11505, + "end": 11636, + "name": "PUSH [tag]", + "source": 6, + "value": "171" + }, + { + "begin": 11505, + "end": 11636, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 11505, + "end": 11636, + "name": "tag", + "source": 6, + "value": "282" + }, + { + "begin": 11505, + "end": 11636, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 11497, + "end": 11636, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 11497, + "end": 11636, + "name": "POP", + "source": 6 + }, + { + "begin": 11224, + "end": 11643, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 11224, + "end": 11643, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 11224, + "end": 11643, + "name": "POP", + "source": 6 + }, + { + "begin": 11224, + "end": 11643, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 11649, + "end": 11871, + "name": "tag", + "source": 6, + "value": "172" + }, + { + "begin": 11649, + "end": 11871, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 11789, + "end": 11823, + "name": "PUSH", + "source": 6, + "value": "45524332303A207472616E7366657220746F20746865207A65726F2061646472" + }, + { + "begin": 11785, + "end": 11786, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 11777, + "end": 11783, + "name": "DUP3", + "source": 6 + }, + { + "begin": 11773, + "end": 11787, + "name": "ADD", + "source": 6 + }, + { + "begin": 11766, + "end": 11824, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 11858, + "end": 11863, + "name": "PUSH", + "source": 6, + "value": "6573730000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 11853, + "end": 11855, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 11845, + "end": 11851, + "name": "DUP3", + "source": 6 + }, + { + "begin": 11841, + "end": 11856, + "name": "ADD", + "source": 6 + }, + { + "begin": 11834, + "end": 11864, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 11649, + "end": 11871, + "name": "POP", + "source": 6 + }, + { + "begin": 11649, + "end": 11871, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 11877, + "end": 12243, + "name": "tag", + "source": 6, + "value": "173" + }, + { + "begin": 11877, + "end": 12243, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 12019, + "end": 12022, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 12040, + "end": 12107, + "name": "PUSH [tag]", + "source": 6, + "value": "285" + }, + { + "begin": 12104, + "end": 12106, + "name": "PUSH", + "source": 6, + "value": "23" + }, + { + "begin": 12099, + "end": 12102, + "name": "DUP4", + "source": 6 + }, + { + "begin": 12040, + "end": 12107, + "name": "PUSH [tag]", + "source": 6, + "value": "141" + }, + { + "begin": 12040, + "end": 12107, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 12040, + "end": 12107, + "name": "tag", + "source": 6, + "value": "285" + }, + { + "begin": 12040, + "end": 12107, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 12033, + "end": 12107, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 12033, + "end": 12107, + "name": "POP", + "source": 6 + }, + { + "begin": 12116, + "end": 12209, + "name": "PUSH [tag]", + "source": 6, + "value": "286" + }, + { + "begin": 12205, + "end": 12208, + "name": "DUP3", + "source": 6 + }, + { + "begin": 12116, + "end": 12209, + "name": "PUSH [tag]", + "source": 6, + "value": "172" + }, + { + "begin": 12116, + "end": 12209, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 12116, + "end": 12209, + "name": "tag", + "source": 6, + "value": "286" + }, + { + "begin": 12116, + "end": 12209, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 12234, + "end": 12236, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 12229, + "end": 12232, + "name": "DUP3", + "source": 6 + }, + { + "begin": 12225, + "end": 12237, + "name": "ADD", + "source": 6 + }, + { + "begin": 12218, + "end": 12237, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 12218, + "end": 12237, + "name": "POP", + "source": 6 + }, + { + "begin": 11877, + "end": 12243, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 11877, + "end": 12243, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 11877, + "end": 12243, + "name": "POP", + "source": 6 + }, + { + "begin": 11877, + "end": 12243, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 12249, + "end": 12668, + "name": "tag", + "source": 6, + "value": "129" + }, + { + "begin": 12249, + "end": 12668, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 12415, + "end": 12419, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 12453, + "end": 12455, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 12442, + "end": 12451, + "name": "DUP3", + "source": 6 + }, + { + "begin": 12438, + "end": 12456, + "name": "ADD", + "source": 6 + }, + { + "begin": 12430, + "end": 12456, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 12430, + "end": 12456, + "name": "POP", + "source": 6 + }, + { + "begin": 12502, + "end": 12511, + "name": "DUP2", + "source": 6 + }, + { + "begin": 12496, + "end": 12500, + "name": "DUP2", + "source": 6 + }, + { + "begin": 12492, + "end": 12512, + "name": "SUB", + "source": 6 + }, + { + "begin": 12488, + "end": 12489, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 12477, + "end": 12486, + "name": "DUP4", + "source": 6 + }, + { + "begin": 12473, + "end": 12490, + "name": "ADD", + "source": 6 + }, + { + "begin": 12466, + "end": 12513, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 12530, + "end": 12661, + "name": "PUSH [tag]", + "source": 6, + "value": "288" + }, + { + "begin": 12656, + "end": 12660, + "name": "DUP2", + "source": 6 + }, + { + "begin": 12530, + "end": 12661, + "name": "PUSH [tag]", + "source": 6, + "value": "173" + }, + { + "begin": 12530, + "end": 12661, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 12530, + "end": 12661, + "name": "tag", + "source": 6, + "value": "288" + }, + { + "begin": 12530, + "end": 12661, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 12522, + "end": 12661, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 12522, + "end": 12661, + "name": "POP", + "source": 6 + }, + { + "begin": 12249, + "end": 12668, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 12249, + "end": 12668, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 12249, + "end": 12668, + "name": "POP", + "source": 6 + }, + { + "begin": 12249, + "end": 12668, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 12674, + "end": 12899, + "name": "tag", + "source": 6, + "value": "174" + }, + { + "begin": 12674, + "end": 12899, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 12814, + "end": 12848, + "name": "PUSH", + "source": 6, + "value": "45524332303A207472616E7366657220616D6F756E7420657863656564732062" + }, + { + "begin": 12810, + "end": 12811, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 12802, + "end": 12808, + "name": "DUP3", + "source": 6 + }, + { + "begin": 12798, + "end": 12812, + "name": "ADD", + "source": 6 + }, + { + "begin": 12791, + "end": 12849, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 12883, + "end": 12891, + "name": "PUSH", + "source": 6, + "value": "616C616E63650000000000000000000000000000000000000000000000000000" + }, + { + "begin": 12878, + "end": 12880, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 12870, + "end": 12876, + "name": "DUP3", + "source": 6 + }, + { + "begin": 12866, + "end": 12881, + "name": "ADD", + "source": 6 + }, + { + "begin": 12859, + "end": 12892, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 12674, + "end": 12899, + "name": "POP", + "source": 6 + }, + { + "begin": 12674, + "end": 12899, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 12905, + "end": 13271, + "name": "tag", + "source": 6, + "value": "175" + }, + { + "begin": 12905, + "end": 13271, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 13047, + "end": 13050, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 13068, + "end": 13135, + "name": "PUSH [tag]", + "source": 6, + "value": "291" + }, + { + "begin": 13132, + "end": 13134, + "name": "PUSH", + "source": 6, + "value": "26" + }, + { + "begin": 13127, + "end": 13130, + "name": "DUP4", + "source": 6 + }, + { + "begin": 13068, + "end": 13135, + "name": "PUSH [tag]", + "source": 6, + "value": "141" + }, + { + "begin": 13068, + "end": 13135, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 13068, + "end": 13135, + "name": "tag", + "source": 6, + "value": "291" + }, + { + "begin": 13068, + "end": 13135, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 13061, + "end": 13135, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 13061, + "end": 13135, + "name": "POP", + "source": 6 + }, + { + "begin": 13144, + "end": 13237, + "name": "PUSH [tag]", + "source": 6, + "value": "292" + }, + { + "begin": 13233, + "end": 13236, + "name": "DUP3", + "source": 6 + }, + { + "begin": 13144, + "end": 13237, + "name": "PUSH [tag]", + "source": 6, + "value": "174" + }, + { + "begin": 13144, + "end": 13237, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 13144, + "end": 13237, + "name": "tag", + "source": 6, + "value": "292" + }, + { + "begin": 13144, + "end": 13237, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 13262, + "end": 13264, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 13257, + "end": 13260, + "name": "DUP3", + "source": 6 + }, + { + "begin": 13253, + "end": 13265, + "name": "ADD", + "source": 6 + }, + { + "begin": 13246, + "end": 13265, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 13246, + "end": 13265, + "name": "POP", + "source": 6 + }, + { + "begin": 12905, + "end": 13271, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 12905, + "end": 13271, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 12905, + "end": 13271, + "name": "POP", + "source": 6 + }, + { + "begin": 12905, + "end": 13271, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 13277, + "end": 13696, + "name": "tag", + "source": 6, + "value": "134" + }, + { + "begin": 13277, + "end": 13696, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 13443, + "end": 13447, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 13481, + "end": 13483, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 13470, + "end": 13479, + "name": "DUP3", + "source": 6 + }, + { + "begin": 13466, + "end": 13484, + "name": "ADD", + "source": 6 + }, + { + "begin": 13458, + "end": 13484, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 13458, + "end": 13484, + "name": "POP", + "source": 6 + }, + { + "begin": 13530, + "end": 13539, + "name": "DUP2", + "source": 6 + }, + { + "begin": 13524, + "end": 13528, + "name": "DUP2", + "source": 6 + }, + { + "begin": 13520, + "end": 13540, + "name": "SUB", + "source": 6 + }, + { + "begin": 13516, + "end": 13517, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 13505, + "end": 13514, + "name": "DUP4", + "source": 6 + }, + { + "begin": 13501, + "end": 13518, + "name": "ADD", + "source": 6 + }, + { + "begin": 13494, + "end": 13541, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 13558, + "end": 13689, + "name": "PUSH [tag]", + "source": 6, + "value": "294" + }, + { + "begin": 13684, + "end": 13688, + "name": "DUP2", + "source": 6 + }, + { + "begin": 13558, + "end": 13689, + "name": "PUSH [tag]", + "source": 6, + "value": "175" + }, + { + "begin": 13558, + "end": 13689, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 13558, + "end": 13689, + "name": "tag", + "source": 6, + "value": "294" + }, + { + "begin": 13558, + "end": 13689, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 13550, + "end": 13689, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 13550, + "end": 13689, + "name": "POP", + "source": 6 + }, + { + "begin": 13277, + "end": 13696, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 13277, + "end": 13696, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 13277, + "end": 13696, + "name": "POP", + "source": 6 + }, + { + "begin": 13277, + "end": 13696, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + } + ] + } + }, + "sourceList": [ + "@openzeppelin/contracts/access/Ownable.sol", + "@openzeppelin/contracts/token/ERC20/ERC20.sol", + "@openzeppelin/contracts/token/ERC20/IERC20.sol", + "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol", + "@openzeppelin/contracts/utils/Context.sol", + "contracts/InsuranceContract.sol", + "#utility.yul" + ] + }, + "methodIdentifiers": { + "allowance(address,address)": "dd62ed3e", + "approve(address,uint256)": "095ea7b3", + "balanceOf(address)": "70a08231", + "decimals()": "313ce567", + "decreaseAllowance(address,uint256)": "a457c2d7", + "increaseAllowance(address,uint256)": "39509351", + "name()": "06fdde03", + "symbol()": "95d89b41", + "totalSupply()": "18160ddd", + "transfer(address,uint256)": "a9059cbb", + "transferFrom(address,address,uint256)": "23b872dd" + } + }, + "metadata": "{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"subtractedValue\",\"type\":\"uint256\"}],\"name\":\"decreaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"addedValue\",\"type\":\"uint256\"}],\"name\":\"increaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. For a generic mechanism see {ERC20PresetMinterPauser}. TIP: For a detailed writeup see our guide https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. The default value of {decimals} is 18. To change this, you should override this function so it returns a different value. We have followed general OpenZeppelin Contracts guidelines: functions revert instead returning `false` on failure. This behavior is nonetheless conventional and does not conflict with the expectations of ERC20 applications. Additionally, an {Approval} event is emitted on calls to {transferFrom}. This allows applications to reconstruct the allowance for all accounts just by listening to said events. Other implementations of the EIP may not emit these events, as it isn't required by the specification. Finally, the non-standard {decreaseAllowance} and {increaseAllowance} functions have been added to mitigate the well-known issues around setting allowances. See {IERC20-approve}.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"constructor\":{\"details\":\"Sets the values for {name} and {symbol}. All two of these values are immutable: they can only be set once during construction.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":\"ERC20\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0xa56ca923f70c1748830700250b19c61b70db9a683516dc5e216694a50445d99c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cac938788bc4be12101e59d45588b4e059579f4e61062e1cda8d6b06c0191b15\",\"dweb:/ipfs/QmV2JKCyjTVH3rkWNrfdJRhAT7tZ3usAN2XcnD4h53Mvih\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bd39944e8fc06be6dbe2dd1d8449b5336e23c6a7ba3e8e9ae5ae0f37f35283f5\",\"dweb:/ipfs/QmPV3FGYjVwvKSgAXKUN3r9T9GwniZz83CxBpM7vyj2G53\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5a376d3dda2cb70536c0a45c208b29b34ac560c4cb4f513a42079f96ba47d2dd\",\"dweb:/ipfs/QmZQg6gn1sUpM8wHzwNvSnihumUCAhxD119MpXeKp8B9s8\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}", + "storageLayout": { + "storage": [ + { + "astId": 128, + "contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20", + "label": "_balances", + "offset": 0, + "slot": "0", + "type": "t_mapping(t_address,t_uint256)" + }, + { + "astId": 134, + "contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20", + "label": "_allowances", + "offset": 0, + "slot": "1", + "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))" + }, + { + "astId": 136, + "contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20", + "label": "_totalSupply", + "offset": 0, + "slot": "2", + "type": "t_uint256" + }, + { + "astId": 138, + "contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20", + "label": "_name", + "offset": 0, + "slot": "3", + "type": "t_string_storage" + }, + { + "astId": 140, + "contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20", + "label": "_symbol", + "offset": 0, + "slot": "4", + "type": "t_string_storage" + } + ], + "types": { + "t_address": { + "encoding": "inplace", + "label": "address", + "numberOfBytes": "20" + }, + "t_mapping(t_address,t_mapping(t_address,t_uint256))": { + "encoding": "mapping", + "key": "t_address", + "label": "mapping(address => mapping(address => uint256))", + "numberOfBytes": "32", + "value": "t_mapping(t_address,t_uint256)" + }, + "t_mapping(t_address,t_uint256)": { + "encoding": "mapping", + "key": "t_address", + "label": "mapping(address => uint256)", + "numberOfBytes": "32", + "value": "t_uint256" + }, + "t_string_storage": { + "encoding": "bytes", + "label": "string", + "numberOfBytes": "32" + }, + "t_uint256": { + "encoding": "inplace", + "label": "uint256", + "numberOfBytes": "32" + } + } + }, + "userdoc": { + "kind": "user", + "methods": {}, + "version": 1 + } + } + }, + "@openzeppelin/contracts/token/ERC20/IERC20.sol": { + "IERC20": { + "abi": [ + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "devdoc": { + "details": "Interface of the ERC20 standard as defined in the EIP.", + "events": { + "Approval(address,address,uint256)": { + "details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance." + }, + "Transfer(address,address,uint256)": { + "details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero." + } + }, + "kind": "dev", + "methods": { + "allowance(address,address)": { + "details": "Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called." + }, + "approve(address,uint256)": { + "details": "Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event." + }, + "balanceOf(address)": { + "details": "Returns the amount of tokens owned by `account`." + }, + "totalSupply()": { + "details": "Returns the amount of tokens in existence." + }, + "transfer(address,uint256)": { + "details": "Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event." + }, + "transferFrom(address,address,uint256)": { + "details": "Moves `amount` tokens from `from` to `to` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event." + } + }, + "version": 1 + }, + "evm": { + "assembly": "", + "bytecode": { + "functionDebugData": {}, + "generatedSources": [], + "linkReferences": {}, + "object": "", + "opcodes": "", + "sourceMap": "" + }, + "deployedBytecode": { + "functionDebugData": {}, + "generatedSources": [], + "immutableReferences": {}, + "linkReferences": {}, + "object": "", + "opcodes": "", + "sourceMap": "" + }, + "gasEstimates": null, + "legacyAssembly": null, + "methodIdentifiers": { + "allowance(address,address)": "dd62ed3e", + "approve(address,uint256)": "095ea7b3", + "balanceOf(address)": "70a08231", + "totalSupply()": "18160ddd", + "transfer(address,uint256)": "a9059cbb", + "transferFrom(address,address,uint256)": "23b872dd" + } + }, + "metadata": "{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC20 standard as defined in the EIP.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves `amount` tokens from `from` to `to` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":\"IERC20\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bd39944e8fc06be6dbe2dd1d8449b5336e23c6a7ba3e8e9ae5ae0f37f35283f5\",\"dweb:/ipfs/QmPV3FGYjVwvKSgAXKUN3r9T9GwniZz83CxBpM7vyj2G53\"]}},\"version\":1}", + "storageLayout": { + "storage": [], + "types": null + }, + "userdoc": { + "kind": "user", + "methods": {}, + "version": 1 + } + } + }, + "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": { + "IERC20Metadata": { + "abi": [ + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "devdoc": { + "details": "Interface for the optional metadata functions from the ERC20 standard. _Available since v4.1._", + "events": { + "Approval(address,address,uint256)": { + "details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance." + }, + "Transfer(address,address,uint256)": { + "details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero." + } + }, + "kind": "dev", + "methods": { + "allowance(address,address)": { + "details": "Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called." + }, + "approve(address,uint256)": { + "details": "Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event." + }, + "balanceOf(address)": { + "details": "Returns the amount of tokens owned by `account`." + }, + "decimals()": { + "details": "Returns the decimals places of the token." + }, + "name()": { + "details": "Returns the name of the token." + }, + "symbol()": { + "details": "Returns the symbol of the token." + }, + "totalSupply()": { + "details": "Returns the amount of tokens in existence." + }, + "transfer(address,uint256)": { + "details": "Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event." + }, + "transferFrom(address,address,uint256)": { + "details": "Moves `amount` tokens from `from` to `to` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event." + } + }, + "version": 1 + }, + "evm": { + "assembly": "", + "bytecode": { + "functionDebugData": {}, + "generatedSources": [], + "linkReferences": {}, + "object": "", + "opcodes": "", + "sourceMap": "" + }, + "deployedBytecode": { + "functionDebugData": {}, + "generatedSources": [], + "immutableReferences": {}, + "linkReferences": {}, + "object": "", + "opcodes": "", + "sourceMap": "" + }, + "gasEstimates": null, + "legacyAssembly": null, + "methodIdentifiers": { + "allowance(address,address)": "dd62ed3e", + "approve(address,uint256)": "095ea7b3", + "balanceOf(address)": "70a08231", + "decimals()": "313ce567", + "name()": "06fdde03", + "symbol()": "95d89b41", + "totalSupply()": "18160ddd", + "transfer(address,uint256)": "a9059cbb", + "transferFrom(address,address,uint256)": "23b872dd" + } + }, + "metadata": "{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for the optional metadata functions from the ERC20 standard. _Available since v4.1._\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"decimals()\":{\"details\":\"Returns the decimals places of the token.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token.\"},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves `amount` tokens from `from` to `to` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":\"IERC20Metadata\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bd39944e8fc06be6dbe2dd1d8449b5336e23c6a7ba3e8e9ae5ae0f37f35283f5\",\"dweb:/ipfs/QmPV3FGYjVwvKSgAXKUN3r9T9GwniZz83CxBpM7vyj2G53\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5a376d3dda2cb70536c0a45c208b29b34ac560c4cb4f513a42079f96ba47d2dd\",\"dweb:/ipfs/QmZQg6gn1sUpM8wHzwNvSnihumUCAhxD119MpXeKp8B9s8\"]}},\"version\":1}", + "storageLayout": { + "storage": [], + "types": null + }, + "userdoc": { + "kind": "user", + "methods": {}, + "version": 1 + } + } + }, + "@openzeppelin/contracts/utils/Context.sol": { + "Context": { + "abi": [], + "devdoc": { + "details": "Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.", + "kind": "dev", + "methods": {}, + "version": 1 + }, + "evm": { + "assembly": "", + "bytecode": { + "functionDebugData": {}, + "generatedSources": [], + "linkReferences": {}, + "object": "", + "opcodes": "", + "sourceMap": "" + }, + "deployedBytecode": { + "functionDebugData": {}, + "generatedSources": [], + "immutableReferences": {}, + "linkReferences": {}, + "object": "", + "opcodes": "", + "sourceMap": "" + }, + "gasEstimates": null, + "legacyAssembly": null, + "methodIdentifiers": {} + }, + "metadata": "{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Context.sol\":\"Context\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}", + "storageLayout": { + "storage": [], + "types": null + }, + "userdoc": { + "kind": "user", + "methods": {}, + "version": 1 + } + } + }, + "contracts/InsuranceContract.sol": { + "InsuranceContract": { + "abi": [ + { + "inputs": [], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "subtractedValue", + "type": "uint256" + } + ], + "name": "decreaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "addedValue", + "type": "uint256" + } + ], + "name": "increaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "mint", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "users", + "outputs": [ + { + "internalType": "string", + "name": "userName", + "type": "string" + }, + { + "internalType": "address", + "name": "userAddress", + "type": "address" + }, + { + "internalType": "uint256", + "name": "userAge", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "userBalance", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "devdoc": { + "events": { + "Approval(address,address,uint256)": { + "details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance." + }, + "Transfer(address,address,uint256)": { + "details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero." + } + }, + "kind": "dev", + "methods": { + "allowance(address,address)": { + "details": "See {IERC20-allowance}." + }, + "approve(address,uint256)": { + "details": "See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address." + }, + "balanceOf(address)": { + "details": "See {IERC20-balanceOf}." + }, + "decimals()": { + "details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}." + }, + "decreaseAllowance(address,uint256)": { + "details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`." + }, + "increaseAllowance(address,uint256)": { + "details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address." + }, + "name()": { + "details": "Returns the name of the token." + }, + "owner()": { + "details": "Returns the address of the current owner." + }, + "renounceOwnership()": { + "details": "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." + }, + "symbol()": { + "details": "Returns the symbol of the token, usually a shorter version of the name." + }, + "totalSupply()": { + "details": "See {IERC20-totalSupply}." + }, + "transfer(address,uint256)": { + "details": "See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`." + }, + "transferFrom(address,address,uint256)": { + "details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`." + }, + "transferOwnership(address)": { + "details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner." + } + }, + "version": 1 + }, + "evm": { + "assembly": " /* \"contracts/InsuranceContract.sol\":167:666 contract InsuranceContract is ERC20, Ownable {... */\n mstore(0x40, 0x80)\n /* \"contracts/InsuranceContract.sol\":243:294 constructor() ERC20(\"Muhannad Insurance\", \"MIT\") {} */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1980:2093 constructor(string memory name_, string memory symbol_) {... */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x12\n dup2\n mstore\n 0x20\n add\n 0x4d7568616e6e616420496e737572616e63650000000000000000000000000000\n dup2\n mstore\n pop\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x03\n dup2\n mstore\n 0x20\n add\n 0x4d49540000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2054:2059 name_ */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2046:2051 _name */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2046:2059 _name = name_ */\n swap1\n dup2\n tag_6\n swap2\n swap1\n tag_7\n jump\t// in\ntag_6:\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2079:2086 symbol_ */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2069:2076 _symbol */\n 0x04\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2069:2086 _symbol = symbol_ */\n swap1\n dup2\n tag_8\n swap2\n swap1\n tag_7\n jump\t// in\ntag_8:\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1980:2093 constructor(string memory name_, string memory symbol_) {... */\n pop\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":936:968 _transferOwnership(_msgSender()) */\n tag_10\n /* \"@openzeppelin/contracts/access/Ownable.sol\":955:967 _msgSender() */\n tag_11\n /* \"@openzeppelin/contracts/access/Ownable.sol\":955:965 _msgSender */\n shl(0x20, tag_12)\n /* \"@openzeppelin/contracts/access/Ownable.sol\":955:967 _msgSender() */\n 0x20\n shr\n jump\t// in\ntag_11:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":936:954 _transferOwnership */\n shl(0x20, tag_13)\n /* \"@openzeppelin/contracts/access/Ownable.sol\":936:968 _transferOwnership(_msgSender()) */\n 0x20\n shr\n jump\t// in\ntag_10:\n /* \"contracts/InsuranceContract.sol\":167:666 contract InsuranceContract is ERC20, Ownable {... */\n jump(tag_15)\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\ntag_12:\n /* \"@openzeppelin/contracts/utils/Context.sol\":693:700 address */\n 0x00\n /* \"@openzeppelin/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"@openzeppelin/contracts/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2426:2613 function _transferOwnership(address newOwner) internal virtual {... */\ntag_13:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2499:2515 address oldOwner */\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2518:2524 _owner */\n 0x05\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2499:2524 address oldOwner = _owner */\n swap1\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2543:2551 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2534:2540 _owner */\n 0x05\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2534:2551 _owner = newOwner */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2597:2605 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2566:2606 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2587:2595 oldOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2566:2606 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2489:2613 {... */\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2426:2613 function _transferOwnership(address newOwner) internal virtual {... */\n pop\n jump\t// out\n /* \"#utility.yul\":7:106 */\ntag_18:\n /* \"#utility.yul\":59:65 */\n 0x00\n /* \"#utility.yul\":93:98 */\n dup2\n /* \"#utility.yul\":87:99 */\n mload\n /* \"#utility.yul\":77:99 */\n swap1\n pop\n /* \"#utility.yul\":7:106 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":112:292 */\ntag_19:\n /* \"#utility.yul\":160:237 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":157:158 */\n 0x00\n /* \"#utility.yul\":150:238 */\n mstore\n /* \"#utility.yul\":257:261 */\n 0x41\n /* \"#utility.yul\":254:255 */\n 0x04\n /* \"#utility.yul\":247:262 */\n mstore\n /* \"#utility.yul\":281:285 */\n 0x24\n /* \"#utility.yul\":278:279 */\n 0x00\n /* \"#utility.yul\":271:286 */\n revert\n /* \"#utility.yul\":298:478 */\ntag_20:\n /* \"#utility.yul\":346:423 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":343:344 */\n 0x00\n /* \"#utility.yul\":336:424 */\n mstore\n /* \"#utility.yul\":443:447 */\n 0x22\n /* \"#utility.yul\":440:441 */\n 0x04\n /* \"#utility.yul\":433:448 */\n mstore\n /* \"#utility.yul\":467:471 */\n 0x24\n /* \"#utility.yul\":464:465 */\n 0x00\n /* \"#utility.yul\":457:472 */\n revert\n /* \"#utility.yul\":484:804 */\ntag_21:\n /* \"#utility.yul\":528:534 */\n 0x00\n /* \"#utility.yul\":565:566 */\n 0x02\n /* \"#utility.yul\":559:563 */\n dup3\n /* \"#utility.yul\":555:567 */\n div\n /* \"#utility.yul\":545:567 */\n swap1\n pop\n /* \"#utility.yul\":612:613 */\n 0x01\n /* \"#utility.yul\":606:610 */\n dup3\n /* \"#utility.yul\":602:614 */\n and\n /* \"#utility.yul\":633:651 */\n dup1\n /* \"#utility.yul\":623:704 */\n tag_43\n jumpi\n /* \"#utility.yul\":689:693 */\n 0x7f\n /* \"#utility.yul\":681:687 */\n dup3\n /* \"#utility.yul\":677:694 */\n and\n /* \"#utility.yul\":667:694 */\n swap2\n pop\n /* \"#utility.yul\":623:704 */\ntag_43:\n /* \"#utility.yul\":751:753 */\n 0x20\n /* \"#utility.yul\":743:749 */\n dup3\n /* \"#utility.yul\":740:754 */\n lt\n /* \"#utility.yul\":720:738 */\n dup2\n /* \"#utility.yul\":717:755 */\n sub\n /* \"#utility.yul\":714:798 */\n tag_44\n jumpi\n /* \"#utility.yul\":770:788 */\n tag_45\n tag_20\n jump\t// in\ntag_45:\n /* \"#utility.yul\":714:798 */\ntag_44:\n /* \"#utility.yul\":535:804 */\n pop\n /* \"#utility.yul\":484:804 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":810:951 */\ntag_22:\n /* \"#utility.yul\":859:863 */\n 0x00\n /* \"#utility.yul\":882:885 */\n dup2\n /* \"#utility.yul\":874:885 */\n swap1\n pop\n /* \"#utility.yul\":905:908 */\n dup2\n /* \"#utility.yul\":902:903 */\n 0x00\n /* \"#utility.yul\":895:909 */\n mstore\n /* \"#utility.yul\":939:943 */\n 0x20\n /* \"#utility.yul\":936:937 */\n 0x00\n /* \"#utility.yul\":926:944 */\n keccak256\n /* \"#utility.yul\":918:944 */\n swap1\n pop\n /* \"#utility.yul\":810:951 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":957:1050 */\ntag_23:\n /* \"#utility.yul\":994:1000 */\n 0x00\n /* \"#utility.yul\":1041:1043 */\n 0x20\n /* \"#utility.yul\":1036:1038 */\n 0x1f\n /* \"#utility.yul\":1029:1034 */\n dup4\n /* \"#utility.yul\":1025:1039 */\n add\n /* \"#utility.yul\":1021:1044 */\n div\n /* \"#utility.yul\":1011:1044 */\n swap1\n pop\n /* \"#utility.yul\":957:1050 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1056:1163 */\ntag_24:\n /* \"#utility.yul\":1100:1108 */\n 0x00\n /* \"#utility.yul\":1150:1155 */\n dup3\n /* \"#utility.yul\":1144:1148 */\n dup3\n /* \"#utility.yul\":1140:1156 */\n shl\n /* \"#utility.yul\":1119:1156 */\n swap1\n pop\n /* \"#utility.yul\":1056:1163 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1169:1562 */\ntag_25:\n /* \"#utility.yul\":1238:1244 */\n 0x00\n /* \"#utility.yul\":1288:1289 */\n 0x08\n /* \"#utility.yul\":1276:1286 */\n dup4\n /* \"#utility.yul\":1272:1290 */\n mul\n /* \"#utility.yul\":1311:1408 */\n tag_50\n /* \"#utility.yul\":1341:1407 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":1330:1339 */\n dup3\n /* \"#utility.yul\":1311:1408 */\n tag_24\n jump\t// in\ntag_50:\n /* \"#utility.yul\":1429:1468 */\n tag_51\n /* \"#utility.yul\":1459:1467 */\n dup7\n /* \"#utility.yul\":1448:1457 */\n dup4\n /* \"#utility.yul\":1429:1468 */\n tag_24\n jump\t// in\ntag_51:\n /* \"#utility.yul\":1417:1468 */\n swap6\n pop\n /* \"#utility.yul\":1501:1505 */\n dup1\n /* \"#utility.yul\":1497:1506 */\n not\n /* \"#utility.yul\":1490:1495 */\n dup5\n /* \"#utility.yul\":1486:1507 */\n and\n /* \"#utility.yul\":1477:1507 */\n swap4\n pop\n /* \"#utility.yul\":1550:1554 */\n dup1\n /* \"#utility.yul\":1540:1548 */\n dup7\n /* \"#utility.yul\":1536:1555 */\n and\n /* \"#utility.yul\":1529:1534 */\n dup5\n /* \"#utility.yul\":1526:1556 */\n or\n /* \"#utility.yul\":1516:1556 */\n swap3\n pop\n /* \"#utility.yul\":1245:1562 */\n pop\n pop\n /* \"#utility.yul\":1169:1562 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1568:1645 */\ntag_26:\n /* \"#utility.yul\":1605:1612 */\n 0x00\n /* \"#utility.yul\":1634:1639 */\n dup2\n /* \"#utility.yul\":1623:1639 */\n swap1\n pop\n /* \"#utility.yul\":1568:1645 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1651:1711 */\ntag_27:\n /* \"#utility.yul\":1679:1682 */\n 0x00\n /* \"#utility.yul\":1700:1705 */\n dup2\n /* \"#utility.yul\":1693:1705 */\n swap1\n pop\n /* \"#utility.yul\":1651:1711 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1717:1859 */\ntag_28:\n /* \"#utility.yul\":1767:1776 */\n 0x00\n /* \"#utility.yul\":1800:1853 */\n tag_55\n /* \"#utility.yul\":1818:1852 */\n tag_56\n /* \"#utility.yul\":1827:1851 */\n tag_57\n /* \"#utility.yul\":1845:1850 */\n dup5\n /* \"#utility.yul\":1827:1851 */\n tag_26\n jump\t// in\ntag_57:\n /* \"#utility.yul\":1818:1852 */\n tag_27\n jump\t// in\ntag_56:\n /* \"#utility.yul\":1800:1853 */\n tag_26\n jump\t// in\ntag_55:\n /* \"#utility.yul\":1787:1853 */\n swap1\n pop\n /* \"#utility.yul\":1717:1859 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1865:1940 */\ntag_29:\n /* \"#utility.yul\":1908:1911 */\n 0x00\n /* \"#utility.yul\":1929:1934 */\n dup2\n /* \"#utility.yul\":1922:1934 */\n swap1\n pop\n /* \"#utility.yul\":1865:1940 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1946:2215 */\ntag_30:\n /* \"#utility.yul\":2056:2095 */\n tag_60\n /* \"#utility.yul\":2087:2094 */\n dup4\n /* \"#utility.yul\":2056:2095 */\n tag_28\n jump\t// in\ntag_60:\n /* \"#utility.yul\":2117:2208 */\n tag_61\n /* \"#utility.yul\":2166:2207 */\n tag_62\n /* \"#utility.yul\":2190:2206 */\n dup3\n /* \"#utility.yul\":2166:2207 */\n tag_29\n jump\t// in\ntag_62:\n /* \"#utility.yul\":2158:2164 */\n dup5\n /* \"#utility.yul\":2151:2155 */\n dup5\n /* \"#utility.yul\":2145:2156 */\n sload\n /* \"#utility.yul\":2117:2208 */\n tag_25\n jump\t// in\ntag_61:\n /* \"#utility.yul\":2111:2115 */\n dup3\n /* \"#utility.yul\":2104:2209 */\n sstore\n /* \"#utility.yul\":2022:2215 */\n pop\n /* \"#utility.yul\":1946:2215 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2221:2294 */\ntag_31:\n /* \"#utility.yul\":2266:2269 */\n 0x00\n /* \"#utility.yul\":2221:2294 */\n swap1\n jump\t// out\n /* \"#utility.yul\":2300:2489 */\ntag_32:\n /* \"#utility.yul\":2377:2409 */\n tag_65\n tag_31\n jump\t// in\ntag_65:\n /* \"#utility.yul\":2418:2483 */\n tag_66\n /* \"#utility.yul\":2476:2482 */\n dup2\n /* \"#utility.yul\":2468:2474 */\n dup5\n /* \"#utility.yul\":2462:2466 */\n dup5\n /* \"#utility.yul\":2418:2483 */\n tag_30\n jump\t// in\ntag_66:\n /* \"#utility.yul\":2353:2489 */\n pop\n /* \"#utility.yul\":2300:2489 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2495:2681 */\ntag_33:\n /* \"#utility.yul\":2555:2675 */\ntag_68:\n /* \"#utility.yul\":2572:2575 */\n dup2\n /* \"#utility.yul\":2565:2570 */\n dup2\n /* \"#utility.yul\":2562:2576 */\n lt\n /* \"#utility.yul\":2555:2675 */\n iszero\n tag_70\n jumpi\n /* \"#utility.yul\":2626:2665 */\n tag_71\n /* \"#utility.yul\":2663:2664 */\n 0x00\n /* \"#utility.yul\":2656:2661 */\n dup3\n /* \"#utility.yul\":2626:2665 */\n tag_32\n jump\t// in\ntag_71:\n /* \"#utility.yul\":2599:2600 */\n 0x01\n /* \"#utility.yul\":2592:2597 */\n dup2\n /* \"#utility.yul\":2588:2601 */\n add\n /* \"#utility.yul\":2579:2601 */\n swap1\n pop\n /* \"#utility.yul\":2555:2675 */\n jump(tag_68)\ntag_70:\n /* \"#utility.yul\":2495:2681 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2687:3230 */\ntag_34:\n /* \"#utility.yul\":2788:2790 */\n 0x1f\n /* \"#utility.yul\":2783:2786 */\n dup3\n /* \"#utility.yul\":2780:2791 */\n gt\n /* \"#utility.yul\":2777:3223 */\n iszero\n tag_73\n jumpi\n /* \"#utility.yul\":2822:2860 */\n tag_74\n /* \"#utility.yul\":2854:2859 */\n dup2\n /* \"#utility.yul\":2822:2860 */\n tag_22\n jump\t// in\ntag_74:\n /* \"#utility.yul\":2906:2935 */\n tag_75\n /* \"#utility.yul\":2924:2934 */\n dup5\n /* \"#utility.yul\":2906:2935 */\n tag_23\n jump\t// in\ntag_75:\n /* \"#utility.yul\":2896:2904 */\n dup2\n /* \"#utility.yul\":2892:2936 */\n add\n /* \"#utility.yul\":3089:3091 */\n 0x20\n /* \"#utility.yul\":3077:3087 */\n dup6\n /* \"#utility.yul\":3074:3092 */\n lt\n /* \"#utility.yul\":3071:3120 */\n iszero\n tag_76\n jumpi\n /* \"#utility.yul\":3110:3118 */\n dup2\n /* \"#utility.yul\":3095:3118 */\n swap1\n pop\n /* \"#utility.yul\":3071:3120 */\ntag_76:\n /* \"#utility.yul\":3133:3213 */\n tag_77\n /* \"#utility.yul\":3189:3211 */\n tag_78\n /* \"#utility.yul\":3207:3210 */\n dup6\n /* \"#utility.yul\":3189:3211 */\n tag_23\n jump\t// in\ntag_78:\n /* \"#utility.yul\":3179:3187 */\n dup4\n /* \"#utility.yul\":3175:3212 */\n add\n /* \"#utility.yul\":3162:3173 */\n dup3\n /* \"#utility.yul\":3133:3213 */\n tag_33\n jump\t// in\ntag_77:\n /* \"#utility.yul\":2792:3223 */\n pop\n pop\n /* \"#utility.yul\":2777:3223 */\ntag_73:\n /* \"#utility.yul\":2687:3230 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3236:3353 */\ntag_35:\n /* \"#utility.yul\":3290:3298 */\n 0x00\n /* \"#utility.yul\":3340:3345 */\n dup3\n /* \"#utility.yul\":3334:3338 */\n dup3\n /* \"#utility.yul\":3330:3346 */\n shr\n /* \"#utility.yul\":3309:3346 */\n swap1\n pop\n /* \"#utility.yul\":3236:3353 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3359:3528 */\ntag_36:\n /* \"#utility.yul\":3403:3409 */\n 0x00\n /* \"#utility.yul\":3436:3487 */\n tag_81\n /* \"#utility.yul\":3484:3485 */\n 0x00\n /* \"#utility.yul\":3480:3486 */\n not\n /* \"#utility.yul\":3472:3477 */\n dup5\n /* \"#utility.yul\":3469:3470 */\n 0x08\n /* \"#utility.yul\":3465:3478 */\n mul\n /* \"#utility.yul\":3436:3487 */\n tag_35\n jump\t// in\ntag_81:\n /* \"#utility.yul\":3432:3488 */\n not\n /* \"#utility.yul\":3517:3521 */\n dup1\n /* \"#utility.yul\":3511:3515 */\n dup4\n /* \"#utility.yul\":3507:3522 */\n and\n /* \"#utility.yul\":3497:3522 */\n swap2\n pop\n /* \"#utility.yul\":3410:3528 */\n pop\n /* \"#utility.yul\":3359:3528 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3533:3828 */\ntag_37:\n /* \"#utility.yul\":3609:3613 */\n 0x00\n /* \"#utility.yul\":3755:3784 */\n tag_83\n /* \"#utility.yul\":3780:3783 */\n dup4\n /* \"#utility.yul\":3774:3778 */\n dup4\n /* \"#utility.yul\":3755:3784 */\n tag_36\n jump\t// in\ntag_83:\n /* \"#utility.yul\":3747:3784 */\n swap2\n pop\n /* \"#utility.yul\":3817:3820 */\n dup3\n /* \"#utility.yul\":3814:3815 */\n 0x02\n /* \"#utility.yul\":3810:3821 */\n mul\n /* \"#utility.yul\":3804:3808 */\n dup3\n /* \"#utility.yul\":3801:3822 */\n or\n /* \"#utility.yul\":3793:3822 */\n swap1\n pop\n /* \"#utility.yul\":3533:3828 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3833:5228 */\ntag_7:\n /* \"#utility.yul\":3950:3987 */\n tag_85\n /* \"#utility.yul\":3983:3986 */\n dup3\n /* \"#utility.yul\":3950:3987 */\n tag_18\n jump\t// in\ntag_85:\n /* \"#utility.yul\":4052:4070 */\n 0xffffffffffffffff\n /* \"#utility.yul\":4044:4050 */\n dup2\n /* \"#utility.yul\":4041:4071 */\n gt\n /* \"#utility.yul\":4038:4094 */\n iszero\n tag_86\n jumpi\n /* \"#utility.yul\":4074:4092 */\n tag_87\n tag_19\n jump\t// in\ntag_87:\n /* \"#utility.yul\":4038:4094 */\ntag_86:\n /* \"#utility.yul\":4118:4156 */\n tag_88\n /* \"#utility.yul\":4150:4154 */\n dup3\n /* \"#utility.yul\":4144:4155 */\n sload\n /* \"#utility.yul\":4118:4156 */\n tag_21\n jump\t// in\ntag_88:\n /* \"#utility.yul\":4203:4270 */\n tag_89\n /* \"#utility.yul\":4263:4269 */\n dup3\n /* \"#utility.yul\":4255:4261 */\n dup3\n /* \"#utility.yul\":4249:4253 */\n dup6\n /* \"#utility.yul\":4203:4270 */\n tag_34\n jump\t// in\ntag_89:\n /* \"#utility.yul\":4297:4298 */\n 0x00\n /* \"#utility.yul\":4321:4325 */\n 0x20\n /* \"#utility.yul\":4308:4325 */\n swap1\n pop\n /* \"#utility.yul\":4353:4355 */\n 0x1f\n /* \"#utility.yul\":4345:4351 */\n dup4\n /* \"#utility.yul\":4342:4356 */\n gt\n /* \"#utility.yul\":4370:4371 */\n 0x01\n /* \"#utility.yul\":4365:4983 */\n dup2\n eq\n tag_91\n jumpi\n /* \"#utility.yul\":5027:5028 */\n 0x00\n /* \"#utility.yul\":5044:5050 */\n dup5\n /* \"#utility.yul\":5041:5118 */\n iszero\n tag_92\n jumpi\n /* \"#utility.yul\":5093:5102 */\n dup3\n /* \"#utility.yul\":5088:5091 */\n dup8\n /* \"#utility.yul\":5084:5103 */\n add\n /* \"#utility.yul\":5078:5104 */\n mload\n /* \"#utility.yul\":5069:5104 */\n swap1\n pop\n /* \"#utility.yul\":5041:5118 */\ntag_92:\n /* \"#utility.yul\":5144:5211 */\n tag_93\n /* \"#utility.yul\":5204:5210 */\n dup6\n /* \"#utility.yul\":5197:5202 */\n dup3\n /* \"#utility.yul\":5144:5211 */\n tag_37\n jump\t// in\ntag_93:\n /* \"#utility.yul\":5138:5142 */\n dup7\n /* \"#utility.yul\":5131:5212 */\n sstore\n /* \"#utility.yul\":5000:5222 */\n pop\n /* \"#utility.yul\":4335:5222 */\n jump(tag_90)\n /* \"#utility.yul\":4365:4983 */\ntag_91:\n /* \"#utility.yul\":4417:4421 */\n 0x1f\n /* \"#utility.yul\":4413:4422 */\n not\n /* \"#utility.yul\":4405:4411 */\n dup5\n /* \"#utility.yul\":4401:4423 */\n and\n /* \"#utility.yul\":4451:4488 */\n tag_94\n /* \"#utility.yul\":4483:4487 */\n dup7\n /* \"#utility.yul\":4451:4488 */\n tag_22\n jump\t// in\ntag_94:\n /* \"#utility.yul\":4510:4511 */\n 0x00\n /* \"#utility.yul\":4524:4732 */\ntag_95:\n /* \"#utility.yul\":4538:4545 */\n dup3\n /* \"#utility.yul\":4535:4536 */\n dup2\n /* \"#utility.yul\":4532:4546 */\n lt\n /* \"#utility.yul\":4524:4732 */\n iszero\n tag_97\n jumpi\n /* \"#utility.yul\":4617:4626 */\n dup5\n /* \"#utility.yul\":4612:4615 */\n dup10\n /* \"#utility.yul\":4608:4627 */\n add\n /* \"#utility.yul\":4602:4628 */\n mload\n /* \"#utility.yul\":4594:4600 */\n dup3\n /* \"#utility.yul\":4587:4629 */\n sstore\n /* \"#utility.yul\":4668:4669 */\n 0x01\n /* \"#utility.yul\":4660:4666 */\n dup3\n /* \"#utility.yul\":4656:4670 */\n add\n /* \"#utility.yul\":4646:4670 */\n swap2\n pop\n /* \"#utility.yul\":4715:4717 */\n 0x20\n /* \"#utility.yul\":4704:4713 */\n dup6\n /* \"#utility.yul\":4700:4718 */\n add\n /* \"#utility.yul\":4687:4718 */\n swap5\n pop\n /* \"#utility.yul\":4561:4565 */\n 0x20\n /* \"#utility.yul\":4558:4559 */\n dup2\n /* \"#utility.yul\":4554:4566 */\n add\n /* \"#utility.yul\":4549:4566 */\n swap1\n pop\n /* \"#utility.yul\":4524:4732 */\n jump(tag_95)\ntag_97:\n /* \"#utility.yul\":4760:4766 */\n dup7\n /* \"#utility.yul\":4751:4758 */\n dup4\n /* \"#utility.yul\":4748:4767 */\n lt\n /* \"#utility.yul\":4745:4924 */\n iszero\n tag_98\n jumpi\n /* \"#utility.yul\":4818:4827 */\n dup5\n /* \"#utility.yul\":4813:4816 */\n dup10\n /* \"#utility.yul\":4809:4828 */\n add\n /* \"#utility.yul\":4803:4829 */\n mload\n /* \"#utility.yul\":4861:4909 */\n tag_99\n /* \"#utility.yul\":4903:4907 */\n 0x1f\n /* \"#utility.yul\":4895:4901 */\n dup10\n /* \"#utility.yul\":4891:4908 */\n and\n /* \"#utility.yul\":4880:4889 */\n dup3\n /* \"#utility.yul\":4861:4909 */\n tag_36\n jump\t// in\ntag_99:\n /* \"#utility.yul\":4853:4859 */\n dup4\n /* \"#utility.yul\":4846:4910 */\n sstore\n /* \"#utility.yul\":4768:4924 */\n pop\n /* \"#utility.yul\":4745:4924 */\ntag_98:\n /* \"#utility.yul\":4970:4971 */\n 0x01\n /* \"#utility.yul\":4966:4967 */\n 0x02\n /* \"#utility.yul\":4958:4964 */\n dup9\n /* \"#utility.yul\":4954:4968 */\n mul\n /* \"#utility.yul\":4950:4972 */\n add\n /* \"#utility.yul\":4944:4948 */\n dup9\n /* \"#utility.yul\":4937:4973 */\n sstore\n /* \"#utility.yul\":4372:4983 */\n pop\n pop\n pop\n /* \"#utility.yul\":4335:5222 */\ntag_90:\n pop\n /* \"#utility.yul\":3925:5228 */\n pop\n pop\n pop\n /* \"#utility.yul\":3833:5228 */\n pop\n pop\n jump\t// out\n /* \"contracts/InsuranceContract.sol\":167:666 contract InsuranceContract is ERC20, Ownable {... */\ntag_15:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/InsuranceContract.sol\":167:666 contract InsuranceContract is ERC20, Ownable {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x715018a6\n gt\n tag_19\n jumpi\n dup1\n 0xa87430ba\n gt\n tag_20\n jumpi\n dup1\n 0xa87430ba\n eq\n tag_15\n jumpi\n dup1\n 0xa9059cbb\n eq\n tag_16\n jumpi\n dup1\n 0xdd62ed3e\n eq\n tag_17\n jumpi\n dup1\n 0xf2fde38b\n eq\n tag_18\n jumpi\n jump(tag_2)\n tag_20:\n dup1\n 0x715018a6\n eq\n tag_11\n jumpi\n dup1\n 0x8da5cb5b\n eq\n tag_12\n jumpi\n dup1\n 0x95d89b41\n eq\n tag_13\n jumpi\n dup1\n 0xa457c2d7\n eq\n tag_14\n jumpi\n jump(tag_2)\n tag_19:\n dup1\n 0x313ce567\n gt\n tag_21\n jumpi\n dup1\n 0x313ce567\n eq\n tag_7\n jumpi\n dup1\n 0x39509351\n eq\n tag_8\n jumpi\n dup1\n 0x40c10f19\n eq\n tag_9\n jumpi\n dup1\n 0x70a08231\n eq\n tag_10\n jumpi\n jump(tag_2)\n tag_21:\n dup1\n 0x06fdde03\n eq\n tag_3\n jumpi\n dup1\n 0x095ea7b3\n eq\n tag_4\n jumpi\n dup1\n 0x18160ddd\n eq\n tag_5\n jumpi\n dup1\n 0x23b872dd\n eq\n tag_6\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2158:2256 function name() public view virtual override returns (string memory) {... */\n tag_3:\n tag_22\n tag_23\n jump\t// in\n tag_22:\n mload(0x40)\n tag_24\n swap2\n swap1\n tag_25\n jump\t// in\n tag_24:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4444:4641 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n tag_4:\n tag_26\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_27\n swap2\n swap1\n tag_28\n jump\t// in\n tag_27:\n tag_29\n jump\t// in\n tag_26:\n mload(0x40)\n tag_30\n swap2\n swap1\n tag_31\n jump\t// in\n tag_30:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3255:3361 function totalSupply() public view virtual override returns (uint256) {... */\n tag_5:\n tag_32\n tag_33\n jump\t// in\n tag_32:\n mload(0x40)\n tag_34\n swap2\n swap1\n tag_35\n jump\t// in\n tag_34:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5203:5459 function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {... */\n tag_6:\n tag_36\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_37\n swap2\n swap1\n tag_38\n jump\t// in\n tag_37:\n tag_39\n jump\t// in\n tag_36:\n mload(0x40)\n tag_40\n swap2\n swap1\n tag_31\n jump\t// in\n tag_40:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3104:3195 function decimals() public view virtual override returns (uint8) {... */\n tag_7:\n tag_41\n tag_42\n jump\t// in\n tag_41:\n mload(0x40)\n tag_43\n swap2\n swap1\n tag_44\n jump\t// in\n tag_43:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5854:6088 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n tag_8:\n tag_45\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_46\n swap2\n swap1\n tag_28\n jump\t// in\n tag_46:\n tag_47\n jump\t// in\n tag_45:\n mload(0x40)\n tag_48\n swap2\n swap1\n tag_31\n jump\t// in\n tag_48:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/InsuranceContract.sol\":300:393 function mint(address to, uint256 amount) public onlyOwner {... */\n tag_9:\n tag_49\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_50\n swap2\n swap1\n tag_28\n jump\t// in\n tag_50:\n tag_51\n jump\t// in\n tag_49:\n stop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3419:3544 function balanceOf(address account) public view virtual override returns (uint256) {... */\n tag_10:\n tag_52\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_53\n swap2\n swap1\n tag_54\n jump\t// in\n tag_53:\n tag_55\n jump\t// in\n tag_52:\n mload(0x40)\n tag_56\n swap2\n swap1\n tag_35\n jump\t// in\n tag_56:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1824:1925 function renounceOwnership() public virtual onlyOwner {... */\n tag_11:\n tag_57\n tag_58\n jump\t// in\n tag_57:\n stop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1201:1286 function owner() public view virtual returns (address) {... */\n tag_12:\n tag_59\n tag_60\n jump\t// in\n tag_59:\n mload(0x40)\n tag_61\n swap2\n swap1\n tag_62\n jump\t// in\n tag_61:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2369:2471 function symbol() public view virtual override returns (string memory) {... */\n tag_13:\n tag_63\n tag_64\n jump\t// in\n tag_63:\n mload(0x40)\n tag_65\n swap2\n swap1\n tag_25\n jump\t// in\n tag_65:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6575:7002 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n tag_14:\n tag_66\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_67\n swap2\n swap1\n tag_28\n jump\t// in\n tag_67:\n tag_68\n jump\t// in\n tag_66:\n mload(0x40)\n tag_69\n swap2\n swap1\n tag_31\n jump\t// in\n tag_69:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/InsuranceContract.sol\":398:436 mapping (address => User) public users */\n tag_15:\n tag_70\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_71\n swap2\n swap1\n tag_54\n jump\t// in\n tag_71:\n tag_72\n jump\t// in\n tag_70:\n mload(0x40)\n tag_73\n swap5\n swap4\n swap3\n swap2\n swap1\n tag_74\n jump\t// in\n tag_73:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3740:3929 function transfer(address to, uint256 amount) public virtual override returns (bool) {... */\n tag_16:\n tag_75\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_76\n swap2\n swap1\n tag_28\n jump\t// in\n tag_76:\n tag_77\n jump\t// in\n tag_75:\n mload(0x40)\n tag_78\n swap2\n swap1\n tag_31\n jump\t// in\n tag_78:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3987:4136 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n tag_17:\n tag_79\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_80\n swap2\n swap1\n tag_81\n jump\t// in\n tag_80:\n tag_82\n jump\t// in\n tag_79:\n mload(0x40)\n tag_83\n swap2\n swap1\n tag_35\n jump\t// in\n tag_83:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2074:2272 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n tag_18:\n tag_84\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_85\n swap2\n swap1\n tag_54\n jump\t// in\n tag_85:\n tag_86\n jump\t// in\n tag_84:\n stop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2158:2256 function name() public view virtual override returns (string memory) {... */\n tag_23:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2212:2225 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2244:2249 _name */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2237:2249 return _name */\n dup1\n sload\n tag_88\n swap1\n tag_89\n jump\t// in\n tag_88:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_90\n swap1\n tag_89\n jump\t// in\n tag_90:\n dup1\n iszero\n tag_91\n jumpi\n dup1\n 0x1f\n lt\n tag_92\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_91)\n tag_92:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_93:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_93\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_91:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2158:2256 function name() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4444:4641 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n tag_29:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4527:4531 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4543:4556 address owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4559:4571 _msgSender() */\n tag_95\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4559:4569 _msgSender */\n tag_96\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4559:4571 _msgSender() */\n jump\t// in\n tag_95:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4543:4571 address owner = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4581:4613 _approve(owner, spender, amount) */\n tag_97\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4590:4595 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4597:4604 spender */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4606:4612 amount */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4581:4589 _approve */\n tag_98\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4581:4613 _approve(owner, spender, amount) */\n jump\t// in\n tag_97:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4630:4634 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4623:4634 return true */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4444:4641 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3255:3361 function totalSupply() public view virtual override returns (uint256) {... */\n tag_33:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3316:3323 uint256 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3342:3354 _totalSupply */\n sload(0x02)\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3335:3354 return _totalSupply */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3255:3361 function totalSupply() public view virtual override returns (uint256) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5203:5459 function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {... */\n tag_39:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5300:5304 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5316:5331 address spender */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5334:5346 _msgSender() */\n tag_101\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5334:5344 _msgSender */\n tag_96\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5334:5346 _msgSender() */\n jump\t// in\n tag_101:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5316:5346 address spender = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5356:5394 _spendAllowance(from, spender, amount) */\n tag_102\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5372:5376 from */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5378:5385 spender */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5387:5393 amount */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5356:5371 _spendAllowance */\n tag_103\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5356:5394 _spendAllowance(from, spender, amount) */\n jump\t// in\n tag_102:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5404:5431 _transfer(from, to, amount) */\n tag_104\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5414:5418 from */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5420:5422 to */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5424:5430 amount */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5404:5413 _transfer */\n tag_105\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5404:5431 _transfer(from, to, amount) */\n jump\t// in\n tag_104:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5448:5452 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5441:5452 return true */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5203:5459 function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {... */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3104:3195 function decimals() public view virtual override returns (uint8) {... */\n tag_42:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3162:3167 uint8 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3186:3188 18 */\n 0x12\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3179:3188 return 18 */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3104:3195 function decimals() public view virtual override returns (uint8) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5854:6088 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n tag_47:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5942:5946 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5958:5971 address owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5974:5986 _msgSender() */\n tag_108\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5974:5984 _msgSender */\n tag_96\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5974:5986 _msgSender() */\n jump\t// in\n tag_108:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5958:5986 address owner = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5996:6060 _approve(owner, spender, allowance(owner, spender) + addedValue) */\n tag_109\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6005:6010 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6012:6019 spender */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6049:6059 addedValue */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6021:6046 allowance(owner, spender) */\n tag_110\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6031:6036 owner */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6038:6045 spender */\n dup10\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6021:6030 allowance */\n tag_82\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6021:6046 allowance(owner, spender) */\n jump\t// in\n tag_110:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6021:6059 allowance(owner, spender) + addedValue */\n tag_111\n swap2\n swap1\n tag_112\n jump\t// in\n tag_111:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5996:6004 _approve */\n tag_98\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5996:6060 _approve(owner, spender, allowance(owner, spender) + addedValue) */\n jump\t// in\n tag_109:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6077:6081 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6070:6081 return true */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5854:6088 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"contracts/InsuranceContract.sol\":300:393 function mint(address to, uint256 amount) public onlyOwner {... */\n tag_51:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1094:1107 _checkOwner() */\n tag_114\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1094:1105 _checkOwner */\n tag_115\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1094:1107 _checkOwner() */\n jump\t// in\n tag_114:\n /* \"contracts/InsuranceContract.sol\":369:386 _mint(to, amount) */\n tag_117\n /* \"contracts/InsuranceContract.sol\":375:377 to */\n dup3\n /* \"contracts/InsuranceContract.sol\":379:385 amount */\n dup3\n /* \"contracts/InsuranceContract.sol\":369:374 _mint */\n tag_118\n /* \"contracts/InsuranceContract.sol\":369:386 _mint(to, amount) */\n jump\t// in\n tag_117:\n /* \"contracts/InsuranceContract.sol\":300:393 function mint(address to, uint256 amount) public onlyOwner {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3419:3544 function balanceOf(address account) public view virtual override returns (uint256) {... */\n tag_55:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3493:3500 uint256 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3519:3528 _balances */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3519:3537 _balances[account] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3529:3536 account */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3519:3537 _balances[account] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3512:3537 return _balances[account] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3419:3544 function balanceOf(address account) public view virtual override returns (uint256) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1824:1925 function renounceOwnership() public virtual onlyOwner {... */\n tag_58:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1094:1107 _checkOwner() */\n tag_121\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1094:1105 _checkOwner */\n tag_115\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1094:1107 _checkOwner() */\n jump\t// in\n tag_121:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1888:1918 _transferOwnership(address(0)) */\n tag_123\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1915:1916 0 */\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1888:1906 _transferOwnership */\n tag_124\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1888:1918 _transferOwnership(address(0)) */\n jump\t// in\n tag_123:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1824:1925 function renounceOwnership() public virtual onlyOwner {... */\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1201:1286 function owner() public view virtual returns (address) {... */\n tag_60:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1247:1254 address */\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1273:1279 _owner */\n 0x05\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1266:1279 return _owner */\n swap1\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1201:1286 function owner() public view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2369:2471 function symbol() public view virtual override returns (string memory) {... */\n tag_64:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2425:2438 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2457:2464 _symbol */\n 0x04\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2450:2464 return _symbol */\n dup1\n sload\n tag_127\n swap1\n tag_89\n jump\t// in\n tag_127:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_128\n swap1\n tag_89\n jump\t// in\n tag_128:\n dup1\n iszero\n tag_129\n jumpi\n dup1\n 0x1f\n lt\n tag_130\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_129)\n tag_130:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_131:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_131\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_129:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2369:2471 function symbol() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6575:7002 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n tag_68:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6668:6672 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6684:6697 address owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6700:6712 _msgSender() */\n tag_133\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6700:6710 _msgSender */\n tag_96\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6700:6712 _msgSender() */\n jump\t// in\n tag_133:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6684:6712 address owner = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6722:6746 uint256 currentAllowance */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6749:6774 allowance(owner, spender) */\n tag_134\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6759:6764 owner */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6766:6773 spender */\n dup7\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6749:6758 allowance */\n tag_82\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6749:6774 allowance(owner, spender) */\n jump\t// in\n tag_134:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6722:6774 uint256 currentAllowance = allowance(owner, spender) */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6812:6827 subtractedValue */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6792:6808 currentAllowance */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6792:6827 currentAllowance >= subtractedValue */\n lt\n iszero\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6784:6869 require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\") */\n tag_135\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_136\n swap1\n tag_137\n jump\t// in\n tag_136:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_135:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6903:6963 _approve(owner, spender, currentAllowance - subtractedValue) */\n tag_138\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6912:6917 owner */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6919:6926 spender */\n dup7\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6947:6962 subtractedValue */\n dup7\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6928:6944 currentAllowance */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6928:6962 currentAllowance - subtractedValue */\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6903:6911 _approve */\n tag_98\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6903:6963 _approve(owner, spender, currentAllowance - subtractedValue) */\n jump\t// in\n tag_138:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6991:6995 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6984:6995 return true */\n swap3\n pop\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6575:7002 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"contracts/InsuranceContract.sol\":398:436 mapping (address => User) public users */\n tag_72:\n mstore(0x20, 0x07)\n dup1\n 0x00\n mstore\n keccak256(0x00, 0x40)\n 0x00\n swap2\n pop\n swap1\n pop\n dup1\n 0x00\n add\n dup1\n sload\n tag_139\n swap1\n tag_89\n jump\t// in\n tag_139:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_140\n swap1\n tag_89\n jump\t// in\n tag_140:\n dup1\n iszero\n tag_141\n jumpi\n dup1\n 0x1f\n lt\n tag_142\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_141)\n tag_142:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_143:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_143\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_141:\n pop\n pop\n pop\n pop\n pop\n swap1\n dup1\n 0x01\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n swap1\n dup1\n 0x02\n add\n sload\n swap1\n dup1\n 0x03\n add\n sload\n swap1\n pop\n dup5\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3740:3929 function transfer(address to, uint256 amount) public virtual override returns (bool) {... */\n tag_77:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3819:3823 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3835:3848 address owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3851:3863 _msgSender() */\n tag_145\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3851:3861 _msgSender */\n tag_96\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3851:3863 _msgSender() */\n jump\t// in\n tag_145:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3835:3863 address owner = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3873:3901 _transfer(owner, to, amount) */\n tag_146\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3883:3888 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3890:3892 to */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3894:3900 amount */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3873:3882 _transfer */\n tag_105\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3873:3901 _transfer(owner, to, amount) */\n jump\t// in\n tag_146:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3918:3922 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3911:3922 return true */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3740:3929 function transfer(address to, uint256 amount) public virtual override returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3987:4136 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n tag_82:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4076:4083 uint256 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4102:4113 _allowances */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4102:4120 _allowances[owner] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4114:4119 owner */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4102:4120 _allowances[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4102:4129 _allowances[owner][spender] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4121:4128 spender */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4102:4129 _allowances[owner][spender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4095:4129 return _allowances[owner][spender] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3987:4136 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2074:2272 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n tag_86:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1094:1107 _checkOwner() */\n tag_149\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1094:1105 _checkOwner */\n tag_115\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1094:1107 _checkOwner() */\n jump\t// in\n tag_149:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2182:2183 0 */\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2162:2184 newOwner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2162:2170 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2162:2184 newOwner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2154:2227 require(newOwner != address(0), \"Ownable: new owner is the zero address\") */\n tag_151\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_152\n swap1\n tag_153\n jump\t// in\n tag_152:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_151:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2237:2265 _transferOwnership(newOwner) */\n tag_154\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2256:2264 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2237:2255 _transferOwnership */\n tag_124\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2237:2265 _transferOwnership(newOwner) */\n jump\t// in\n tag_154:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2074:2272 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n tag_96:\n /* \"@openzeppelin/contracts/utils/Context.sol\":693:700 address */\n 0x00\n /* \"@openzeppelin/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"@openzeppelin/contracts/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10457:10797 function _approve(address owner, address spender, uint256 amount) internal virtual {... */\n tag_98:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10575:10576 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10558:10577 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10558:10563 owner */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10558:10577 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10550:10618 require(owner != address(0), \"ERC20: approve from the zero address\") */\n tag_157\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_158\n swap1\n tag_159\n jump\t// in\n tag_158:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_157:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10655:10656 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10636:10657 spender != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10636:10643 spender */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10636:10657 spender != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10628:10696 require(spender != address(0), \"ERC20: approve to the zero address\") */\n tag_160\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_161\n swap1\n tag_162\n jump\t// in\n tag_161:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_160:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10737:10743 amount */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10707:10718 _allowances */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10707:10725 _allowances[owner] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10719:10724 owner */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10707:10725 _allowances[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10707:10734 _allowances[owner][spender] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10726:10733 spender */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10707:10734 _allowances[owner][spender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10707:10743 _allowances[owner][spender] = amount */\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10774:10781 spender */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10758:10790 Approval(owner, spender, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10767:10772 owner */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10758:10790 Approval(owner, spender, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10783:10789 amount */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10758:10790 Approval(owner, spender, amount) */\n mload(0x40)\n tag_163\n swap2\n swap1\n tag_35\n jump\t// in\n tag_163:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10457:10797 function _approve(address owner, address spender, uint256 amount) internal virtual {... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11078:11489 function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {... */\n tag_103:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11178:11202 uint256 currentAllowance */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11205:11230 allowance(owner, spender) */\n tag_165\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11215:11220 owner */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11222:11229 spender */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11205:11214 allowance */\n tag_82\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11205:11230 allowance(owner, spender) */\n jump\t// in\n tag_165:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11178:11230 uint256 currentAllowance = allowance(owner, spender) */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11264:11281 type(uint256).max */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11244:11260 currentAllowance */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11244:11281 currentAllowance != type(uint256).max */\n eq\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11240:11483 if (currentAllowance != type(uint256).max) {... */\n tag_166\n jumpi\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11325:11331 amount */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11305:11321 currentAllowance */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11305:11331 currentAllowance >= amount */\n lt\n iszero\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11297:11365 require(currentAllowance >= amount, \"ERC20: insufficient allowance\") */\n tag_167\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_168\n swap1\n tag_169\n jump\t// in\n tag_168:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_167:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11407:11458 _approve(owner, spender, currentAllowance - amount) */\n tag_170\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11416:11421 owner */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11423:11430 spender */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11451:11457 amount */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11432:11448 currentAllowance */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11432:11457 currentAllowance - amount */\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11407:11415 _approve */\n tag_98\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11407:11458 _approve(owner, spender, currentAllowance - amount) */\n jump\t// in\n tag_170:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11240:11483 if (currentAllowance != type(uint256).max) {... */\n tag_166:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11168:11489 {... */\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11078:11489 function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7456:8244 function _transfer(address from, address to, uint256 amount) internal virtual {... */\n tag_105:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7568:7569 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7552:7570 from != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7552:7556 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7552:7570 from != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7544:7612 require(from != address(0), \"ERC20: transfer from the zero address\") */\n tag_172\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_173\n swap1\n tag_174\n jump\t// in\n tag_173:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_172:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7644:7645 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7630:7646 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7630:7632 to */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7630:7646 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7622:7686 require(to != address(0), \"ERC20: transfer to the zero address\") */\n tag_175\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_176\n swap1\n tag_177\n jump\t// in\n tag_176:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_175:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7697:7735 _beforeTokenTransfer(from, to, amount) */\n tag_178\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7718:7722 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7724:7726 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7728:7734 amount */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7697:7717 _beforeTokenTransfer */\n tag_179\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7697:7735 _beforeTokenTransfer(from, to, amount) */\n jump\t// in\n tag_178:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7746:7765 uint256 fromBalance */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7768:7777 _balances */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7768:7783 _balances[from] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7778:7782 from */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7768:7783 _balances[from] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7746:7783 uint256 fromBalance = _balances[from] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7816:7822 amount */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7801:7812 fromBalance */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7801:7822 fromBalance >= amount */\n lt\n iszero\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7793:7865 require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\") */\n tag_180\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_181\n swap1\n tag_182\n jump\t// in\n tag_181:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_180:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7931:7937 amount */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7917:7928 fromBalance */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7917:7937 fromBalance - amount */\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7899:7908 _balances */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7899:7914 _balances[from] */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7909:7913 from */\n dup7\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7899:7914 _balances[from] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7899:7937 _balances[from] = fromBalance - amount */\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8131:8137 amount */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8114:8123 _balances */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8114:8127 _balances[to] */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8124:8126 to */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8114:8127 _balances[to] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8114:8137 _balances[to] += amount */\n dup3\n dup3\n sload\n add\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8178:8180 to */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8163:8189 Transfer(from, to, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8172:8176 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8163:8189 Transfer(from, to, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8182:8188 amount */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8163:8189 Transfer(from, to, amount) */\n mload(0x40)\n tag_183\n swap2\n swap1\n tag_35\n jump\t// in\n tag_183:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8200:8237 _afterTokenTransfer(from, to, amount) */\n tag_184\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8220:8224 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8226:8228 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8230:8236 amount */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8200:8219 _afterTokenTransfer */\n tag_185\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8200:8237 _afterTokenTransfer(from, to, amount) */\n jump\t// in\n tag_184:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7534:8244 {... */\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7456:8244 function _transfer(address from, address to, uint256 amount) internal virtual {... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1359:1489 function _checkOwner() internal view virtual {... */\n tag_115:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1433:1445 _msgSender() */\n tag_187\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1433:1443 _msgSender */\n tag_96\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1433:1445 _msgSender() */\n jump\t// in\n tag_187:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1422:1445 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1422:1429 owner() */\n tag_188\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1422:1427 owner */\n tag_60\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1422:1429 owner() */\n jump\t// in\n tag_188:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1422:1445 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1414:1482 require(owner() == _msgSender(), \"Ownable: caller is not the owner\") */\n tag_189\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_190\n swap1\n tag_191\n jump\t// in\n tag_190:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_189:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1359:1489 function _checkOwner() internal view virtual {... */\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8520:9055 function _mint(address account, uint256 amount) internal virtual {... */\n tag_118:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8622:8623 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8603:8624 account != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8603:8610 account */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8603:8624 account != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8595:8660 require(account != address(0), \"ERC20: mint to the zero address\") */\n tag_193\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_194\n swap1\n tag_195\n jump\t// in\n tag_194:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_193:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8671:8720 _beforeTokenTransfer(address(0), account, amount) */\n tag_196\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8700:8701 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8704:8711 account */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8713:8719 amount */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8671:8691 _beforeTokenTransfer */\n tag_179\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8671:8720 _beforeTokenTransfer(address(0), account, amount) */\n jump\t// in\n tag_196:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8747:8753 amount */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8731:8743 _totalSupply */\n 0x02\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8731:8753 _totalSupply += amount */\n dup3\n dup3\n sload\n tag_197\n swap2\n swap1\n tag_112\n jump\t// in\n tag_197:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8921:8927 amount */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8899:8908 _balances */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8899:8917 _balances[account] */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8909:8916 account */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8899:8917 _balances[account] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8899:8927 _balances[account] += amount */\n dup3\n dup3\n sload\n add\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8973:8980 account */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8952:8989 Transfer(address(0), account, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8969:8970 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8952:8989 Transfer(address(0), account, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8982:8988 amount */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8952:8989 Transfer(address(0), account, amount) */\n mload(0x40)\n tag_198\n swap2\n swap1\n tag_35\n jump\t// in\n tag_198:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":9000:9048 _afterTokenTransfer(address(0), account, amount) */\n tag_199\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":9028:9029 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":9032:9039 account */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":9041:9047 amount */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":9000:9019 _afterTokenTransfer */\n tag_185\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":9000:9048 _afterTokenTransfer(address(0), account, amount) */\n jump\t// in\n tag_199:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8520:9055 function _mint(address account, uint256 amount) internal virtual {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2426:2613 function _transferOwnership(address newOwner) internal virtual {... */\n tag_124:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2499:2515 address oldOwner */\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2518:2524 _owner */\n 0x05\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2499:2524 address oldOwner = _owner */\n swap1\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2543:2551 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2534:2540 _owner */\n 0x05\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2534:2551 _owner = newOwner */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2597:2605 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2566:2606 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2587:2595 oldOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2566:2606 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2489:2613 {... */\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2426:2613 function _transferOwnership(address newOwner) internal virtual {... */\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":12073:12164 function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} */\n tag_179:\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":12752:12842 function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} */\n tag_185:\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7:106 */\n tag_203:\n /* \"#utility.yul\":59:65 */\n 0x00\n /* \"#utility.yul\":93:98 */\n dup2\n /* \"#utility.yul\":87:99 */\n mload\n /* \"#utility.yul\":77:99 */\n swap1\n pop\n /* \"#utility.yul\":7:106 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":112:281 */\n tag_204:\n /* \"#utility.yul\":196:207 */\n 0x00\n /* \"#utility.yul\":230:236 */\n dup3\n /* \"#utility.yul\":225:228 */\n dup3\n /* \"#utility.yul\":218:237 */\n mstore\n /* \"#utility.yul\":270:274 */\n 0x20\n /* \"#utility.yul\":265:268 */\n dup3\n /* \"#utility.yul\":261:275 */\n add\n /* \"#utility.yul\":246:275 */\n swap1\n pop\n /* \"#utility.yul\":112:281 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":287:533 */\n tag_205:\n /* \"#utility.yul\":368:369 */\n 0x00\n /* \"#utility.yul\":378:491 */\n tag_250:\n /* \"#utility.yul\":392:398 */\n dup4\n /* \"#utility.yul\":389:390 */\n dup2\n /* \"#utility.yul\":386:399 */\n lt\n /* \"#utility.yul\":378:491 */\n iszero\n tag_252\n jumpi\n /* \"#utility.yul\":477:478 */\n dup1\n /* \"#utility.yul\":472:475 */\n dup3\n /* \"#utility.yul\":468:479 */\n add\n /* \"#utility.yul\":462:480 */\n mload\n /* \"#utility.yul\":458:459 */\n dup2\n /* \"#utility.yul\":453:456 */\n dup5\n /* \"#utility.yul\":449:460 */\n add\n /* \"#utility.yul\":442:481 */\n mstore\n /* \"#utility.yul\":414:416 */\n 0x20\n /* \"#utility.yul\":411:412 */\n dup2\n /* \"#utility.yul\":407:417 */\n add\n /* \"#utility.yul\":402:417 */\n swap1\n pop\n /* \"#utility.yul\":378:491 */\n jump(tag_250)\n tag_252:\n /* \"#utility.yul\":525:526 */\n 0x00\n /* \"#utility.yul\":516:522 */\n dup5\n /* \"#utility.yul\":511:514 */\n dup5\n /* \"#utility.yul\":507:523 */\n add\n /* \"#utility.yul\":500:527 */\n mstore\n /* \"#utility.yul\":349:533 */\n pop\n /* \"#utility.yul\":287:533 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":539:641 */\n tag_206:\n /* \"#utility.yul\":580:586 */\n 0x00\n /* \"#utility.yul\":631:633 */\n 0x1f\n /* \"#utility.yul\":627:634 */\n not\n /* \"#utility.yul\":622:624 */\n 0x1f\n /* \"#utility.yul\":615:620 */\n dup4\n /* \"#utility.yul\":611:625 */\n add\n /* \"#utility.yul\":607:635 */\n and\n /* \"#utility.yul\":597:635 */\n swap1\n pop\n /* \"#utility.yul\":539:641 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":647:1024 */\n tag_207:\n /* \"#utility.yul\":735:738 */\n 0x00\n /* \"#utility.yul\":763:802 */\n tag_255\n /* \"#utility.yul\":796:801 */\n dup3\n /* \"#utility.yul\":763:802 */\n tag_203\n jump\t// in\n tag_255:\n /* \"#utility.yul\":818:889 */\n tag_256\n /* \"#utility.yul\":882:888 */\n dup2\n /* \"#utility.yul\":877:880 */\n dup6\n /* \"#utility.yul\":818:889 */\n tag_204\n jump\t// in\n tag_256:\n /* \"#utility.yul\":811:889 */\n swap4\n pop\n /* \"#utility.yul\":898:963 */\n tag_257\n /* \"#utility.yul\":956:962 */\n dup2\n /* \"#utility.yul\":951:954 */\n dup6\n /* \"#utility.yul\":944:948 */\n 0x20\n /* \"#utility.yul\":937:942 */\n dup7\n /* \"#utility.yul\":933:949 */\n add\n /* \"#utility.yul\":898:963 */\n tag_205\n jump\t// in\n tag_257:\n /* \"#utility.yul\":988:1017 */\n tag_258\n /* \"#utility.yul\":1010:1016 */\n dup2\n /* \"#utility.yul\":988:1017 */\n tag_206\n jump\t// in\n tag_258:\n /* \"#utility.yul\":983:986 */\n dup5\n /* \"#utility.yul\":979:1018 */\n add\n /* \"#utility.yul\":972:1018 */\n swap2\n pop\n /* \"#utility.yul\":739:1024 */\n pop\n /* \"#utility.yul\":647:1024 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1030:1343 */\n tag_25:\n /* \"#utility.yul\":1143:1147 */\n 0x00\n /* \"#utility.yul\":1181:1183 */\n 0x20\n /* \"#utility.yul\":1170:1179 */\n dup3\n /* \"#utility.yul\":1166:1184 */\n add\n /* \"#utility.yul\":1158:1184 */\n swap1\n pop\n /* \"#utility.yul\":1230:1239 */\n dup2\n /* \"#utility.yul\":1224:1228 */\n dup2\n /* \"#utility.yul\":1220:1240 */\n sub\n /* \"#utility.yul\":1216:1217 */\n 0x00\n /* \"#utility.yul\":1205:1214 */\n dup4\n /* \"#utility.yul\":1201:1218 */\n add\n /* \"#utility.yul\":1194:1241 */\n mstore\n /* \"#utility.yul\":1258:1336 */\n tag_260\n /* \"#utility.yul\":1331:1335 */\n dup2\n /* \"#utility.yul\":1322:1328 */\n dup5\n /* \"#utility.yul\":1258:1336 */\n tag_207\n jump\t// in\n tag_260:\n /* \"#utility.yul\":1250:1336 */\n swap1\n pop\n /* \"#utility.yul\":1030:1343 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1430:1547 */\n tag_209:\n /* \"#utility.yul\":1539:1540 */\n 0x00\n /* \"#utility.yul\":1536:1537 */\n dup1\n /* \"#utility.yul\":1529:1541 */\n revert\n /* \"#utility.yul\":1676:1802 */\n tag_211:\n /* \"#utility.yul\":1713:1720 */\n 0x00\n /* \"#utility.yul\":1753:1795 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":1746:1751 */\n dup3\n /* \"#utility.yul\":1742:1796 */\n and\n /* \"#utility.yul\":1731:1796 */\n swap1\n pop\n /* \"#utility.yul\":1676:1802 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1808:1904 */\n tag_212:\n /* \"#utility.yul\":1845:1852 */\n 0x00\n /* \"#utility.yul\":1874:1898 */\n tag_266\n /* \"#utility.yul\":1892:1897 */\n dup3\n /* \"#utility.yul\":1874:1898 */\n tag_211\n jump\t// in\n tag_266:\n /* \"#utility.yul\":1863:1898 */\n swap1\n pop\n /* \"#utility.yul\":1808:1904 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1910:2032 */\n tag_213:\n /* \"#utility.yul\":1983:2007 */\n tag_268\n /* \"#utility.yul\":2001:2006 */\n dup2\n /* \"#utility.yul\":1983:2007 */\n tag_212\n jump\t// in\n tag_268:\n /* \"#utility.yul\":1976:1981 */\n dup2\n /* \"#utility.yul\":1973:2008 */\n eq\n /* \"#utility.yul\":1963:2026 */\n tag_269\n jumpi\n /* \"#utility.yul\":2022:2023 */\n 0x00\n /* \"#utility.yul\":2019:2020 */\n dup1\n /* \"#utility.yul\":2012:2024 */\n revert\n /* \"#utility.yul\":1963:2026 */\n tag_269:\n /* \"#utility.yul\":1910:2032 */\n pop\n jump\t// out\n /* \"#utility.yul\":2038:2177 */\n tag_214:\n /* \"#utility.yul\":2084:2089 */\n 0x00\n /* \"#utility.yul\":2122:2128 */\n dup2\n /* \"#utility.yul\":2109:2129 */\n calldataload\n /* \"#utility.yul\":2100:2129 */\n swap1\n pop\n /* \"#utility.yul\":2138:2171 */\n tag_271\n /* \"#utility.yul\":2165:2170 */\n dup2\n /* \"#utility.yul\":2138:2171 */\n tag_213\n jump\t// in\n tag_271:\n /* \"#utility.yul\":2038:2177 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2183:2260 */\n tag_215:\n /* \"#utility.yul\":2220:2227 */\n 0x00\n /* \"#utility.yul\":2249:2254 */\n dup2\n /* \"#utility.yul\":2238:2254 */\n swap1\n pop\n /* \"#utility.yul\":2183:2260 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2266:2388 */\n tag_216:\n /* \"#utility.yul\":2339:2363 */\n tag_274\n /* \"#utility.yul\":2357:2362 */\n dup2\n /* \"#utility.yul\":2339:2363 */\n tag_215\n jump\t// in\n tag_274:\n /* \"#utility.yul\":2332:2337 */\n dup2\n /* \"#utility.yul\":2329:2364 */\n eq\n /* \"#utility.yul\":2319:2382 */\n tag_275\n jumpi\n /* \"#utility.yul\":2378:2379 */\n 0x00\n /* \"#utility.yul\":2375:2376 */\n dup1\n /* \"#utility.yul\":2368:2380 */\n revert\n /* \"#utility.yul\":2319:2382 */\n tag_275:\n /* \"#utility.yul\":2266:2388 */\n pop\n jump\t// out\n /* \"#utility.yul\":2394:2533 */\n tag_217:\n /* \"#utility.yul\":2440:2445 */\n 0x00\n /* \"#utility.yul\":2478:2484 */\n dup2\n /* \"#utility.yul\":2465:2485 */\n calldataload\n /* \"#utility.yul\":2456:2485 */\n swap1\n pop\n /* \"#utility.yul\":2494:2527 */\n tag_277\n /* \"#utility.yul\":2521:2526 */\n dup2\n /* \"#utility.yul\":2494:2527 */\n tag_216\n jump\t// in\n tag_277:\n /* \"#utility.yul\":2394:2533 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2539:3013 */\n tag_28:\n /* \"#utility.yul\":2607:2613 */\n 0x00\n /* \"#utility.yul\":2615:2621 */\n dup1\n /* \"#utility.yul\":2664:2666 */\n 0x40\n /* \"#utility.yul\":2652:2661 */\n dup4\n /* \"#utility.yul\":2643:2650 */\n dup6\n /* \"#utility.yul\":2639:2662 */\n sub\n /* \"#utility.yul\":2635:2667 */\n slt\n /* \"#utility.yul\":2632:2751 */\n iszero\n tag_279\n jumpi\n /* \"#utility.yul\":2670:2749 */\n tag_280\n tag_209\n jump\t// in\n tag_280:\n /* \"#utility.yul\":2632:2751 */\n tag_279:\n /* \"#utility.yul\":2790:2791 */\n 0x00\n /* \"#utility.yul\":2815:2868 */\n tag_281\n /* \"#utility.yul\":2860:2867 */\n dup6\n /* \"#utility.yul\":2851:2857 */\n dup3\n /* \"#utility.yul\":2840:2849 */\n dup7\n /* \"#utility.yul\":2836:2858 */\n add\n /* \"#utility.yul\":2815:2868 */\n tag_214\n jump\t// in\n tag_281:\n /* \"#utility.yul\":2805:2868 */\n swap3\n pop\n /* \"#utility.yul\":2761:2878 */\n pop\n /* \"#utility.yul\":2917:2919 */\n 0x20\n /* \"#utility.yul\":2943:2996 */\n tag_282\n /* \"#utility.yul\":2988:2995 */\n dup6\n /* \"#utility.yul\":2979:2985 */\n dup3\n /* \"#utility.yul\":2968:2977 */\n dup7\n /* \"#utility.yul\":2964:2986 */\n add\n /* \"#utility.yul\":2943:2996 */\n tag_217\n jump\t// in\n tag_282:\n /* \"#utility.yul\":2933:2996 */\n swap2\n pop\n /* \"#utility.yul\":2888:3006 */\n pop\n /* \"#utility.yul\":2539:3013 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3019:3109 */\n tag_218:\n /* \"#utility.yul\":3053:3060 */\n 0x00\n /* \"#utility.yul\":3096:3101 */\n dup2\n /* \"#utility.yul\":3089:3102 */\n iszero\n /* \"#utility.yul\":3082:3103 */\n iszero\n /* \"#utility.yul\":3071:3103 */\n swap1\n pop\n /* \"#utility.yul\":3019:3109 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3115:3224 */\n tag_219:\n /* \"#utility.yul\":3196:3217 */\n tag_285\n /* \"#utility.yul\":3211:3216 */\n dup2\n /* \"#utility.yul\":3196:3217 */\n tag_218\n jump\t// in\n tag_285:\n /* \"#utility.yul\":3191:3194 */\n dup3\n /* \"#utility.yul\":3184:3218 */\n mstore\n /* \"#utility.yul\":3115:3224 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3230:3440 */\n tag_31:\n /* \"#utility.yul\":3317:3321 */\n 0x00\n /* \"#utility.yul\":3355:3357 */\n 0x20\n /* \"#utility.yul\":3344:3353 */\n dup3\n /* \"#utility.yul\":3340:3358 */\n add\n /* \"#utility.yul\":3332:3358 */\n swap1\n pop\n /* \"#utility.yul\":3368:3433 */\n tag_287\n /* \"#utility.yul\":3430:3431 */\n 0x00\n /* \"#utility.yul\":3419:3428 */\n dup4\n /* \"#utility.yul\":3415:3432 */\n add\n /* \"#utility.yul\":3406:3412 */\n dup5\n /* \"#utility.yul\":3368:3433 */\n tag_219\n jump\t// in\n tag_287:\n /* \"#utility.yul\":3230:3440 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3446:3564 */\n tag_220:\n /* \"#utility.yul\":3533:3557 */\n tag_289\n /* \"#utility.yul\":3551:3556 */\n dup2\n /* \"#utility.yul\":3533:3557 */\n tag_215\n jump\t// in\n tag_289:\n /* \"#utility.yul\":3528:3531 */\n dup3\n /* \"#utility.yul\":3521:3558 */\n mstore\n /* \"#utility.yul\":3446:3564 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3570:3792 */\n tag_35:\n /* \"#utility.yul\":3663:3667 */\n 0x00\n /* \"#utility.yul\":3701:3703 */\n 0x20\n /* \"#utility.yul\":3690:3699 */\n dup3\n /* \"#utility.yul\":3686:3704 */\n add\n /* \"#utility.yul\":3678:3704 */\n swap1\n pop\n /* \"#utility.yul\":3714:3785 */\n tag_291\n /* \"#utility.yul\":3782:3783 */\n 0x00\n /* \"#utility.yul\":3771:3780 */\n dup4\n /* \"#utility.yul\":3767:3784 */\n add\n /* \"#utility.yul\":3758:3764 */\n dup5\n /* \"#utility.yul\":3714:3785 */\n tag_220\n jump\t// in\n tag_291:\n /* \"#utility.yul\":3570:3792 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3798:4417 */\n tag_38:\n /* \"#utility.yul\":3875:3881 */\n 0x00\n /* \"#utility.yul\":3883:3889 */\n dup1\n /* \"#utility.yul\":3891:3897 */\n 0x00\n /* \"#utility.yul\":3940:3942 */\n 0x60\n /* \"#utility.yul\":3928:3937 */\n dup5\n /* \"#utility.yul\":3919:3926 */\n dup7\n /* \"#utility.yul\":3915:3938 */\n sub\n /* \"#utility.yul\":3911:3943 */\n slt\n /* \"#utility.yul\":3908:4027 */\n iszero\n tag_293\n jumpi\n /* \"#utility.yul\":3946:4025 */\n tag_294\n tag_209\n jump\t// in\n tag_294:\n /* \"#utility.yul\":3908:4027 */\n tag_293:\n /* \"#utility.yul\":4066:4067 */\n 0x00\n /* \"#utility.yul\":4091:4144 */\n tag_295\n /* \"#utility.yul\":4136:4143 */\n dup7\n /* \"#utility.yul\":4127:4133 */\n dup3\n /* \"#utility.yul\":4116:4125 */\n dup8\n /* \"#utility.yul\":4112:4134 */\n add\n /* \"#utility.yul\":4091:4144 */\n tag_214\n jump\t// in\n tag_295:\n /* \"#utility.yul\":4081:4144 */\n swap4\n pop\n /* \"#utility.yul\":4037:4154 */\n pop\n /* \"#utility.yul\":4193:4195 */\n 0x20\n /* \"#utility.yul\":4219:4272 */\n tag_296\n /* \"#utility.yul\":4264:4271 */\n dup7\n /* \"#utility.yul\":4255:4261 */\n dup3\n /* \"#utility.yul\":4244:4253 */\n dup8\n /* \"#utility.yul\":4240:4262 */\n add\n /* \"#utility.yul\":4219:4272 */\n tag_214\n jump\t// in\n tag_296:\n /* \"#utility.yul\":4209:4272 */\n swap3\n pop\n /* \"#utility.yul\":4164:4282 */\n pop\n /* \"#utility.yul\":4321:4323 */\n 0x40\n /* \"#utility.yul\":4347:4400 */\n tag_297\n /* \"#utility.yul\":4392:4399 */\n dup7\n /* \"#utility.yul\":4383:4389 */\n dup3\n /* \"#utility.yul\":4372:4381 */\n dup8\n /* \"#utility.yul\":4368:4390 */\n add\n /* \"#utility.yul\":4347:4400 */\n tag_217\n jump\t// in\n tag_297:\n /* \"#utility.yul\":4337:4400 */\n swap2\n pop\n /* \"#utility.yul\":4292:4410 */\n pop\n /* \"#utility.yul\":3798:4417 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":4423:4509 */\n tag_221:\n /* \"#utility.yul\":4458:4465 */\n 0x00\n /* \"#utility.yul\":4498:4502 */\n 0xff\n /* \"#utility.yul\":4491:4496 */\n dup3\n /* \"#utility.yul\":4487:4503 */\n and\n /* \"#utility.yul\":4476:4503 */\n swap1\n pop\n /* \"#utility.yul\":4423:4509 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4515:4627 */\n tag_222:\n /* \"#utility.yul\":4598:4620 */\n tag_300\n /* \"#utility.yul\":4614:4619 */\n dup2\n /* \"#utility.yul\":4598:4620 */\n tag_221\n jump\t// in\n tag_300:\n /* \"#utility.yul\":4593:4596 */\n dup3\n /* \"#utility.yul\":4586:4621 */\n mstore\n /* \"#utility.yul\":4515:4627 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4633:4847 */\n tag_44:\n /* \"#utility.yul\":4722:4726 */\n 0x00\n /* \"#utility.yul\":4760:4762 */\n 0x20\n /* \"#utility.yul\":4749:4758 */\n dup3\n /* \"#utility.yul\":4745:4763 */\n add\n /* \"#utility.yul\":4737:4763 */\n swap1\n pop\n /* \"#utility.yul\":4773:4840 */\n tag_302\n /* \"#utility.yul\":4837:4838 */\n 0x00\n /* \"#utility.yul\":4826:4835 */\n dup4\n /* \"#utility.yul\":4822:4839 */\n add\n /* \"#utility.yul\":4813:4819 */\n dup5\n /* \"#utility.yul\":4773:4840 */\n tag_222\n jump\t// in\n tag_302:\n /* \"#utility.yul\":4633:4847 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4853:5182 */\n tag_54:\n /* \"#utility.yul\":4912:4918 */\n 0x00\n /* \"#utility.yul\":4961:4963 */\n 0x20\n /* \"#utility.yul\":4949:4958 */\n dup3\n /* \"#utility.yul\":4940:4947 */\n dup5\n /* \"#utility.yul\":4936:4959 */\n sub\n /* \"#utility.yul\":4932:4964 */\n slt\n /* \"#utility.yul\":4929:5048 */\n iszero\n tag_304\n jumpi\n /* \"#utility.yul\":4967:5046 */\n tag_305\n tag_209\n jump\t// in\n tag_305:\n /* \"#utility.yul\":4929:5048 */\n tag_304:\n /* \"#utility.yul\":5087:5088 */\n 0x00\n /* \"#utility.yul\":5112:5165 */\n tag_306\n /* \"#utility.yul\":5157:5164 */\n dup5\n /* \"#utility.yul\":5148:5154 */\n dup3\n /* \"#utility.yul\":5137:5146 */\n dup6\n /* \"#utility.yul\":5133:5155 */\n add\n /* \"#utility.yul\":5112:5165 */\n tag_214\n jump\t// in\n tag_306:\n /* \"#utility.yul\":5102:5165 */\n swap2\n pop\n /* \"#utility.yul\":5058:5175 */\n pop\n /* \"#utility.yul\":4853:5182 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5188:5306 */\n tag_223:\n /* \"#utility.yul\":5275:5299 */\n tag_308\n /* \"#utility.yul\":5293:5298 */\n dup2\n /* \"#utility.yul\":5275:5299 */\n tag_212\n jump\t// in\n tag_308:\n /* \"#utility.yul\":5270:5273 */\n dup3\n /* \"#utility.yul\":5263:5300 */\n mstore\n /* \"#utility.yul\":5188:5306 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5312:5534 */\n tag_62:\n /* \"#utility.yul\":5405:5409 */\n 0x00\n /* \"#utility.yul\":5443:5445 */\n 0x20\n /* \"#utility.yul\":5432:5441 */\n dup3\n /* \"#utility.yul\":5428:5446 */\n add\n /* \"#utility.yul\":5420:5446 */\n swap1\n pop\n /* \"#utility.yul\":5456:5527 */\n tag_310\n /* \"#utility.yul\":5524:5525 */\n 0x00\n /* \"#utility.yul\":5513:5522 */\n dup4\n /* \"#utility.yul\":5509:5526 */\n add\n /* \"#utility.yul\":5500:5506 */\n dup5\n /* \"#utility.yul\":5456:5527 */\n tag_223\n jump\t// in\n tag_310:\n /* \"#utility.yul\":5312:5534 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5540:6184 */\n tag_74:\n /* \"#utility.yul\":5737:5741 */\n 0x00\n /* \"#utility.yul\":5775:5778 */\n 0x80\n /* \"#utility.yul\":5764:5773 */\n dup3\n /* \"#utility.yul\":5760:5779 */\n add\n /* \"#utility.yul\":5752:5779 */\n swap1\n pop\n /* \"#utility.yul\":5825:5834 */\n dup2\n /* \"#utility.yul\":5819:5823 */\n dup2\n /* \"#utility.yul\":5815:5835 */\n sub\n /* \"#utility.yul\":5811:5812 */\n 0x00\n /* \"#utility.yul\":5800:5809 */\n dup4\n /* \"#utility.yul\":5796:5813 */\n add\n /* \"#utility.yul\":5789:5836 */\n mstore\n /* \"#utility.yul\":5853:5931 */\n tag_312\n /* \"#utility.yul\":5926:5930 */\n dup2\n /* \"#utility.yul\":5917:5923 */\n dup8\n /* \"#utility.yul\":5853:5931 */\n tag_207\n jump\t// in\n tag_312:\n /* \"#utility.yul\":5845:5931 */\n swap1\n pop\n /* \"#utility.yul\":5941:6013 */\n tag_313\n /* \"#utility.yul\":6009:6011 */\n 0x20\n /* \"#utility.yul\":5998:6007 */\n dup4\n /* \"#utility.yul\":5994:6012 */\n add\n /* \"#utility.yul\":5985:5991 */\n dup7\n /* \"#utility.yul\":5941:6013 */\n tag_223\n jump\t// in\n tag_313:\n /* \"#utility.yul\":6023:6095 */\n tag_314\n /* \"#utility.yul\":6091:6093 */\n 0x40\n /* \"#utility.yul\":6080:6089 */\n dup4\n /* \"#utility.yul\":6076:6094 */\n add\n /* \"#utility.yul\":6067:6073 */\n dup6\n /* \"#utility.yul\":6023:6095 */\n tag_220\n jump\t// in\n tag_314:\n /* \"#utility.yul\":6105:6177 */\n tag_315\n /* \"#utility.yul\":6173:6175 */\n 0x60\n /* \"#utility.yul\":6162:6171 */\n dup4\n /* \"#utility.yul\":6158:6176 */\n add\n /* \"#utility.yul\":6149:6155 */\n dup5\n /* \"#utility.yul\":6105:6177 */\n tag_220\n jump\t// in\n tag_315:\n /* \"#utility.yul\":5540:6184 */\n swap6\n swap5\n pop\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6190:6664 */\n tag_81:\n /* \"#utility.yul\":6258:6264 */\n 0x00\n /* \"#utility.yul\":6266:6272 */\n dup1\n /* \"#utility.yul\":6315:6317 */\n 0x40\n /* \"#utility.yul\":6303:6312 */\n dup4\n /* \"#utility.yul\":6294:6301 */\n dup6\n /* \"#utility.yul\":6290:6313 */\n sub\n /* \"#utility.yul\":6286:6318 */\n slt\n /* \"#utility.yul\":6283:6402 */\n iszero\n tag_317\n jumpi\n /* \"#utility.yul\":6321:6400 */\n tag_318\n tag_209\n jump\t// in\n tag_318:\n /* \"#utility.yul\":6283:6402 */\n tag_317:\n /* \"#utility.yul\":6441:6442 */\n 0x00\n /* \"#utility.yul\":6466:6519 */\n tag_319\n /* \"#utility.yul\":6511:6518 */\n dup6\n /* \"#utility.yul\":6502:6508 */\n dup3\n /* \"#utility.yul\":6491:6500 */\n dup7\n /* \"#utility.yul\":6487:6509 */\n add\n /* \"#utility.yul\":6466:6519 */\n tag_214\n jump\t// in\n tag_319:\n /* \"#utility.yul\":6456:6519 */\n swap3\n pop\n /* \"#utility.yul\":6412:6529 */\n pop\n /* \"#utility.yul\":6568:6570 */\n 0x20\n /* \"#utility.yul\":6594:6647 */\n tag_320\n /* \"#utility.yul\":6639:6646 */\n dup6\n /* \"#utility.yul\":6630:6636 */\n dup3\n /* \"#utility.yul\":6619:6628 */\n dup7\n /* \"#utility.yul\":6615:6637 */\n add\n /* \"#utility.yul\":6594:6647 */\n tag_214\n jump\t// in\n tag_320:\n /* \"#utility.yul\":6584:6647 */\n swap2\n pop\n /* \"#utility.yul\":6539:6657 */\n pop\n /* \"#utility.yul\":6190:6664 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6670:6850 */\n tag_224:\n /* \"#utility.yul\":6718:6795 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6715:6716 */\n 0x00\n /* \"#utility.yul\":6708:6796 */\n mstore\n /* \"#utility.yul\":6815:6819 */\n 0x22\n /* \"#utility.yul\":6812:6813 */\n 0x04\n /* \"#utility.yul\":6805:6820 */\n mstore\n /* \"#utility.yul\":6839:6843 */\n 0x24\n /* \"#utility.yul\":6836:6837 */\n 0x00\n /* \"#utility.yul\":6829:6844 */\n revert\n /* \"#utility.yul\":6856:7176 */\n tag_89:\n /* \"#utility.yul\":6900:6906 */\n 0x00\n /* \"#utility.yul\":6937:6938 */\n 0x02\n /* \"#utility.yul\":6931:6935 */\n dup3\n /* \"#utility.yul\":6927:6939 */\n div\n /* \"#utility.yul\":6917:6939 */\n swap1\n pop\n /* \"#utility.yul\":6984:6985 */\n 0x01\n /* \"#utility.yul\":6978:6982 */\n dup3\n /* \"#utility.yul\":6974:6986 */\n and\n /* \"#utility.yul\":7005:7023 */\n dup1\n /* \"#utility.yul\":6995:7076 */\n tag_323\n jumpi\n /* \"#utility.yul\":7061:7065 */\n 0x7f\n /* \"#utility.yul\":7053:7059 */\n dup3\n /* \"#utility.yul\":7049:7066 */\n and\n /* \"#utility.yul\":7039:7066 */\n swap2\n pop\n /* \"#utility.yul\":6995:7076 */\n tag_323:\n /* \"#utility.yul\":7123:7125 */\n 0x20\n /* \"#utility.yul\":7115:7121 */\n dup3\n /* \"#utility.yul\":7112:7126 */\n lt\n /* \"#utility.yul\":7092:7110 */\n dup2\n /* \"#utility.yul\":7089:7127 */\n sub\n /* \"#utility.yul\":7086:7170 */\n tag_324\n jumpi\n /* \"#utility.yul\":7142:7160 */\n tag_325\n tag_224\n jump\t// in\n tag_325:\n /* \"#utility.yul\":7086:7170 */\n tag_324:\n /* \"#utility.yul\":6907:7176 */\n pop\n /* \"#utility.yul\":6856:7176 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7182:7362 */\n tag_225:\n /* \"#utility.yul\":7230:7307 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":7227:7228 */\n 0x00\n /* \"#utility.yul\":7220:7308 */\n mstore\n /* \"#utility.yul\":7327:7331 */\n 0x11\n /* \"#utility.yul\":7324:7325 */\n 0x04\n /* \"#utility.yul\":7317:7332 */\n mstore\n /* \"#utility.yul\":7351:7355 */\n 0x24\n /* \"#utility.yul\":7348:7349 */\n 0x00\n /* \"#utility.yul\":7341:7356 */\n revert\n /* \"#utility.yul\":7368:7559 */\n tag_112:\n /* \"#utility.yul\":7408:7411 */\n 0x00\n /* \"#utility.yul\":7427:7447 */\n tag_328\n /* \"#utility.yul\":7445:7446 */\n dup3\n /* \"#utility.yul\":7427:7447 */\n tag_215\n jump\t// in\n tag_328:\n /* \"#utility.yul\":7422:7447 */\n swap2\n pop\n /* \"#utility.yul\":7461:7481 */\n tag_329\n /* \"#utility.yul\":7479:7480 */\n dup4\n /* \"#utility.yul\":7461:7481 */\n tag_215\n jump\t// in\n tag_329:\n /* \"#utility.yul\":7456:7481 */\n swap3\n pop\n /* \"#utility.yul\":7504:7505 */\n dup3\n /* \"#utility.yul\":7501:7502 */\n dup3\n /* \"#utility.yul\":7497:7506 */\n add\n /* \"#utility.yul\":7490:7506 */\n swap1\n pop\n /* \"#utility.yul\":7525:7528 */\n dup1\n /* \"#utility.yul\":7522:7523 */\n dup3\n /* \"#utility.yul\":7519:7529 */\n gt\n /* \"#utility.yul\":7516:7552 */\n iszero\n tag_330\n jumpi\n /* \"#utility.yul\":7532:7550 */\n tag_331\n tag_225\n jump\t// in\n tag_331:\n /* \"#utility.yul\":7516:7552 */\n tag_330:\n /* \"#utility.yul\":7368:7559 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7565:7789 */\n tag_226:\n /* \"#utility.yul\":7705:7739 */\n 0x45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77\n /* \"#utility.yul\":7701:7702 */\n 0x00\n /* \"#utility.yul\":7693:7699 */\n dup3\n /* \"#utility.yul\":7689:7703 */\n add\n /* \"#utility.yul\":7682:7740 */\n mstore\n /* \"#utility.yul\":7774:7781 */\n 0x207a65726f000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":7769:7771 */\n 0x20\n /* \"#utility.yul\":7761:7767 */\n dup3\n /* \"#utility.yul\":7757:7772 */\n add\n /* \"#utility.yul\":7750:7782 */\n mstore\n /* \"#utility.yul\":7565:7789 */\n pop\n jump\t// out\n /* \"#utility.yul\":7795:8161 */\n tag_227:\n /* \"#utility.yul\":7937:7940 */\n 0x00\n /* \"#utility.yul\":7958:8025 */\n tag_334\n /* \"#utility.yul\":8022:8024 */\n 0x25\n /* \"#utility.yul\":8017:8020 */\n dup4\n /* \"#utility.yul\":7958:8025 */\n tag_204\n jump\t// in\n tag_334:\n /* \"#utility.yul\":7951:8025 */\n swap2\n pop\n /* \"#utility.yul\":8034:8127 */\n tag_335\n /* \"#utility.yul\":8123:8126 */\n dup3\n /* \"#utility.yul\":8034:8127 */\n tag_226\n jump\t// in\n tag_335:\n /* \"#utility.yul\":8152:8154 */\n 0x40\n /* \"#utility.yul\":8147:8150 */\n dup3\n /* \"#utility.yul\":8143:8155 */\n add\n /* \"#utility.yul\":8136:8155 */\n swap1\n pop\n /* \"#utility.yul\":7795:8161 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8167:8586 */\n tag_137:\n /* \"#utility.yul\":8333:8337 */\n 0x00\n /* \"#utility.yul\":8371:8373 */\n 0x20\n /* \"#utility.yul\":8360:8369 */\n dup3\n /* \"#utility.yul\":8356:8374 */\n add\n /* \"#utility.yul\":8348:8374 */\n swap1\n pop\n /* \"#utility.yul\":8420:8429 */\n dup2\n /* \"#utility.yul\":8414:8418 */\n dup2\n /* \"#utility.yul\":8410:8430 */\n sub\n /* \"#utility.yul\":8406:8407 */\n 0x00\n /* \"#utility.yul\":8395:8404 */\n dup4\n /* \"#utility.yul\":8391:8408 */\n add\n /* \"#utility.yul\":8384:8431 */\n mstore\n /* \"#utility.yul\":8448:8579 */\n tag_337\n /* \"#utility.yul\":8574:8578 */\n dup2\n /* \"#utility.yul\":8448:8579 */\n tag_227\n jump\t// in\n tag_337:\n /* \"#utility.yul\":8440:8579 */\n swap1\n pop\n /* \"#utility.yul\":8167:8586 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8592:8817 */\n tag_228:\n /* \"#utility.yul\":8732:8766 */\n 0x4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061\n /* \"#utility.yul\":8728:8729 */\n 0x00\n /* \"#utility.yul\":8720:8726 */\n dup3\n /* \"#utility.yul\":8716:8730 */\n add\n /* \"#utility.yul\":8709:8767 */\n mstore\n /* \"#utility.yul\":8801:8809 */\n 0x6464726573730000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":8796:8798 */\n 0x20\n /* \"#utility.yul\":8788:8794 */\n dup3\n /* \"#utility.yul\":8784:8799 */\n add\n /* \"#utility.yul\":8777:8810 */\n mstore\n /* \"#utility.yul\":8592:8817 */\n pop\n jump\t// out\n /* \"#utility.yul\":8823:9189 */\n tag_229:\n /* \"#utility.yul\":8965:8968 */\n 0x00\n /* \"#utility.yul\":8986:9053 */\n tag_340\n /* \"#utility.yul\":9050:9052 */\n 0x26\n /* \"#utility.yul\":9045:9048 */\n dup4\n /* \"#utility.yul\":8986:9053 */\n tag_204\n jump\t// in\n tag_340:\n /* \"#utility.yul\":8979:9053 */\n swap2\n pop\n /* \"#utility.yul\":9062:9155 */\n tag_341\n /* \"#utility.yul\":9151:9154 */\n dup3\n /* \"#utility.yul\":9062:9155 */\n tag_228\n jump\t// in\n tag_341:\n /* \"#utility.yul\":9180:9182 */\n 0x40\n /* \"#utility.yul\":9175:9178 */\n dup3\n /* \"#utility.yul\":9171:9183 */\n add\n /* \"#utility.yul\":9164:9183 */\n swap1\n pop\n /* \"#utility.yul\":8823:9189 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9195:9614 */\n tag_153:\n /* \"#utility.yul\":9361:9365 */\n 0x00\n /* \"#utility.yul\":9399:9401 */\n 0x20\n /* \"#utility.yul\":9388:9397 */\n dup3\n /* \"#utility.yul\":9384:9402 */\n add\n /* \"#utility.yul\":9376:9402 */\n swap1\n pop\n /* \"#utility.yul\":9448:9457 */\n dup2\n /* \"#utility.yul\":9442:9446 */\n dup2\n /* \"#utility.yul\":9438:9458 */\n sub\n /* \"#utility.yul\":9434:9435 */\n 0x00\n /* \"#utility.yul\":9423:9432 */\n dup4\n /* \"#utility.yul\":9419:9436 */\n add\n /* \"#utility.yul\":9412:9459 */\n mstore\n /* \"#utility.yul\":9476:9607 */\n tag_343\n /* \"#utility.yul\":9602:9606 */\n dup2\n /* \"#utility.yul\":9476:9607 */\n tag_229\n jump\t// in\n tag_343:\n /* \"#utility.yul\":9468:9607 */\n swap1\n pop\n /* \"#utility.yul\":9195:9614 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9620:9843 */\n tag_230:\n /* \"#utility.yul\":9760:9794 */\n 0x45524332303a20617070726f76652066726f6d20746865207a65726f20616464\n /* \"#utility.yul\":9756:9757 */\n 0x00\n /* \"#utility.yul\":9748:9754 */\n dup3\n /* \"#utility.yul\":9744:9758 */\n add\n /* \"#utility.yul\":9737:9795 */\n mstore\n /* \"#utility.yul\":9829:9835 */\n 0x7265737300000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":9824:9826 */\n 0x20\n /* \"#utility.yul\":9816:9822 */\n dup3\n /* \"#utility.yul\":9812:9827 */\n add\n /* \"#utility.yul\":9805:9836 */\n mstore\n /* \"#utility.yul\":9620:9843 */\n pop\n jump\t// out\n /* \"#utility.yul\":9849:10215 */\n tag_231:\n /* \"#utility.yul\":9991:9994 */\n 0x00\n /* \"#utility.yul\":10012:10079 */\n tag_346\n /* \"#utility.yul\":10076:10078 */\n 0x24\n /* \"#utility.yul\":10071:10074 */\n dup4\n /* \"#utility.yul\":10012:10079 */\n tag_204\n jump\t// in\n tag_346:\n /* \"#utility.yul\":10005:10079 */\n swap2\n pop\n /* \"#utility.yul\":10088:10181 */\n tag_347\n /* \"#utility.yul\":10177:10180 */\n dup3\n /* \"#utility.yul\":10088:10181 */\n tag_230\n jump\t// in\n tag_347:\n /* \"#utility.yul\":10206:10208 */\n 0x40\n /* \"#utility.yul\":10201:10204 */\n dup3\n /* \"#utility.yul\":10197:10209 */\n add\n /* \"#utility.yul\":10190:10209 */\n swap1\n pop\n /* \"#utility.yul\":9849:10215 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10221:10640 */\n tag_159:\n /* \"#utility.yul\":10387:10391 */\n 0x00\n /* \"#utility.yul\":10425:10427 */\n 0x20\n /* \"#utility.yul\":10414:10423 */\n dup3\n /* \"#utility.yul\":10410:10428 */\n add\n /* \"#utility.yul\":10402:10428 */\n swap1\n pop\n /* \"#utility.yul\":10474:10483 */\n dup2\n /* \"#utility.yul\":10468:10472 */\n dup2\n /* \"#utility.yul\":10464:10484 */\n sub\n /* \"#utility.yul\":10460:10461 */\n 0x00\n /* \"#utility.yul\":10449:10458 */\n dup4\n /* \"#utility.yul\":10445:10462 */\n add\n /* \"#utility.yul\":10438:10485 */\n mstore\n /* \"#utility.yul\":10502:10633 */\n tag_349\n /* \"#utility.yul\":10628:10632 */\n dup2\n /* \"#utility.yul\":10502:10633 */\n tag_231\n jump\t// in\n tag_349:\n /* \"#utility.yul\":10494:10633 */\n swap1\n pop\n /* \"#utility.yul\":10221:10640 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10646:10867 */\n tag_232:\n /* \"#utility.yul\":10786:10820 */\n 0x45524332303a20617070726f766520746f20746865207a65726f206164647265\n /* \"#utility.yul\":10782:10783 */\n 0x00\n /* \"#utility.yul\":10774:10780 */\n dup3\n /* \"#utility.yul\":10770:10784 */\n add\n /* \"#utility.yul\":10763:10821 */\n mstore\n /* \"#utility.yul\":10855:10859 */\n 0x7373000000000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":10850:10852 */\n 0x20\n /* \"#utility.yul\":10842:10848 */\n dup3\n /* \"#utility.yul\":10838:10853 */\n add\n /* \"#utility.yul\":10831:10860 */\n mstore\n /* \"#utility.yul\":10646:10867 */\n pop\n jump\t// out\n /* \"#utility.yul\":10873:11239 */\n tag_233:\n /* \"#utility.yul\":11015:11018 */\n 0x00\n /* \"#utility.yul\":11036:11103 */\n tag_352\n /* \"#utility.yul\":11100:11102 */\n 0x22\n /* \"#utility.yul\":11095:11098 */\n dup4\n /* \"#utility.yul\":11036:11103 */\n tag_204\n jump\t// in\n tag_352:\n /* \"#utility.yul\":11029:11103 */\n swap2\n pop\n /* \"#utility.yul\":11112:11205 */\n tag_353\n /* \"#utility.yul\":11201:11204 */\n dup3\n /* \"#utility.yul\":11112:11205 */\n tag_232\n jump\t// in\n tag_353:\n /* \"#utility.yul\":11230:11232 */\n 0x40\n /* \"#utility.yul\":11225:11228 */\n dup3\n /* \"#utility.yul\":11221:11233 */\n add\n /* \"#utility.yul\":11214:11233 */\n swap1\n pop\n /* \"#utility.yul\":10873:11239 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11245:11664 */\n tag_162:\n /* \"#utility.yul\":11411:11415 */\n 0x00\n /* \"#utility.yul\":11449:11451 */\n 0x20\n /* \"#utility.yul\":11438:11447 */\n dup3\n /* \"#utility.yul\":11434:11452 */\n add\n /* \"#utility.yul\":11426:11452 */\n swap1\n pop\n /* \"#utility.yul\":11498:11507 */\n dup2\n /* \"#utility.yul\":11492:11496 */\n dup2\n /* \"#utility.yul\":11488:11508 */\n sub\n /* \"#utility.yul\":11484:11485 */\n 0x00\n /* \"#utility.yul\":11473:11482 */\n dup4\n /* \"#utility.yul\":11469:11486 */\n add\n /* \"#utility.yul\":11462:11509 */\n mstore\n /* \"#utility.yul\":11526:11657 */\n tag_355\n /* \"#utility.yul\":11652:11656 */\n dup2\n /* \"#utility.yul\":11526:11657 */\n tag_233\n jump\t// in\n tag_355:\n /* \"#utility.yul\":11518:11657 */\n swap1\n pop\n /* \"#utility.yul\":11245:11664 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11670:11849 */\n tag_234:\n /* \"#utility.yul\":11810:11841 */\n 0x45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000\n /* \"#utility.yul\":11806:11807 */\n 0x00\n /* \"#utility.yul\":11798:11804 */\n dup3\n /* \"#utility.yul\":11794:11808 */\n add\n /* \"#utility.yul\":11787:11842 */\n mstore\n /* \"#utility.yul\":11670:11849 */\n pop\n jump\t// out\n /* \"#utility.yul\":11855:12221 */\n tag_235:\n /* \"#utility.yul\":11997:12000 */\n 0x00\n /* \"#utility.yul\":12018:12085 */\n tag_358\n /* \"#utility.yul\":12082:12084 */\n 0x1d\n /* \"#utility.yul\":12077:12080 */\n dup4\n /* \"#utility.yul\":12018:12085 */\n tag_204\n jump\t// in\n tag_358:\n /* \"#utility.yul\":12011:12085 */\n swap2\n pop\n /* \"#utility.yul\":12094:12187 */\n tag_359\n /* \"#utility.yul\":12183:12186 */\n dup3\n /* \"#utility.yul\":12094:12187 */\n tag_234\n jump\t// in\n tag_359:\n /* \"#utility.yul\":12212:12214 */\n 0x20\n /* \"#utility.yul\":12207:12210 */\n dup3\n /* \"#utility.yul\":12203:12215 */\n add\n /* \"#utility.yul\":12196:12215 */\n swap1\n pop\n /* \"#utility.yul\":11855:12221 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":12227:12646 */\n tag_169:\n /* \"#utility.yul\":12393:12397 */\n 0x00\n /* \"#utility.yul\":12431:12433 */\n 0x20\n /* \"#utility.yul\":12420:12429 */\n dup3\n /* \"#utility.yul\":12416:12434 */\n add\n /* \"#utility.yul\":12408:12434 */\n swap1\n pop\n /* \"#utility.yul\":12480:12489 */\n dup2\n /* \"#utility.yul\":12474:12478 */\n dup2\n /* \"#utility.yul\":12470:12490 */\n sub\n /* \"#utility.yul\":12466:12467 */\n 0x00\n /* \"#utility.yul\":12455:12464 */\n dup4\n /* \"#utility.yul\":12451:12468 */\n add\n /* \"#utility.yul\":12444:12491 */\n mstore\n /* \"#utility.yul\":12508:12639 */\n tag_361\n /* \"#utility.yul\":12634:12638 */\n dup2\n /* \"#utility.yul\":12508:12639 */\n tag_235\n jump\t// in\n tag_361:\n /* \"#utility.yul\":12500:12639 */\n swap1\n pop\n /* \"#utility.yul\":12227:12646 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":12652:12876 */\n tag_236:\n /* \"#utility.yul\":12792:12826 */\n 0x45524332303a207472616e736665722066726f6d20746865207a65726f206164\n /* \"#utility.yul\":12788:12789 */\n 0x00\n /* \"#utility.yul\":12780:12786 */\n dup3\n /* \"#utility.yul\":12776:12790 */\n add\n /* \"#utility.yul\":12769:12827 */\n mstore\n /* \"#utility.yul\":12861:12868 */\n 0x6472657373000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":12856:12858 */\n 0x20\n /* \"#utility.yul\":12848:12854 */\n dup3\n /* \"#utility.yul\":12844:12859 */\n add\n /* \"#utility.yul\":12837:12869 */\n mstore\n /* \"#utility.yul\":12652:12876 */\n pop\n jump\t// out\n /* \"#utility.yul\":12882:13248 */\n tag_237:\n /* \"#utility.yul\":13024:13027 */\n 0x00\n /* \"#utility.yul\":13045:13112 */\n tag_364\n /* \"#utility.yul\":13109:13111 */\n 0x25\n /* \"#utility.yul\":13104:13107 */\n dup4\n /* \"#utility.yul\":13045:13112 */\n tag_204\n jump\t// in\n tag_364:\n /* \"#utility.yul\":13038:13112 */\n swap2\n pop\n /* \"#utility.yul\":13121:13214 */\n tag_365\n /* \"#utility.yul\":13210:13213 */\n dup3\n /* \"#utility.yul\":13121:13214 */\n tag_236\n jump\t// in\n tag_365:\n /* \"#utility.yul\":13239:13241 */\n 0x40\n /* \"#utility.yul\":13234:13237 */\n dup3\n /* \"#utility.yul\":13230:13242 */\n add\n /* \"#utility.yul\":13223:13242 */\n swap1\n pop\n /* \"#utility.yul\":12882:13248 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":13254:13673 */\n tag_174:\n /* \"#utility.yul\":13420:13424 */\n 0x00\n /* \"#utility.yul\":13458:13460 */\n 0x20\n /* \"#utility.yul\":13447:13456 */\n dup3\n /* \"#utility.yul\":13443:13461 */\n add\n /* \"#utility.yul\":13435:13461 */\n swap1\n pop\n /* \"#utility.yul\":13507:13516 */\n dup2\n /* \"#utility.yul\":13501:13505 */\n dup2\n /* \"#utility.yul\":13497:13517 */\n sub\n /* \"#utility.yul\":13493:13494 */\n 0x00\n /* \"#utility.yul\":13482:13491 */\n dup4\n /* \"#utility.yul\":13478:13495 */\n add\n /* \"#utility.yul\":13471:13518 */\n mstore\n /* \"#utility.yul\":13535:13666 */\n tag_367\n /* \"#utility.yul\":13661:13665 */\n dup2\n /* \"#utility.yul\":13535:13666 */\n tag_237\n jump\t// in\n tag_367:\n /* \"#utility.yul\":13527:13666 */\n swap1\n pop\n /* \"#utility.yul\":13254:13673 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":13679:13901 */\n tag_238:\n /* \"#utility.yul\":13819:13853 */\n 0x45524332303a207472616e7366657220746f20746865207a65726f2061646472\n /* \"#utility.yul\":13815:13816 */\n 0x00\n /* \"#utility.yul\":13807:13813 */\n dup3\n /* \"#utility.yul\":13803:13817 */\n add\n /* \"#utility.yul\":13796:13854 */\n mstore\n /* \"#utility.yul\":13888:13893 */\n 0x6573730000000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":13883:13885 */\n 0x20\n /* \"#utility.yul\":13875:13881 */\n dup3\n /* \"#utility.yul\":13871:13886 */\n add\n /* \"#utility.yul\":13864:13894 */\n mstore\n /* \"#utility.yul\":13679:13901 */\n pop\n jump\t// out\n /* \"#utility.yul\":13907:14273 */\n tag_239:\n /* \"#utility.yul\":14049:14052 */\n 0x00\n /* \"#utility.yul\":14070:14137 */\n tag_370\n /* \"#utility.yul\":14134:14136 */\n 0x23\n /* \"#utility.yul\":14129:14132 */\n dup4\n /* \"#utility.yul\":14070:14137 */\n tag_204\n jump\t// in\n tag_370:\n /* \"#utility.yul\":14063:14137 */\n swap2\n pop\n /* \"#utility.yul\":14146:14239 */\n tag_371\n /* \"#utility.yul\":14235:14238 */\n dup3\n /* \"#utility.yul\":14146:14239 */\n tag_238\n jump\t// in\n tag_371:\n /* \"#utility.yul\":14264:14266 */\n 0x40\n /* \"#utility.yul\":14259:14262 */\n dup3\n /* \"#utility.yul\":14255:14267 */\n add\n /* \"#utility.yul\":14248:14267 */\n swap1\n pop\n /* \"#utility.yul\":13907:14273 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":14279:14698 */\n tag_177:\n /* \"#utility.yul\":14445:14449 */\n 0x00\n /* \"#utility.yul\":14483:14485 */\n 0x20\n /* \"#utility.yul\":14472:14481 */\n dup3\n /* \"#utility.yul\":14468:14486 */\n add\n /* \"#utility.yul\":14460:14486 */\n swap1\n pop\n /* \"#utility.yul\":14532:14541 */\n dup2\n /* \"#utility.yul\":14526:14530 */\n dup2\n /* \"#utility.yul\":14522:14542 */\n sub\n /* \"#utility.yul\":14518:14519 */\n 0x00\n /* \"#utility.yul\":14507:14516 */\n dup4\n /* \"#utility.yul\":14503:14520 */\n add\n /* \"#utility.yul\":14496:14543 */\n mstore\n /* \"#utility.yul\":14560:14691 */\n tag_373\n /* \"#utility.yul\":14686:14690 */\n dup2\n /* \"#utility.yul\":14560:14691 */\n tag_239\n jump\t// in\n tag_373:\n /* \"#utility.yul\":14552:14691 */\n swap1\n pop\n /* \"#utility.yul\":14279:14698 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":14704:14929 */\n tag_240:\n /* \"#utility.yul\":14844:14878 */\n 0x45524332303a207472616e7366657220616d6f756e7420657863656564732062\n /* \"#utility.yul\":14840:14841 */\n 0x00\n /* \"#utility.yul\":14832:14838 */\n dup3\n /* \"#utility.yul\":14828:14842 */\n add\n /* \"#utility.yul\":14821:14879 */\n mstore\n /* \"#utility.yul\":14913:14921 */\n 0x616c616e63650000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":14908:14910 */\n 0x20\n /* \"#utility.yul\":14900:14906 */\n dup3\n /* \"#utility.yul\":14896:14911 */\n add\n /* \"#utility.yul\":14889:14922 */\n mstore\n /* \"#utility.yul\":14704:14929 */\n pop\n jump\t// out\n /* \"#utility.yul\":14935:15301 */\n tag_241:\n /* \"#utility.yul\":15077:15080 */\n 0x00\n /* \"#utility.yul\":15098:15165 */\n tag_376\n /* \"#utility.yul\":15162:15164 */\n 0x26\n /* \"#utility.yul\":15157:15160 */\n dup4\n /* \"#utility.yul\":15098:15165 */\n tag_204\n jump\t// in\n tag_376:\n /* \"#utility.yul\":15091:15165 */\n swap2\n pop\n /* \"#utility.yul\":15174:15267 */\n tag_377\n /* \"#utility.yul\":15263:15266 */\n dup3\n /* \"#utility.yul\":15174:15267 */\n tag_240\n jump\t// in\n tag_377:\n /* \"#utility.yul\":15292:15294 */\n 0x40\n /* \"#utility.yul\":15287:15290 */\n dup3\n /* \"#utility.yul\":15283:15295 */\n add\n /* \"#utility.yul\":15276:15295 */\n swap1\n pop\n /* \"#utility.yul\":14935:15301 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":15307:15726 */\n tag_182:\n /* \"#utility.yul\":15473:15477 */\n 0x00\n /* \"#utility.yul\":15511:15513 */\n 0x20\n /* \"#utility.yul\":15500:15509 */\n dup3\n /* \"#utility.yul\":15496:15514 */\n add\n /* \"#utility.yul\":15488:15514 */\n swap1\n pop\n /* \"#utility.yul\":15560:15569 */\n dup2\n /* \"#utility.yul\":15554:15558 */\n dup2\n /* \"#utility.yul\":15550:15570 */\n sub\n /* \"#utility.yul\":15546:15547 */\n 0x00\n /* \"#utility.yul\":15535:15544 */\n dup4\n /* \"#utility.yul\":15531:15548 */\n add\n /* \"#utility.yul\":15524:15571 */\n mstore\n /* \"#utility.yul\":15588:15719 */\n tag_379\n /* \"#utility.yul\":15714:15718 */\n dup2\n /* \"#utility.yul\":15588:15719 */\n tag_241\n jump\t// in\n tag_379:\n /* \"#utility.yul\":15580:15719 */\n swap1\n pop\n /* \"#utility.yul\":15307:15726 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":15732:15914 */\n tag_242:\n /* \"#utility.yul\":15872:15906 */\n 0x4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572\n /* \"#utility.yul\":15868:15869 */\n 0x00\n /* \"#utility.yul\":15860:15866 */\n dup3\n /* \"#utility.yul\":15856:15870 */\n add\n /* \"#utility.yul\":15849:15907 */\n mstore\n /* \"#utility.yul\":15732:15914 */\n pop\n jump\t// out\n /* \"#utility.yul\":15920:16286 */\n tag_243:\n /* \"#utility.yul\":16062:16065 */\n 0x00\n /* \"#utility.yul\":16083:16150 */\n tag_382\n /* \"#utility.yul\":16147:16149 */\n 0x20\n /* \"#utility.yul\":16142:16145 */\n dup4\n /* \"#utility.yul\":16083:16150 */\n tag_204\n jump\t// in\n tag_382:\n /* \"#utility.yul\":16076:16150 */\n swap2\n pop\n /* \"#utility.yul\":16159:16252 */\n tag_383\n /* \"#utility.yul\":16248:16251 */\n dup3\n /* \"#utility.yul\":16159:16252 */\n tag_242\n jump\t// in\n tag_383:\n /* \"#utility.yul\":16277:16279 */\n 0x20\n /* \"#utility.yul\":16272:16275 */\n dup3\n /* \"#utility.yul\":16268:16280 */\n add\n /* \"#utility.yul\":16261:16280 */\n swap1\n pop\n /* \"#utility.yul\":15920:16286 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":16292:16711 */\n tag_191:\n /* \"#utility.yul\":16458:16462 */\n 0x00\n /* \"#utility.yul\":16496:16498 */\n 0x20\n /* \"#utility.yul\":16485:16494 */\n dup3\n /* \"#utility.yul\":16481:16499 */\n add\n /* \"#utility.yul\":16473:16499 */\n swap1\n pop\n /* \"#utility.yul\":16545:16554 */\n dup2\n /* \"#utility.yul\":16539:16543 */\n dup2\n /* \"#utility.yul\":16535:16555 */\n sub\n /* \"#utility.yul\":16531:16532 */\n 0x00\n /* \"#utility.yul\":16520:16529 */\n dup4\n /* \"#utility.yul\":16516:16533 */\n add\n /* \"#utility.yul\":16509:16556 */\n mstore\n /* \"#utility.yul\":16573:16704 */\n tag_385\n /* \"#utility.yul\":16699:16703 */\n dup2\n /* \"#utility.yul\":16573:16704 */\n tag_243\n jump\t// in\n tag_385:\n /* \"#utility.yul\":16565:16704 */\n swap1\n pop\n /* \"#utility.yul\":16292:16711 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":16717:16898 */\n tag_244:\n /* \"#utility.yul\":16857:16890 */\n 0x45524332303a206d696e7420746f20746865207a65726f206164647265737300\n /* \"#utility.yul\":16853:16854 */\n 0x00\n /* \"#utility.yul\":16845:16851 */\n dup3\n /* \"#utility.yul\":16841:16855 */\n add\n /* \"#utility.yul\":16834:16891 */\n mstore\n /* \"#utility.yul\":16717:16898 */\n pop\n jump\t// out\n /* \"#utility.yul\":16904:17270 */\n tag_245:\n /* \"#utility.yul\":17046:17049 */\n 0x00\n /* \"#utility.yul\":17067:17134 */\n tag_388\n /* \"#utility.yul\":17131:17133 */\n 0x1f\n /* \"#utility.yul\":17126:17129 */\n dup4\n /* \"#utility.yul\":17067:17134 */\n tag_204\n jump\t// in\n tag_388:\n /* \"#utility.yul\":17060:17134 */\n swap2\n pop\n /* \"#utility.yul\":17143:17236 */\n tag_389\n /* \"#utility.yul\":17232:17235 */\n dup3\n /* \"#utility.yul\":17143:17236 */\n tag_244\n jump\t// in\n tag_389:\n /* \"#utility.yul\":17261:17263 */\n 0x20\n /* \"#utility.yul\":17256:17259 */\n dup3\n /* \"#utility.yul\":17252:17264 */\n add\n /* \"#utility.yul\":17245:17264 */\n swap1\n pop\n /* \"#utility.yul\":16904:17270 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":17276:17695 */\n tag_195:\n /* \"#utility.yul\":17442:17446 */\n 0x00\n /* \"#utility.yul\":17480:17482 */\n 0x20\n /* \"#utility.yul\":17469:17478 */\n dup3\n /* \"#utility.yul\":17465:17483 */\n add\n /* \"#utility.yul\":17457:17483 */\n swap1\n pop\n /* \"#utility.yul\":17529:17538 */\n dup2\n /* \"#utility.yul\":17523:17527 */\n dup2\n /* \"#utility.yul\":17519:17539 */\n sub\n /* \"#utility.yul\":17515:17516 */\n 0x00\n /* \"#utility.yul\":17504:17513 */\n dup4\n /* \"#utility.yul\":17500:17517 */\n add\n /* \"#utility.yul\":17493:17540 */\n mstore\n /* \"#utility.yul\":17557:17688 */\n tag_391\n /* \"#utility.yul\":17683:17687 */\n dup2\n /* \"#utility.yul\":17557:17688 */\n tag_245\n jump\t// in\n tag_391:\n /* \"#utility.yul\":17549:17688 */\n swap1\n pop\n /* \"#utility.yul\":17276:17695 */\n swap2\n swap1\n pop\n jump\t// out\n\n auxdata: 0xa26469706673582212203c8cbedc684db6cf68cec29d50046617cbf845f84734c2ca0906d155a73e741f64736f6c63430008140033\n}\n", + "bytecode": { + "functionDebugData": { + "@_157": { + "entryPoint": null, + "id": 157, + "parameterSlots": 2, + "returnSlots": 0 + }, + "@_23": { + "entryPoint": null, + "id": 23, + "parameterSlots": 0, + "returnSlots": 0 + }, + "@_842": { + "entryPoint": null, + "id": 842, + "parameterSlots": 0, + "returnSlots": 0 + }, + "@_msgSender_814": { + "entryPoint": 202, + "id": 814, + "parameterSlots": 0, + "returnSlots": 1 + }, + "@_transferOwnership_111": { + "entryPoint": 210, + "id": 111, + "parameterSlots": 1, + "returnSlots": 0 + }, + "array_dataslot_t_string_storage": { + "entryPoint": 566, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "array_length_t_string_memory_ptr": { + "entryPoint": 408, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "clean_up_bytearray_end_slots_t_string_storage": { + "entryPoint": 887, + "id": null, + "parameterSlots": 3, + "returnSlots": 0 + }, + "cleanup_t_uint256": { + "entryPoint": 702, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "clear_storage_range_t_bytes1": { + "entryPoint": 848, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "convert_t_uint256_to_t_uint256": { + "entryPoint": 722, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": { + "entryPoint": 1042, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "divide_by_32_ceil": { + "entryPoint": 587, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "extract_byte_array_length": { + "entryPoint": 513, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "extract_used_part_and_set_length_of_short_byte_array": { + "entryPoint": 1012, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "identity": { + "entryPoint": 712, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "mask_bytes_dynamic": { + "entryPoint": 980, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "panic_error_0x22": { + "entryPoint": 466, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "panic_error_0x41": { + "entryPoint": 419, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "prepare_store_t_uint256": { + "entryPoint": 762, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "shift_left_dynamic": { + "entryPoint": 603, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "shift_right_unsigned_dynamic": { + "entryPoint": 967, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "storage_set_to_zero_t_uint256": { + "entryPoint": 820, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "update_byte_slice_dynamic32": { + "entryPoint": 616, + "id": null, + "parameterSlots": 3, + "returnSlots": 1 + }, + "update_storage_value_t_uint256_to_t_uint256": { + "entryPoint": 772, + "id": null, + "parameterSlots": 3, + "returnSlots": 0 + }, + "zero_value_for_split_t_uint256": { + "entryPoint": 815, + "id": null, + "parameterSlots": 0, + "returnSlots": 1 + } + }, + "generatedSources": [ + { + "ast": { + "nodeType": "YulBlock", + "src": "0:5231:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "66:40:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "77:22:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "93:5:6" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "87:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "87:12:6" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "77:6:6" + } + ] + } + ] + }, + "name": "array_length_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "49:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "59:6:6", + "type": "" + } + ], + "src": "7:99:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "140:152:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "157:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "160:77:6", + "type": "", + "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "150:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "150:88:6" + }, + "nodeType": "YulExpressionStatement", + "src": "150:88:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "254:1:6", + "type": "", + "value": "4" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "257:4:6", + "type": "", + "value": "0x41" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "247:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "247:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "247:15:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "278:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "281:4:6", + "type": "", + "value": "0x24" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "271:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "271:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "271:15:6" + } + ] + }, + "name": "panic_error_0x41", + "nodeType": "YulFunctionDefinition", + "src": "112:180:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "326:152:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "343:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "346:77:6", + "type": "", + "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "336:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "336:88:6" + }, + "nodeType": "YulExpressionStatement", + "src": "336:88:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "440:1:6", + "type": "", + "value": "4" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "443:4:6", + "type": "", + "value": "0x22" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "433:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "433:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "433:15:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "464:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "467:4:6", + "type": "", + "value": "0x24" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "457:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "457:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "457:15:6" + } + ] + }, + "name": "panic_error_0x22", + "nodeType": "YulFunctionDefinition", + "src": "298:180:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "535:269:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "545:22:6", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "559:4:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "565:1:6", + "type": "", + "value": "2" + } + ], + "functionName": { + "name": "div", + "nodeType": "YulIdentifier", + "src": "555:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "555:12:6" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "545:6:6" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "576:38:6", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "606:4:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "612:1:6", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "602:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "602:12:6" + }, + "variables": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulTypedName", + "src": "580:18:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "653:51:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "667:27:6", + "value": { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "681:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "689:4:6", + "type": "", + "value": "0x7f" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "677:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "677:17:6" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "667:6:6" + } + ] + } + ] + }, + "condition": { + "arguments": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulIdentifier", + "src": "633:18:6" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "626:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "626:26:6" + }, + "nodeType": "YulIf", + "src": "623:81:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "756:42:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "panic_error_0x22", + "nodeType": "YulIdentifier", + "src": "770:16:6" + }, + "nodeType": "YulFunctionCall", + "src": "770:18:6" + }, + "nodeType": "YulExpressionStatement", + "src": "770:18:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulIdentifier", + "src": "720:18:6" + }, + { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "743:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "751:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "740:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "740:14:6" + } + ], + "functionName": { + "name": "eq", + "nodeType": "YulIdentifier", + "src": "717:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "717:38:6" + }, + "nodeType": "YulIf", + "src": "714:84:6" + } + ] + }, + "name": "extract_byte_array_length", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "data", + "nodeType": "YulTypedName", + "src": "519:4:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "528:6:6", + "type": "" + } + ], + "src": "484:320:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "864:87:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "874:11:6", + "value": { + "name": "ptr", + "nodeType": "YulIdentifier", + "src": "882:3:6" + }, + "variableNames": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "874:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "902:1:6", + "type": "", + "value": "0" + }, + { + "name": "ptr", + "nodeType": "YulIdentifier", + "src": "905:3:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "895:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "895:14:6" + }, + "nodeType": "YulExpressionStatement", + "src": "895:14:6" + }, + { + "nodeType": "YulAssignment", + "src": "918:26:6", + "value": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "936:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "939:4:6", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "keccak256", + "nodeType": "YulIdentifier", + "src": "926:9:6" + }, + "nodeType": "YulFunctionCall", + "src": "926:18:6" + }, + "variableNames": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "918:4:6" + } + ] + } + ] + }, + "name": "array_dataslot_t_string_storage", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "ptr", + "nodeType": "YulTypedName", + "src": "851:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "data", + "nodeType": "YulTypedName", + "src": "859:4:6", + "type": "" + } + ], + "src": "810:141:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1001:49:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1011:33:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1029:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1036:2:6", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "1025:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1025:14:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1041:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "div", + "nodeType": "YulIdentifier", + "src": "1021:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1021:23:6" + }, + "variableNames": [ + { + "name": "result", + "nodeType": "YulIdentifier", + "src": "1011:6:6" + } + ] + } + ] + }, + "name": "divide_by_32_ceil", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "984:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "result", + "nodeType": "YulTypedName", + "src": "994:6:6", + "type": "" + } + ], + "src": "957:93:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1109:54:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1119:37:6", + "value": { + "arguments": [ + { + "name": "bits", + "nodeType": "YulIdentifier", + "src": "1144:4:6" + }, + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1150:5:6" + } + ], + "functionName": { + "name": "shl", + "nodeType": "YulIdentifier", + "src": "1140:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1140:16:6" + }, + "variableNames": [ + { + "name": "newValue", + "nodeType": "YulIdentifier", + "src": "1119:8:6" + } + ] + } + ] + }, + "name": "shift_left_dynamic", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "bits", + "nodeType": "YulTypedName", + "src": "1084:4:6", + "type": "" + }, + { + "name": "value", + "nodeType": "YulTypedName", + "src": "1090:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "newValue", + "nodeType": "YulTypedName", + "src": "1100:8:6", + "type": "" + } + ], + "src": "1056:107:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1245:317:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "1255:35:6", + "value": { + "arguments": [ + { + "name": "shiftBytes", + "nodeType": "YulIdentifier", + "src": "1276:10:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1288:1:6", + "type": "", + "value": "8" + } + ], + "functionName": { + "name": "mul", + "nodeType": "YulIdentifier", + "src": "1272:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1272:18:6" + }, + "variables": [ + { + "name": "shiftBits", + "nodeType": "YulTypedName", + "src": "1259:9:6", + "type": "" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "1299:109:6", + "value": { + "arguments": [ + { + "name": "shiftBits", + "nodeType": "YulIdentifier", + "src": "1330:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1341:66:6", + "type": "", + "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + } + ], + "functionName": { + "name": "shift_left_dynamic", + "nodeType": "YulIdentifier", + "src": "1311:18:6" + }, + "nodeType": "YulFunctionCall", + "src": "1311:97:6" + }, + "variables": [ + { + "name": "mask", + "nodeType": "YulTypedName", + "src": "1303:4:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "1417:51:6", + "value": { + "arguments": [ + { + "name": "shiftBits", + "nodeType": "YulIdentifier", + "src": "1448:9:6" + }, + { + "name": "toInsert", + "nodeType": "YulIdentifier", + "src": "1459:8:6" + } + ], + "functionName": { + "name": "shift_left_dynamic", + "nodeType": "YulIdentifier", + "src": "1429:18:6" + }, + "nodeType": "YulFunctionCall", + "src": "1429:39:6" + }, + "variableNames": [ + { + "name": "toInsert", + "nodeType": "YulIdentifier", + "src": "1417:8:6" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "1477:30:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1490:5:6" + }, + { + "arguments": [ + { + "name": "mask", + "nodeType": "YulIdentifier", + "src": "1501:4:6" + } + ], + "functionName": { + "name": "not", + "nodeType": "YulIdentifier", + "src": "1497:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1497:9:6" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "1486:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1486:21:6" + }, + "variableNames": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1477:5:6" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "1516:40:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1529:5:6" + }, + { + "arguments": [ + { + "name": "toInsert", + "nodeType": "YulIdentifier", + "src": "1540:8:6" + }, + { + "name": "mask", + "nodeType": "YulIdentifier", + "src": "1550:4:6" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "1536:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1536:19:6" + } + ], + "functionName": { + "name": "or", + "nodeType": "YulIdentifier", + "src": "1526:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "1526:30:6" + }, + "variableNames": [ + { + "name": "result", + "nodeType": "YulIdentifier", + "src": "1516:6:6" + } + ] + } + ] + }, + "name": "update_byte_slice_dynamic32", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "1206:5:6", + "type": "" + }, + { + "name": "shiftBytes", + "nodeType": "YulTypedName", + "src": "1213:10:6", + "type": "" + }, + { + "name": "toInsert", + "nodeType": "YulTypedName", + "src": "1225:8:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "result", + "nodeType": "YulTypedName", + "src": "1238:6:6", + "type": "" + } + ], + "src": "1169:393:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1613:32:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1623:16:6", + "value": { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1634:5:6" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "1623:7:6" + } + ] + } + ] + }, + "name": "cleanup_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "1595:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "1605:7:6", + "type": "" + } + ], + "src": "1568:77:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1683:28:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1693:12:6", + "value": { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1700:5:6" + }, + "variableNames": [ + { + "name": "ret", + "nodeType": "YulIdentifier", + "src": "1693:3:6" + } + ] + } + ] + }, + "name": "identity", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "1669:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "ret", + "nodeType": "YulTypedName", + "src": "1679:3:6", + "type": "" + } + ], + "src": "1651:60:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1777:82:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1787:66:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1845:5:6" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "1827:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "1827:24:6" + } + ], + "functionName": { + "name": "identity", + "nodeType": "YulIdentifier", + "src": "1818:8:6" + }, + "nodeType": "YulFunctionCall", + "src": "1818:34:6" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "1800:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "1800:53:6" + }, + "variableNames": [ + { + "name": "converted", + "nodeType": "YulIdentifier", + "src": "1787:9:6" + } + ] + } + ] + }, + "name": "convert_t_uint256_to_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "1757:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "converted", + "nodeType": "YulTypedName", + "src": "1767:9:6", + "type": "" + } + ], + "src": "1717:142:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1912:28:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1922:12:6", + "value": { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1929:5:6" + }, + "variableNames": [ + { + "name": "ret", + "nodeType": "YulIdentifier", + "src": "1922:3:6" + } + ] + } + ] + }, + "name": "prepare_store_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "1898:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "ret", + "nodeType": "YulTypedName", + "src": "1908:3:6", + "type": "" + } + ], + "src": "1865:75:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2022:193:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "2032:63:6", + "value": { + "arguments": [ + { + "name": "value_0", + "nodeType": "YulIdentifier", + "src": "2087:7:6" + } + ], + "functionName": { + "name": "convert_t_uint256_to_t_uint256", + "nodeType": "YulIdentifier", + "src": "2056:30:6" + }, + "nodeType": "YulFunctionCall", + "src": "2056:39:6" + }, + "variables": [ + { + "name": "convertedValue_0", + "nodeType": "YulTypedName", + "src": "2036:16:6", + "type": "" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "2111:4:6" + }, + { + "arguments": [ + { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "2151:4:6" + } + ], + "functionName": { + "name": "sload", + "nodeType": "YulIdentifier", + "src": "2145:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "2145:11:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2158:6:6" + }, + { + "arguments": [ + { + "name": "convertedValue_0", + "nodeType": "YulIdentifier", + "src": "2190:16:6" + } + ], + "functionName": { + "name": "prepare_store_t_uint256", + "nodeType": "YulIdentifier", + "src": "2166:23:6" + }, + "nodeType": "YulFunctionCall", + "src": "2166:41:6" + } + ], + "functionName": { + "name": "update_byte_slice_dynamic32", + "nodeType": "YulIdentifier", + "src": "2117:27:6" + }, + "nodeType": "YulFunctionCall", + "src": "2117:91:6" + } + ], + "functionName": { + "name": "sstore", + "nodeType": "YulIdentifier", + "src": "2104:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "2104:105:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2104:105:6" + } + ] + }, + "name": "update_storage_value_t_uint256_to_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "slot", + "nodeType": "YulTypedName", + "src": "1999:4:6", + "type": "" + }, + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "2005:6:6", + "type": "" + }, + { + "name": "value_0", + "nodeType": "YulTypedName", + "src": "2013:7:6", + "type": "" + } + ], + "src": "1946:269:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2270:24:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "2280:8:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2287:1:6", + "type": "", + "value": "0" + }, + "variableNames": [ + { + "name": "ret", + "nodeType": "YulIdentifier", + "src": "2280:3:6" + } + ] + } + ] + }, + "name": "zero_value_for_split_t_uint256", + "nodeType": "YulFunctionDefinition", + "returnVariables": [ + { + "name": "ret", + "nodeType": "YulTypedName", + "src": "2266:3:6", + "type": "" + } + ], + "src": "2221:73:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2353:136:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "2363:46:6", + "value": { + "arguments": [], + "functionName": { + "name": "zero_value_for_split_t_uint256", + "nodeType": "YulIdentifier", + "src": "2377:30:6" + }, + "nodeType": "YulFunctionCall", + "src": "2377:32:6" + }, + "variables": [ + { + "name": "zero_0", + "nodeType": "YulTypedName", + "src": "2367:6:6", + "type": "" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "2462:4:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2468:6:6" + }, + { + "name": "zero_0", + "nodeType": "YulIdentifier", + "src": "2476:6:6" + } + ], + "functionName": { + "name": "update_storage_value_t_uint256_to_t_uint256", + "nodeType": "YulIdentifier", + "src": "2418:43:6" + }, + "nodeType": "YulFunctionCall", + "src": "2418:65:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2418:65:6" + } + ] + }, + "name": "storage_set_to_zero_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "slot", + "nodeType": "YulTypedName", + "src": "2339:4:6", + "type": "" + }, + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "2345:6:6", + "type": "" + } + ], + "src": "2300:189:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2545:136:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "2612:63:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "start", + "nodeType": "YulIdentifier", + "src": "2656:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2663:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "storage_set_to_zero_t_uint256", + "nodeType": "YulIdentifier", + "src": "2626:29:6" + }, + "nodeType": "YulFunctionCall", + "src": "2626:39:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2626:39:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "start", + "nodeType": "YulIdentifier", + "src": "2565:5:6" + }, + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "2572:3:6" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "2562:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "2562:14:6" + }, + "nodeType": "YulForLoop", + "post": { + "nodeType": "YulBlock", + "src": "2577:26:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "2579:22:6", + "value": { + "arguments": [ + { + "name": "start", + "nodeType": "YulIdentifier", + "src": "2592:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2599:1:6", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2588:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2588:13:6" + }, + "variableNames": [ + { + "name": "start", + "nodeType": "YulIdentifier", + "src": "2579:5:6" + } + ] + } + ] + }, + "pre": { + "nodeType": "YulBlock", + "src": "2559:2:6", + "statements": [] + }, + "src": "2555:120:6" + } + ] + }, + "name": "clear_storage_range_t_bytes1", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "start", + "nodeType": "YulTypedName", + "src": "2533:5:6", + "type": "" + }, + { + "name": "end", + "nodeType": "YulTypedName", + "src": "2540:3:6", + "type": "" + } + ], + "src": "2495:186:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2766:464:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "2792:431:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "2806:54:6", + "value": { + "arguments": [ + { + "name": "array", + "nodeType": "YulIdentifier", + "src": "2854:5:6" + } + ], + "functionName": { + "name": "array_dataslot_t_string_storage", + "nodeType": "YulIdentifier", + "src": "2822:31:6" + }, + "nodeType": "YulFunctionCall", + "src": "2822:38:6" + }, + "variables": [ + { + "name": "dataArea", + "nodeType": "YulTypedName", + "src": "2810:8:6", + "type": "" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "2873:63:6", + "value": { + "arguments": [ + { + "name": "dataArea", + "nodeType": "YulIdentifier", + "src": "2896:8:6" + }, + { + "arguments": [ + { + "name": "startIndex", + "nodeType": "YulIdentifier", + "src": "2924:10:6" + } + ], + "functionName": { + "name": "divide_by_32_ceil", + "nodeType": "YulIdentifier", + "src": "2906:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "2906:29:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2892:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2892:44:6" + }, + "variables": [ + { + "name": "deleteStart", + "nodeType": "YulTypedName", + "src": "2877:11:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3093:27:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3095:23:6", + "value": { + "name": "dataArea", + "nodeType": "YulIdentifier", + "src": "3110:8:6" + }, + "variableNames": [ + { + "name": "deleteStart", + "nodeType": "YulIdentifier", + "src": "3095:11:6" + } + ] + } + ] + }, + "condition": { + "arguments": [ + { + "name": "startIndex", + "nodeType": "YulIdentifier", + "src": "3077:10:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3089:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "3074:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "3074:18:6" + }, + "nodeType": "YulIf", + "src": "3071:49:6" + }, + { + "expression": { + "arguments": [ + { + "name": "deleteStart", + "nodeType": "YulIdentifier", + "src": "3162:11:6" + }, + { + "arguments": [ + { + "name": "dataArea", + "nodeType": "YulIdentifier", + "src": "3179:8:6" + }, + { + "arguments": [ + { + "name": "len", + "nodeType": "YulIdentifier", + "src": "3207:3:6" + } + ], + "functionName": { + "name": "divide_by_32_ceil", + "nodeType": "YulIdentifier", + "src": "3189:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "3189:22:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3175:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3175:37:6" + } + ], + "functionName": { + "name": "clear_storage_range_t_bytes1", + "nodeType": "YulIdentifier", + "src": "3133:28:6" + }, + "nodeType": "YulFunctionCall", + "src": "3133:80:6" + }, + "nodeType": "YulExpressionStatement", + "src": "3133:80:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "len", + "nodeType": "YulIdentifier", + "src": "2783:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2788:2:6", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "2780:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "2780:11:6" + }, + "nodeType": "YulIf", + "src": "2777:446:6" + } + ] + }, + "name": "clean_up_bytearray_end_slots_t_string_storage", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "array", + "nodeType": "YulTypedName", + "src": "2742:5:6", + "type": "" + }, + { + "name": "len", + "nodeType": "YulTypedName", + "src": "2749:3:6", + "type": "" + }, + { + "name": "startIndex", + "nodeType": "YulTypedName", + "src": "2754:10:6", + "type": "" + } + ], + "src": "2687:543:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3299:54:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3309:37:6", + "value": { + "arguments": [ + { + "name": "bits", + "nodeType": "YulIdentifier", + "src": "3334:4:6" + }, + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3340:5:6" + } + ], + "functionName": { + "name": "shr", + "nodeType": "YulIdentifier", + "src": "3330:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3330:16:6" + }, + "variableNames": [ + { + "name": "newValue", + "nodeType": "YulIdentifier", + "src": "3309:8:6" + } + ] + } + ] + }, + "name": "shift_right_unsigned_dynamic", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "bits", + "nodeType": "YulTypedName", + "src": "3274:4:6", + "type": "" + }, + { + "name": "value", + "nodeType": "YulTypedName", + "src": "3280:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "newValue", + "nodeType": "YulTypedName", + "src": "3290:8:6", + "type": "" + } + ], + "src": "3236:117:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3410:118:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "3420:68:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3469:1:6", + "type": "", + "value": "8" + }, + { + "name": "bytes", + "nodeType": "YulIdentifier", + "src": "3472:5:6" + } + ], + "functionName": { + "name": "mul", + "nodeType": "YulIdentifier", + "src": "3465:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3465:13:6" + }, + { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3484:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "not", + "nodeType": "YulIdentifier", + "src": "3480:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3480:6:6" + } + ], + "functionName": { + "name": "shift_right_unsigned_dynamic", + "nodeType": "YulIdentifier", + "src": "3436:28:6" + }, + "nodeType": "YulFunctionCall", + "src": "3436:51:6" + } + ], + "functionName": { + "name": "not", + "nodeType": "YulIdentifier", + "src": "3432:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3432:56:6" + }, + "variables": [ + { + "name": "mask", + "nodeType": "YulTypedName", + "src": "3424:4:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "3497:25:6", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "3511:4:6" + }, + { + "name": "mask", + "nodeType": "YulIdentifier", + "src": "3517:4:6" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "3507:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3507:15:6" + }, + "variableNames": [ + { + "name": "result", + "nodeType": "YulIdentifier", + "src": "3497:6:6" + } + ] + } + ] + }, + "name": "mask_bytes_dynamic", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "data", + "nodeType": "YulTypedName", + "src": "3387:4:6", + "type": "" + }, + { + "name": "bytes", + "nodeType": "YulTypedName", + "src": "3393:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "result", + "nodeType": "YulTypedName", + "src": "3403:6:6", + "type": "" + } + ], + "src": "3359:169:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3614:214:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3747:37:6", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "3774:4:6" + }, + { + "name": "len", + "nodeType": "YulIdentifier", + "src": "3780:3:6" + } + ], + "functionName": { + "name": "mask_bytes_dynamic", + "nodeType": "YulIdentifier", + "src": "3755:18:6" + }, + "nodeType": "YulFunctionCall", + "src": "3755:29:6" + }, + "variableNames": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "3747:4:6" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "3793:29:6", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "3804:4:6" + }, + { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3814:1:6", + "type": "", + "value": "2" + }, + { + "name": "len", + "nodeType": "YulIdentifier", + "src": "3817:3:6" + } + ], + "functionName": { + "name": "mul", + "nodeType": "YulIdentifier", + "src": "3810:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3810:11:6" + } + ], + "functionName": { + "name": "or", + "nodeType": "YulIdentifier", + "src": "3801:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "3801:21:6" + }, + "variableNames": [ + { + "name": "used", + "nodeType": "YulIdentifier", + "src": "3793:4:6" + } + ] + } + ] + }, + "name": "extract_used_part_and_set_length_of_short_byte_array", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "data", + "nodeType": "YulTypedName", + "src": "3595:4:6", + "type": "" + }, + { + "name": "len", + "nodeType": "YulTypedName", + "src": "3601:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "used", + "nodeType": "YulTypedName", + "src": "3609:4:6", + "type": "" + } + ], + "src": "3533:295:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3925:1303:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "3936:51:6", + "value": { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "3983:3:6" + } + ], + "functionName": { + "name": "array_length_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "3950:32:6" + }, + "nodeType": "YulFunctionCall", + "src": "3950:37:6" + }, + "variables": [ + { + "name": "newLen", + "nodeType": "YulTypedName", + "src": "3940:6:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4072:22:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "panic_error_0x41", + "nodeType": "YulIdentifier", + "src": "4074:16:6" + }, + "nodeType": "YulFunctionCall", + "src": "4074:18:6" + }, + "nodeType": "YulExpressionStatement", + "src": "4074:18:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "4044:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4052:18:6", + "type": "", + "value": "0xffffffffffffffff" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "4041:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "4041:30:6" + }, + "nodeType": "YulIf", + "src": "4038:56:6" + }, + { + "nodeType": "YulVariableDeclaration", + "src": "4104:52:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "4150:4:6" + } + ], + "functionName": { + "name": "sload", + "nodeType": "YulIdentifier", + "src": "4144:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "4144:11:6" + } + ], + "functionName": { + "name": "extract_byte_array_length", + "nodeType": "YulIdentifier", + "src": "4118:25:6" + }, + "nodeType": "YulFunctionCall", + "src": "4118:38:6" + }, + "variables": [ + { + "name": "oldLen", + "nodeType": "YulTypedName", + "src": "4108:6:6", + "type": "" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "4249:4:6" + }, + { + "name": "oldLen", + "nodeType": "YulIdentifier", + "src": "4255:6:6" + }, + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "4263:6:6" + } + ], + "functionName": { + "name": "clean_up_bytearray_end_slots_t_string_storage", + "nodeType": "YulIdentifier", + "src": "4203:45:6" + }, + "nodeType": "YulFunctionCall", + "src": "4203:67:6" + }, + "nodeType": "YulExpressionStatement", + "src": "4203:67:6" + }, + { + "nodeType": "YulVariableDeclaration", + "src": "4280:18:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4297:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "srcOffset", + "nodeType": "YulTypedName", + "src": "4284:9:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "4308:17:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4321:4:6", + "type": "", + "value": "0x20" + }, + "variableNames": [ + { + "name": "srcOffset", + "nodeType": "YulIdentifier", + "src": "4308:9:6" + } + ] + }, + { + "cases": [ + { + "body": { + "nodeType": "YulBlock", + "src": "4372:611:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "4386:37:6", + "value": { + "arguments": [ + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "4405:6:6" + }, + { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4417:4:6", + "type": "", + "value": "0x1f" + } + ], + "functionName": { + "name": "not", + "nodeType": "YulIdentifier", + "src": "4413:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4413:9:6" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "4401:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4401:22:6" + }, + "variables": [ + { + "name": "loopEnd", + "nodeType": "YulTypedName", + "src": "4390:7:6", + "type": "" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "4437:51:6", + "value": { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "4483:4:6" + } + ], + "functionName": { + "name": "array_dataslot_t_string_storage", + "nodeType": "YulIdentifier", + "src": "4451:31:6" + }, + "nodeType": "YulFunctionCall", + "src": "4451:37:6" + }, + "variables": [ + { + "name": "dstPtr", + "nodeType": "YulTypedName", + "src": "4441:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "4501:10:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4510:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "i", + "nodeType": "YulTypedName", + "src": "4505:1:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4569:163:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "dstPtr", + "nodeType": "YulIdentifier", + "src": "4594:6:6" + }, + { + "arguments": [ + { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "4612:3:6" + }, + { + "name": "srcOffset", + "nodeType": "YulIdentifier", + "src": "4617:9:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4608:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4608:19:6" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "4602:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "4602:26:6" + } + ], + "functionName": { + "name": "sstore", + "nodeType": "YulIdentifier", + "src": "4587:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "4587:42:6" + }, + "nodeType": "YulExpressionStatement", + "src": "4587:42:6" + }, + { + "nodeType": "YulAssignment", + "src": "4646:24:6", + "value": { + "arguments": [ + { + "name": "dstPtr", + "nodeType": "YulIdentifier", + "src": "4660:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4668:1:6", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4656:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4656:14:6" + }, + "variableNames": [ + { + "name": "dstPtr", + "nodeType": "YulIdentifier", + "src": "4646:6:6" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "4687:31:6", + "value": { + "arguments": [ + { + "name": "srcOffset", + "nodeType": "YulIdentifier", + "src": "4704:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4715:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4700:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4700:18:6" + }, + "variableNames": [ + { + "name": "srcOffset", + "nodeType": "YulIdentifier", + "src": "4687:9:6" + } + ] + } + ] + }, + "condition": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "4535:1:6" + }, + { + "name": "loopEnd", + "nodeType": "YulIdentifier", + "src": "4538:7:6" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "4532:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "4532:14:6" + }, + "nodeType": "YulForLoop", + "post": { + "nodeType": "YulBlock", + "src": "4547:21:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "4549:17:6", + "value": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "4558:1:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4561:4:6", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4554:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4554:12:6" + }, + "variableNames": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "4549:1:6" + } + ] + } + ] + }, + "pre": { + "nodeType": "YulBlock", + "src": "4528:3:6", + "statements": [] + }, + "src": "4524:208:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4768:156:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "4786:43:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "4813:3:6" + }, + { + "name": "srcOffset", + "nodeType": "YulIdentifier", + "src": "4818:9:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4809:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4809:19:6" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "4803:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "4803:26:6" + }, + "variables": [ + { + "name": "lastValue", + "nodeType": "YulTypedName", + "src": "4790:9:6", + "type": "" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "dstPtr", + "nodeType": "YulIdentifier", + "src": "4853:6:6" + }, + { + "arguments": [ + { + "name": "lastValue", + "nodeType": "YulIdentifier", + "src": "4880:9:6" + }, + { + "arguments": [ + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "4895:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4903:4:6", + "type": "", + "value": "0x1f" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "4891:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4891:17:6" + } + ], + "functionName": { + "name": "mask_bytes_dynamic", + "nodeType": "YulIdentifier", + "src": "4861:18:6" + }, + "nodeType": "YulFunctionCall", + "src": "4861:48:6" + } + ], + "functionName": { + "name": "sstore", + "nodeType": "YulIdentifier", + "src": "4846:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "4846:64:6" + }, + "nodeType": "YulExpressionStatement", + "src": "4846:64:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "loopEnd", + "nodeType": "YulIdentifier", + "src": "4751:7:6" + }, + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "4760:6:6" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "4748:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "4748:19:6" + }, + "nodeType": "YulIf", + "src": "4745:179:6" + }, + { + "expression": { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "4944:4:6" + }, + { + "arguments": [ + { + "arguments": [ + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "4958:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4966:1:6", + "type": "", + "value": "2" + } + ], + "functionName": { + "name": "mul", + "nodeType": "YulIdentifier", + "src": "4954:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4954:14:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4970:1:6", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4950:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4950:22:6" + } + ], + "functionName": { + "name": "sstore", + "nodeType": "YulIdentifier", + "src": "4937:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "4937:36:6" + }, + "nodeType": "YulExpressionStatement", + "src": "4937:36:6" + } + ] + }, + "nodeType": "YulCase", + "src": "4365:618:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4370:1:6", + "type": "", + "value": "1" + } + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5000:222:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "5014:14:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5027:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "5018:5:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5051:67:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "5069:35:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "5088:3:6" + }, + { + "name": "srcOffset", + "nodeType": "YulIdentifier", + "src": "5093:9:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5084:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5084:19:6" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "5078:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "5078:26:6" + }, + "variableNames": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "5069:5:6" + } + ] + } + ] + }, + "condition": { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "5044:6:6" + }, + "nodeType": "YulIf", + "src": "5041:77:6" + }, + { + "expression": { + "arguments": [ + { + "name": "slot", + "nodeType": "YulIdentifier", + "src": "5138:4:6" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "5197:5:6" + }, + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "5204:6:6" + } + ], + "functionName": { + "name": "extract_used_part_and_set_length_of_short_byte_array", + "nodeType": "YulIdentifier", + "src": "5144:52:6" + }, + "nodeType": "YulFunctionCall", + "src": "5144:67:6" + } + ], + "functionName": { + "name": "sstore", + "nodeType": "YulIdentifier", + "src": "5131:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "5131:81:6" + }, + "nodeType": "YulExpressionStatement", + "src": "5131:81:6" + } + ] + }, + "nodeType": "YulCase", + "src": "4992:230:6", + "value": "default" + } + ], + "expression": { + "arguments": [ + { + "name": "newLen", + "nodeType": "YulIdentifier", + "src": "4345:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4353:2:6", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "4342:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "4342:14:6" + }, + "nodeType": "YulSwitch", + "src": "4335:887:6" + } + ] + }, + "name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "slot", + "nodeType": "YulTypedName", + "src": "3914:4:6", + "type": "" + }, + { + "name": "src", + "nodeType": "YulTypedName", + "src": "3920:3:6", + "type": "" + } + ], + "src": "3833:1395:6" + } + ] + }, + "contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n}\n", + "id": 6, + "language": "Yul", + "name": "#utility.yul" + } + ], + "linkReferences": {}, + "object": "60806040523480156200001157600080fd5b506040518060400160405280601281526020017f4d7568616e6e616420496e737572616e636500000000000000000000000000008152506040518060400160405280600381526020017f4d4954000000000000000000000000000000000000000000000000000000000081525081600390816200008f919062000412565b508060049081620000a1919062000412565b505050620000c4620000b8620000ca60201b60201c565b620000d260201b60201c565b620004f9565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200021a57607f821691505b60208210810362000230576200022f620001d2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200029a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200025b565b620002a686836200025b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620002f3620002ed620002e784620002be565b620002c8565b620002be565b9050919050565b6000819050919050565b6200030f83620002d2565b620003276200031e82620002fa565b84845462000268565b825550505050565b600090565b6200033e6200032f565b6200034b81848462000304565b505050565b5b8181101562000373576200036760008262000334565b60018101905062000351565b5050565b601f821115620003c2576200038c8162000236565b62000397846200024b565b81016020851015620003a7578190505b620003bf620003b6856200024b565b83018262000350565b50505b505050565b600082821c905092915050565b6000620003e760001984600802620003c7565b1980831691505092915050565b6000620004028383620003d4565b9150826002028217905092915050565b6200041d8262000198565b67ffffffffffffffff811115620004395762000438620001a3565b5b62000445825462000201565b6200045282828562000377565b600060209050601f8311600181146200048a576000841562000475578287015190505b620004818582620003f4565b865550620004f1565b601f1984166200049a8662000236565b60005b82811015620004c4578489015182556001820191506020850194506020810190506200049d565b86831015620004e45784890151620004e0601f891682620003d4565b8355505b6001600288020188555050505b505050505050565b61194280620005096000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a87430ba11610066578063a87430ba146102b1578063a9059cbb146102e4578063dd62ed3e14610314578063f2fde38b1461034457610100565b8063715018a61461023b5780638da5cb5b1461024557806395d89b4114610263578063a457c2d71461028157610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806340c10f19146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610360565b60405161011a919061103f565b60405180910390f35b61013d600480360381019061013891906110fa565b6103f2565b60405161014a9190611155565b60405180910390f35b61015b610415565b604051610168919061117f565b60405180910390f35b61018b6004803603810190610186919061119a565b61041f565b6040516101989190611155565b60405180910390f35b6101a961044e565b6040516101b69190611209565b60405180910390f35b6101d960048036038101906101d491906110fa565b610457565b6040516101e69190611155565b60405180910390f35b610209600480360381019061020491906110fa565b61048e565b005b61022560048036038101906102209190611224565b6104a4565b604051610232919061117f565b60405180910390f35b6102436104ec565b005b61024d610500565b60405161025a9190611260565b60405180910390f35b61026b61052a565b604051610278919061103f565b60405180910390f35b61029b600480360381019061029691906110fa565b6105bc565b6040516102a89190611155565b60405180910390f35b6102cb60048036038101906102c69190611224565b610633565b6040516102db949392919061127b565b60405180910390f35b6102fe60048036038101906102f991906110fa565b61070b565b60405161030b9190611155565b60405180910390f35b61032e600480360381019061032991906112c7565b61072e565b60405161033b919061117f565b60405180910390f35b61035e60048036038101906103599190611224565b6107b5565b005b60606003805461036f90611336565b80601f016020809104026020016040519081016040528092919081815260200182805461039b90611336565b80156103e85780601f106103bd576101008083540402835291602001916103e8565b820191906000526020600020905b8154815290600101906020018083116103cb57829003601f168201915b5050505050905090565b6000806103fd610838565b905061040a818585610840565b600191505092915050565b6000600254905090565b60008061042a610838565b9050610437858285610a09565b610442858585610a95565b60019150509392505050565b60006012905090565b600080610462610838565b9050610483818585610474858961072e565b61047e9190611396565b610840565b600191505092915050565b610496610d0b565b6104a08282610d89565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104f4610d0b565b6104fe6000610edf565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461053990611336565b80601f016020809104026020016040519081016040528092919081815260200182805461056590611336565b80156105b25780601f10610587576101008083540402835291602001916105b2565b820191906000526020600020905b81548152906001019060200180831161059557829003601f168201915b5050505050905090565b6000806105c7610838565b905060006105d5828661072e565b90508381101561061a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106119061143c565b60405180910390fd5b6106278286868403610840565b60019250505092915050565b600760205280600052604060002060009150905080600001805461065690611336565b80601f016020809104026020016040519081016040528092919081815260200182805461068290611336565b80156106cf5780601f106106a4576101008083540402835291602001916106cf565b820191906000526020600020905b8154815290600101906020018083116106b257829003601f168201915b5050505050908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020154908060030154905084565b600080610716610838565b9050610723818585610a95565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107bd610d0b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361082c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610823906114ce565b60405180910390fd5b61083581610edf565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a690611560565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361091e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610915906115f2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109fc919061117f565b60405180910390a3505050565b6000610a15848461072e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a8f5781811015610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a789061165e565b60405180910390fd5b610a8e8484848403610840565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afb906116f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90611782565b60405180910390fd5b610b7e838383610fa5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb90611814565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cf2919061117f565b60405180910390a3610d05848484610faa565b50505050565b610d13610838565b73ffffffffffffffffffffffffffffffffffffffff16610d31610500565b73ffffffffffffffffffffffffffffffffffffffff1614610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e90611880565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def906118ec565b60405180910390fd5b610e0460008383610fa5565b8060026000828254610e169190611396565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ec7919061117f565b60405180910390a3610edb60008383610faa565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fe9578082015181840152602081019050610fce565b60008484015250505050565b6000601f19601f8301169050919050565b600061101182610faf565b61101b8185610fba565b935061102b818560208601610fcb565b61103481610ff5565b840191505092915050565b600060208201905081810360008301526110598184611006565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061109182611066565b9050919050565b6110a181611086565b81146110ac57600080fd5b50565b6000813590506110be81611098565b92915050565b6000819050919050565b6110d7816110c4565b81146110e257600080fd5b50565b6000813590506110f4816110ce565b92915050565b6000806040838503121561111157611110611061565b5b600061111f858286016110af565b9250506020611130858286016110e5565b9150509250929050565b60008115159050919050565b61114f8161113a565b82525050565b600060208201905061116a6000830184611146565b92915050565b611179816110c4565b82525050565b60006020820190506111946000830184611170565b92915050565b6000806000606084860312156111b3576111b2611061565b5b60006111c1868287016110af565b93505060206111d2868287016110af565b92505060406111e3868287016110e5565b9150509250925092565b600060ff82169050919050565b611203816111ed565b82525050565b600060208201905061121e60008301846111fa565b92915050565b60006020828403121561123a57611239611061565b5b6000611248848285016110af565b91505092915050565b61125a81611086565b82525050565b60006020820190506112756000830184611251565b92915050565b600060808201905081810360008301526112958187611006565b90506112a46020830186611251565b6112b16040830185611170565b6112be6060830184611170565b95945050505050565b600080604083850312156112de576112dd611061565b5b60006112ec858286016110af565b92505060206112fd858286016110af565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061134e57607f821691505b60208210810361136157611360611307565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113a1826110c4565b91506113ac836110c4565b92508282019050808211156113c4576113c3611367565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611426602583610fba565b9150611431826113ca565b604082019050919050565b6000602082019050818103600083015261145581611419565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114b8602683610fba565b91506114c38261145c565b604082019050919050565b600060208201905081810360008301526114e7816114ab565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061154a602483610fba565b9150611555826114ee565b604082019050919050565b600060208201905081810360008301526115798161153d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115dc602283610fba565b91506115e782611580565b604082019050919050565b6000602082019050818103600083015261160b816115cf565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611648601d83610fba565b915061165382611612565b602082019050919050565b600060208201905081810360008301526116778161163b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116da602583610fba565b91506116e58261167e565b604082019050919050565b60006020820190508181036000830152611709816116cd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061176c602383610fba565b915061177782611710565b604082019050919050565b6000602082019050818103600083015261179b8161175f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006117fe602683610fba565b9150611809826117a2565b604082019050919050565b6000602082019050818103600083015261182d816117f1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061186a602083610fba565b915061187582611834565b602082019050919050565b600060208201905081810360008301526118998161185d565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006118d6601f83610fba565b91506118e1826118a0565b602082019050919050565b60006020820190508181036000830152611905816118c9565b905091905056fea26469706673582212203c8cbedc684db6cf68cec29d50046617cbf845f84734c2ca0906d155a73e741f64736f6c63430008140033", + "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D7568616E6E616420496E737572616E63650000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D49540000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP2 PUSH3 0x8F SWAP2 SWAP1 PUSH3 0x412 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP2 PUSH3 0xA1 SWAP2 SWAP1 PUSH3 0x412 JUMP JUMPDEST POP POP POP PUSH3 0xC4 PUSH3 0xB8 PUSH3 0xCA PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xD2 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x4F9 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 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 PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 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 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x21A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x230 JUMPI PUSH3 0x22F PUSH3 0x1D2 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH3 0x29A PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH3 0x25B JUMP JUMPDEST PUSH3 0x2A6 DUP7 DUP4 PUSH3 0x25B JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x2F3 PUSH3 0x2ED PUSH3 0x2E7 DUP5 PUSH3 0x2BE JUMP JUMPDEST PUSH3 0x2C8 JUMP JUMPDEST PUSH3 0x2BE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x30F DUP4 PUSH3 0x2D2 JUMP JUMPDEST PUSH3 0x327 PUSH3 0x31E DUP3 PUSH3 0x2FA JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH3 0x268 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH3 0x33E PUSH3 0x32F JUMP JUMPDEST PUSH3 0x34B DUP2 DUP5 DUP5 PUSH3 0x304 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x373 JUMPI PUSH3 0x367 PUSH1 0x0 DUP3 PUSH3 0x334 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH3 0x351 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x3C2 JUMPI PUSH3 0x38C DUP2 PUSH3 0x236 JUMP JUMPDEST PUSH3 0x397 DUP5 PUSH3 0x24B JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH3 0x3A7 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH3 0x3BF PUSH3 0x3B6 DUP6 PUSH3 0x24B JUMP JUMPDEST DUP4 ADD DUP3 PUSH3 0x350 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x3E7 PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH3 0x3C7 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x402 DUP4 DUP4 PUSH3 0x3D4 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x41D DUP3 PUSH3 0x198 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x439 JUMPI PUSH3 0x438 PUSH3 0x1A3 JUMP JUMPDEST JUMPDEST PUSH3 0x445 DUP3 SLOAD PUSH3 0x201 JUMP JUMPDEST PUSH3 0x452 DUP3 DUP3 DUP6 PUSH3 0x377 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x48A JUMPI PUSH1 0x0 DUP5 ISZERO PUSH3 0x475 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH3 0x481 DUP6 DUP3 PUSH3 0x3F4 JUMP JUMPDEST DUP7 SSTORE POP PUSH3 0x4F1 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH3 0x49A DUP7 PUSH3 0x236 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x4C4 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x49D JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH3 0x4E4 JUMPI DUP5 DUP10 ADD MLOAD PUSH3 0x4E0 PUSH1 0x1F DUP10 AND DUP3 PUSH3 0x3D4 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1942 DUP1 PUSH3 0x509 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x100 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xA87430BA GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA87430BA EQ PUSH2 0x2B1 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x2E4 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x314 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x344 JUMPI PUSH2 0x100 JUMP JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x23B JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x245 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x263 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x281 JUMPI PUSH2 0x100 JUMP JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1A1 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1BF JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x1EF JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x20B JUMPI PUSH2 0x100 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x105 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x123 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x153 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x171 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10D PUSH2 0x360 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x11A SWAP2 SWAP1 PUSH2 0x103F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x138 SWAP2 SWAP1 PUSH2 0x10FA JUMP JUMPDEST PUSH2 0x3F2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14A SWAP2 SWAP1 PUSH2 0x1155 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x15B PUSH2 0x415 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x168 SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x18B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x186 SWAP2 SWAP1 PUSH2 0x119A JUMP JUMPDEST PUSH2 0x41F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x198 SWAP2 SWAP1 PUSH2 0x1155 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1A9 PUSH2 0x44E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1B6 SWAP2 SWAP1 PUSH2 0x1209 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1D4 SWAP2 SWAP1 PUSH2 0x10FA JUMP JUMPDEST PUSH2 0x457 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1E6 SWAP2 SWAP1 PUSH2 0x1155 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x209 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x204 SWAP2 SWAP1 PUSH2 0x10FA JUMP JUMPDEST PUSH2 0x48E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x225 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x220 SWAP2 SWAP1 PUSH2 0x1224 JUMP JUMPDEST PUSH2 0x4A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x232 SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x243 PUSH2 0x4EC JUMP JUMPDEST STOP JUMPDEST PUSH2 0x24D PUSH2 0x500 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x25A SWAP2 SWAP1 PUSH2 0x1260 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x26B PUSH2 0x52A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x278 SWAP2 SWAP1 PUSH2 0x103F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x29B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x296 SWAP2 SWAP1 PUSH2 0x10FA JUMP JUMPDEST PUSH2 0x5BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A8 SWAP2 SWAP1 PUSH2 0x1155 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2CB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2C6 SWAP2 SWAP1 PUSH2 0x1224 JUMP JUMPDEST PUSH2 0x633 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2DB SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x127B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2FE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2F9 SWAP2 SWAP1 PUSH2 0x10FA JUMP JUMPDEST PUSH2 0x70B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x30B SWAP2 SWAP1 PUSH2 0x1155 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x32E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x329 SWAP2 SWAP1 PUSH2 0x12C7 JUMP JUMPDEST PUSH2 0x72E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x33B SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x35E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x359 SWAP2 SWAP1 PUSH2 0x1224 JUMP JUMPDEST PUSH2 0x7B5 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x36F SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x39B SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3E8 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3BD JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3E8 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x3CB JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x3FD PUSH2 0x838 JUMP JUMPDEST SWAP1 POP PUSH2 0x40A DUP2 DUP6 DUP6 PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x42A PUSH2 0x838 JUMP JUMPDEST SWAP1 POP PUSH2 0x437 DUP6 DUP3 DUP6 PUSH2 0xA09 JUMP JUMPDEST PUSH2 0x442 DUP6 DUP6 DUP6 PUSH2 0xA95 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x462 PUSH2 0x838 JUMP JUMPDEST SWAP1 POP PUSH2 0x483 DUP2 DUP6 DUP6 PUSH2 0x474 DUP6 DUP10 PUSH2 0x72E JUMP JUMPDEST PUSH2 0x47E SWAP2 SWAP1 PUSH2 0x1396 JUMP JUMPDEST PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x496 PUSH2 0xD0B JUMP JUMPDEST PUSH2 0x4A0 DUP3 DUP3 PUSH2 0xD89 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x4F4 PUSH2 0xD0B JUMP JUMPDEST PUSH2 0x4FE PUSH1 0x0 PUSH2 0xEDF JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x539 SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x565 SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5B2 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x587 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5B2 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x595 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x5C7 PUSH2 0x838 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x5D5 DUP3 DUP7 PUSH2 0x72E JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x61A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x611 SWAP1 PUSH2 0x143C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x627 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x7 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD DUP1 SLOAD PUSH2 0x656 SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x682 SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x6CF JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x6A4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x6CF JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x6B2 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP1 PUSH1 0x2 ADD SLOAD SWAP1 DUP1 PUSH1 0x3 ADD SLOAD SWAP1 POP DUP5 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x716 PUSH2 0x838 JUMP JUMPDEST SWAP1 POP PUSH2 0x723 DUP2 DUP6 DUP6 PUSH2 0xA95 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x7BD PUSH2 0xD0B JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x82C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x823 SWAP1 PUSH2 0x14CE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x835 DUP2 PUSH2 0xEDF JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x8AF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8A6 SWAP1 PUSH2 0x1560 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x91E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x915 SWAP1 PUSH2 0x15F2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x9FC SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA15 DUP5 DUP5 PUSH2 0x72E JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0xA8F JUMPI DUP2 DUP2 LT ISZERO PUSH2 0xA81 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA78 SWAP1 PUSH2 0x165E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA8E DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x840 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xB04 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP1 PUSH2 0x16F0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xB73 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB6A SWAP1 PUSH2 0x1782 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xB7E DUP4 DUP4 DUP4 PUSH2 0xFA5 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xC04 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBFB SWAP1 PUSH2 0x1814 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xCF2 SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xD05 DUP5 DUP5 DUP5 PUSH2 0xFAA JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0xD13 PUSH2 0x838 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD31 PUSH2 0x500 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xD87 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD7E SWAP1 PUSH2 0x1880 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xDF8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDEF SWAP1 PUSH2 0x18EC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xE04 PUSH1 0x0 DUP4 DUP4 PUSH2 0xFA5 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xE16 SWAP2 SWAP1 PUSH2 0x1396 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xEC7 SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xEDB PUSH1 0x0 DUP4 DUP4 PUSH2 0xFAA JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 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 POP POP POP JUMP JUMPDEST POP 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xFE9 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xFCE 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 0x1011 DUP3 PUSH2 0xFAF JUMP JUMPDEST PUSH2 0x101B DUP2 DUP6 PUSH2 0xFBA JUMP JUMPDEST SWAP4 POP PUSH2 0x102B DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xFCB JUMP JUMPDEST PUSH2 0x1034 DUP2 PUSH2 0xFF5 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 0x1059 DUP2 DUP5 PUSH2 0x1006 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1091 DUP3 PUSH2 0x1066 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x10A1 DUP2 PUSH2 0x1086 JUMP JUMPDEST DUP2 EQ PUSH2 0x10AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x10BE DUP2 PUSH2 0x1098 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x10D7 DUP2 PUSH2 0x10C4 JUMP JUMPDEST DUP2 EQ PUSH2 0x10E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x10F4 DUP2 PUSH2 0x10CE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1111 JUMPI PUSH2 0x1110 PUSH2 0x1061 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x111F DUP6 DUP3 DUP7 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1130 DUP6 DUP3 DUP7 ADD PUSH2 0x10E5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x114F DUP2 PUSH2 0x113A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x116A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1146 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1179 DUP2 PUSH2 0x10C4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1194 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1170 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x11B3 JUMPI PUSH2 0x11B2 PUSH2 0x1061 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x11C1 DUP7 DUP3 DUP8 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x11D2 DUP7 DUP3 DUP8 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x11E3 DUP7 DUP3 DUP8 ADD PUSH2 0x10E5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1203 DUP2 PUSH2 0x11ED JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x121E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x11FA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x123A JUMPI PUSH2 0x1239 PUSH2 0x1061 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1248 DUP5 DUP3 DUP6 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x125A DUP2 PUSH2 0x1086 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1275 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1251 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1295 DUP2 DUP8 PUSH2 0x1006 JUMP JUMPDEST SWAP1 POP PUSH2 0x12A4 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x1251 JUMP JUMPDEST PUSH2 0x12B1 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1170 JUMP JUMPDEST PUSH2 0x12BE PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x1170 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x12DE JUMPI PUSH2 0x12DD PUSH2 0x1061 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x12EC DUP6 DUP3 DUP7 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x12FD DUP6 DUP3 DUP7 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x134E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1361 JUMPI PUSH2 0x1360 PUSH2 0x1307 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x13A1 DUP3 PUSH2 0x10C4 JUMP JUMPDEST SWAP2 POP PUSH2 0x13AC DUP4 PUSH2 0x10C4 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x13C4 JUMPI PUSH2 0x13C3 PUSH2 0x1367 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1426 PUSH1 0x25 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1431 DUP3 PUSH2 0x13CA 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 0x1455 DUP2 PUSH2 0x1419 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x14B8 PUSH1 0x26 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x14C3 DUP3 PUSH2 0x145C 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 0x14E7 DUP2 PUSH2 0x14AB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x154A PUSH1 0x24 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1555 DUP3 PUSH2 0x14EE 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 0x1579 DUP2 PUSH2 0x153D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15DC PUSH1 0x22 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x15E7 DUP3 PUSH2 0x1580 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 0x160B DUP2 PUSH2 0x15CF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1648 PUSH1 0x1D DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1653 DUP3 PUSH2 0x1612 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 0x1677 DUP2 PUSH2 0x163B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16DA PUSH1 0x25 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x16E5 DUP3 PUSH2 0x167E 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 0x1709 DUP2 PUSH2 0x16CD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x176C PUSH1 0x23 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1777 DUP3 PUSH2 0x1710 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 0x179B DUP2 PUSH2 0x175F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17FE PUSH1 0x26 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1809 DUP3 PUSH2 0x17A2 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 0x182D DUP2 PUSH2 0x17F1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x186A PUSH1 0x20 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1875 DUP3 PUSH2 0x1834 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 0x1899 DUP2 PUSH2 0x185D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18D6 PUSH1 0x1F DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x18E1 DUP3 PUSH2 0x18A0 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 0x1905 DUP2 PUSH2 0x18C9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EXTCODECOPY DUP13 0xBE 0xDC PUSH9 0x4DB6CF68CEC29D5004 PUSH7 0x17CBF845F84734 0xC2 0xCA MULMOD MOD 0xD1 SSTORE 0xA7 RETURNDATACOPY PUSH21 0x1F64736F6C63430008140033000000000000000000 ", + "sourceMap": "167:499:5:-:0;;;243:51;;;;;;;;;;1980:113:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2054:5;2046;:13;;;;;;:::i;:::-;;2079:7;2069;:17;;;;;;:::i;:::-;;1980:113;;936:32:0;955:12;:10;;;:12;;:::i;:::-;936:18;;;:32;;:::i;:::-;167:499:5;;640:96:4;693:7;719:10;712:17;;640:96;:::o;2426:187:0:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;7:99:6:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:180::-;160:77;157:1;150:88;257:4;254:1;247:15;281:4;278:1;271:15;298:180;346:77;343:1;336:88;443:4;440:1;433:15;467:4;464:1;457:15;484:320;528:6;565:1;559:4;555:12;545:22;;612:1;606:4;602:12;633:18;623:81;;689:4;681:6;677:17;667:27;;623:81;751:2;743:6;740:14;720:18;717:38;714:84;;770:18;;:::i;:::-;714:84;535:269;484:320;;;:::o;810:141::-;859:4;882:3;874:11;;905:3;902:1;895:14;939:4;936:1;926:18;918:26;;810:141;;;:::o;957:93::-;994:6;1041:2;1036;1029:5;1025:14;1021:23;1011:33;;957:93;;;:::o;1056:107::-;1100:8;1150:5;1144:4;1140:16;1119:37;;1056:107;;;;:::o;1169:393::-;1238:6;1288:1;1276:10;1272:18;1311:97;1341:66;1330:9;1311:97;:::i;:::-;1429:39;1459:8;1448:9;1429:39;:::i;:::-;1417:51;;1501:4;1497:9;1490:5;1486:21;1477:30;;1550:4;1540:8;1536:19;1529:5;1526:30;1516:40;;1245:317;;1169:393;;;;;:::o;1568:77::-;1605:7;1634:5;1623:16;;1568:77;;;:::o;1651:60::-;1679:3;1700:5;1693:12;;1651:60;;;:::o;1717:142::-;1767:9;1800:53;1818:34;1827:24;1845:5;1827:24;:::i;:::-;1818:34;:::i;:::-;1800:53;:::i;:::-;1787:66;;1717:142;;;:::o;1865:75::-;1908:3;1929:5;1922:12;;1865:75;;;:::o;1946:269::-;2056:39;2087:7;2056:39;:::i;:::-;2117:91;2166:41;2190:16;2166:41;:::i;:::-;2158:6;2151:4;2145:11;2117:91;:::i;:::-;2111:4;2104:105;2022:193;1946:269;;;:::o;2221:73::-;2266:3;2221:73;:::o;2300:189::-;2377:32;;:::i;:::-;2418:65;2476:6;2468;2462:4;2418:65;:::i;:::-;2353:136;2300:189;;:::o;2495:186::-;2555:120;2572:3;2565:5;2562:14;2555:120;;;2626:39;2663:1;2656:5;2626:39;:::i;:::-;2599:1;2592:5;2588:13;2579:22;;2555:120;;;2495:186;;:::o;2687:543::-;2788:2;2783:3;2780:11;2777:446;;;2822:38;2854:5;2822:38;:::i;:::-;2906:29;2924:10;2906:29;:::i;:::-;2896:8;2892:44;3089:2;3077:10;3074:18;3071:49;;;3110:8;3095:23;;3071:49;3133:80;3189:22;3207:3;3189:22;:::i;:::-;3179:8;3175:37;3162:11;3133:80;:::i;:::-;2792:431;;2777:446;2687:543;;;:::o;3236:117::-;3290:8;3340:5;3334:4;3330:16;3309:37;;3236:117;;;;:::o;3359:169::-;3403:6;3436:51;3484:1;3480:6;3472:5;3469:1;3465:13;3436:51;:::i;:::-;3432:56;3517:4;3511;3507:15;3497:25;;3410:118;3359:169;;;;:::o;3533:295::-;3609:4;3755:29;3780:3;3774:4;3755:29;:::i;:::-;3747:37;;3817:3;3814:1;3810:11;3804:4;3801:21;3793:29;;3533:295;;;;:::o;3833:1395::-;3950:37;3983:3;3950:37;:::i;:::-;4052:18;4044:6;4041:30;4038:56;;;4074:18;;:::i;:::-;4038:56;4118:38;4150:4;4144:11;4118:38;:::i;:::-;4203:67;4263:6;4255;4249:4;4203:67;:::i;:::-;4297:1;4321:4;4308:17;;4353:2;4345:6;4342:14;4370:1;4365:618;;;;5027:1;5044:6;5041:77;;;5093:9;5088:3;5084:19;5078:26;5069:35;;5041:77;5144:67;5204:6;5197:5;5144:67;:::i;:::-;5138:4;5131:81;5000:222;4335:887;;4365:618;4417:4;4413:9;4405:6;4401:22;4451:37;4483:4;4451:37;:::i;:::-;4510:1;4524:208;4538:7;4535:1;4532:14;4524:208;;;4617:9;4612:3;4608:19;4602:26;4594:6;4587:42;4668:1;4660:6;4656:14;4646:24;;4715:2;4704:9;4700:18;4687:31;;4561:4;4558:1;4554:12;4549:17;;4524:208;;;4760:6;4751:7;4748:19;4745:179;;;4818:9;4813:3;4809:19;4803:26;4861:48;4903:4;4895:6;4891:17;4880:9;4861:48;:::i;:::-;4853:6;4846:64;4768:156;4745:179;4970:1;4966;4958:6;4954:14;4950:22;4944:4;4937:36;4372:611;;;4335:887;;3925:1303;;;3833:1395;;:::o;167:499:5:-;;;;;;;" + }, + "deployedBytecode": { + "functionDebugData": { + "@_afterTokenTransfer_698": { + "entryPoint": 4010, + "id": 698, + "parameterSlots": 3, + "returnSlots": 0 + }, + "@_approve_633": { + "entryPoint": 2112, + "id": 633, + "parameterSlots": 3, + "returnSlots": 0 + }, + "@_beforeTokenTransfer_687": { + "entryPoint": 4005, + "id": 687, + "parameterSlots": 3, + "returnSlots": 0 + }, + "@_checkOwner_54": { + "entryPoint": 3339, + "id": 54, + "parameterSlots": 0, + "returnSlots": 0 + }, + "@_mint_516": { + "entryPoint": 3465, + "id": 516, + "parameterSlots": 2, + "returnSlots": 0 + }, + "@_msgSender_814": { + "entryPoint": 2104, + "id": 814, + "parameterSlots": 0, + "returnSlots": 1 + }, + "@_spendAllowance_676": { + "entryPoint": 2569, + "id": 676, + "parameterSlots": 3, + "returnSlots": 0 + }, + "@_transferOwnership_111": { + "entryPoint": 3807, + "id": 111, + "parameterSlots": 1, + "returnSlots": 0 + }, + "@_transfer_459": { + "entryPoint": 2709, + "id": 459, + "parameterSlots": 3, + "returnSlots": 0 + }, + "@allowance_254": { + "entryPoint": 1838, + "id": 254, + "parameterSlots": 2, + "returnSlots": 1 + }, + "@approve_279": { + "entryPoint": 1010, + "id": 279, + "parameterSlots": 2, + "returnSlots": 1 + }, + "@balanceOf_211": { + "entryPoint": 1188, + "id": 211, + "parameterSlots": 1, + "returnSlots": 1 + }, + "@decimals_187": { + "entryPoint": 1102, + "id": 187, + "parameterSlots": 0, + "returnSlots": 1 + }, + "@decreaseAllowance_382": { + "entryPoint": 1468, + "id": 382, + "parameterSlots": 2, + "returnSlots": 1 + }, + "@increaseAllowance_341": { + "entryPoint": 1111, + "id": 341, + "parameterSlots": 2, + "returnSlots": 1 + }, + "@mint_857": { + "entryPoint": 1166, + "id": 857, + "parameterSlots": 2, + "returnSlots": 0 + }, + "@name_167": { + "entryPoint": 864, + "id": 167, + "parameterSlots": 0, + "returnSlots": 1 + }, + "@owner_40": { + "entryPoint": 1280, + "id": 40, + "parameterSlots": 0, + "returnSlots": 1 + }, + "@renounceOwnership_68": { + "entryPoint": 1260, + "id": 68, + "parameterSlots": 0, + "returnSlots": 0 + }, + "@symbol_177": { + "entryPoint": 1322, + "id": 177, + "parameterSlots": 0, + "returnSlots": 1 + }, + "@totalSupply_197": { + "entryPoint": 1045, + "id": 197, + "parameterSlots": 0, + "returnSlots": 1 + }, + "@transferFrom_312": { + "entryPoint": 1055, + "id": 312, + "parameterSlots": 3, + "returnSlots": 1 + }, + "@transferOwnership_91": { + "entryPoint": 1973, + "id": 91, + "parameterSlots": 1, + "returnSlots": 0 + }, + "@transfer_236": { + "entryPoint": 1803, + "id": 236, + "parameterSlots": 2, + "returnSlots": 1 + }, + "@users_862": { + "entryPoint": 1587, + "id": 862, + "parameterSlots": 0, + "returnSlots": 0 + }, + "abi_decode_t_address": { + "entryPoint": 4271, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_t_uint256": { + "entryPoint": 4325, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_tuple_t_address": { + "entryPoint": 4644, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_decode_tuple_t_addresst_address": { + "entryPoint": 4807, + "id": null, + "parameterSlots": 2, + "returnSlots": 2 + }, + "abi_decode_tuple_t_addresst_addresst_uint256": { + "entryPoint": 4506, + "id": null, + "parameterSlots": 2, + "returnSlots": 3 + }, + "abi_decode_tuple_t_addresst_uint256": { + "entryPoint": 4346, + "id": null, + "parameterSlots": 2, + "returnSlots": 2 + }, + "abi_encode_t_address_to_t_address_fromStack": { + "entryPoint": 4689, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "abi_encode_t_bool_to_t_bool_fromStack": { + "entryPoint": 4422, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": { + "entryPoint": 4102, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack": { + "entryPoint": 5983, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": { + "entryPoint": 5291, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack": { + "entryPoint": 5583, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack": { + "entryPoint": 5691, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack": { + "entryPoint": 6129, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": { + "entryPoint": 6237, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack": { + "entryPoint": 5837, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack": { + "entryPoint": 5437, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack": { + "entryPoint": 5145, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack": { + "entryPoint": 6345, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_t_uint256_to_t_uint256_fromStack": { + "entryPoint": 4464, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "abi_encode_t_uint8_to_t_uint8_fromStack": { + "entryPoint": 4602, + "id": null, + "parameterSlots": 2, + "returnSlots": 0 + }, + "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": { + "entryPoint": 4704, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": { + "entryPoint": 4437, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 4159, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_tuple_t_string_memory_ptr_t_address_t_uint256_t_uint256__to_t_string_memory_ptr_t_address_t_uint256_t_uint256__fromStack_reversed": { + "entryPoint": 4731, + "id": null, + "parameterSlots": 5, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 6018, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 5326, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 5618, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 5726, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 6164, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 6272, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 5872, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 5472, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 5180, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": { + "entryPoint": 6380, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": { + "entryPoint": 4479, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": { + "entryPoint": 4617, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "allocate_unbounded": { + "entryPoint": null, + "id": null, + "parameterSlots": 0, + "returnSlots": 1 + }, + "array_length_t_string_memory_ptr": { + "entryPoint": 4015, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "array_storeLengthForEncoding_t_string_memory_ptr_fromStack": { + "entryPoint": 4026, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "checked_add_t_uint256": { + "entryPoint": 5014, + "id": null, + "parameterSlots": 2, + "returnSlots": 1 + }, + "cleanup_t_address": { + "entryPoint": 4230, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "cleanup_t_bool": { + "entryPoint": 4410, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "cleanup_t_uint160": { + "entryPoint": 4198, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "cleanup_t_uint256": { + "entryPoint": 4292, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "cleanup_t_uint8": { + "entryPoint": 4589, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "copy_memory_to_memory_with_cleanup": { + "entryPoint": 4043, + "id": null, + "parameterSlots": 3, + "returnSlots": 0 + }, + "extract_byte_array_length": { + "entryPoint": 4918, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "panic_error_0x11": { + "entryPoint": 4967, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "panic_error_0x22": { + "entryPoint": 4871, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": { + "entryPoint": null, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": { + "entryPoint": 4193, + "id": null, + "parameterSlots": 0, + "returnSlots": 0 + }, + "round_up_to_mul_of_32": { + "entryPoint": 4085, + "id": null, + "parameterSlots": 1, + "returnSlots": 1 + }, + "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f": { + "entryPoint": 5904, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": { + "entryPoint": 5212, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029": { + "entryPoint": 5504, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe": { + "entryPoint": 5650, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6": { + "entryPoint": 6050, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": { + "entryPoint": 6196, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea": { + "entryPoint": 5758, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208": { + "entryPoint": 5358, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8": { + "entryPoint": 5066, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e": { + "entryPoint": 6304, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "validator_revert_t_address": { + "entryPoint": 4248, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + }, + "validator_revert_t_uint256": { + "entryPoint": 4302, + "id": null, + "parameterSlots": 1, + "returnSlots": 0 + } + }, + "generatedSources": [ + { + "ast": { + "nodeType": "YulBlock", + "src": "0:17698:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "66:40:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "77:22:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "93:5:6" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "87:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "87:12:6" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "77:6:6" + } + ] + } + ] + }, + "name": "array_length_t_string_memory_ptr", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "49:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "59:6:6", + "type": "" + } + ], + "src": "7:99:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "208:73:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "225:3:6" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "230:6:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "218:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "218:19:6" + }, + "nodeType": "YulExpressionStatement", + "src": "218:19:6" + }, + { + "nodeType": "YulAssignment", + "src": "246:29:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "265:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "270:4:6", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "261:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "261:14:6" + }, + "variableNames": [ + { + "name": "updated_pos", + "nodeType": "YulIdentifier", + "src": "246:11:6" + } + ] + } + ] + }, + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "180:3:6", + "type": "" + }, + { + "name": "length", + "nodeType": "YulTypedName", + "src": "185:6:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "updated_pos", + "nodeType": "YulTypedName", + "src": "196:11:6", + "type": "" + } + ], + "src": "112:169:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "349:184:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "359:10:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "368:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "i", + "nodeType": "YulTypedName", + "src": "363:1:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "428:63:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "dst", + "nodeType": "YulIdentifier", + "src": "453:3:6" + }, + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "458:1:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "449:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "449:11:6" + }, + { + "arguments": [ + { + "arguments": [ + { + "name": "src", + "nodeType": "YulIdentifier", + "src": "472:3:6" + }, + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "477:1:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "468:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "468:11:6" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "462:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "462:18:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "442:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "442:39:6" + }, + "nodeType": "YulExpressionStatement", + "src": "442:39:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "389:1:6" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "392:6:6" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "386:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "386:13:6" + }, + "nodeType": "YulForLoop", + "post": { + "nodeType": "YulBlock", + "src": "400:19:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "402:15:6", + "value": { + "arguments": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "411:1:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "414:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "407:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "407:10:6" + }, + "variableNames": [ + { + "name": "i", + "nodeType": "YulIdentifier", + "src": "402:1:6" + } + ] + } + ] + }, + "pre": { + "nodeType": "YulBlock", + "src": "382:3:6", + "statements": [] + }, + "src": "378:113:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "dst", + "nodeType": "YulIdentifier", + "src": "511:3:6" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "516:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "507:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "507:16:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "525:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "500:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "500:27:6" + }, + "nodeType": "YulExpressionStatement", + "src": "500:27:6" + } + ] + }, + "name": "copy_memory_to_memory_with_cleanup", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "src", + "nodeType": "YulTypedName", + "src": "331:3:6", + "type": "" + }, + { + "name": "dst", + "nodeType": "YulTypedName", + "src": "336:3:6", + "type": "" + }, + { + "name": "length", + "nodeType": "YulTypedName", + "src": "341:6:6", + "type": "" + } + ], + "src": "287:246:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "587:54:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "597:38:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "615:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "622:2:6", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "611:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "611:14:6" + }, + { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "631:2:6", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "not", + "nodeType": "YulIdentifier", + "src": "627:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "627:7:6" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "607:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "607:28:6" + }, + "variableNames": [ + { + "name": "result", + "nodeType": "YulIdentifier", + "src": "597:6:6" + } + ] + } + ] + }, + "name": "round_up_to_mul_of_32", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "570:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "result", + "nodeType": "YulTypedName", + "src": "580:6:6", + "type": "" + } + ], + "src": "539:102:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "739:285:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "749:53:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "796:5:6" + } + ], + "functionName": { + "name": "array_length_t_string_memory_ptr", + "nodeType": "YulIdentifier", + "src": "763:32:6" + }, + "nodeType": "YulFunctionCall", + "src": "763:39:6" + }, + "variables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "753:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "811:78:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "877:3:6" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "882:6:6" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "818:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "818:71:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "811:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "937:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "944:4:6", + "type": "", + "value": "0x20" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "933:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "933:16:6" + }, + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "951:3:6" + }, + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "956:6:6" + } + ], + "functionName": { + "name": "copy_memory_to_memory_with_cleanup", + "nodeType": "YulIdentifier", + "src": "898:34:6" + }, + "nodeType": "YulFunctionCall", + "src": "898:65:6" + }, + "nodeType": "YulExpressionStatement", + "src": "898:65:6" + }, + { + "nodeType": "YulAssignment", + "src": "972:46:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "983:3:6" + }, + { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "1010:6:6" + } + ], + "functionName": { + "name": "round_up_to_mul_of_32", + "nodeType": "YulIdentifier", + "src": "988:21:6" + }, + "nodeType": "YulFunctionCall", + "src": "988:29:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "979:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "979:39:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "972:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "720:5:6", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "727:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "735:3:6", + "type": "" + } + ], + "src": "647:377:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1148:195:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1158:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "1170:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1181:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "1166:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1166:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "1158:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "1205:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1216:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "1201:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1201:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "1224:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "1230:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "1220:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1220:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "1194:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "1194:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "1194:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "1250:86:6", + "value": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "1322:6:6" + }, + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "1331:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "1258:63:6" + }, + "nodeType": "YulFunctionCall", + "src": "1258:78:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "1250:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "1120:9:6", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "1132:6:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "1143:4:6", + "type": "" + } + ], + "src": "1030:313:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1389:35:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1399:19:6", + "value": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1415:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "mload", + "nodeType": "YulIdentifier", + "src": "1409:5:6" + }, + "nodeType": "YulFunctionCall", + "src": "1409:9:6" + }, + "variableNames": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "1399:6:6" + } + ] + } + ] + }, + "name": "allocate_unbounded", + "nodeType": "YulFunctionDefinition", + "returnVariables": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "1382:6:6", + "type": "" + } + ], + "src": "1349:75:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1519:28:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1536:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1539:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "1529:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "1529:12:6" + }, + "nodeType": "YulExpressionStatement", + "src": "1529:12:6" + } + ] + }, + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulFunctionDefinition", + "src": "1430:117:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1642:28:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1659:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1662:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "1652:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "1652:12:6" + }, + "nodeType": "YulExpressionStatement", + "src": "1652:12:6" + } + ] + }, + "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", + "nodeType": "YulFunctionDefinition", + "src": "1553:117:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1721:81:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1731:65:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1746:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "1753:42:6", + "type": "", + "value": "0xffffffffffffffffffffffffffffffffffffffff" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "1742:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "1742:54:6" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "1731:7:6" + } + ] + } + ] + }, + "name": "cleanup_t_uint160", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "1703:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "1713:7:6", + "type": "" + } + ], + "src": "1676:126:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1853:51:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "1863:35:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1892:5:6" + } + ], + "functionName": { + "name": "cleanup_t_uint160", + "nodeType": "YulIdentifier", + "src": "1874:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "1874:24:6" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "1863:7:6" + } + ] + } + ] + }, + "name": "cleanup_t_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "1835:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "1845:7:6", + "type": "" + } + ], + "src": "1808:96:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "1953:79:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "2010:16:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2019:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2022:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "2012:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "2012:12:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2012:12:6" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "1976:5:6" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2001:5:6" + } + ], + "functionName": { + "name": "cleanup_t_address", + "nodeType": "YulIdentifier", + "src": "1983:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "1983:24:6" + } + ], + "functionName": { + "name": "eq", + "nodeType": "YulIdentifier", + "src": "1973:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "1973:35:6" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "1966:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "1966:43:6" + }, + "nodeType": "YulIf", + "src": "1963:63:6" + } + ] + }, + "name": "validator_revert_t_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "1946:5:6", + "type": "" + } + ], + "src": "1910:122:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2090:87:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "2100:29:6", + "value": { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2122:6:6" + } + ], + "functionName": { + "name": "calldataload", + "nodeType": "YulIdentifier", + "src": "2109:12:6" + }, + "nodeType": "YulFunctionCall", + "src": "2109:20:6" + }, + "variableNames": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2100:5:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2165:5:6" + } + ], + "functionName": { + "name": "validator_revert_t_address", + "nodeType": "YulIdentifier", + "src": "2138:26:6" + }, + "nodeType": "YulFunctionCall", + "src": "2138:33:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2138:33:6" + } + ] + }, + "name": "abi_decode_t_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "2068:6:6", + "type": "" + }, + { + "name": "end", + "nodeType": "YulTypedName", + "src": "2076:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "2084:5:6", + "type": "" + } + ], + "src": "2038:139:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2228:32:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "2238:16:6", + "value": { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2249:5:6" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "2238:7:6" + } + ] + } + ] + }, + "name": "cleanup_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "2210:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "2220:7:6", + "type": "" + } + ], + "src": "2183:77:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2309:79:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "2366:16:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2375:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2378:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "2368:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "2368:12:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2368:12:6" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2332:5:6" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2357:5:6" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "2339:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "2339:24:6" + } + ], + "functionName": { + "name": "eq", + "nodeType": "YulIdentifier", + "src": "2329:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "2329:35:6" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "2322:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "2322:43:6" + }, + "nodeType": "YulIf", + "src": "2319:63:6" + } + ] + }, + "name": "validator_revert_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "2302:5:6", + "type": "" + } + ], + "src": "2266:122:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2446:87:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "2456:29:6", + "value": { + "arguments": [ + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2478:6:6" + } + ], + "functionName": { + "name": "calldataload", + "nodeType": "YulIdentifier", + "src": "2465:12:6" + }, + "nodeType": "YulFunctionCall", + "src": "2465:20:6" + }, + "variableNames": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2456:5:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "2521:5:6" + } + ], + "functionName": { + "name": "validator_revert_t_uint256", + "nodeType": "YulIdentifier", + "src": "2494:26:6" + }, + "nodeType": "YulFunctionCall", + "src": "2494:33:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2494:33:6" + } + ] + }, + "name": "abi_decode_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "2424:6:6", + "type": "" + }, + { + "name": "end", + "nodeType": "YulTypedName", + "src": "2432:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "2440:5:6", + "type": "" + } + ], + "src": "2394:139:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "2622:391:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "2668:83:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulIdentifier", + "src": "2670:77:6" + }, + "nodeType": "YulFunctionCall", + "src": "2670:79:6" + }, + "nodeType": "YulExpressionStatement", + "src": "2670:79:6" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "2643:7:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "2652:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "2639:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2639:23:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2664:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "2635:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2635:32:6" + }, + "nodeType": "YulIf", + "src": "2632:119:6" + }, + { + "nodeType": "YulBlock", + "src": "2761:117:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "2776:15:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2790:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "2780:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "2805:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "2840:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2851:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2836:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2836:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "2860:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_address", + "nodeType": "YulIdentifier", + "src": "2815:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "2815:53:6" + }, + "variableNames": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "2805:6:6" + } + ] + } + ] + }, + { + "nodeType": "YulBlock", + "src": "2888:118:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "2903:16:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "2917:2:6", + "type": "", + "value": "32" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "2907:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "2933:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "2968:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "2979:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "2964:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "2964:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "2988:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_uint256", + "nodeType": "YulIdentifier", + "src": "2943:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "2943:53:6" + }, + "variableNames": [ + { + "name": "value1", + "nodeType": "YulIdentifier", + "src": "2933:6:6" + } + ] + } + ] + } + ] + }, + "name": "abi_decode_tuple_t_addresst_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "2584:9:6", + "type": "" + }, + { + "name": "dataEnd", + "nodeType": "YulTypedName", + "src": "2595:7:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "2607:6:6", + "type": "" + }, + { + "name": "value1", + "nodeType": "YulTypedName", + "src": "2615:6:6", + "type": "" + } + ], + "src": "2539:474:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3061:48:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3071:32:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3096:5:6" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "3089:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "3089:13:6" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "3082:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "3082:21:6" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "3071:7:6" + } + ] + } + ] + }, + "name": "cleanup_t_bool", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "3043:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "3053:7:6", + "type": "" + } + ], + "src": "3019:90:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3174:50:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "3191:3:6" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3211:5:6" + } + ], + "functionName": { + "name": "cleanup_t_bool", + "nodeType": "YulIdentifier", + "src": "3196:14:6" + }, + "nodeType": "YulFunctionCall", + "src": "3196:21:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "3184:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "3184:34:6" + }, + "nodeType": "YulExpressionStatement", + "src": "3184:34:6" + } + ] + }, + "name": "abi_encode_t_bool_to_t_bool_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "3162:5:6", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "3169:3:6", + "type": "" + } + ], + "src": "3115:109:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3322:118:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3332:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3344:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3355:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3340:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3340:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "3332:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "3406:6:6" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3419:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3430:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3415:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3415:17:6" + } + ], + "functionName": { + "name": "abi_encode_t_bool_to_t_bool_fromStack", + "nodeType": "YulIdentifier", + "src": "3368:37:6" + }, + "nodeType": "YulFunctionCall", + "src": "3368:65:6" + }, + "nodeType": "YulExpressionStatement", + "src": "3368:65:6" + } + ] + }, + "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "3294:9:6", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "3306:6:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "3317:4:6", + "type": "" + } + ], + "src": "3230:210:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3511:53:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "3528:3:6" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "3551:5:6" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "3533:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "3533:24:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "3521:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "3521:37:6" + }, + "nodeType": "YulExpressionStatement", + "src": "3521:37:6" + } + ] + }, + "name": "abi_encode_t_uint256_to_t_uint256_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "3499:5:6", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "3506:3:6", + "type": "" + } + ], + "src": "3446:118:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3668:124:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "3678:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3690:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3701:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3686:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3686:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "3678:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "3758:6:6" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3771:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3782:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "3767:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3767:17:6" + } + ], + "functionName": { + "name": "abi_encode_t_uint256_to_t_uint256_fromStack", + "nodeType": "YulIdentifier", + "src": "3714:43:6" + }, + "nodeType": "YulFunctionCall", + "src": "3714:71:6" + }, + "nodeType": "YulExpressionStatement", + "src": "3714:71:6" + } + ] + }, + "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "3640:9:6", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "3652:6:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "3663:4:6", + "type": "" + } + ], + "src": "3570:222:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "3898:519:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "3944:83:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulIdentifier", + "src": "3946:77:6" + }, + "nodeType": "YulFunctionCall", + "src": "3946:79:6" + }, + "nodeType": "YulExpressionStatement", + "src": "3946:79:6" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "3919:7:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "3928:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "3915:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3915:23:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "3940:2:6", + "type": "", + "value": "96" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "3911:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "3911:32:6" + }, + "nodeType": "YulIf", + "src": "3908:119:6" + }, + { + "nodeType": "YulBlock", + "src": "4037:117:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "4052:15:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4066:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "4056:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "4081:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "4116:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "4127:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4112:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4112:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "4136:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_address", + "nodeType": "YulIdentifier", + "src": "4091:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "4091:53:6" + }, + "variableNames": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "4081:6:6" + } + ] + } + ] + }, + { + "nodeType": "YulBlock", + "src": "4164:118:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "4179:16:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4193:2:6", + "type": "", + "value": "32" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "4183:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "4209:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "4244:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "4255:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4240:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4240:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "4264:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_address", + "nodeType": "YulIdentifier", + "src": "4219:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "4219:53:6" + }, + "variableNames": [ + { + "name": "value1", + "nodeType": "YulIdentifier", + "src": "4209:6:6" + } + ] + } + ] + }, + { + "nodeType": "YulBlock", + "src": "4292:118:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "4307:16:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4321:2:6", + "type": "", + "value": "64" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "4311:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "4337:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "4372:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "4383:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4368:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4368:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "4392:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_uint256", + "nodeType": "YulIdentifier", + "src": "4347:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "4347:53:6" + }, + "variableNames": [ + { + "name": "value2", + "nodeType": "YulIdentifier", + "src": "4337:6:6" + } + ] + } + ] + } + ] + }, + "name": "abi_decode_tuple_t_addresst_addresst_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "3852:9:6", + "type": "" + }, + { + "name": "dataEnd", + "nodeType": "YulTypedName", + "src": "3863:7:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "3875:6:6", + "type": "" + }, + { + "name": "value1", + "nodeType": "YulTypedName", + "src": "3883:6:6", + "type": "" + }, + { + "name": "value2", + "nodeType": "YulTypedName", + "src": "3891:6:6", + "type": "" + } + ], + "src": "3798:619:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4466:43:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "4476:27:6", + "value": { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "4491:5:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4498:4:6", + "type": "", + "value": "0xff" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "4487:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4487:16:6" + }, + "variableNames": [ + { + "name": "cleaned", + "nodeType": "YulIdentifier", + "src": "4476:7:6" + } + ] + } + ] + }, + "name": "cleanup_t_uint8", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "4448:5:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "cleaned", + "nodeType": "YulTypedName", + "src": "4458:7:6", + "type": "" + } + ], + "src": "4423:86:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4576:51:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "4593:3:6" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "4614:5:6" + } + ], + "functionName": { + "name": "cleanup_t_uint8", + "nodeType": "YulIdentifier", + "src": "4598:15:6" + }, + "nodeType": "YulFunctionCall", + "src": "4598:22:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "4586:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "4586:35:6" + }, + "nodeType": "YulExpressionStatement", + "src": "4586:35:6" + } + ] + }, + "name": "abi_encode_t_uint8_to_t_uint8_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "4564:5:6", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "4571:3:6", + "type": "" + } + ], + "src": "4515:112:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4727:120:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "4737:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "4749:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4760:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4745:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4745:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "4737:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "4813:6:6" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "4826:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4837:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "4822:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4822:17:6" + } + ], + "functionName": { + "name": "abi_encode_t_uint8_to_t_uint8_fromStack", + "nodeType": "YulIdentifier", + "src": "4773:39:6" + }, + "nodeType": "YulFunctionCall", + "src": "4773:67:6" + }, + "nodeType": "YulExpressionStatement", + "src": "4773:67:6" + } + ] + }, + "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "4699:9:6", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "4711:6:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "4722:4:6", + "type": "" + } + ], + "src": "4633:214:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "4919:263:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "4965:83:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulIdentifier", + "src": "4967:77:6" + }, + "nodeType": "YulFunctionCall", + "src": "4967:79:6" + }, + "nodeType": "YulExpressionStatement", + "src": "4967:79:6" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "4940:7:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "4949:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "4936:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4936:23:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "4961:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "4932:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "4932:32:6" + }, + "nodeType": "YulIf", + "src": "4929:119:6" + }, + { + "nodeType": "YulBlock", + "src": "5058:117:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "5073:15:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5087:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "5077:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "5102:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5137:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "5148:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5133:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5133:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "5157:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_address", + "nodeType": "YulIdentifier", + "src": "5112:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "5112:53:6" + }, + "variableNames": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "5102:6:6" + } + ] + } + ] + } + ] + }, + "name": "abi_decode_tuple_t_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "4889:9:6", + "type": "" + }, + { + "name": "dataEnd", + "nodeType": "YulTypedName", + "src": "4900:7:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "4912:6:6", + "type": "" + } + ], + "src": "4853:329:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5253:53:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "5270:3:6" + }, + { + "arguments": [ + { + "name": "value", + "nodeType": "YulIdentifier", + "src": "5293:5:6" + } + ], + "functionName": { + "name": "cleanup_t_address", + "nodeType": "YulIdentifier", + "src": "5275:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "5275:24:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "5263:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "5263:37:6" + }, + "nodeType": "YulExpressionStatement", + "src": "5263:37:6" + } + ] + }, + "name": "abi_encode_t_address_to_t_address_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "value", + "nodeType": "YulTypedName", + "src": "5241:5:6", + "type": "" + }, + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "5248:3:6", + "type": "" + } + ], + "src": "5188:118:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5410:124:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "5420:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5432:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5443:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5428:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5428:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "5420:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "5500:6:6" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5513:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5524:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5509:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5509:17:6" + } + ], + "functionName": { + "name": "abi_encode_t_address_to_t_address_fromStack", + "nodeType": "YulIdentifier", + "src": "5456:43:6" + }, + "nodeType": "YulFunctionCall", + "src": "5456:71:6" + }, + "nodeType": "YulExpressionStatement", + "src": "5456:71:6" + } + ] + }, + "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "5382:9:6", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "5394:6:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "5405:4:6", + "type": "" + } + ], + "src": "5312:222:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "5742:442:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "5752:27:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5764:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5775:3:6", + "type": "", + "value": "128" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5760:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5760:19:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "5752:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5800:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "5811:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5796:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5796:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "5819:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5825:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "5815:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5815:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "5789:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "5789:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "5789:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "5845:86:6", + "value": { + "arguments": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "5917:6:6" + }, + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "5926:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "5853:63:6" + }, + "nodeType": "YulFunctionCall", + "src": "5853:78:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "5845:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "value1", + "nodeType": "YulIdentifier", + "src": "5985:6:6" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "5998:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6009:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "5994:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "5994:18:6" + } + ], + "functionName": { + "name": "abi_encode_t_address_to_t_address_fromStack", + "nodeType": "YulIdentifier", + "src": "5941:43:6" + }, + "nodeType": "YulFunctionCall", + "src": "5941:72:6" + }, + "nodeType": "YulExpressionStatement", + "src": "5941:72:6" + }, + { + "expression": { + "arguments": [ + { + "name": "value2", + "nodeType": "YulIdentifier", + "src": "6067:6:6" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "6080:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6091:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6076:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6076:18:6" + } + ], + "functionName": { + "name": "abi_encode_t_uint256_to_t_uint256_fromStack", + "nodeType": "YulIdentifier", + "src": "6023:43:6" + }, + "nodeType": "YulFunctionCall", + "src": "6023:72:6" + }, + "nodeType": "YulExpressionStatement", + "src": "6023:72:6" + }, + { + "expression": { + "arguments": [ + { + "name": "value3", + "nodeType": "YulIdentifier", + "src": "6149:6:6" + }, + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "6162:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6173:2:6", + "type": "", + "value": "96" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6158:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6158:18:6" + } + ], + "functionName": { + "name": "abi_encode_t_uint256_to_t_uint256_fromStack", + "nodeType": "YulIdentifier", + "src": "6105:43:6" + }, + "nodeType": "YulFunctionCall", + "src": "6105:72:6" + }, + "nodeType": "YulExpressionStatement", + "src": "6105:72:6" + } + ] + }, + "name": "abi_encode_tuple_t_string_memory_ptr_t_address_t_uint256_t_uint256__to_t_string_memory_ptr_t_address_t_uint256_t_uint256__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "5690:9:6", + "type": "" + }, + { + "name": "value3", + "nodeType": "YulTypedName", + "src": "5702:6:6", + "type": "" + }, + { + "name": "value2", + "nodeType": "YulTypedName", + "src": "5710:6:6", + "type": "" + }, + { + "name": "value1", + "nodeType": "YulTypedName", + "src": "5718:6:6", + "type": "" + }, + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "5726:6:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "5737:4:6", + "type": "" + } + ], + "src": "5540:644:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6273:391:6", + "statements": [ + { + "body": { + "nodeType": "YulBlock", + "src": "6319:83:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", + "nodeType": "YulIdentifier", + "src": "6321:77:6" + }, + "nodeType": "YulFunctionCall", + "src": "6321:79:6" + }, + "nodeType": "YulExpressionStatement", + "src": "6321:79:6" + } + ] + }, + "condition": { + "arguments": [ + { + "arguments": [ + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "6294:7:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "6303:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "6290:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6290:23:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6315:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "slt", + "nodeType": "YulIdentifier", + "src": "6286:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6286:32:6" + }, + "nodeType": "YulIf", + "src": "6283:119:6" + }, + { + "nodeType": "YulBlock", + "src": "6412:117:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "6427:15:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6441:1:6", + "type": "", + "value": "0" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "6431:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "6456:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "6491:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "6502:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6487:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6487:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "6511:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_address", + "nodeType": "YulIdentifier", + "src": "6466:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "6466:53:6" + }, + "variableNames": [ + { + "name": "value0", + "nodeType": "YulIdentifier", + "src": "6456:6:6" + } + ] + } + ] + }, + { + "nodeType": "YulBlock", + "src": "6539:118:6", + "statements": [ + { + "nodeType": "YulVariableDeclaration", + "src": "6554:16:6", + "value": { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6568:2:6", + "type": "", + "value": "32" + }, + "variables": [ + { + "name": "offset", + "nodeType": "YulTypedName", + "src": "6558:6:6", + "type": "" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "6584:63:6", + "value": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "6619:9:6" + }, + { + "name": "offset", + "nodeType": "YulIdentifier", + "src": "6630:6:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "6615:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6615:22:6" + }, + { + "name": "dataEnd", + "nodeType": "YulIdentifier", + "src": "6639:7:6" + } + ], + "functionName": { + "name": "abi_decode_t_address", + "nodeType": "YulIdentifier", + "src": "6594:20:6" + }, + "nodeType": "YulFunctionCall", + "src": "6594:53:6" + }, + "variableNames": [ + { + "name": "value1", + "nodeType": "YulIdentifier", + "src": "6584:6:6" + } + ] + } + ] + } + ] + }, + "name": "abi_decode_tuple_t_addresst_address", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "6235:9:6", + "type": "" + }, + { + "name": "dataEnd", + "nodeType": "YulTypedName", + "src": "6246:7:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "value0", + "nodeType": "YulTypedName", + "src": "6258:6:6", + "type": "" + }, + { + "name": "value1", + "nodeType": "YulTypedName", + "src": "6266:6:6", + "type": "" + } + ], + "src": "6190:474:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6698:152:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6715:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6718:77:6", + "type": "", + "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "6708:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "6708:88:6" + }, + "nodeType": "YulExpressionStatement", + "src": "6708:88:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6812:1:6", + "type": "", + "value": "4" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6815:4:6", + "type": "", + "value": "0x22" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "6805:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "6805:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "6805:15:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6836:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6839:4:6", + "type": "", + "value": "0x24" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "6829:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "6829:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "6829:15:6" + } + ] + }, + "name": "panic_error_0x22", + "nodeType": "YulFunctionDefinition", + "src": "6670:180:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "6907:269:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "6917:22:6", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "6931:4:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6937:1:6", + "type": "", + "value": "2" + } + ], + "functionName": { + "name": "div", + "nodeType": "YulIdentifier", + "src": "6927:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6927:12:6" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "6917:6:6" + } + ] + }, + { + "nodeType": "YulVariableDeclaration", + "src": "6948:38:6", + "value": { + "arguments": [ + { + "name": "data", + "nodeType": "YulIdentifier", + "src": "6978:4:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "6984:1:6", + "type": "", + "value": "1" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "6974:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "6974:12:6" + }, + "variables": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulTypedName", + "src": "6952:18:6", + "type": "" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7025:51:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "7039:27:6", + "value": { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "7053:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7061:4:6", + "type": "", + "value": "0x7f" + } + ], + "functionName": { + "name": "and", + "nodeType": "YulIdentifier", + "src": "7049:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "7049:17:6" + }, + "variableNames": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "7039:6:6" + } + ] + } + ] + }, + "condition": { + "arguments": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulIdentifier", + "src": "7005:18:6" + } + ], + "functionName": { + "name": "iszero", + "nodeType": "YulIdentifier", + "src": "6998:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "6998:26:6" + }, + "nodeType": "YulIf", + "src": "6995:81:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7128:42:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "panic_error_0x22", + "nodeType": "YulIdentifier", + "src": "7142:16:6" + }, + "nodeType": "YulFunctionCall", + "src": "7142:18:6" + }, + "nodeType": "YulExpressionStatement", + "src": "7142:18:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "outOfPlaceEncoding", + "nodeType": "YulIdentifier", + "src": "7092:18:6" + }, + { + "arguments": [ + { + "name": "length", + "nodeType": "YulIdentifier", + "src": "7115:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7123:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "lt", + "nodeType": "YulIdentifier", + "src": "7112:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "7112:14:6" + } + ], + "functionName": { + "name": "eq", + "nodeType": "YulIdentifier", + "src": "7089:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "7089:38:6" + }, + "nodeType": "YulIf", + "src": "7086:84:6" + } + ] + }, + "name": "extract_byte_array_length", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "data", + "nodeType": "YulTypedName", + "src": "6891:4:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "length", + "nodeType": "YulTypedName", + "src": "6900:6:6", + "type": "" + } + ], + "src": "6856:320:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7210:152:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7227:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7230:77:6", + "type": "", + "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "7220:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "7220:88:6" + }, + "nodeType": "YulExpressionStatement", + "src": "7220:88:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7324:1:6", + "type": "", + "value": "4" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7327:4:6", + "type": "", + "value": "0x11" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "7317:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "7317:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "7317:15:6" + }, + { + "expression": { + "arguments": [ + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7348:1:6", + "type": "", + "value": "0" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7351:4:6", + "type": "", + "value": "0x24" + } + ], + "functionName": { + "name": "revert", + "nodeType": "YulIdentifier", + "src": "7341:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "7341:15:6" + }, + "nodeType": "YulExpressionStatement", + "src": "7341:15:6" + } + ] + }, + "name": "panic_error_0x11", + "nodeType": "YulFunctionDefinition", + "src": "7182:180:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7412:147:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "7422:25:6", + "value": { + "arguments": [ + { + "name": "x", + "nodeType": "YulIdentifier", + "src": "7445:1:6" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "7427:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "7427:20:6" + }, + "variableNames": [ + { + "name": "x", + "nodeType": "YulIdentifier", + "src": "7422:1:6" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "7456:25:6", + "value": { + "arguments": [ + { + "name": "y", + "nodeType": "YulIdentifier", + "src": "7479:1:6" + } + ], + "functionName": { + "name": "cleanup_t_uint256", + "nodeType": "YulIdentifier", + "src": "7461:17:6" + }, + "nodeType": "YulFunctionCall", + "src": "7461:20:6" + }, + "variableNames": [ + { + "name": "y", + "nodeType": "YulIdentifier", + "src": "7456:1:6" + } + ] + }, + { + "nodeType": "YulAssignment", + "src": "7490:16:6", + "value": { + "arguments": [ + { + "name": "x", + "nodeType": "YulIdentifier", + "src": "7501:1:6" + }, + { + "name": "y", + "nodeType": "YulIdentifier", + "src": "7504:1:6" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "7497:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "7497:9:6" + }, + "variableNames": [ + { + "name": "sum", + "nodeType": "YulIdentifier", + "src": "7490:3:6" + } + ] + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7530:22:6", + "statements": [ + { + "expression": { + "arguments": [], + "functionName": { + "name": "panic_error_0x11", + "nodeType": "YulIdentifier", + "src": "7532:16:6" + }, + "nodeType": "YulFunctionCall", + "src": "7532:18:6" + }, + "nodeType": "YulExpressionStatement", + "src": "7532:18:6" + } + ] + }, + "condition": { + "arguments": [ + { + "name": "x", + "nodeType": "YulIdentifier", + "src": "7522:1:6" + }, + { + "name": "sum", + "nodeType": "YulIdentifier", + "src": "7525:3:6" + } + ], + "functionName": { + "name": "gt", + "nodeType": "YulIdentifier", + "src": "7519:2:6" + }, + "nodeType": "YulFunctionCall", + "src": "7519:10:6" + }, + "nodeType": "YulIf", + "src": "7516:36:6" + } + ] + }, + "name": "checked_add_t_uint256", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "x", + "nodeType": "YulTypedName", + "src": "7399:1:6", + "type": "" + }, + { + "name": "y", + "nodeType": "YulTypedName", + "src": "7402:1:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "sum", + "nodeType": "YulTypedName", + "src": "7408:3:6", + "type": "" + } + ], + "src": "7368:191:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7671:118:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "7693:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7701:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "7689:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "7689:14:6" + }, + { + "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77", + "kind": "string", + "nodeType": "YulLiteral", + "src": "7705:34:6", + "type": "", + "value": "ERC20: decreased allowance below" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "7682:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "7682:58:6" + }, + "nodeType": "YulExpressionStatement", + "src": "7682:58:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "7761:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "7769:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "7757:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "7757:15:6" + }, + { + "hexValue": "207a65726f", + "kind": "string", + "nodeType": "YulLiteral", + "src": "7774:7:6", + "type": "", + "value": " zero" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "7750:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "7750:32:6" + }, + "nodeType": "YulExpressionStatement", + "src": "7750:32:6" + } + ] + }, + "name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "7663:6:6", + "type": "" + } + ], + "src": "7565:224:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "7941:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "7951:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8017:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8022:2:6", + "type": "", + "value": "37" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "7958:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "7958:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "7951:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8123:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8", + "nodeType": "YulIdentifier", + "src": "8034:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "8034:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "8034:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "8136:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8147:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8152:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8143:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8143:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "8136:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "7929:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "7937:3:6", + "type": "" + } + ], + "src": "7795:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "8338:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "8348:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "8360:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8371:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8356:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8356:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "8348:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "8395:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8406:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8391:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8391:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "8414:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "8420:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "8410:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8410:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "8384:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "8384:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "8384:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "8440:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "8574:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "8448:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "8448:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "8440:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "8318:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "8333:4:6", + "type": "" + } + ], + "src": "8167:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "8698:119:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "8720:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8728:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8716:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8716:14:6" + }, + { + "hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061", + "kind": "string", + "nodeType": "YulLiteral", + "src": "8732:34:6", + "type": "", + "value": "Ownable: new owner is the zero a" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "8709:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "8709:58:6" + }, + "nodeType": "YulExpressionStatement", + "src": "8709:58:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "8788:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "8796:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "8784:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "8784:15:6" + }, + { + "hexValue": "646472657373", + "kind": "string", + "nodeType": "YulLiteral", + "src": "8801:8:6", + "type": "", + "value": "ddress" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "8777:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "8777:33:6" + }, + "nodeType": "YulExpressionStatement", + "src": "8777:33:6" + } + ] + }, + "name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "8690:6:6", + "type": "" + } + ], + "src": "8592:225:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "8969:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "8979:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9045:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9050:2:6", + "type": "", + "value": "38" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "8986:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "8986:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "8979:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9151:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe", + "nodeType": "YulIdentifier", + "src": "9062:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "9062:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "9062:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "9164:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "9175:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9180:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "9171:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "9171:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "9164:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "8957:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "8965:3:6", + "type": "" + } + ], + "src": "8823:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "9366:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "9376:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "9388:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9399:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "9384:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "9384:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "9376:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "9423:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9434:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "9419:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "9419:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "9442:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "9448:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "9438:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "9438:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "9412:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "9412:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "9412:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "9468:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "9602:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "9476:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "9476:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "9468:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "9346:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "9361:4:6", + "type": "" + } + ], + "src": "9195:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "9726:117:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "9748:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9756:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "9744:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "9744:14:6" + }, + { + "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464", + "kind": "string", + "nodeType": "YulLiteral", + "src": "9760:34:6", + "type": "", + "value": "ERC20: approve from the zero add" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "9737:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "9737:58:6" + }, + "nodeType": "YulExpressionStatement", + "src": "9737:58:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "9816:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "9824:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "9812:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "9812:15:6" + }, + { + "hexValue": "72657373", + "kind": "string", + "nodeType": "YulLiteral", + "src": "9829:6:6", + "type": "", + "value": "ress" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "9805:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "9805:31:6" + }, + "nodeType": "YulExpressionStatement", + "src": "9805:31:6" + } + ] + }, + "name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "9718:6:6", + "type": "" + } + ], + "src": "9620:223:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "9995:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "10005:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "10071:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10076:2:6", + "type": "", + "value": "36" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "10012:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "10012:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "10005:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "10177:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208", + "nodeType": "YulIdentifier", + "src": "10088:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "10088:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "10088:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "10190:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "10201:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10206:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10197:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "10197:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "10190:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "9983:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "9991:3:6", + "type": "" + } + ], + "src": "9849:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "10392:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "10402:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "10414:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10425:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10410:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "10410:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "10402:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "10449:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10460:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10445:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "10445:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "10468:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "10474:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "10464:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "10464:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "10438:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "10438:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "10438:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "10494:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "10628:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "10502:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "10502:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "10494:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "10372:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "10387:4:6", + "type": "" + } + ], + "src": "10221:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "10752:115:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "10774:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10782:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10770:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "10770:14:6" + }, + { + "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265", + "kind": "string", + "nodeType": "YulLiteral", + "src": "10786:34:6", + "type": "", + "value": "ERC20: approve to the zero addre" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "10763:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "10763:58:6" + }, + "nodeType": "YulExpressionStatement", + "src": "10763:58:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "10842:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "10850:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "10838:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "10838:15:6" + }, + { + "hexValue": "7373", + "kind": "string", + "nodeType": "YulLiteral", + "src": "10855:4:6", + "type": "", + "value": "ss" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "10831:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "10831:29:6" + }, + "nodeType": "YulExpressionStatement", + "src": "10831:29:6" + } + ] + }, + "name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "10744:6:6", + "type": "" + } + ], + "src": "10646:221:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "11019:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "11029:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "11095:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11100:2:6", + "type": "", + "value": "34" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "11036:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "11036:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "11029:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "11201:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029", + "nodeType": "YulIdentifier", + "src": "11112:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "11112:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "11112:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "11214:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "11225:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11230:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "11221:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "11221:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "11214:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "11007:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "11015:3:6", + "type": "" + } + ], + "src": "10873:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "11416:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "11426:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "11438:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11449:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "11434:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "11434:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "11426:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "11473:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11484:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "11469:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "11469:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "11492:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "11498:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "11488:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "11488:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "11462:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "11462:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "11462:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "11518:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "11652:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "11526:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "11526:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "11518:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "11396:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "11411:4:6", + "type": "" + } + ], + "src": "11245:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "11776:73:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "11798:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "11806:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "11794:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "11794:14:6" + }, + { + "hexValue": "45524332303a20696e73756666696369656e7420616c6c6f77616e6365", + "kind": "string", + "nodeType": "YulLiteral", + "src": "11810:31:6", + "type": "", + "value": "ERC20: insufficient allowance" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "11787:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "11787:55:6" + }, + "nodeType": "YulExpressionStatement", + "src": "11787:55:6" + } + ] + }, + "name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "11768:6:6", + "type": "" + } + ], + "src": "11670:179:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "12001:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "12011:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "12077:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12082:2:6", + "type": "", + "value": "29" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "12018:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "12018:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "12011:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "12183:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe", + "nodeType": "YulIdentifier", + "src": "12094:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "12094:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "12094:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "12196:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "12207:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12212:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "12203:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "12203:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "12196:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "11989:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "11997:3:6", + "type": "" + } + ], + "src": "11855:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "12398:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "12408:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "12420:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12431:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "12416:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "12416:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "12408:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "12455:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12466:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "12451:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "12451:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "12474:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "12480:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "12470:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "12470:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "12444:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "12444:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "12444:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "12500:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "12634:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "12508:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "12508:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "12500:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "12378:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "12393:4:6", + "type": "" + } + ], + "src": "12227:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "12758:118:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "12780:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12788:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "12776:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "12776:14:6" + }, + { + "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164", + "kind": "string", + "nodeType": "YulLiteral", + "src": "12792:34:6", + "type": "", + "value": "ERC20: transfer from the zero ad" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "12769:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "12769:58:6" + }, + "nodeType": "YulExpressionStatement", + "src": "12769:58:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "12848:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "12856:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "12844:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "12844:15:6" + }, + { + "hexValue": "6472657373", + "kind": "string", + "nodeType": "YulLiteral", + "src": "12861:7:6", + "type": "", + "value": "dress" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "12837:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "12837:32:6" + }, + "nodeType": "YulExpressionStatement", + "src": "12837:32:6" + } + ] + }, + "name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "12750:6:6", + "type": "" + } + ], + "src": "12652:224:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "13028:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "13038:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "13104:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13109:2:6", + "type": "", + "value": "37" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "13045:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "13045:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "13038:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "13210:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea", + "nodeType": "YulIdentifier", + "src": "13121:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "13121:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "13121:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "13223:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "13234:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13239:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "13230:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "13230:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "13223:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "13016:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "13024:3:6", + "type": "" + } + ], + "src": "12882:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "13425:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "13435:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "13447:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13458:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "13443:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "13443:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "13435:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "13482:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13493:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "13478:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "13478:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "13501:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "13507:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "13497:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "13497:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "13471:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "13471:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "13471:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "13527:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "13661:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "13535:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "13535:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "13527:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "13405:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "13420:4:6", + "type": "" + } + ], + "src": "13254:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "13785:116:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "13807:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13815:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "13803:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "13803:14:6" + }, + { + "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472", + "kind": "string", + "nodeType": "YulLiteral", + "src": "13819:34:6", + "type": "", + "value": "ERC20: transfer to the zero addr" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "13796:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "13796:58:6" + }, + "nodeType": "YulExpressionStatement", + "src": "13796:58:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "13875:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "13883:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "13871:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "13871:15:6" + }, + { + "hexValue": "657373", + "kind": "string", + "nodeType": "YulLiteral", + "src": "13888:5:6", + "type": "", + "value": "ess" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "13864:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "13864:30:6" + }, + "nodeType": "YulExpressionStatement", + "src": "13864:30:6" + } + ] + }, + "name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "13777:6:6", + "type": "" + } + ], + "src": "13679:222:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "14053:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "14063:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "14129:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14134:2:6", + "type": "", + "value": "35" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "14070:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "14070:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "14063:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "14235:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f", + "nodeType": "YulIdentifier", + "src": "14146:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "14146:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "14146:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "14248:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "14259:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14264:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14255:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "14255:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "14248:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "14041:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "14049:3:6", + "type": "" + } + ], + "src": "13907:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "14450:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "14460:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "14472:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14483:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14468:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "14468:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "14460:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "14507:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14518:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14503:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "14503:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "14526:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "14532:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "14522:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "14522:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "14496:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "14496:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "14496:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "14552:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "14686:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "14560:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "14560:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "14552:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "14430:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "14445:4:6", + "type": "" + } + ], + "src": "14279:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "14810:119:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "14832:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14840:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14828:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "14828:14:6" + }, + { + "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062", + "kind": "string", + "nodeType": "YulLiteral", + "src": "14844:34:6", + "type": "", + "value": "ERC20: transfer amount exceeds b" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "14821:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "14821:58:6" + }, + "nodeType": "YulExpressionStatement", + "src": "14821:58:6" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "14900:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "14908:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "14896:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "14896:15:6" + }, + { + "hexValue": "616c616e6365", + "kind": "string", + "nodeType": "YulLiteral", + "src": "14913:8:6", + "type": "", + "value": "alance" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "14889:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "14889:33:6" + }, + "nodeType": "YulExpressionStatement", + "src": "14889:33:6" + } + ] + }, + "name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "14802:6:6", + "type": "" + } + ], + "src": "14704:225:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "15081:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "15091:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "15157:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "15162:2:6", + "type": "", + "value": "38" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "15098:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "15098:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "15091:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "15263:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6", + "nodeType": "YulIdentifier", + "src": "15174:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "15174:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "15174:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "15276:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "15287:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "15292:2:6", + "type": "", + "value": "64" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "15283:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "15283:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "15276:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "15069:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "15077:3:6", + "type": "" + } + ], + "src": "14935:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "15478:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "15488:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "15500:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "15511:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "15496:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "15496:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "15488:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "15535:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "15546:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "15531:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "15531:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "15554:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "15560:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "15550:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "15550:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "15524:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "15524:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "15524:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "15580:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "15714:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "15588:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "15588:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "15580:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "15458:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "15473:4:6", + "type": "" + } + ], + "src": "15307:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "15838:76:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "15860:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "15868:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "15856:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "15856:14:6" + }, + { + "hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572", + "kind": "string", + "nodeType": "YulLiteral", + "src": "15872:34:6", + "type": "", + "value": "Ownable: caller is not the owner" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "15849:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "15849:58:6" + }, + "nodeType": "YulExpressionStatement", + "src": "15849:58:6" + } + ] + }, + "name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "15830:6:6", + "type": "" + } + ], + "src": "15732:182:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "16066:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "16076:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "16142:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "16147:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "16083:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "16083:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "16076:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "16248:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe", + "nodeType": "YulIdentifier", + "src": "16159:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "16159:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "16159:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "16261:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "16272:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "16277:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "16268:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "16268:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "16261:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "16054:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "16062:3:6", + "type": "" + } + ], + "src": "15920:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "16463:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "16473:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "16485:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "16496:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "16481:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "16481:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "16473:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "16520:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "16531:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "16516:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "16516:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "16539:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "16545:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "16535:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "16535:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "16509:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "16509:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "16509:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "16565:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "16699:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "16573:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "16573:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "16565:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "16443:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "16458:4:6", + "type": "" + } + ], + "src": "16292:419:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "16823:75:6", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "memPtr", + "nodeType": "YulIdentifier", + "src": "16845:6:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "16853:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "16841:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "16841:14:6" + }, + { + "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373", + "kind": "string", + "nodeType": "YulLiteral", + "src": "16857:33:6", + "type": "", + "value": "ERC20: mint to the zero address" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "16834:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "16834:57:6" + }, + "nodeType": "YulExpressionStatement", + "src": "16834:57:6" + } + ] + }, + "name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "memPtr", + "nodeType": "YulTypedName", + "src": "16815:6:6", + "type": "" + } + ], + "src": "16717:181:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "17050:220:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "17060:74:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "17126:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "17131:2:6", + "type": "", + "value": "31" + } + ], + "functionName": { + "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "17067:58:6" + }, + "nodeType": "YulFunctionCall", + "src": "17067:67:6" + }, + "variableNames": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "17060:3:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "17232:3:6" + } + ], + "functionName": { + "name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e", + "nodeType": "YulIdentifier", + "src": "17143:88:6" + }, + "nodeType": "YulFunctionCall", + "src": "17143:93:6" + }, + "nodeType": "YulExpressionStatement", + "src": "17143:93:6" + }, + { + "nodeType": "YulAssignment", + "src": "17245:19:6", + "value": { + "arguments": [ + { + "name": "pos", + "nodeType": "YulIdentifier", + "src": "17256:3:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "17261:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "17252:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "17252:12:6" + }, + "variableNames": [ + { + "name": "end", + "nodeType": "YulIdentifier", + "src": "17245:3:6" + } + ] + } + ] + }, + "name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "pos", + "nodeType": "YulTypedName", + "src": "17038:3:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "end", + "nodeType": "YulTypedName", + "src": "17046:3:6", + "type": "" + } + ], + "src": "16904:366:6" + }, + { + "body": { + "nodeType": "YulBlock", + "src": "17447:248:6", + "statements": [ + { + "nodeType": "YulAssignment", + "src": "17457:26:6", + "value": { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "17469:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "17480:2:6", + "type": "", + "value": "32" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "17465:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "17465:18:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "17457:4:6" + } + ] + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "17504:9:6" + }, + { + "kind": "number", + "nodeType": "YulLiteral", + "src": "17515:1:6", + "type": "", + "value": "0" + } + ], + "functionName": { + "name": "add", + "nodeType": "YulIdentifier", + "src": "17500:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "17500:17:6" + }, + { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "17523:4:6" + }, + { + "name": "headStart", + "nodeType": "YulIdentifier", + "src": "17529:9:6" + } + ], + "functionName": { + "name": "sub", + "nodeType": "YulIdentifier", + "src": "17519:3:6" + }, + "nodeType": "YulFunctionCall", + "src": "17519:20:6" + } + ], + "functionName": { + "name": "mstore", + "nodeType": "YulIdentifier", + "src": "17493:6:6" + }, + "nodeType": "YulFunctionCall", + "src": "17493:47:6" + }, + "nodeType": "YulExpressionStatement", + "src": "17493:47:6" + }, + { + "nodeType": "YulAssignment", + "src": "17549:139:6", + "value": { + "arguments": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "17683:4:6" + } + ], + "functionName": { + "name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack", + "nodeType": "YulIdentifier", + "src": "17557:124:6" + }, + "nodeType": "YulFunctionCall", + "src": "17557:131:6" + }, + "variableNames": [ + { + "name": "tail", + "nodeType": "YulIdentifier", + "src": "17549:4:6" + } + ] + } + ] + }, + "name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed", + "nodeType": "YulFunctionDefinition", + "parameters": [ + { + "name": "headStart", + "nodeType": "YulTypedName", + "src": "17427:9:6", + "type": "" + } + ], + "returnVariables": [ + { + "name": "tail", + "nodeType": "YulTypedName", + "src": "17442:4:6", + "type": "" + } + ], + "src": "17276:419:6" + } + ] + }, + "contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\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 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_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_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_string_memory_ptr__to_t_string_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_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\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_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 validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\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_addresst_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_address(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 cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\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 abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\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 abi_encode_tuple_t_string_memory_ptr_t_address_t_uint256_t_uint256__to_t_string_memory_ptr_t_address_t_uint256_t_uint256__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n }\n\n function abi_decode_tuple_t_addresst_address(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_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: decreased allowance below\")\n\n mstore(add(memPtr, 32), \" zero\")\n\n }\n\n function abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__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_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: new owner is the zero a\")\n\n mstore(add(memPtr, 32), \"ddress\")\n\n }\n\n function abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__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_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve from the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__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_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve to the zero addre\")\n\n mstore(add(memPtr, 32), \"ss\")\n\n }\n\n function abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__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_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: insufficient allowance\")\n\n }\n\n function abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 29)\n store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__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_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer from the zero ad\")\n\n mstore(add(memPtr, 32), \"dress\")\n\n }\n\n function abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__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_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(memPtr, 32), \"ess\")\n\n }\n\n function abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__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_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer amount exceeds b\")\n\n mstore(add(memPtr, 32), \"alance\")\n\n }\n\n function abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__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_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__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_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: mint to the zero address\")\n\n }\n\n function abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__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_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n", + "id": 6, + "language": "Yul", + "name": "#utility.yul" + } + ], + "immutableReferences": {}, + "linkReferences": {}, + "object": "608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a87430ba11610066578063a87430ba146102b1578063a9059cbb146102e4578063dd62ed3e14610314578063f2fde38b1461034457610100565b8063715018a61461023b5780638da5cb5b1461024557806395d89b4114610263578063a457c2d71461028157610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806340c10f19146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610360565b60405161011a919061103f565b60405180910390f35b61013d600480360381019061013891906110fa565b6103f2565b60405161014a9190611155565b60405180910390f35b61015b610415565b604051610168919061117f565b60405180910390f35b61018b6004803603810190610186919061119a565b61041f565b6040516101989190611155565b60405180910390f35b6101a961044e565b6040516101b69190611209565b60405180910390f35b6101d960048036038101906101d491906110fa565b610457565b6040516101e69190611155565b60405180910390f35b610209600480360381019061020491906110fa565b61048e565b005b61022560048036038101906102209190611224565b6104a4565b604051610232919061117f565b60405180910390f35b6102436104ec565b005b61024d610500565b60405161025a9190611260565b60405180910390f35b61026b61052a565b604051610278919061103f565b60405180910390f35b61029b600480360381019061029691906110fa565b6105bc565b6040516102a89190611155565b60405180910390f35b6102cb60048036038101906102c69190611224565b610633565b6040516102db949392919061127b565b60405180910390f35b6102fe60048036038101906102f991906110fa565b61070b565b60405161030b9190611155565b60405180910390f35b61032e600480360381019061032991906112c7565b61072e565b60405161033b919061117f565b60405180910390f35b61035e60048036038101906103599190611224565b6107b5565b005b60606003805461036f90611336565b80601f016020809104026020016040519081016040528092919081815260200182805461039b90611336565b80156103e85780601f106103bd576101008083540402835291602001916103e8565b820191906000526020600020905b8154815290600101906020018083116103cb57829003601f168201915b5050505050905090565b6000806103fd610838565b905061040a818585610840565b600191505092915050565b6000600254905090565b60008061042a610838565b9050610437858285610a09565b610442858585610a95565b60019150509392505050565b60006012905090565b600080610462610838565b9050610483818585610474858961072e565b61047e9190611396565b610840565b600191505092915050565b610496610d0b565b6104a08282610d89565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104f4610d0b565b6104fe6000610edf565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461053990611336565b80601f016020809104026020016040519081016040528092919081815260200182805461056590611336565b80156105b25780601f10610587576101008083540402835291602001916105b2565b820191906000526020600020905b81548152906001019060200180831161059557829003601f168201915b5050505050905090565b6000806105c7610838565b905060006105d5828661072e565b90508381101561061a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106119061143c565b60405180910390fd5b6106278286868403610840565b60019250505092915050565b600760205280600052604060002060009150905080600001805461065690611336565b80601f016020809104026020016040519081016040528092919081815260200182805461068290611336565b80156106cf5780601f106106a4576101008083540402835291602001916106cf565b820191906000526020600020905b8154815290600101906020018083116106b257829003601f168201915b5050505050908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020154908060030154905084565b600080610716610838565b9050610723818585610a95565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107bd610d0b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361082c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610823906114ce565b60405180910390fd5b61083581610edf565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a690611560565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361091e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610915906115f2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109fc919061117f565b60405180910390a3505050565b6000610a15848461072e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a8f5781811015610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a789061165e565b60405180910390fd5b610a8e8484848403610840565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afb906116f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90611782565b60405180910390fd5b610b7e838383610fa5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb90611814565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cf2919061117f565b60405180910390a3610d05848484610faa565b50505050565b610d13610838565b73ffffffffffffffffffffffffffffffffffffffff16610d31610500565b73ffffffffffffffffffffffffffffffffffffffff1614610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e90611880565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def906118ec565b60405180910390fd5b610e0460008383610fa5565b8060026000828254610e169190611396565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ec7919061117f565b60405180910390a3610edb60008383610faa565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fe9578082015181840152602081019050610fce565b60008484015250505050565b6000601f19601f8301169050919050565b600061101182610faf565b61101b8185610fba565b935061102b818560208601610fcb565b61103481610ff5565b840191505092915050565b600060208201905081810360008301526110598184611006565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061109182611066565b9050919050565b6110a181611086565b81146110ac57600080fd5b50565b6000813590506110be81611098565b92915050565b6000819050919050565b6110d7816110c4565b81146110e257600080fd5b50565b6000813590506110f4816110ce565b92915050565b6000806040838503121561111157611110611061565b5b600061111f858286016110af565b9250506020611130858286016110e5565b9150509250929050565b60008115159050919050565b61114f8161113a565b82525050565b600060208201905061116a6000830184611146565b92915050565b611179816110c4565b82525050565b60006020820190506111946000830184611170565b92915050565b6000806000606084860312156111b3576111b2611061565b5b60006111c1868287016110af565b93505060206111d2868287016110af565b92505060406111e3868287016110e5565b9150509250925092565b600060ff82169050919050565b611203816111ed565b82525050565b600060208201905061121e60008301846111fa565b92915050565b60006020828403121561123a57611239611061565b5b6000611248848285016110af565b91505092915050565b61125a81611086565b82525050565b60006020820190506112756000830184611251565b92915050565b600060808201905081810360008301526112958187611006565b90506112a46020830186611251565b6112b16040830185611170565b6112be6060830184611170565b95945050505050565b600080604083850312156112de576112dd611061565b5b60006112ec858286016110af565b92505060206112fd858286016110af565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061134e57607f821691505b60208210810361136157611360611307565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113a1826110c4565b91506113ac836110c4565b92508282019050808211156113c4576113c3611367565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611426602583610fba565b9150611431826113ca565b604082019050919050565b6000602082019050818103600083015261145581611419565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114b8602683610fba565b91506114c38261145c565b604082019050919050565b600060208201905081810360008301526114e7816114ab565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061154a602483610fba565b9150611555826114ee565b604082019050919050565b600060208201905081810360008301526115798161153d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115dc602283610fba565b91506115e782611580565b604082019050919050565b6000602082019050818103600083015261160b816115cf565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611648601d83610fba565b915061165382611612565b602082019050919050565b600060208201905081810360008301526116778161163b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116da602583610fba565b91506116e58261167e565b604082019050919050565b60006020820190508181036000830152611709816116cd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061176c602383610fba565b915061177782611710565b604082019050919050565b6000602082019050818103600083015261179b8161175f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006117fe602683610fba565b9150611809826117a2565b604082019050919050565b6000602082019050818103600083015261182d816117f1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061186a602083610fba565b915061187582611834565b602082019050919050565b600060208201905081810360008301526118998161185d565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006118d6601f83610fba565b91506118e1826118a0565b602082019050919050565b60006020820190508181036000830152611905816118c9565b905091905056fea26469706673582212203c8cbedc684db6cf68cec29d50046617cbf845f84734c2ca0906d155a73e741f64736f6c63430008140033", + "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x100 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xA87430BA GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA87430BA EQ PUSH2 0x2B1 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x2E4 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x314 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x344 JUMPI PUSH2 0x100 JUMP JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x23B JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x245 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x263 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x281 JUMPI PUSH2 0x100 JUMP JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1A1 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1BF JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x1EF JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x20B JUMPI PUSH2 0x100 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x105 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x123 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x153 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x171 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10D PUSH2 0x360 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x11A SWAP2 SWAP1 PUSH2 0x103F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x138 SWAP2 SWAP1 PUSH2 0x10FA JUMP JUMPDEST PUSH2 0x3F2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14A SWAP2 SWAP1 PUSH2 0x1155 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x15B PUSH2 0x415 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x168 SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x18B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x186 SWAP2 SWAP1 PUSH2 0x119A JUMP JUMPDEST PUSH2 0x41F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x198 SWAP2 SWAP1 PUSH2 0x1155 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1A9 PUSH2 0x44E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1B6 SWAP2 SWAP1 PUSH2 0x1209 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1D4 SWAP2 SWAP1 PUSH2 0x10FA JUMP JUMPDEST PUSH2 0x457 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1E6 SWAP2 SWAP1 PUSH2 0x1155 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x209 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x204 SWAP2 SWAP1 PUSH2 0x10FA JUMP JUMPDEST PUSH2 0x48E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x225 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x220 SWAP2 SWAP1 PUSH2 0x1224 JUMP JUMPDEST PUSH2 0x4A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x232 SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x243 PUSH2 0x4EC JUMP JUMPDEST STOP JUMPDEST PUSH2 0x24D PUSH2 0x500 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x25A SWAP2 SWAP1 PUSH2 0x1260 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x26B PUSH2 0x52A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x278 SWAP2 SWAP1 PUSH2 0x103F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x29B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x296 SWAP2 SWAP1 PUSH2 0x10FA JUMP JUMPDEST PUSH2 0x5BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A8 SWAP2 SWAP1 PUSH2 0x1155 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2CB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2C6 SWAP2 SWAP1 PUSH2 0x1224 JUMP JUMPDEST PUSH2 0x633 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2DB SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x127B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2FE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2F9 SWAP2 SWAP1 PUSH2 0x10FA JUMP JUMPDEST PUSH2 0x70B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x30B SWAP2 SWAP1 PUSH2 0x1155 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x32E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x329 SWAP2 SWAP1 PUSH2 0x12C7 JUMP JUMPDEST PUSH2 0x72E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x33B SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x35E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x359 SWAP2 SWAP1 PUSH2 0x1224 JUMP JUMPDEST PUSH2 0x7B5 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x36F SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x39B SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3E8 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3BD JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3E8 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x3CB JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x3FD PUSH2 0x838 JUMP JUMPDEST SWAP1 POP PUSH2 0x40A DUP2 DUP6 DUP6 PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x42A PUSH2 0x838 JUMP JUMPDEST SWAP1 POP PUSH2 0x437 DUP6 DUP3 DUP6 PUSH2 0xA09 JUMP JUMPDEST PUSH2 0x442 DUP6 DUP6 DUP6 PUSH2 0xA95 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x462 PUSH2 0x838 JUMP JUMPDEST SWAP1 POP PUSH2 0x483 DUP2 DUP6 DUP6 PUSH2 0x474 DUP6 DUP10 PUSH2 0x72E JUMP JUMPDEST PUSH2 0x47E SWAP2 SWAP1 PUSH2 0x1396 JUMP JUMPDEST PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x496 PUSH2 0xD0B JUMP JUMPDEST PUSH2 0x4A0 DUP3 DUP3 PUSH2 0xD89 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x4F4 PUSH2 0xD0B JUMP JUMPDEST PUSH2 0x4FE PUSH1 0x0 PUSH2 0xEDF JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x539 SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x565 SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5B2 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x587 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5B2 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x595 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x5C7 PUSH2 0x838 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x5D5 DUP3 DUP7 PUSH2 0x72E JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x61A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x611 SWAP1 PUSH2 0x143C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x627 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x840 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x7 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD DUP1 SLOAD PUSH2 0x656 SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x682 SWAP1 PUSH2 0x1336 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x6CF JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x6A4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x6CF JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x6B2 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x1 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP1 PUSH1 0x2 ADD SLOAD SWAP1 DUP1 PUSH1 0x3 ADD SLOAD SWAP1 POP DUP5 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x716 PUSH2 0x838 JUMP JUMPDEST SWAP1 POP PUSH2 0x723 DUP2 DUP6 DUP6 PUSH2 0xA95 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x7BD PUSH2 0xD0B JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x82C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x823 SWAP1 PUSH2 0x14CE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x835 DUP2 PUSH2 0xEDF JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x8AF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8A6 SWAP1 PUSH2 0x1560 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x91E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x915 SWAP1 PUSH2 0x15F2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x9FC SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA15 DUP5 DUP5 PUSH2 0x72E JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0xA8F JUMPI DUP2 DUP2 LT ISZERO PUSH2 0xA81 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA78 SWAP1 PUSH2 0x165E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA8E DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x840 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xB04 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP1 PUSH2 0x16F0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xB73 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB6A SWAP1 PUSH2 0x1782 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xB7E DUP4 DUP4 DUP4 PUSH2 0xFA5 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xC04 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBFB SWAP1 PUSH2 0x1814 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xCF2 SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xD05 DUP5 DUP5 DUP5 PUSH2 0xFAA JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0xD13 PUSH2 0x838 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD31 PUSH2 0x500 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xD87 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD7E SWAP1 PUSH2 0x1880 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xDF8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDEF SWAP1 PUSH2 0x18EC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xE04 PUSH1 0x0 DUP4 DUP4 PUSH2 0xFA5 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xE16 SWAP2 SWAP1 PUSH2 0x1396 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xEC7 SWAP2 SWAP1 PUSH2 0x117F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xEDB PUSH1 0x0 DUP4 DUP4 PUSH2 0xFAA JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 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 POP POP POP JUMP JUMPDEST POP 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xFE9 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xFCE 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 0x1011 DUP3 PUSH2 0xFAF JUMP JUMPDEST PUSH2 0x101B DUP2 DUP6 PUSH2 0xFBA JUMP JUMPDEST SWAP4 POP PUSH2 0x102B DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xFCB JUMP JUMPDEST PUSH2 0x1034 DUP2 PUSH2 0xFF5 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 0x1059 DUP2 DUP5 PUSH2 0x1006 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1091 DUP3 PUSH2 0x1066 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x10A1 DUP2 PUSH2 0x1086 JUMP JUMPDEST DUP2 EQ PUSH2 0x10AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x10BE DUP2 PUSH2 0x1098 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x10D7 DUP2 PUSH2 0x10C4 JUMP JUMPDEST DUP2 EQ PUSH2 0x10E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x10F4 DUP2 PUSH2 0x10CE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1111 JUMPI PUSH2 0x1110 PUSH2 0x1061 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x111F DUP6 DUP3 DUP7 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1130 DUP6 DUP3 DUP7 ADD PUSH2 0x10E5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x114F DUP2 PUSH2 0x113A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x116A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1146 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1179 DUP2 PUSH2 0x10C4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1194 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1170 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x11B3 JUMPI PUSH2 0x11B2 PUSH2 0x1061 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x11C1 DUP7 DUP3 DUP8 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x11D2 DUP7 DUP3 DUP8 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x11E3 DUP7 DUP3 DUP8 ADD PUSH2 0x10E5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1203 DUP2 PUSH2 0x11ED JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x121E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x11FA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x123A JUMPI PUSH2 0x1239 PUSH2 0x1061 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1248 DUP5 DUP3 DUP6 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x125A DUP2 PUSH2 0x1086 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1275 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1251 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1295 DUP2 DUP8 PUSH2 0x1006 JUMP JUMPDEST SWAP1 POP PUSH2 0x12A4 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x1251 JUMP JUMPDEST PUSH2 0x12B1 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1170 JUMP JUMPDEST PUSH2 0x12BE PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x1170 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x12DE JUMPI PUSH2 0x12DD PUSH2 0x1061 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x12EC DUP6 DUP3 DUP7 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x12FD DUP6 DUP3 DUP7 ADD PUSH2 0x10AF JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x134E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1361 JUMPI PUSH2 0x1360 PUSH2 0x1307 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x13A1 DUP3 PUSH2 0x10C4 JUMP JUMPDEST SWAP2 POP PUSH2 0x13AC DUP4 PUSH2 0x10C4 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x13C4 JUMPI PUSH2 0x13C3 PUSH2 0x1367 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1426 PUSH1 0x25 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1431 DUP3 PUSH2 0x13CA 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 0x1455 DUP2 PUSH2 0x1419 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x14B8 PUSH1 0x26 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x14C3 DUP3 PUSH2 0x145C 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 0x14E7 DUP2 PUSH2 0x14AB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x154A PUSH1 0x24 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1555 DUP3 PUSH2 0x14EE 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 0x1579 DUP2 PUSH2 0x153D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15DC PUSH1 0x22 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x15E7 DUP3 PUSH2 0x1580 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 0x160B DUP2 PUSH2 0x15CF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1648 PUSH1 0x1D DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1653 DUP3 PUSH2 0x1612 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 0x1677 DUP2 PUSH2 0x163B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16DA PUSH1 0x25 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x16E5 DUP3 PUSH2 0x167E 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 0x1709 DUP2 PUSH2 0x16CD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x176C PUSH1 0x23 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1777 DUP3 PUSH2 0x1710 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 0x179B DUP2 PUSH2 0x175F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17FE PUSH1 0x26 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1809 DUP3 PUSH2 0x17A2 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 0x182D DUP2 PUSH2 0x17F1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x186A PUSH1 0x20 DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x1875 DUP3 PUSH2 0x1834 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 0x1899 DUP2 PUSH2 0x185D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18D6 PUSH1 0x1F DUP4 PUSH2 0xFBA JUMP JUMPDEST SWAP2 POP PUSH2 0x18E1 DUP3 PUSH2 0x18A0 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 0x1905 DUP2 PUSH2 0x18C9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EXTCODECOPY DUP13 0xBE 0xDC PUSH9 0x4DB6CF68CEC29D5004 PUSH7 0x17CBF845F84734 0xC2 0xCA MULMOD MOD 0xD1 SSTORE 0xA7 RETURNDATACOPY PUSH21 0x1F64736F6C63430008140033000000000000000000 ", + "sourceMap": "167:499:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4444:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3255:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5203:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3104:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5854:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;300:93:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3419:125:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1824:101:0;;;:::i;:::-;;1201:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2369:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6575:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;398:38:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;3740:189:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3987:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2074:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2158:98:1;2212:13;2244:5;2237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;:::o;4444:197::-;4527:4;4543:13;4559:12;:10;:12::i;:::-;4543:28;;4581:32;4590:5;4597:7;4606:6;4581:8;:32::i;:::-;4630:4;4623:11;;;4444:197;;;;:::o;3255:106::-;3316:7;3342:12;;3335:19;;3255:106;:::o;5203:256::-;5300:4;5316:15;5334:12;:10;:12::i;:::-;5316:30;;5356:38;5372:4;5378:7;5387:6;5356:15;:38::i;:::-;5404:27;5414:4;5420:2;5424:6;5404:9;:27::i;:::-;5448:4;5441:11;;;5203:256;;;;;:::o;3104:91::-;3162:5;3186:2;3179:9;;3104:91;:::o;5854:234::-;5942:4;5958:13;5974:12;:10;:12::i;:::-;5958:28;;5996:64;6005:5;6012:7;6049:10;6021:25;6031:5;6038:7;6021:9;:25::i;:::-;:38;;;;:::i;:::-;5996:8;:64::i;:::-;6077:4;6070:11;;;5854:234;;;;:::o;300:93:5:-;1094:13:0;:11;:13::i;:::-;369:17:5::1;375:2;379:6;369:5;:17::i;:::-;300:93:::0;;:::o;3419:125:1:-;3493:7;3519:9;:18;3529:7;3519:18;;;;;;;;;;;;;;;;3512:25;;3419:125;;;:::o;1824:101:0:-;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;1201:85::-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;2369:102:1:-;2425:13;2457:7;2450:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2369:102;:::o;6575:427::-;6668:4;6684:13;6700:12;:10;:12::i;:::-;6684:28;;6722:24;6749:25;6759:5;6766:7;6749:9;:25::i;:::-;6722:52;;6812:15;6792:16;:35;;6784:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6903:60;6912:5;6919:7;6947:15;6928:16;:34;6903:8;:60::i;:::-;6991:4;6984:11;;;;6575:427;;;;:::o;398:38:5:-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3740:189:1:-;3819:4;3835:13;3851:12;:10;:12::i;:::-;3835:28;;3873;3883:5;3890:2;3894:6;3873:9;:28::i;:::-;3918:4;3911:11;;;3740:189;;;;:::o;3987:149::-;4076:7;4102:11;:18;4114:5;4102:18;;;;;;;;;;;;;;;:27;4121:7;4102:27;;;;;;;;;;;;;;;;4095:34;;3987:149;;;;:::o;2074:198:0:-;1094:13;:11;:13::i;:::-;2182:1:::1;2162:22;;:8;:22;;::::0;2154:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;640:96:4:-;693:7;719:10;712:17;;640:96;:::o;10457:340:1:-;10575:1;10558:19;;:5;:19;;;10550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10655:1;10636:21;;:7;:21;;;10628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10737:6;10707:11;:18;10719:5;10707:18;;;;;;;;;;;;;;;:27;10726:7;10707:27;;;;;;;;;;;;;;;:36;;;;10774:7;10758:32;;10767:5;10758:32;;;10783:6;10758:32;;;;;;:::i;:::-;;;;;;;;10457:340;;;:::o;11078:411::-;11178:24;11205:25;11215:5;11222:7;11205:9;:25::i;:::-;11178:52;;11264:17;11244:16;:37;11240:243;;11325:6;11305:16;:26;;11297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11407:51;11416:5;11423:7;11451:6;11432:16;:25;11407:8;:51::i;:::-;11240:243;11168:321;11078:411;;;:::o;7456:788::-;7568:1;7552:18;;:4;:18;;;7544:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7644:1;7630:16;;:2;:16;;;7622:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7697:38;7718:4;7724:2;7728:6;7697:20;:38::i;:::-;7746:19;7768:9;:15;7778:4;7768:15;;;;;;;;;;;;;;;;7746:37;;7816:6;7801:11;:21;;7793:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7931:6;7917:11;:20;7899:9;:15;7909:4;7899:15;;;;;;;;;;;;;;;:38;;;;8131:6;8114:9;:13;8124:2;8114:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8178:2;8163:26;;8172:4;8163:26;;;8182:6;8163:26;;;;;;:::i;:::-;;;;;;;;8200:37;8220:4;8226:2;8230:6;8200:19;:37::i;:::-;7534:710;7456:788;;;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;8520:535:1:-;8622:1;8603:21;;:7;:21;;;8595:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8671:49;8700:1;8704:7;8713:6;8671:20;:49::i;:::-;8747:6;8731:12;;:22;;;;;;;:::i;:::-;;;;;;;;8921:6;8899:9;:18;8909:7;8899:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;8973:7;8952:37;;8969:1;8952:37;;;8982:6;8952:37;;;;;;:::i;:::-;;;;;;;;9000:48;9028:1;9032:7;9041:6;9000:19;:48::i;:::-;8520:535;;:::o;2426:187:0:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;12073:91:1:-;;;;:::o;12752:90::-;;;;:::o;7:99:6:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:644::-;5737:4;5775:3;5764:9;5760:19;5752:27;;5825:9;5819:4;5815:20;5811:1;5800:9;5796:17;5789:47;5853:78;5926:4;5917:6;5853:78;:::i;:::-;5845:86;;5941:72;6009:2;5998:9;5994:18;5985:6;5941:72;:::i;:::-;6023;6091:2;6080:9;6076:18;6067:6;6023:72;:::i;:::-;6105;6173:2;6162:9;6158:18;6149:6;6105:72;:::i;:::-;5540:644;;;;;;;:::o;6190:474::-;6258:6;6266;6315:2;6303:9;6294:7;6290:23;6286:32;6283:119;;;6321:79;;:::i;:::-;6283:119;6441:1;6466:53;6511:7;6502:6;6491:9;6487:22;6466:53;:::i;:::-;6456:63;;6412:117;6568:2;6594:53;6639:7;6630:6;6619:9;6615:22;6594:53;:::i;:::-;6584:63;;6539:118;6190:474;;;;;:::o;6670:180::-;6718:77;6715:1;6708:88;6815:4;6812:1;6805:15;6839:4;6836:1;6829:15;6856:320;6900:6;6937:1;6931:4;6927:12;6917:22;;6984:1;6978:4;6974:12;7005:18;6995:81;;7061:4;7053:6;7049:17;7039:27;;6995:81;7123:2;7115:6;7112:14;7092:18;7089:38;7086:84;;7142:18;;:::i;:::-;7086:84;6907:269;6856:320;;;:::o;7182:180::-;7230:77;7227:1;7220:88;7327:4;7324:1;7317:15;7351:4;7348:1;7341:15;7368:191;7408:3;7427:20;7445:1;7427:20;:::i;:::-;7422:25;;7461:20;7479:1;7461:20;:::i;:::-;7456:25;;7504:1;7501;7497:9;7490:16;;7525:3;7522:1;7519:10;7516:36;;;7532:18;;:::i;:::-;7516:36;7368:191;;;;:::o;7565:224::-;7705:34;7701:1;7693:6;7689:14;7682:58;7774:7;7769:2;7761:6;7757:15;7750:32;7565:224;:::o;7795:366::-;7937:3;7958:67;8022:2;8017:3;7958:67;:::i;:::-;7951:74;;8034:93;8123:3;8034:93;:::i;:::-;8152:2;8147:3;8143:12;8136:19;;7795:366;;;:::o;8167:419::-;8333:4;8371:2;8360:9;8356:18;8348:26;;8420:9;8414:4;8410:20;8406:1;8395:9;8391:17;8384:47;8448:131;8574:4;8448:131;:::i;:::-;8440:139;;8167:419;;;:::o;8592:225::-;8732:34;8728:1;8720:6;8716:14;8709:58;8801:8;8796:2;8788:6;8784:15;8777:33;8592:225;:::o;8823:366::-;8965:3;8986:67;9050:2;9045:3;8986:67;:::i;:::-;8979:74;;9062:93;9151:3;9062:93;:::i;:::-;9180:2;9175:3;9171:12;9164:19;;8823:366;;;:::o;9195:419::-;9361:4;9399:2;9388:9;9384:18;9376:26;;9448:9;9442:4;9438:20;9434:1;9423:9;9419:17;9412:47;9476:131;9602:4;9476:131;:::i;:::-;9468:139;;9195:419;;;:::o;9620:223::-;9760:34;9756:1;9748:6;9744:14;9737:58;9829:6;9824:2;9816:6;9812:15;9805:31;9620:223;:::o;9849:366::-;9991:3;10012:67;10076:2;10071:3;10012:67;:::i;:::-;10005:74;;10088:93;10177:3;10088:93;:::i;:::-;10206:2;10201:3;10197:12;10190:19;;9849:366;;;:::o;10221:419::-;10387:4;10425:2;10414:9;10410:18;10402:26;;10474:9;10468:4;10464:20;10460:1;10449:9;10445:17;10438:47;10502:131;10628:4;10502:131;:::i;:::-;10494:139;;10221:419;;;:::o;10646:221::-;10786:34;10782:1;10774:6;10770:14;10763:58;10855:4;10850:2;10842:6;10838:15;10831:29;10646:221;:::o;10873:366::-;11015:3;11036:67;11100:2;11095:3;11036:67;:::i;:::-;11029:74;;11112:93;11201:3;11112:93;:::i;:::-;11230:2;11225:3;11221:12;11214:19;;10873:366;;;:::o;11245:419::-;11411:4;11449:2;11438:9;11434:18;11426:26;;11498:9;11492:4;11488:20;11484:1;11473:9;11469:17;11462:47;11526:131;11652:4;11526:131;:::i;:::-;11518:139;;11245:419;;;:::o;11670:179::-;11810:31;11806:1;11798:6;11794:14;11787:55;11670:179;:::o;11855:366::-;11997:3;12018:67;12082:2;12077:3;12018:67;:::i;:::-;12011:74;;12094:93;12183:3;12094:93;:::i;:::-;12212:2;12207:3;12203:12;12196:19;;11855:366;;;:::o;12227:419::-;12393:4;12431:2;12420:9;12416:18;12408:26;;12480:9;12474:4;12470:20;12466:1;12455:9;12451:17;12444:47;12508:131;12634:4;12508:131;:::i;:::-;12500:139;;12227:419;;;:::o;12652:224::-;12792:34;12788:1;12780:6;12776:14;12769:58;12861:7;12856:2;12848:6;12844:15;12837:32;12652:224;:::o;12882:366::-;13024:3;13045:67;13109:2;13104:3;13045:67;:::i;:::-;13038:74;;13121:93;13210:3;13121:93;:::i;:::-;13239:2;13234:3;13230:12;13223:19;;12882:366;;;:::o;13254:419::-;13420:4;13458:2;13447:9;13443:18;13435:26;;13507:9;13501:4;13497:20;13493:1;13482:9;13478:17;13471:47;13535:131;13661:4;13535:131;:::i;:::-;13527:139;;13254:419;;;:::o;13679:222::-;13819:34;13815:1;13807:6;13803:14;13796:58;13888:5;13883:2;13875:6;13871:15;13864:30;13679:222;:::o;13907:366::-;14049:3;14070:67;14134:2;14129:3;14070:67;:::i;:::-;14063:74;;14146:93;14235:3;14146:93;:::i;:::-;14264:2;14259:3;14255:12;14248:19;;13907:366;;;:::o;14279:419::-;14445:4;14483:2;14472:9;14468:18;14460:26;;14532:9;14526:4;14522:20;14518:1;14507:9;14503:17;14496:47;14560:131;14686:4;14560:131;:::i;:::-;14552:139;;14279:419;;;:::o;14704:225::-;14844:34;14840:1;14832:6;14828:14;14821:58;14913:8;14908:2;14900:6;14896:15;14889:33;14704:225;:::o;14935:366::-;15077:3;15098:67;15162:2;15157:3;15098:67;:::i;:::-;15091:74;;15174:93;15263:3;15174:93;:::i;:::-;15292:2;15287:3;15283:12;15276:19;;14935:366;;;:::o;15307:419::-;15473:4;15511:2;15500:9;15496:18;15488:26;;15560:9;15554:4;15550:20;15546:1;15535:9;15531:17;15524:47;15588:131;15714:4;15588:131;:::i;:::-;15580:139;;15307:419;;;:::o;15732:182::-;15872:34;15868:1;15860:6;15856:14;15849:58;15732:182;:::o;15920:366::-;16062:3;16083:67;16147:2;16142:3;16083:67;:::i;:::-;16076:74;;16159:93;16248:3;16159:93;:::i;:::-;16277:2;16272:3;16268:12;16261:19;;15920:366;;;:::o;16292:419::-;16458:4;16496:2;16485:9;16481:18;16473:26;;16545:9;16539:4;16535:20;16531:1;16520:9;16516:17;16509:47;16573:131;16699:4;16573:131;:::i;:::-;16565:139;;16292:419;;;:::o;16717:181::-;16857:33;16853:1;16845:6;16841:14;16834:57;16717:181;:::o;16904:366::-;17046:3;17067:67;17131:2;17126:3;17067:67;:::i;:::-;17060:74;;17143:93;17232:3;17143:93;:::i;:::-;17261:2;17256:3;17252:12;17245:19;;16904:366;;;:::o;17276:419::-;17442:4;17480:2;17469:9;17465:18;17457:26;;17529:9;17523:4;17519:20;17515:1;17504:9;17500:17;17493:47;17557:131;17683:4;17557:131;:::i;:::-;17549:139;;17276:419;;;:::o" + }, + "gasEstimates": { + "creation": { + "codeDepositCost": "1293200", + "executionCost": "infinite", + "totalCost": "infinite" + }, + "external": { + "allowance(address,address)": "infinite", + "approve(address,uint256)": "infinite", + "balanceOf(address)": "2930", + "decimals()": "366", + "decreaseAllowance(address,uint256)": "infinite", + "increaseAllowance(address,uint256)": "infinite", + "mint(address,uint256)": "infinite", + "name()": "infinite", + "owner()": "2567", + "renounceOwnership()": "30421", + "symbol()": "infinite", + "totalSupply()": "2505", + "transfer(address,uint256)": "infinite", + "transferFrom(address,address,uint256)": "infinite", + "transferOwnership(address)": "30832", + "users(address)": "infinite" + } + }, + "legacyAssembly": { + ".code": [ + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "80" + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "40" + }, + { + "begin": 167, + "end": 666, + "name": "MSTORE", + "source": 5 + }, + { + "begin": 243, + "end": 294, + "name": "CALLVALUE", + "source": 5 + }, + { + "begin": 243, + "end": 294, + "name": "DUP1", + "source": 5 + }, + { + "begin": 243, + "end": 294, + "name": "ISZERO", + "source": 5 + }, + { + "begin": 243, + "end": 294, + "name": "PUSH [tag]", + "source": 5, + "value": "1" + }, + { + "begin": 243, + "end": 294, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 243, + "end": 294, + "name": "PUSH", + "source": 5, + "value": "0" + }, + { + "begin": 243, + "end": 294, + "name": "DUP1", + "source": 5 + }, + { + "begin": 243, + "end": 294, + "name": "REVERT", + "source": 5 + }, + { + "begin": 243, + "end": 294, + "name": "tag", + "source": 5, + "value": "1" + }, + { + "begin": 243, + "end": 294, + "name": "JUMPDEST", + "source": 5 + }, + { + "begin": 243, + "end": 294, + "name": "POP", + "source": 5 + }, + { + "begin": 1980, + "end": 2093, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 1980, + "end": 2093, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 1980, + "end": 2093, + "name": "ADD", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 1980, + "end": 2093, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "PUSH", + "source": 1, + "value": "12" + }, + { + "begin": 1980, + "end": 2093, + "name": "DUP2", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 1980, + "end": 2093, + "name": "ADD", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "PUSH", + "source": 1, + "value": "4D7568616E6E616420496E737572616E63650000000000000000000000000000" + }, + { + "begin": 1980, + "end": 2093, + "name": "DUP2", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "POP", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 1980, + "end": 2093, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 1980, + "end": 2093, + "name": "ADD", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 1980, + "end": 2093, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "DUP1", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "PUSH", + "source": 1, + "value": "3" + }, + { + "begin": 1980, + "end": 2093, + "name": "DUP2", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 1980, + "end": 2093, + "name": "ADD", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "PUSH", + "source": 1, + "value": "4D49540000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 1980, + "end": 2093, + "name": "DUP2", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "POP", + "source": 1 + }, + { + "begin": 2054, + "end": 2059, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2046, + "end": 2051, + "name": "PUSH", + "source": 1, + "value": "3" + }, + { + "begin": 2046, + "end": 2059, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2046, + "end": 2059, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2046, + "end": 2059, + "name": "PUSH [tag]", + "source": 1, + "value": "6" + }, + { + "begin": 2046, + "end": 2059, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2046, + "end": 2059, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2046, + "end": 2059, + "name": "PUSH [tag]", + "source": 1, + "value": "7" + }, + { + "begin": 2046, + "end": 2059, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2046, + "end": 2059, + "name": "tag", + "source": 1, + "value": "6" + }, + { + "begin": 2046, + "end": 2059, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2046, + "end": 2059, + "name": "POP", + "source": 1 + }, + { + "begin": 2079, + "end": 2086, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2069, + "end": 2076, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 2069, + "end": 2086, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2069, + "end": 2086, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2069, + "end": 2086, + "name": "PUSH [tag]", + "source": 1, + "value": "8" + }, + { + "begin": 2069, + "end": 2086, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2069, + "end": 2086, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2069, + "end": 2086, + "name": "PUSH [tag]", + "source": 1, + "value": "7" + }, + { + "begin": 2069, + "end": 2086, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2069, + "end": 2086, + "name": "tag", + "source": 1, + "value": "8" + }, + { + "begin": 2069, + "end": 2086, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2069, + "end": 2086, + "name": "POP", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "POP", + "source": 1 + }, + { + "begin": 1980, + "end": 2093, + "name": "POP", + "source": 1 + }, + { + "begin": 936, + "end": 968, + "name": "PUSH [tag]", + "source": 0, + "value": "10" + }, + { + "begin": 955, + "end": 967, + "name": "PUSH [tag]", + "source": 0, + "value": "11" + }, + { + "begin": 955, + "end": 965, + "name": "PUSH [tag]", + "source": 0, + "value": "12" + }, + { + "begin": 955, + "end": 965, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 955, + "end": 965, + "name": "SHL", + "source": 0 + }, + { + "begin": 955, + "end": 967, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 955, + "end": 967, + "name": "SHR", + "source": 0 + }, + { + "begin": 955, + "end": 967, + "jumpType": "[in]", + "name": "JUMP", + "source": 0 + }, + { + "begin": 955, + "end": 967, + "name": "tag", + "source": 0, + "value": "11" + }, + { + "begin": 955, + "end": 967, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 936, + "end": 954, + "name": "PUSH [tag]", + "source": 0, + "value": "13" + }, + { + "begin": 936, + "end": 954, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 936, + "end": 954, + "name": "SHL", + "source": 0 + }, + { + "begin": 936, + "end": 968, + "name": "PUSH", + "source": 0, + "value": "20" + }, + { + "begin": 936, + "end": 968, + "name": "SHR", + "source": 0 + }, + { + "begin": 936, + "end": 968, + "jumpType": "[in]", + "name": "JUMP", + "source": 0 + }, + { + "begin": 936, + "end": 968, + "name": "tag", + "source": 0, + "value": "10" + }, + { + "begin": 936, + "end": 968, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "15" + }, + { + "begin": 167, + "end": 666, + "name": "JUMP", + "source": 5 + }, + { + "begin": 640, + "end": 736, + "name": "tag", + "source": 4, + "value": "12" + }, + { + "begin": 640, + "end": 736, + "name": "JUMPDEST", + "source": 4 + }, + { + "begin": 693, + "end": 700, + "name": "PUSH", + "source": 4, + "value": "0" + }, + { + "begin": 719, + "end": 729, + "name": "CALLER", + "source": 4 + }, + { + "begin": 712, + "end": 729, + "name": "SWAP1", + "source": 4 + }, + { + "begin": 712, + "end": 729, + "name": "POP", + "source": 4 + }, + { + "begin": 640, + "end": 736, + "name": "SWAP1", + "source": 4 + }, + { + "begin": 640, + "end": 736, + "jumpType": "[out]", + "name": "JUMP", + "source": 4 + }, + { + "begin": 2426, + "end": 2613, + "name": "tag", + "source": 0, + "value": "13" + }, + { + "begin": 2426, + "end": 2613, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 2499, + "end": 2515, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 2518, + "end": 2524, + "name": "PUSH", + "source": 0, + "value": "5" + }, + { + "begin": 2518, + "end": 2524, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 2518, + "end": 2524, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 2518, + "end": 2524, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 2518, + "end": 2524, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 2518, + "end": 2524, + "name": "PUSH", + "source": 0, + "value": "100" + }, + { + "begin": 2518, + "end": 2524, + "name": "EXP", + "source": 0 + }, + { + "begin": 2518, + "end": 2524, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 2518, + "end": 2524, + "name": "DIV", + "source": 0 + }, + { + "begin": 2518, + "end": 2524, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 2518, + "end": 2524, + "name": "AND", + "source": 0 + }, + { + "begin": 2499, + "end": 2524, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 2499, + "end": 2524, + "name": "POP", + "source": 0 + }, + { + "begin": 2543, + "end": 2551, + "name": "DUP2", + "source": 0 + }, + { + "begin": 2534, + "end": 2540, + "name": "PUSH", + "source": 0, + "value": "5" + }, + { + "begin": 2534, + "end": 2540, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 2534, + "end": 2551, + "name": "PUSH", + "source": 0, + "value": "100" + }, + { + "begin": 2534, + "end": 2551, + "name": "EXP", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "DUP2", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "DUP2", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 2534, + "end": 2551, + "name": "MUL", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "NOT", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "AND", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "DUP4", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 2534, + "end": 2551, + "name": "AND", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "MUL", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "OR", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "SSTORE", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "POP", + "source": 0 + }, + { + "begin": 2597, + "end": 2605, + "name": "DUP2", + "source": 0 + }, + { + "begin": 2566, + "end": 2606, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 2566, + "end": 2606, + "name": "AND", + "source": 0 + }, + { + "begin": 2587, + "end": 2595, + "name": "DUP2", + "source": 0 + }, + { + "begin": 2566, + "end": 2606, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 2566, + "end": 2606, + "name": "AND", + "source": 0 + }, + { + "begin": 2566, + "end": 2606, + "name": "PUSH", + "source": 0, + "value": "8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0" + }, + { + "begin": 2566, + "end": 2606, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 2566, + "end": 2606, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 2566, + "end": 2606, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 2566, + "end": 2606, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 2566, + "end": 2606, + "name": "DUP1", + "source": 0 + }, + { + "begin": 2566, + "end": 2606, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 2566, + "end": 2606, + "name": "SUB", + "source": 0 + }, + { + "begin": 2566, + "end": 2606, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 2566, + "end": 2606, + "name": "LOG3", + "source": 0 + }, + { + "begin": 2489, + "end": 2613, + "name": "POP", + "source": 0 + }, + { + "begin": 2426, + "end": 2613, + "name": "POP", + "source": 0 + }, + { + "begin": 2426, + "end": 2613, + "jumpType": "[out]", + "name": "JUMP", + "source": 0 + }, + { + "begin": 7, + "end": 106, + "name": "tag", + "source": 6, + "value": "18" + }, + { + "begin": 7, + "end": 106, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 59, + "end": 65, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 93, + "end": 98, + "name": "DUP2", + "source": 6 + }, + { + "begin": 87, + "end": 99, + "name": "MLOAD", + "source": 6 + }, + { + "begin": 77, + "end": 99, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 77, + "end": 99, + "name": "POP", + "source": 6 + }, + { + "begin": 7, + "end": 106, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 7, + "end": 106, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 7, + "end": 106, + "name": "POP", + "source": 6 + }, + { + "begin": 7, + "end": 106, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 112, + "end": 292, + "name": "tag", + "source": 6, + "value": "19" + }, + { + "begin": 112, + "end": 292, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 160, + "end": 237, + "name": "PUSH", + "source": 6, + "value": "4E487B7100000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 157, + "end": 158, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 150, + "end": 238, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 257, + "end": 261, + "name": "PUSH", + "source": 6, + "value": "41" + }, + { + "begin": 254, + "end": 255, + "name": "PUSH", + "source": 6, + "value": "4" + }, + { + "begin": 247, + "end": 262, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 281, + "end": 285, + "name": "PUSH", + "source": 6, + "value": "24" + }, + { + "begin": 278, + "end": 279, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 271, + "end": 286, + "name": "REVERT", + "source": 6 + }, + { + "begin": 298, + "end": 478, + "name": "tag", + "source": 6, + "value": "20" + }, + { + "begin": 298, + "end": 478, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 346, + "end": 423, + "name": "PUSH", + "source": 6, + "value": "4E487B7100000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 343, + "end": 344, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 336, + "end": 424, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 443, + "end": 447, + "name": "PUSH", + "source": 6, + "value": "22" + }, + { + "begin": 440, + "end": 441, + "name": "PUSH", + "source": 6, + "value": "4" + }, + { + "begin": 433, + "end": 448, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 467, + "end": 471, + "name": "PUSH", + "source": 6, + "value": "24" + }, + { + "begin": 464, + "end": 465, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 457, + "end": 472, + "name": "REVERT", + "source": 6 + }, + { + "begin": 484, + "end": 804, + "name": "tag", + "source": 6, + "value": "21" + }, + { + "begin": 484, + "end": 804, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 528, + "end": 534, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 565, + "end": 566, + "name": "PUSH", + "source": 6, + "value": "2" + }, + { + "begin": 559, + "end": 563, + "name": "DUP3", + "source": 6 + }, + { + "begin": 555, + "end": 567, + "name": "DIV", + "source": 6 + }, + { + "begin": 545, + "end": 567, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 545, + "end": 567, + "name": "POP", + "source": 6 + }, + { + "begin": 612, + "end": 613, + "name": "PUSH", + "source": 6, + "value": "1" + }, + { + "begin": 606, + "end": 610, + "name": "DUP3", + "source": 6 + }, + { + "begin": 602, + "end": 614, + "name": "AND", + "source": 6 + }, + { + "begin": 633, + "end": 651, + "name": "DUP1", + "source": 6 + }, + { + "begin": 623, + "end": 704, + "name": "PUSH [tag]", + "source": 6, + "value": "43" + }, + { + "begin": 623, + "end": 704, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 689, + "end": 693, + "name": "PUSH", + "source": 6, + "value": "7F" + }, + { + "begin": 681, + "end": 687, + "name": "DUP3", + "source": 6 + }, + { + "begin": 677, + "end": 694, + "name": "AND", + "source": 6 + }, + { + "begin": 667, + "end": 694, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 667, + "end": 694, + "name": "POP", + "source": 6 + }, + { + "begin": 623, + "end": 704, + "name": "tag", + "source": 6, + "value": "43" + }, + { + "begin": 623, + "end": 704, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 751, + "end": 753, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 743, + "end": 749, + "name": "DUP3", + "source": 6 + }, + { + "begin": 740, + "end": 754, + "name": "LT", + "source": 6 + }, + { + "begin": 720, + "end": 738, + "name": "DUP2", + "source": 6 + }, + { + "begin": 717, + "end": 755, + "name": "SUB", + "source": 6 + }, + { + "begin": 714, + "end": 798, + "name": "PUSH [tag]", + "source": 6, + "value": "44" + }, + { + "begin": 714, + "end": 798, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 770, + "end": 788, + "name": "PUSH [tag]", + "source": 6, + "value": "45" + }, + { + "begin": 770, + "end": 788, + "name": "PUSH [tag]", + "source": 6, + "value": "20" + }, + { + "begin": 770, + "end": 788, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 770, + "end": 788, + "name": "tag", + "source": 6, + "value": "45" + }, + { + "begin": 770, + "end": 788, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 714, + "end": 798, + "name": "tag", + "source": 6, + "value": "44" + }, + { + "begin": 714, + "end": 798, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 535, + "end": 804, + "name": "POP", + "source": 6 + }, + { + "begin": 484, + "end": 804, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 484, + "end": 804, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 484, + "end": 804, + "name": "POP", + "source": 6 + }, + { + "begin": 484, + "end": 804, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 810, + "end": 951, + "name": "tag", + "source": 6, + "value": "22" + }, + { + "begin": 810, + "end": 951, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 859, + "end": 863, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 882, + "end": 885, + "name": "DUP2", + "source": 6 + }, + { + "begin": 874, + "end": 885, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 874, + "end": 885, + "name": "POP", + "source": 6 + }, + { + "begin": 905, + "end": 908, + "name": "DUP2", + "source": 6 + }, + { + "begin": 902, + "end": 903, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 895, + "end": 909, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 939, + "end": 943, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 936, + "end": 937, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 926, + "end": 944, + "name": "KECCAK256", + "source": 6 + }, + { + "begin": 918, + "end": 944, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 918, + "end": 944, + "name": "POP", + "source": 6 + }, + { + "begin": 810, + "end": 951, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 810, + "end": 951, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 810, + "end": 951, + "name": "POP", + "source": 6 + }, + { + "begin": 810, + "end": 951, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 957, + "end": 1050, + "name": "tag", + "source": 6, + "value": "23" + }, + { + "begin": 957, + "end": 1050, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 994, + "end": 1000, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 1041, + "end": 1043, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 1036, + "end": 1038, + "name": "PUSH", + "source": 6, + "value": "1F" + }, + { + "begin": 1029, + "end": 1034, + "name": "DUP4", + "source": 6 + }, + { + "begin": 1025, + "end": 1039, + "name": "ADD", + "source": 6 + }, + { + "begin": 1021, + "end": 1044, + "name": "DIV", + "source": 6 + }, + { + "begin": 1011, + "end": 1044, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1011, + "end": 1044, + "name": "POP", + "source": 6 + }, + { + "begin": 957, + "end": 1050, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 957, + "end": 1050, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 957, + "end": 1050, + "name": "POP", + "source": 6 + }, + { + "begin": 957, + "end": 1050, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1056, + "end": 1163, + "name": "tag", + "source": 6, + "value": "24" + }, + { + "begin": 1056, + "end": 1163, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1100, + "end": 1108, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 1150, + "end": 1155, + "name": "DUP3", + "source": 6 + }, + { + "begin": 1144, + "end": 1148, + "name": "DUP3", + "source": 6 + }, + { + "begin": 1140, + "end": 1156, + "name": "SHL", + "source": 6 + }, + { + "begin": 1119, + "end": 1156, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1119, + "end": 1156, + "name": "POP", + "source": 6 + }, + { + "begin": 1056, + "end": 1163, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 1056, + "end": 1163, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 1056, + "end": 1163, + "name": "POP", + "source": 6 + }, + { + "begin": 1056, + "end": 1163, + "name": "POP", + "source": 6 + }, + { + "begin": 1056, + "end": 1163, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1169, + "end": 1562, + "name": "tag", + "source": 6, + "value": "25" + }, + { + "begin": 1169, + "end": 1562, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1238, + "end": 1244, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 1288, + "end": 1289, + "name": "PUSH", + "source": 6, + "value": "8" + }, + { + "begin": 1276, + "end": 1286, + "name": "DUP4", + "source": 6 + }, + { + "begin": 1272, + "end": 1290, + "name": "MUL", + "source": 6 + }, + { + "begin": 1311, + "end": 1408, + "name": "PUSH [tag]", + "source": 6, + "value": "50" + }, + { + "begin": 1341, + "end": 1407, + "name": "PUSH", + "source": 6, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 1330, + "end": 1339, + "name": "DUP3", + "source": 6 + }, + { + "begin": 1311, + "end": 1408, + "name": "PUSH [tag]", + "source": 6, + "value": "24" + }, + { + "begin": 1311, + "end": 1408, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1311, + "end": 1408, + "name": "tag", + "source": 6, + "value": "50" + }, + { + "begin": 1311, + "end": 1408, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1429, + "end": 1468, + "name": "PUSH [tag]", + "source": 6, + "value": "51" + }, + { + "begin": 1459, + "end": 1467, + "name": "DUP7", + "source": 6 + }, + { + "begin": 1448, + "end": 1457, + "name": "DUP4", + "source": 6 + }, + { + "begin": 1429, + "end": 1468, + "name": "PUSH [tag]", + "source": 6, + "value": "24" + }, + { + "begin": 1429, + "end": 1468, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1429, + "end": 1468, + "name": "tag", + "source": 6, + "value": "51" + }, + { + "begin": 1429, + "end": 1468, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1417, + "end": 1468, + "name": "SWAP6", + "source": 6 + }, + { + "begin": 1417, + "end": 1468, + "name": "POP", + "source": 6 + }, + { + "begin": 1501, + "end": 1505, + "name": "DUP1", + "source": 6 + }, + { + "begin": 1497, + "end": 1506, + "name": "NOT", + "source": 6 + }, + { + "begin": 1490, + "end": 1495, + "name": "DUP5", + "source": 6 + }, + { + "begin": 1486, + "end": 1507, + "name": "AND", + "source": 6 + }, + { + "begin": 1477, + "end": 1507, + "name": "SWAP4", + "source": 6 + }, + { + "begin": 1477, + "end": 1507, + "name": "POP", + "source": 6 + }, + { + "begin": 1550, + "end": 1554, + "name": "DUP1", + "source": 6 + }, + { + "begin": 1540, + "end": 1548, + "name": "DUP7", + "source": 6 + }, + { + "begin": 1536, + "end": 1555, + "name": "AND", + "source": 6 + }, + { + "begin": 1529, + "end": 1534, + "name": "DUP5", + "source": 6 + }, + { + "begin": 1526, + "end": 1556, + "name": "OR", + "source": 6 + }, + { + "begin": 1516, + "end": 1556, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 1516, + "end": 1556, + "name": "POP", + "source": 6 + }, + { + "begin": 1245, + "end": 1562, + "name": "POP", + "source": 6 + }, + { + "begin": 1245, + "end": 1562, + "name": "POP", + "source": 6 + }, + { + "begin": 1169, + "end": 1562, + "name": "SWAP4", + "source": 6 + }, + { + "begin": 1169, + "end": 1562, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 1169, + "end": 1562, + "name": "POP", + "source": 6 + }, + { + "begin": 1169, + "end": 1562, + "name": "POP", + "source": 6 + }, + { + "begin": 1169, + "end": 1562, + "name": "POP", + "source": 6 + }, + { + "begin": 1169, + "end": 1562, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1568, + "end": 1645, + "name": "tag", + "source": 6, + "value": "26" + }, + { + "begin": 1568, + "end": 1645, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1605, + "end": 1612, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 1634, + "end": 1639, + "name": "DUP2", + "source": 6 + }, + { + "begin": 1623, + "end": 1639, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1623, + "end": 1639, + "name": "POP", + "source": 6 + }, + { + "begin": 1568, + "end": 1645, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 1568, + "end": 1645, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1568, + "end": 1645, + "name": "POP", + "source": 6 + }, + { + "begin": 1568, + "end": 1645, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1651, + "end": 1711, + "name": "tag", + "source": 6, + "value": "27" + }, + { + "begin": 1651, + "end": 1711, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1679, + "end": 1682, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 1700, + "end": 1705, + "name": "DUP2", + "source": 6 + }, + { + "begin": 1693, + "end": 1705, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1693, + "end": 1705, + "name": "POP", + "source": 6 + }, + { + "begin": 1651, + "end": 1711, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 1651, + "end": 1711, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1651, + "end": 1711, + "name": "POP", + "source": 6 + }, + { + "begin": 1651, + "end": 1711, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1717, + "end": 1859, + "name": "tag", + "source": 6, + "value": "28" + }, + { + "begin": 1717, + "end": 1859, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1767, + "end": 1776, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 1800, + "end": 1853, + "name": "PUSH [tag]", + "source": 6, + "value": "55" + }, + { + "begin": 1818, + "end": 1852, + "name": "PUSH [tag]", + "source": 6, + "value": "56" + }, + { + "begin": 1827, + "end": 1851, + "name": "PUSH [tag]", + "source": 6, + "value": "57" + }, + { + "begin": 1845, + "end": 1850, + "name": "DUP5", + "source": 6 + }, + { + "begin": 1827, + "end": 1851, + "name": "PUSH [tag]", + "source": 6, + "value": "26" + }, + { + "begin": 1827, + "end": 1851, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1827, + "end": 1851, + "name": "tag", + "source": 6, + "value": "57" + }, + { + "begin": 1827, + "end": 1851, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1818, + "end": 1852, + "name": "PUSH [tag]", + "source": 6, + "value": "27" + }, + { + "begin": 1818, + "end": 1852, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1818, + "end": 1852, + "name": "tag", + "source": 6, + "value": "56" + }, + { + "begin": 1818, + "end": 1852, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1800, + "end": 1853, + "name": "PUSH [tag]", + "source": 6, + "value": "26" + }, + { + "begin": 1800, + "end": 1853, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1800, + "end": 1853, + "name": "tag", + "source": 6, + "value": "55" + }, + { + "begin": 1800, + "end": 1853, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1787, + "end": 1853, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1787, + "end": 1853, + "name": "POP", + "source": 6 + }, + { + "begin": 1717, + "end": 1859, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 1717, + "end": 1859, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1717, + "end": 1859, + "name": "POP", + "source": 6 + }, + { + "begin": 1717, + "end": 1859, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1865, + "end": 1940, + "name": "tag", + "source": 6, + "value": "29" + }, + { + "begin": 1865, + "end": 1940, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1908, + "end": 1911, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 1929, + "end": 1934, + "name": "DUP2", + "source": 6 + }, + { + "begin": 1922, + "end": 1934, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1922, + "end": 1934, + "name": "POP", + "source": 6 + }, + { + "begin": 1865, + "end": 1940, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 1865, + "end": 1940, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1865, + "end": 1940, + "name": "POP", + "source": 6 + }, + { + "begin": 1865, + "end": 1940, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1946, + "end": 2215, + "name": "tag", + "source": 6, + "value": "30" + }, + { + "begin": 1946, + "end": 2215, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2056, + "end": 2095, + "name": "PUSH [tag]", + "source": 6, + "value": "60" + }, + { + "begin": 2087, + "end": 2094, + "name": "DUP4", + "source": 6 + }, + { + "begin": 2056, + "end": 2095, + "name": "PUSH [tag]", + "source": 6, + "value": "28" + }, + { + "begin": 2056, + "end": 2095, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2056, + "end": 2095, + "name": "tag", + "source": 6, + "value": "60" + }, + { + "begin": 2056, + "end": 2095, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2117, + "end": 2208, + "name": "PUSH [tag]", + "source": 6, + "value": "61" + }, + { + "begin": 2166, + "end": 2207, + "name": "PUSH [tag]", + "source": 6, + "value": "62" + }, + { + "begin": 2190, + "end": 2206, + "name": "DUP3", + "source": 6 + }, + { + "begin": 2166, + "end": 2207, + "name": "PUSH [tag]", + "source": 6, + "value": "29" + }, + { + "begin": 2166, + "end": 2207, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2166, + "end": 2207, + "name": "tag", + "source": 6, + "value": "62" + }, + { + "begin": 2166, + "end": 2207, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2158, + "end": 2164, + "name": "DUP5", + "source": 6 + }, + { + "begin": 2151, + "end": 2155, + "name": "DUP5", + "source": 6 + }, + { + "begin": 2145, + "end": 2156, + "name": "SLOAD", + "source": 6 + }, + { + "begin": 2117, + "end": 2208, + "name": "PUSH [tag]", + "source": 6, + "value": "25" + }, + { + "begin": 2117, + "end": 2208, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2117, + "end": 2208, + "name": "tag", + "source": 6, + "value": "61" + }, + { + "begin": 2117, + "end": 2208, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2111, + "end": 2115, + "name": "DUP3", + "source": 6 + }, + { + "begin": 2104, + "end": 2209, + "name": "SSTORE", + "source": 6 + }, + { + "begin": 2022, + "end": 2215, + "name": "POP", + "source": 6 + }, + { + "begin": 1946, + "end": 2215, + "name": "POP", + "source": 6 + }, + { + "begin": 1946, + "end": 2215, + "name": "POP", + "source": 6 + }, + { + "begin": 1946, + "end": 2215, + "name": "POP", + "source": 6 + }, + { + "begin": 1946, + "end": 2215, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2221, + "end": 2294, + "name": "tag", + "source": 6, + "value": "31" + }, + { + "begin": 2221, + "end": 2294, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2266, + "end": 2269, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 2221, + "end": 2294, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 2221, + "end": 2294, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2300, + "end": 2489, + "name": "tag", + "source": 6, + "value": "32" + }, + { + "begin": 2300, + "end": 2489, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2377, + "end": 2409, + "name": "PUSH [tag]", + "source": 6, + "value": "65" + }, + { + "begin": 2377, + "end": 2409, + "name": "PUSH [tag]", + "source": 6, + "value": "31" + }, + { + "begin": 2377, + "end": 2409, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2377, + "end": 2409, + "name": "tag", + "source": 6, + "value": "65" + }, + { + "begin": 2377, + "end": 2409, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2418, + "end": 2483, + "name": "PUSH [tag]", + "source": 6, + "value": "66" + }, + { + "begin": 2476, + "end": 2482, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2468, + "end": 2474, + "name": "DUP5", + "source": 6 + }, + { + "begin": 2462, + "end": 2466, + "name": "DUP5", + "source": 6 + }, + { + "begin": 2418, + "end": 2483, + "name": "PUSH [tag]", + "source": 6, + "value": "30" + }, + { + "begin": 2418, + "end": 2483, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2418, + "end": 2483, + "name": "tag", + "source": 6, + "value": "66" + }, + { + "begin": 2418, + "end": 2483, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2353, + "end": 2489, + "name": "POP", + "source": 6 + }, + { + "begin": 2300, + "end": 2489, + "name": "POP", + "source": 6 + }, + { + "begin": 2300, + "end": 2489, + "name": "POP", + "source": 6 + }, + { + "begin": 2300, + "end": 2489, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2495, + "end": 2681, + "name": "tag", + "source": 6, + "value": "33" + }, + { + "begin": 2495, + "end": 2681, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2555, + "end": 2675, + "name": "tag", + "source": 6, + "value": "68" + }, + { + "begin": 2555, + "end": 2675, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2572, + "end": 2575, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2565, + "end": 2570, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2562, + "end": 2576, + "name": "LT", + "source": 6 + }, + { + "begin": 2555, + "end": 2675, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 2555, + "end": 2675, + "name": "PUSH [tag]", + "source": 6, + "value": "70" + }, + { + "begin": 2555, + "end": 2675, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 2626, + "end": 2665, + "name": "PUSH [tag]", + "source": 6, + "value": "71" + }, + { + "begin": 2663, + "end": 2664, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 2656, + "end": 2661, + "name": "DUP3", + "source": 6 + }, + { + "begin": 2626, + "end": 2665, + "name": "PUSH [tag]", + "source": 6, + "value": "32" + }, + { + "begin": 2626, + "end": 2665, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2626, + "end": 2665, + "name": "tag", + "source": 6, + "value": "71" + }, + { + "begin": 2626, + "end": 2665, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2599, + "end": 2600, + "name": "PUSH", + "source": 6, + "value": "1" + }, + { + "begin": 2592, + "end": 2597, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2588, + "end": 2601, + "name": "ADD", + "source": 6 + }, + { + "begin": 2579, + "end": 2601, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 2579, + "end": 2601, + "name": "POP", + "source": 6 + }, + { + "begin": 2555, + "end": 2675, + "name": "PUSH [tag]", + "source": 6, + "value": "68" + }, + { + "begin": 2555, + "end": 2675, + "name": "JUMP", + "source": 6 + }, + { + "begin": 2555, + "end": 2675, + "name": "tag", + "source": 6, + "value": "70" + }, + { + "begin": 2555, + "end": 2675, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2495, + "end": 2681, + "name": "POP", + "source": 6 + }, + { + "begin": 2495, + "end": 2681, + "name": "POP", + "source": 6 + }, + { + "begin": 2495, + "end": 2681, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2687, + "end": 3230, + "name": "tag", + "source": 6, + "value": "34" + }, + { + "begin": 2687, + "end": 3230, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2788, + "end": 2790, + "name": "PUSH", + "source": 6, + "value": "1F" + }, + { + "begin": 2783, + "end": 2786, + "name": "DUP3", + "source": 6 + }, + { + "begin": 2780, + "end": 2791, + "name": "GT", + "source": 6 + }, + { + "begin": 2777, + "end": 3223, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 2777, + "end": 3223, + "name": "PUSH [tag]", + "source": 6, + "value": "73" + }, + { + "begin": 2777, + "end": 3223, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 2822, + "end": 2860, + "name": "PUSH [tag]", + "source": 6, + "value": "74" + }, + { + "begin": 2854, + "end": 2859, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2822, + "end": 2860, + "name": "PUSH [tag]", + "source": 6, + "value": "22" + }, + { + "begin": 2822, + "end": 2860, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2822, + "end": 2860, + "name": "tag", + "source": 6, + "value": "74" + }, + { + "begin": 2822, + "end": 2860, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2906, + "end": 2935, + "name": "PUSH [tag]", + "source": 6, + "value": "75" + }, + { + "begin": 2924, + "end": 2934, + "name": "DUP5", + "source": 6 + }, + { + "begin": 2906, + "end": 2935, + "name": "PUSH [tag]", + "source": 6, + "value": "23" + }, + { + "begin": 2906, + "end": 2935, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2906, + "end": 2935, + "name": "tag", + "source": 6, + "value": "75" + }, + { + "begin": 2906, + "end": 2935, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2896, + "end": 2904, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2892, + "end": 2936, + "name": "ADD", + "source": 6 + }, + { + "begin": 3089, + "end": 3091, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 3077, + "end": 3087, + "name": "DUP6", + "source": 6 + }, + { + "begin": 3074, + "end": 3092, + "name": "LT", + "source": 6 + }, + { + "begin": 3071, + "end": 3120, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 3071, + "end": 3120, + "name": "PUSH [tag]", + "source": 6, + "value": "76" + }, + { + "begin": 3071, + "end": 3120, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 3110, + "end": 3118, + "name": "DUP2", + "source": 6 + }, + { + "begin": 3095, + "end": 3118, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 3095, + "end": 3118, + "name": "POP", + "source": 6 + }, + { + "begin": 3071, + "end": 3120, + "name": "tag", + "source": 6, + "value": "76" + }, + { + "begin": 3071, + "end": 3120, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3133, + "end": 3213, + "name": "PUSH [tag]", + "source": 6, + "value": "77" + }, + { + "begin": 3189, + "end": 3211, + "name": "PUSH [tag]", + "source": 6, + "value": "78" + }, + { + "begin": 3207, + "end": 3210, + "name": "DUP6", + "source": 6 + }, + { + "begin": 3189, + "end": 3211, + "name": "PUSH [tag]", + "source": 6, + "value": "23" + }, + { + "begin": 3189, + "end": 3211, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3189, + "end": 3211, + "name": "tag", + "source": 6, + "value": "78" + }, + { + "begin": 3189, + "end": 3211, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3179, + "end": 3187, + "name": "DUP4", + "source": 6 + }, + { + "begin": 3175, + "end": 3212, + "name": "ADD", + "source": 6 + }, + { + "begin": 3162, + "end": 3173, + "name": "DUP3", + "source": 6 + }, + { + "begin": 3133, + "end": 3213, + "name": "PUSH [tag]", + "source": 6, + "value": "33" + }, + { + "begin": 3133, + "end": 3213, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3133, + "end": 3213, + "name": "tag", + "source": 6, + "value": "77" + }, + { + "begin": 3133, + "end": 3213, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2792, + "end": 3223, + "name": "POP", + "source": 6 + }, + { + "begin": 2792, + "end": 3223, + "name": "POP", + "source": 6 + }, + { + "begin": 2777, + "end": 3223, + "name": "tag", + "source": 6, + "value": "73" + }, + { + "begin": 2777, + "end": 3223, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2687, + "end": 3230, + "name": "POP", + "source": 6 + }, + { + "begin": 2687, + "end": 3230, + "name": "POP", + "source": 6 + }, + { + "begin": 2687, + "end": 3230, + "name": "POP", + "source": 6 + }, + { + "begin": 2687, + "end": 3230, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3236, + "end": 3353, + "name": "tag", + "source": 6, + "value": "35" + }, + { + "begin": 3236, + "end": 3353, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3290, + "end": 3298, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 3340, + "end": 3345, + "name": "DUP3", + "source": 6 + }, + { + "begin": 3334, + "end": 3338, + "name": "DUP3", + "source": 6 + }, + { + "begin": 3330, + "end": 3346, + "name": "SHR", + "source": 6 + }, + { + "begin": 3309, + "end": 3346, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 3309, + "end": 3346, + "name": "POP", + "source": 6 + }, + { + "begin": 3236, + "end": 3353, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 3236, + "end": 3353, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 3236, + "end": 3353, + "name": "POP", + "source": 6 + }, + { + "begin": 3236, + "end": 3353, + "name": "POP", + "source": 6 + }, + { + "begin": 3236, + "end": 3353, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3359, + "end": 3528, + "name": "tag", + "source": 6, + "value": "36" + }, + { + "begin": 3359, + "end": 3528, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3403, + "end": 3409, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 3436, + "end": 3487, + "name": "PUSH [tag]", + "source": 6, + "value": "81" + }, + { + "begin": 3484, + "end": 3485, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 3480, + "end": 3486, + "name": "NOT", + "source": 6 + }, + { + "begin": 3472, + "end": 3477, + "name": "DUP5", + "source": 6 + }, + { + "begin": 3469, + "end": 3470, + "name": "PUSH", + "source": 6, + "value": "8" + }, + { + "begin": 3465, + "end": 3478, + "name": "MUL", + "source": 6 + }, + { + "begin": 3436, + "end": 3487, + "name": "PUSH [tag]", + "source": 6, + "value": "35" + }, + { + "begin": 3436, + "end": 3487, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3436, + "end": 3487, + "name": "tag", + "source": 6, + "value": "81" + }, + { + "begin": 3436, + "end": 3487, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3432, + "end": 3488, + "name": "NOT", + "source": 6 + }, + { + "begin": 3517, + "end": 3521, + "name": "DUP1", + "source": 6 + }, + { + "begin": 3511, + "end": 3515, + "name": "DUP4", + "source": 6 + }, + { + "begin": 3507, + "end": 3522, + "name": "AND", + "source": 6 + }, + { + "begin": 3497, + "end": 3522, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 3497, + "end": 3522, + "name": "POP", + "source": 6 + }, + { + "begin": 3410, + "end": 3528, + "name": "POP", + "source": 6 + }, + { + "begin": 3359, + "end": 3528, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 3359, + "end": 3528, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 3359, + "end": 3528, + "name": "POP", + "source": 6 + }, + { + "begin": 3359, + "end": 3528, + "name": "POP", + "source": 6 + }, + { + "begin": 3359, + "end": 3528, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3533, + "end": 3828, + "name": "tag", + "source": 6, + "value": "37" + }, + { + "begin": 3533, + "end": 3828, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3609, + "end": 3613, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 3755, + "end": 3784, + "name": "PUSH [tag]", + "source": 6, + "value": "83" + }, + { + "begin": 3780, + "end": 3783, + "name": "DUP4", + "source": 6 + }, + { + "begin": 3774, + "end": 3778, + "name": "DUP4", + "source": 6 + }, + { + "begin": 3755, + "end": 3784, + "name": "PUSH [tag]", + "source": 6, + "value": "36" + }, + { + "begin": 3755, + "end": 3784, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3755, + "end": 3784, + "name": "tag", + "source": 6, + "value": "83" + }, + { + "begin": 3755, + "end": 3784, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3747, + "end": 3784, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 3747, + "end": 3784, + "name": "POP", + "source": 6 + }, + { + "begin": 3817, + "end": 3820, + "name": "DUP3", + "source": 6 + }, + { + "begin": 3814, + "end": 3815, + "name": "PUSH", + "source": 6, + "value": "2" + }, + { + "begin": 3810, + "end": 3821, + "name": "MUL", + "source": 6 + }, + { + "begin": 3804, + "end": 3808, + "name": "DUP3", + "source": 6 + }, + { + "begin": 3801, + "end": 3822, + "name": "OR", + "source": 6 + }, + { + "begin": 3793, + "end": 3822, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 3793, + "end": 3822, + "name": "POP", + "source": 6 + }, + { + "begin": 3533, + "end": 3828, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 3533, + "end": 3828, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 3533, + "end": 3828, + "name": "POP", + "source": 6 + }, + { + "begin": 3533, + "end": 3828, + "name": "POP", + "source": 6 + }, + { + "begin": 3533, + "end": 3828, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3833, + "end": 5228, + "name": "tag", + "source": 6, + "value": "7" + }, + { + "begin": 3833, + "end": 5228, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3950, + "end": 3987, + "name": "PUSH [tag]", + "source": 6, + "value": "85" + }, + { + "begin": 3983, + "end": 3986, + "name": "DUP3", + "source": 6 + }, + { + "begin": 3950, + "end": 3987, + "name": "PUSH [tag]", + "source": 6, + "value": "18" + }, + { + "begin": 3950, + "end": 3987, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3950, + "end": 3987, + "name": "tag", + "source": 6, + "value": "85" + }, + { + "begin": 3950, + "end": 3987, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4052, + "end": 4070, + "name": "PUSH", + "source": 6, + "value": "FFFFFFFFFFFFFFFF" + }, + { + "begin": 4044, + "end": 4050, + "name": "DUP2", + "source": 6 + }, + { + "begin": 4041, + "end": 4071, + "name": "GT", + "source": 6 + }, + { + "begin": 4038, + "end": 4094, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 4038, + "end": 4094, + "name": "PUSH [tag]", + "source": 6, + "value": "86" + }, + { + "begin": 4038, + "end": 4094, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 4074, + "end": 4092, + "name": "PUSH [tag]", + "source": 6, + "value": "87" + }, + { + "begin": 4074, + "end": 4092, + "name": "PUSH [tag]", + "source": 6, + "value": "19" + }, + { + "begin": 4074, + "end": 4092, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4074, + "end": 4092, + "name": "tag", + "source": 6, + "value": "87" + }, + { + "begin": 4074, + "end": 4092, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4038, + "end": 4094, + "name": "tag", + "source": 6, + "value": "86" + }, + { + "begin": 4038, + "end": 4094, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4118, + "end": 4156, + "name": "PUSH [tag]", + "source": 6, + "value": "88" + }, + { + "begin": 4150, + "end": 4154, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4144, + "end": 4155, + "name": "SLOAD", + "source": 6 + }, + { + "begin": 4118, + "end": 4156, + "name": "PUSH [tag]", + "source": 6, + "value": "21" + }, + { + "begin": 4118, + "end": 4156, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4118, + "end": 4156, + "name": "tag", + "source": 6, + "value": "88" + }, + { + "begin": 4118, + "end": 4156, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4203, + "end": 4270, + "name": "PUSH [tag]", + "source": 6, + "value": "89" + }, + { + "begin": 4263, + "end": 4269, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4255, + "end": 4261, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4249, + "end": 4253, + "name": "DUP6", + "source": 6 + }, + { + "begin": 4203, + "end": 4270, + "name": "PUSH [tag]", + "source": 6, + "value": "34" + }, + { + "begin": 4203, + "end": 4270, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4203, + "end": 4270, + "name": "tag", + "source": 6, + "value": "89" + }, + { + "begin": 4203, + "end": 4270, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4297, + "end": 4298, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 4321, + "end": 4325, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 4308, + "end": 4325, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 4308, + "end": 4325, + "name": "POP", + "source": 6 + }, + { + "begin": 4353, + "end": 4355, + "name": "PUSH", + "source": 6, + "value": "1F" + }, + { + "begin": 4345, + "end": 4351, + "name": "DUP4", + "source": 6 + }, + { + "begin": 4342, + "end": 4356, + "name": "GT", + "source": 6 + }, + { + "begin": 4370, + "end": 4371, + "name": "PUSH", + "source": 6, + "value": "1" + }, + { + "begin": 4365, + "end": 4983, + "name": "DUP2", + "source": 6 + }, + { + "begin": 4365, + "end": 4983, + "name": "EQ", + "source": 6 + }, + { + "begin": 4365, + "end": 4983, + "name": "PUSH [tag]", + "source": 6, + "value": "91" + }, + { + "begin": 4365, + "end": 4983, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 5027, + "end": 5028, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 5044, + "end": 5050, + "name": "DUP5", + "source": 6 + }, + { + "begin": 5041, + "end": 5118, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 5041, + "end": 5118, + "name": "PUSH [tag]", + "source": 6, + "value": "92" + }, + { + "begin": 5041, + "end": 5118, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 5093, + "end": 5102, + "name": "DUP3", + "source": 6 + }, + { + "begin": 5088, + "end": 5091, + "name": "DUP8", + "source": 6 + }, + { + "begin": 5084, + "end": 5103, + "name": "ADD", + "source": 6 + }, + { + "begin": 5078, + "end": 5104, + "name": "MLOAD", + "source": 6 + }, + { + "begin": 5069, + "end": 5104, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 5069, + "end": 5104, + "name": "POP", + "source": 6 + }, + { + "begin": 5041, + "end": 5118, + "name": "tag", + "source": 6, + "value": "92" + }, + { + "begin": 5041, + "end": 5118, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5144, + "end": 5211, + "name": "PUSH [tag]", + "source": 6, + "value": "93" + }, + { + "begin": 5204, + "end": 5210, + "name": "DUP6", + "source": 6 + }, + { + "begin": 5197, + "end": 5202, + "name": "DUP3", + "source": 6 + }, + { + "begin": 5144, + "end": 5211, + "name": "PUSH [tag]", + "source": 6, + "value": "37" + }, + { + "begin": 5144, + "end": 5211, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5144, + "end": 5211, + "name": "tag", + "source": 6, + "value": "93" + }, + { + "begin": 5144, + "end": 5211, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5138, + "end": 5142, + "name": "DUP7", + "source": 6 + }, + { + "begin": 5131, + "end": 5212, + "name": "SSTORE", + "source": 6 + }, + { + "begin": 5000, + "end": 5222, + "name": "POP", + "source": 6 + }, + { + "begin": 4335, + "end": 5222, + "name": "PUSH [tag]", + "source": 6, + "value": "90" + }, + { + "begin": 4335, + "end": 5222, + "name": "JUMP", + "source": 6 + }, + { + "begin": 4365, + "end": 4983, + "name": "tag", + "source": 6, + "value": "91" + }, + { + "begin": 4365, + "end": 4983, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4417, + "end": 4421, + "name": "PUSH", + "source": 6, + "value": "1F" + }, + { + "begin": 4413, + "end": 4422, + "name": "NOT", + "source": 6 + }, + { + "begin": 4405, + "end": 4411, + "name": "DUP5", + "source": 6 + }, + { + "begin": 4401, + "end": 4423, + "name": "AND", + "source": 6 + }, + { + "begin": 4451, + "end": 4488, + "name": "PUSH [tag]", + "source": 6, + "value": "94" + }, + { + "begin": 4483, + "end": 4487, + "name": "DUP7", + "source": 6 + }, + { + "begin": 4451, + "end": 4488, + "name": "PUSH [tag]", + "source": 6, + "value": "22" + }, + { + "begin": 4451, + "end": 4488, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4451, + "end": 4488, + "name": "tag", + "source": 6, + "value": "94" + }, + { + "begin": 4451, + "end": 4488, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4510, + "end": 4511, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 4524, + "end": 4732, + "name": "tag", + "source": 6, + "value": "95" + }, + { + "begin": 4524, + "end": 4732, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4538, + "end": 4545, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4535, + "end": 4536, + "name": "DUP2", + "source": 6 + }, + { + "begin": 4532, + "end": 4546, + "name": "LT", + "source": 6 + }, + { + "begin": 4524, + "end": 4732, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 4524, + "end": 4732, + "name": "PUSH [tag]", + "source": 6, + "value": "97" + }, + { + "begin": 4524, + "end": 4732, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 4617, + "end": 4626, + "name": "DUP5", + "source": 6 + }, + { + "begin": 4612, + "end": 4615, + "name": "DUP10", + "source": 6 + }, + { + "begin": 4608, + "end": 4627, + "name": "ADD", + "source": 6 + }, + { + "begin": 4602, + "end": 4628, + "name": "MLOAD", + "source": 6 + }, + { + "begin": 4594, + "end": 4600, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4587, + "end": 4629, + "name": "SSTORE", + "source": 6 + }, + { + "begin": 4668, + "end": 4669, + "name": "PUSH", + "source": 6, + "value": "1" + }, + { + "begin": 4660, + "end": 4666, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4656, + "end": 4670, + "name": "ADD", + "source": 6 + }, + { + "begin": 4646, + "end": 4670, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 4646, + "end": 4670, + "name": "POP", + "source": 6 + }, + { + "begin": 4715, + "end": 4717, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 4704, + "end": 4713, + "name": "DUP6", + "source": 6 + }, + { + "begin": 4700, + "end": 4718, + "name": "ADD", + "source": 6 + }, + { + "begin": 4687, + "end": 4718, + "name": "SWAP5", + "source": 6 + }, + { + "begin": 4687, + "end": 4718, + "name": "POP", + "source": 6 + }, + { + "begin": 4561, + "end": 4565, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 4558, + "end": 4559, + "name": "DUP2", + "source": 6 + }, + { + "begin": 4554, + "end": 4566, + "name": "ADD", + "source": 6 + }, + { + "begin": 4549, + "end": 4566, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 4549, + "end": 4566, + "name": "POP", + "source": 6 + }, + { + "begin": 4524, + "end": 4732, + "name": "PUSH [tag]", + "source": 6, + "value": "95" + }, + { + "begin": 4524, + "end": 4732, + "name": "JUMP", + "source": 6 + }, + { + "begin": 4524, + "end": 4732, + "name": "tag", + "source": 6, + "value": "97" + }, + { + "begin": 4524, + "end": 4732, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4760, + "end": 4766, + "name": "DUP7", + "source": 6 + }, + { + "begin": 4751, + "end": 4758, + "name": "DUP4", + "source": 6 + }, + { + "begin": 4748, + "end": 4767, + "name": "LT", + "source": 6 + }, + { + "begin": 4745, + "end": 4924, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 4745, + "end": 4924, + "name": "PUSH [tag]", + "source": 6, + "value": "98" + }, + { + "begin": 4745, + "end": 4924, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 4818, + "end": 4827, + "name": "DUP5", + "source": 6 + }, + { + "begin": 4813, + "end": 4816, + "name": "DUP10", + "source": 6 + }, + { + "begin": 4809, + "end": 4828, + "name": "ADD", + "source": 6 + }, + { + "begin": 4803, + "end": 4829, + "name": "MLOAD", + "source": 6 + }, + { + "begin": 4861, + "end": 4909, + "name": "PUSH [tag]", + "source": 6, + "value": "99" + }, + { + "begin": 4903, + "end": 4907, + "name": "PUSH", + "source": 6, + "value": "1F" + }, + { + "begin": 4895, + "end": 4901, + "name": "DUP10", + "source": 6 + }, + { + "begin": 4891, + "end": 4908, + "name": "AND", + "source": 6 + }, + { + "begin": 4880, + "end": 4889, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4861, + "end": 4909, + "name": "PUSH [tag]", + "source": 6, + "value": "36" + }, + { + "begin": 4861, + "end": 4909, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4861, + "end": 4909, + "name": "tag", + "source": 6, + "value": "99" + }, + { + "begin": 4861, + "end": 4909, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4853, + "end": 4859, + "name": "DUP4", + "source": 6 + }, + { + "begin": 4846, + "end": 4910, + "name": "SSTORE", + "source": 6 + }, + { + "begin": 4768, + "end": 4924, + "name": "POP", + "source": 6 + }, + { + "begin": 4745, + "end": 4924, + "name": "tag", + "source": 6, + "value": "98" + }, + { + "begin": 4745, + "end": 4924, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4970, + "end": 4971, + "name": "PUSH", + "source": 6, + "value": "1" + }, + { + "begin": 4966, + "end": 4967, + "name": "PUSH", + "source": 6, + "value": "2" + }, + { + "begin": 4958, + "end": 4964, + "name": "DUP9", + "source": 6 + }, + { + "begin": 4954, + "end": 4968, + "name": "MUL", + "source": 6 + }, + { + "begin": 4950, + "end": 4972, + "name": "ADD", + "source": 6 + }, + { + "begin": 4944, + "end": 4948, + "name": "DUP9", + "source": 6 + }, + { + "begin": 4937, + "end": 4973, + "name": "SSTORE", + "source": 6 + }, + { + "begin": 4372, + "end": 4983, + "name": "POP", + "source": 6 + }, + { + "begin": 4372, + "end": 4983, + "name": "POP", + "source": 6 + }, + { + "begin": 4372, + "end": 4983, + "name": "POP", + "source": 6 + }, + { + "begin": 4335, + "end": 5222, + "name": "tag", + "source": 6, + "value": "90" + }, + { + "begin": 4335, + "end": 5222, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4335, + "end": 5222, + "name": "POP", + "source": 6 + }, + { + "begin": 3925, + "end": 5228, + "name": "POP", + "source": 6 + }, + { + "begin": 3925, + "end": 5228, + "name": "POP", + "source": 6 + }, + { + "begin": 3925, + "end": 5228, + "name": "POP", + "source": 6 + }, + { + "begin": 3833, + "end": 5228, + "name": "POP", + "source": 6 + }, + { + "begin": 3833, + "end": 5228, + "name": "POP", + "source": 6 + }, + { + "begin": 3833, + "end": 5228, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 167, + "end": 666, + "name": "tag", + "source": 5, + "value": "15" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPDEST", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH #[$]", + "source": 5, + "value": "0000000000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [$]", + "source": 5, + "value": "0000000000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "0" + }, + { + "begin": 167, + "end": 666, + "name": "CODECOPY", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "0" + }, + { + "begin": 167, + "end": 666, + "name": "RETURN", + "source": 5 + } + ], + ".data": { + "0": { + ".auxdata": "a26469706673582212203c8cbedc684db6cf68cec29d50046617cbf845f84734c2ca0906d155a73e741f64736f6c63430008140033", + ".code": [ + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "80" + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "40" + }, + { + "begin": 167, + "end": 666, + "name": "MSTORE", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "CALLVALUE", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "ISZERO", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "1" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "0" + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "REVERT", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "tag", + "source": 5, + "value": "1" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPDEST", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "POP", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "4" + }, + { + "begin": 167, + "end": 666, + "name": "CALLDATASIZE", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "LT", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "2" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "0" + }, + { + "begin": 167, + "end": 666, + "name": "CALLDATALOAD", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "E0" + }, + { + "begin": 167, + "end": 666, + "name": "SHR", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "715018A6" + }, + { + "begin": 167, + "end": 666, + "name": "GT", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "19" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "A87430BA" + }, + { + "begin": 167, + "end": 666, + "name": "GT", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "20" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "A87430BA" + }, + { + "begin": 167, + "end": 666, + "name": "EQ", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "15" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "A9059CBB" + }, + { + "begin": 167, + "end": 666, + "name": "EQ", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "16" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "DD62ED3E" + }, + { + "begin": 167, + "end": 666, + "name": "EQ", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "17" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "F2FDE38B" + }, + { + "begin": 167, + "end": 666, + "name": "EQ", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "18" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "2" + }, + { + "begin": 167, + "end": 666, + "name": "JUMP", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "tag", + "source": 5, + "value": "20" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPDEST", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "715018A6" + }, + { + "begin": 167, + "end": 666, + "name": "EQ", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "11" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "8DA5CB5B" + }, + { + "begin": 167, + "end": 666, + "name": "EQ", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "12" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "95D89B41" + }, + { + "begin": 167, + "end": 666, + "name": "EQ", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "13" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "A457C2D7" + }, + { + "begin": 167, + "end": 666, + "name": "EQ", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "14" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "2" + }, + { + "begin": 167, + "end": 666, + "name": "JUMP", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "tag", + "source": 5, + "value": "19" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPDEST", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "313CE567" + }, + { + "begin": 167, + "end": 666, + "name": "GT", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "21" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "313CE567" + }, + { + "begin": 167, + "end": 666, + "name": "EQ", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "7" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "39509351" + }, + { + "begin": 167, + "end": 666, + "name": "EQ", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "8" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "40C10F19" + }, + { + "begin": 167, + "end": 666, + "name": "EQ", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "9" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "70A08231" + }, + { + "begin": 167, + "end": 666, + "name": "EQ", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "10" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "2" + }, + { + "begin": 167, + "end": 666, + "name": "JUMP", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "tag", + "source": 5, + "value": "21" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPDEST", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "6FDDE03" + }, + { + "begin": 167, + "end": 666, + "name": "EQ", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "3" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "95EA7B3" + }, + { + "begin": 167, + "end": 666, + "name": "EQ", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "4" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "18160DDD" + }, + { + "begin": 167, + "end": 666, + "name": "EQ", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "5" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "23B872DD" + }, + { + "begin": 167, + "end": 666, + "name": "EQ", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH [tag]", + "source": 5, + "value": "6" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "tag", + "source": 5, + "value": "2" + }, + { + "begin": 167, + "end": 666, + "name": "JUMPDEST", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "PUSH", + "source": 5, + "value": "0" + }, + { + "begin": 167, + "end": 666, + "name": "DUP1", + "source": 5 + }, + { + "begin": 167, + "end": 666, + "name": "REVERT", + "source": 5 + }, + { + "begin": 2158, + "end": 2256, + "name": "tag", + "source": 1, + "value": "3" + }, + { + "begin": 2158, + "end": 2256, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "PUSH [tag]", + "source": 1, + "value": "22" + }, + { + "begin": 2158, + "end": 2256, + "name": "PUSH [tag]", + "source": 1, + "value": "23" + }, + { + "begin": 2158, + "end": 2256, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "tag", + "source": 1, + "value": "22" + }, + { + "begin": 2158, + "end": 2256, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 2158, + "end": 2256, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "PUSH [tag]", + "source": 1, + "value": "24" + }, + { + "begin": 2158, + "end": 2256, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "PUSH [tag]", + "source": 1, + "value": "25" + }, + { + "begin": 2158, + "end": 2256, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "tag", + "source": 1, + "value": "24" + }, + { + "begin": 2158, + "end": 2256, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 2158, + "end": 2256, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "SUB", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "RETURN", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "tag", + "source": 1, + "value": "4" + }, + { + "begin": 4444, + "end": 4641, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "PUSH [tag]", + "source": 1, + "value": "26" + }, + { + "begin": 4444, + "end": 4641, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 4444, + "end": 4641, + "name": "DUP1", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "CALLDATASIZE", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "SUB", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "DUP2", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "ADD", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "PUSH [tag]", + "source": 1, + "value": "27" + }, + { + "begin": 4444, + "end": 4641, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "PUSH [tag]", + "source": 1, + "value": "28" + }, + { + "begin": 4444, + "end": 4641, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "tag", + "source": 1, + "value": "27" + }, + { + "begin": 4444, + "end": 4641, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "PUSH [tag]", + "source": 1, + "value": "29" + }, + { + "begin": 4444, + "end": 4641, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "tag", + "source": 1, + "value": "26" + }, + { + "begin": 4444, + "end": 4641, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 4444, + "end": 4641, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "PUSH [tag]", + "source": 1, + "value": "30" + }, + { + "begin": 4444, + "end": 4641, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "PUSH [tag]", + "source": 1, + "value": "31" + }, + { + "begin": 4444, + "end": 4641, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "tag", + "source": 1, + "value": "30" + }, + { + "begin": 4444, + "end": 4641, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 4444, + "end": 4641, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "DUP1", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "SUB", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "RETURN", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "tag", + "source": 1, + "value": "5" + }, + { + "begin": 3255, + "end": 3361, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "PUSH [tag]", + "source": 1, + "value": "32" + }, + { + "begin": 3255, + "end": 3361, + "name": "PUSH [tag]", + "source": 1, + "value": "33" + }, + { + "begin": 3255, + "end": 3361, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "tag", + "source": 1, + "value": "32" + }, + { + "begin": 3255, + "end": 3361, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 3255, + "end": 3361, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "PUSH [tag]", + "source": 1, + "value": "34" + }, + { + "begin": 3255, + "end": 3361, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "PUSH [tag]", + "source": 1, + "value": "35" + }, + { + "begin": 3255, + "end": 3361, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "tag", + "source": 1, + "value": "34" + }, + { + "begin": 3255, + "end": 3361, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 3255, + "end": 3361, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "DUP1", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "SUB", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "RETURN", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "tag", + "source": 1, + "value": "6" + }, + { + "begin": 5203, + "end": 5459, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "PUSH [tag]", + "source": 1, + "value": "36" + }, + { + "begin": 5203, + "end": 5459, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 5203, + "end": 5459, + "name": "DUP1", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "CALLDATASIZE", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "SUB", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "DUP2", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "ADD", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "PUSH [tag]", + "source": 1, + "value": "37" + }, + { + "begin": 5203, + "end": 5459, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "PUSH [tag]", + "source": 1, + "value": "38" + }, + { + "begin": 5203, + "end": 5459, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "tag", + "source": 1, + "value": "37" + }, + { + "begin": 5203, + "end": 5459, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "PUSH [tag]", + "source": 1, + "value": "39" + }, + { + "begin": 5203, + "end": 5459, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "tag", + "source": 1, + "value": "36" + }, + { + "begin": 5203, + "end": 5459, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 5203, + "end": 5459, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "PUSH [tag]", + "source": 1, + "value": "40" + }, + { + "begin": 5203, + "end": 5459, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "PUSH [tag]", + "source": 1, + "value": "31" + }, + { + "begin": 5203, + "end": 5459, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "tag", + "source": 1, + "value": "40" + }, + { + "begin": 5203, + "end": 5459, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 5203, + "end": 5459, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "DUP1", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "SUB", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "RETURN", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "tag", + "source": 1, + "value": "7" + }, + { + "begin": 3104, + "end": 3195, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "PUSH [tag]", + "source": 1, + "value": "41" + }, + { + "begin": 3104, + "end": 3195, + "name": "PUSH [tag]", + "source": 1, + "value": "42" + }, + { + "begin": 3104, + "end": 3195, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "tag", + "source": 1, + "value": "41" + }, + { + "begin": 3104, + "end": 3195, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 3104, + "end": 3195, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "PUSH [tag]", + "source": 1, + "value": "43" + }, + { + "begin": 3104, + "end": 3195, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "PUSH [tag]", + "source": 1, + "value": "44" + }, + { + "begin": 3104, + "end": 3195, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "tag", + "source": 1, + "value": "43" + }, + { + "begin": 3104, + "end": 3195, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 3104, + "end": 3195, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "DUP1", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "SUB", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "RETURN", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "tag", + "source": 1, + "value": "8" + }, + { + "begin": 5854, + "end": 6088, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "PUSH [tag]", + "source": 1, + "value": "45" + }, + { + "begin": 5854, + "end": 6088, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 5854, + "end": 6088, + "name": "DUP1", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "CALLDATASIZE", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "SUB", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "DUP2", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "ADD", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "PUSH [tag]", + "source": 1, + "value": "46" + }, + { + "begin": 5854, + "end": 6088, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "PUSH [tag]", + "source": 1, + "value": "28" + }, + { + "begin": 5854, + "end": 6088, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "tag", + "source": 1, + "value": "46" + }, + { + "begin": 5854, + "end": 6088, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "PUSH [tag]", + "source": 1, + "value": "47" + }, + { + "begin": 5854, + "end": 6088, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "tag", + "source": 1, + "value": "45" + }, + { + "begin": 5854, + "end": 6088, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 5854, + "end": 6088, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "PUSH [tag]", + "source": 1, + "value": "48" + }, + { + "begin": 5854, + "end": 6088, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "PUSH [tag]", + "source": 1, + "value": "31" + }, + { + "begin": 5854, + "end": 6088, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "tag", + "source": 1, + "value": "48" + }, + { + "begin": 5854, + "end": 6088, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 5854, + "end": 6088, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "DUP1", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "SUB", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "RETURN", + "source": 1 + }, + { + "begin": 300, + "end": 393, + "name": "tag", + "source": 5, + "value": "9" + }, + { + "begin": 300, + "end": 393, + "name": "JUMPDEST", + "source": 5 + }, + { + "begin": 300, + "end": 393, + "name": "PUSH [tag]", + "source": 5, + "value": "49" + }, + { + "begin": 300, + "end": 393, + "name": "PUSH", + "source": 5, + "value": "4" + }, + { + "begin": 300, + "end": 393, + "name": "DUP1", + "source": 5 + }, + { + "begin": 300, + "end": 393, + "name": "CALLDATASIZE", + "source": 5 + }, + { + "begin": 300, + "end": 393, + "name": "SUB", + "source": 5 + }, + { + "begin": 300, + "end": 393, + "name": "DUP2", + "source": 5 + }, + { + "begin": 300, + "end": 393, + "name": "ADD", + "source": 5 + }, + { + "begin": 300, + "end": 393, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 300, + "end": 393, + "name": "PUSH [tag]", + "source": 5, + "value": "50" + }, + { + "begin": 300, + "end": 393, + "name": "SWAP2", + "source": 5 + }, + { + "begin": 300, + "end": 393, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 300, + "end": 393, + "name": "PUSH [tag]", + "source": 5, + "value": "28" + }, + { + "begin": 300, + "end": 393, + "jumpType": "[in]", + "name": "JUMP", + "source": 5 + }, + { + "begin": 300, + "end": 393, + "name": "tag", + "source": 5, + "value": "50" + }, + { + "begin": 300, + "end": 393, + "name": "JUMPDEST", + "source": 5 + }, + { + "begin": 300, + "end": 393, + "name": "PUSH [tag]", + "source": 5, + "value": "51" + }, + { + "begin": 300, + "end": 393, + "jumpType": "[in]", + "name": "JUMP", + "source": 5 + }, + { + "begin": 300, + "end": 393, + "name": "tag", + "source": 5, + "value": "49" + }, + { + "begin": 300, + "end": 393, + "name": "JUMPDEST", + "source": 5 + }, + { + "begin": 300, + "end": 393, + "name": "STOP", + "source": 5 + }, + { + "begin": 3419, + "end": 3544, + "name": "tag", + "source": 1, + "value": "10" + }, + { + "begin": 3419, + "end": 3544, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "PUSH [tag]", + "source": 1, + "value": "52" + }, + { + "begin": 3419, + "end": 3544, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 3419, + "end": 3544, + "name": "DUP1", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "CALLDATASIZE", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "SUB", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "DUP2", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "ADD", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "PUSH [tag]", + "source": 1, + "value": "53" + }, + { + "begin": 3419, + "end": 3544, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "PUSH [tag]", + "source": 1, + "value": "54" + }, + { + "begin": 3419, + "end": 3544, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "tag", + "source": 1, + "value": "53" + }, + { + "begin": 3419, + "end": 3544, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "PUSH [tag]", + "source": 1, + "value": "55" + }, + { + "begin": 3419, + "end": 3544, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "tag", + "source": 1, + "value": "52" + }, + { + "begin": 3419, + "end": 3544, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 3419, + "end": 3544, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "PUSH [tag]", + "source": 1, + "value": "56" + }, + { + "begin": 3419, + "end": 3544, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "PUSH [tag]", + "source": 1, + "value": "35" + }, + { + "begin": 3419, + "end": 3544, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "tag", + "source": 1, + "value": "56" + }, + { + "begin": 3419, + "end": 3544, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 3419, + "end": 3544, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "DUP1", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "SUB", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "RETURN", + "source": 1 + }, + { + "begin": 1824, + "end": 1925, + "name": "tag", + "source": 0, + "value": "11" + }, + { + "begin": 1824, + "end": 1925, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1824, + "end": 1925, + "name": "PUSH [tag]", + "source": 0, + "value": "57" + }, + { + "begin": 1824, + "end": 1925, + "name": "PUSH [tag]", + "source": 0, + "value": "58" + }, + { + "begin": 1824, + "end": 1925, + "jumpType": "[in]", + "name": "JUMP", + "source": 0 + }, + { + "begin": 1824, + "end": 1925, + "name": "tag", + "source": 0, + "value": "57" + }, + { + "begin": 1824, + "end": 1925, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1824, + "end": 1925, + "name": "STOP", + "source": 0 + }, + { + "begin": 1201, + "end": 1286, + "name": "tag", + "source": 0, + "value": "12" + }, + { + "begin": 1201, + "end": 1286, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1201, + "end": 1286, + "name": "PUSH [tag]", + "source": 0, + "value": "59" + }, + { + "begin": 1201, + "end": 1286, + "name": "PUSH [tag]", + "source": 0, + "value": "60" + }, + { + "begin": 1201, + "end": 1286, + "jumpType": "[in]", + "name": "JUMP", + "source": 0 + }, + { + "begin": 1201, + "end": 1286, + "name": "tag", + "source": 0, + "value": "59" + }, + { + "begin": 1201, + "end": 1286, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1201, + "end": 1286, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 1201, + "end": 1286, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 1201, + "end": 1286, + "name": "PUSH [tag]", + "source": 0, + "value": "61" + }, + { + "begin": 1201, + "end": 1286, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 1201, + "end": 1286, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1201, + "end": 1286, + "name": "PUSH [tag]", + "source": 0, + "value": "62" + }, + { + "begin": 1201, + "end": 1286, + "jumpType": "[in]", + "name": "JUMP", + "source": 0 + }, + { + "begin": 1201, + "end": 1286, + "name": "tag", + "source": 0, + "value": "61" + }, + { + "begin": 1201, + "end": 1286, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1201, + "end": 1286, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 1201, + "end": 1286, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 1201, + "end": 1286, + "name": "DUP1", + "source": 0 + }, + { + "begin": 1201, + "end": 1286, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 1201, + "end": 1286, + "name": "SUB", + "source": 0 + }, + { + "begin": 1201, + "end": 1286, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1201, + "end": 1286, + "name": "RETURN", + "source": 0 + }, + { + "begin": 2369, + "end": 2471, + "name": "tag", + "source": 1, + "value": "13" + }, + { + "begin": 2369, + "end": 2471, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "PUSH [tag]", + "source": 1, + "value": "63" + }, + { + "begin": 2369, + "end": 2471, + "name": "PUSH [tag]", + "source": 1, + "value": "64" + }, + { + "begin": 2369, + "end": 2471, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "tag", + "source": 1, + "value": "63" + }, + { + "begin": 2369, + "end": 2471, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 2369, + "end": 2471, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "PUSH [tag]", + "source": 1, + "value": "65" + }, + { + "begin": 2369, + "end": 2471, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "PUSH [tag]", + "source": 1, + "value": "25" + }, + { + "begin": 2369, + "end": 2471, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "tag", + "source": 1, + "value": "65" + }, + { + "begin": 2369, + "end": 2471, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 2369, + "end": 2471, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "SUB", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "RETURN", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "tag", + "source": 1, + "value": "14" + }, + { + "begin": 6575, + "end": 7002, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "PUSH [tag]", + "source": 1, + "value": "66" + }, + { + "begin": 6575, + "end": 7002, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 6575, + "end": 7002, + "name": "DUP1", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "CALLDATASIZE", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "SUB", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "DUP2", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "ADD", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "PUSH [tag]", + "source": 1, + "value": "67" + }, + { + "begin": 6575, + "end": 7002, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "PUSH [tag]", + "source": 1, + "value": "28" + }, + { + "begin": 6575, + "end": 7002, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "tag", + "source": 1, + "value": "67" + }, + { + "begin": 6575, + "end": 7002, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "PUSH [tag]", + "source": 1, + "value": "68" + }, + { + "begin": 6575, + "end": 7002, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "tag", + "source": 1, + "value": "66" + }, + { + "begin": 6575, + "end": 7002, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 6575, + "end": 7002, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "PUSH [tag]", + "source": 1, + "value": "69" + }, + { + "begin": 6575, + "end": 7002, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "PUSH [tag]", + "source": 1, + "value": "31" + }, + { + "begin": 6575, + "end": 7002, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "tag", + "source": 1, + "value": "69" + }, + { + "begin": 6575, + "end": 7002, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 6575, + "end": 7002, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "DUP1", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "SUB", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "RETURN", + "source": 1 + }, + { + "begin": 398, + "end": 436, + "name": "tag", + "source": 5, + "value": "15" + }, + { + "begin": 398, + "end": 436, + "name": "JUMPDEST", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH [tag]", + "source": 5, + "value": "70" + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "4" + }, + { + "begin": 398, + "end": 436, + "name": "DUP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "CALLDATASIZE", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SUB", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP2", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "ADD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH [tag]", + "source": 5, + "value": "71" + }, + { + "begin": 398, + "end": 436, + "name": "SWAP2", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH [tag]", + "source": 5, + "value": "54" + }, + { + "begin": 398, + "end": 436, + "jumpType": "[in]", + "name": "JUMP", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "tag", + "source": 5, + "value": "71" + }, + { + "begin": 398, + "end": 436, + "name": "JUMPDEST", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH [tag]", + "source": 5, + "value": "72" + }, + { + "begin": 398, + "end": 436, + "jumpType": "[in]", + "name": "JUMP", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "tag", + "source": 5, + "value": "70" + }, + { + "begin": 398, + "end": 436, + "name": "JUMPDEST", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "40" + }, + { + "begin": 398, + "end": 436, + "name": "MLOAD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH [tag]", + "source": 5, + "value": "73" + }, + { + "begin": 398, + "end": 436, + "name": "SWAP5", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP4", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP3", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP2", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH [tag]", + "source": 5, + "value": "74" + }, + { + "begin": 398, + "end": 436, + "jumpType": "[in]", + "name": "JUMP", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "tag", + "source": 5, + "value": "73" + }, + { + "begin": 398, + "end": 436, + "name": "JUMPDEST", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "40" + }, + { + "begin": 398, + "end": 436, + "name": "MLOAD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP2", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SUB", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "RETURN", + "source": 5 + }, + { + "begin": 3740, + "end": 3929, + "name": "tag", + "source": 1, + "value": "16" + }, + { + "begin": 3740, + "end": 3929, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "PUSH [tag]", + "source": 1, + "value": "75" + }, + { + "begin": 3740, + "end": 3929, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 3740, + "end": 3929, + "name": "DUP1", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "CALLDATASIZE", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "SUB", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "DUP2", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "ADD", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "PUSH [tag]", + "source": 1, + "value": "76" + }, + { + "begin": 3740, + "end": 3929, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "PUSH [tag]", + "source": 1, + "value": "28" + }, + { + "begin": 3740, + "end": 3929, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "tag", + "source": 1, + "value": "76" + }, + { + "begin": 3740, + "end": 3929, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "PUSH [tag]", + "source": 1, + "value": "77" + }, + { + "begin": 3740, + "end": 3929, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "tag", + "source": 1, + "value": "75" + }, + { + "begin": 3740, + "end": 3929, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 3740, + "end": 3929, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "PUSH [tag]", + "source": 1, + "value": "78" + }, + { + "begin": 3740, + "end": 3929, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "PUSH [tag]", + "source": 1, + "value": "31" + }, + { + "begin": 3740, + "end": 3929, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "tag", + "source": 1, + "value": "78" + }, + { + "begin": 3740, + "end": 3929, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 3740, + "end": 3929, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "DUP1", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "SUB", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "RETURN", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "tag", + "source": 1, + "value": "17" + }, + { + "begin": 3987, + "end": 4136, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "PUSH [tag]", + "source": 1, + "value": "79" + }, + { + "begin": 3987, + "end": 4136, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 3987, + "end": 4136, + "name": "DUP1", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "CALLDATASIZE", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "SUB", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "DUP2", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "ADD", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "PUSH [tag]", + "source": 1, + "value": "80" + }, + { + "begin": 3987, + "end": 4136, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "PUSH [tag]", + "source": 1, + "value": "81" + }, + { + "begin": 3987, + "end": 4136, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "tag", + "source": 1, + "value": "80" + }, + { + "begin": 3987, + "end": 4136, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "PUSH [tag]", + "source": 1, + "value": "82" + }, + { + "begin": 3987, + "end": 4136, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "tag", + "source": 1, + "value": "79" + }, + { + "begin": 3987, + "end": 4136, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 3987, + "end": 4136, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "PUSH [tag]", + "source": 1, + "value": "83" + }, + { + "begin": 3987, + "end": 4136, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "PUSH [tag]", + "source": 1, + "value": "35" + }, + { + "begin": 3987, + "end": 4136, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "tag", + "source": 1, + "value": "83" + }, + { + "begin": 3987, + "end": 4136, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 3987, + "end": 4136, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "DUP1", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "SUB", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "RETURN", + "source": 1 + }, + { + "begin": 2074, + "end": 2272, + "name": "tag", + "source": 0, + "value": "18" + }, + { + "begin": 2074, + "end": 2272, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 2074, + "end": 2272, + "name": "PUSH [tag]", + "source": 0, + "value": "84" + }, + { + "begin": 2074, + "end": 2272, + "name": "PUSH", + "source": 0, + "value": "4" + }, + { + "begin": 2074, + "end": 2272, + "name": "DUP1", + "source": 0 + }, + { + "begin": 2074, + "end": 2272, + "name": "CALLDATASIZE", + "source": 0 + }, + { + "begin": 2074, + "end": 2272, + "name": "SUB", + "source": 0 + }, + { + "begin": 2074, + "end": 2272, + "name": "DUP2", + "source": 0 + }, + { + "begin": 2074, + "end": 2272, + "name": "ADD", + "source": 0 + }, + { + "begin": 2074, + "end": 2272, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 2074, + "end": 2272, + "name": "PUSH [tag]", + "source": 0, + "value": "85" + }, + { + "begin": 2074, + "end": 2272, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 2074, + "end": 2272, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 2074, + "end": 2272, + "name": "PUSH [tag]", + "source": 0, + "value": "54" + }, + { + "begin": 2074, + "end": 2272, + "jumpType": "[in]", + "name": "JUMP", + "source": 0 + }, + { + "begin": 2074, + "end": 2272, + "name": "tag", + "source": 0, + "value": "85" + }, + { + "begin": 2074, + "end": 2272, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 2074, + "end": 2272, + "name": "PUSH [tag]", + "source": 0, + "value": "86" + }, + { + "begin": 2074, + "end": 2272, + "jumpType": "[in]", + "name": "JUMP", + "source": 0 + }, + { + "begin": 2074, + "end": 2272, + "name": "tag", + "source": 0, + "value": "84" + }, + { + "begin": 2074, + "end": 2272, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 2074, + "end": 2272, + "name": "STOP", + "source": 0 + }, + { + "begin": 2158, + "end": 2256, + "name": "tag", + "source": 1, + "value": "23" + }, + { + "begin": 2158, + "end": 2256, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2212, + "end": 2225, + "name": "PUSH", + "source": 1, + "value": "60" + }, + { + "begin": 2244, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "3" + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH [tag]", + "source": 1, + "value": "88" + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH [tag]", + "source": 1, + "value": "89" + }, + { + "begin": 2237, + "end": 2249, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "tag", + "source": 1, + "value": "88" + }, + { + "begin": 2237, + "end": 2249, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "1F" + }, + { + "begin": 2237, + "end": 2249, + "name": "ADD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DIV", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "MUL", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2237, + "end": 2249, + "name": "ADD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 2237, + "end": 2249, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "ADD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 2237, + "end": 2249, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2237, + "end": 2249, + "name": "ADD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP3", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH [tag]", + "source": 1, + "value": "90" + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH [tag]", + "source": 1, + "value": "89" + }, + { + "begin": 2237, + "end": 2249, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "tag", + "source": 1, + "value": "90" + }, + { + "begin": 2237, + "end": 2249, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH [tag]", + "source": 1, + "value": "91" + }, + { + "begin": 2237, + "end": 2249, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "1F" + }, + { + "begin": 2237, + "end": 2249, + "name": "LT", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH [tag]", + "source": 1, + "value": "92" + }, + { + "begin": 2237, + "end": 2249, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "100" + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP4", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DIV", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "MUL", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP4", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2237, + "end": 2249, + "name": "ADD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH [tag]", + "source": 1, + "value": "91" + }, + { + "begin": 2237, + "end": 2249, + "name": "JUMP", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "tag", + "source": 1, + "value": "92" + }, + { + "begin": 2237, + "end": 2249, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP3", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "ADD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 2237, + "end": 2249, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 2237, + "end": 2249, + "name": "KECCAK256", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "tag", + "source": 1, + "value": "93" + }, + { + "begin": 2237, + "end": 2249, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 2237, + "end": 2249, + "name": "ADD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2237, + "end": 2249, + "name": "ADD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP4", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "GT", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH [tag]", + "source": 1, + "value": "93" + }, + { + "begin": 2237, + "end": 2249, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP3", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SUB", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "PUSH", + "source": 1, + "value": "1F" + }, + { + "begin": 2237, + "end": 2249, + "name": "AND", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "DUP3", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "ADD", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "tag", + "source": 1, + "value": "91" + }, + { + "begin": 2237, + "end": 2249, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "POP", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "POP", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "POP", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "POP", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "POP", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2237, + "end": 2249, + "name": "POP", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2158, + "end": 2256, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "tag", + "source": 1, + "value": "29" + }, + { + "begin": 4444, + "end": 4641, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4527, + "end": 4531, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 4543, + "end": 4556, + "name": "DUP1", + "source": 1 + }, + { + "begin": 4559, + "end": 4571, + "name": "PUSH [tag]", + "source": 1, + "value": "95" + }, + { + "begin": 4559, + "end": 4569, + "name": "PUSH [tag]", + "source": 1, + "value": "96" + }, + { + "begin": 4559, + "end": 4571, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 4559, + "end": 4571, + "name": "tag", + "source": 1, + "value": "95" + }, + { + "begin": 4559, + "end": 4571, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4543, + "end": 4571, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 4543, + "end": 4571, + "name": "POP", + "source": 1 + }, + { + "begin": 4581, + "end": 4613, + "name": "PUSH [tag]", + "source": 1, + "value": "97" + }, + { + "begin": 4590, + "end": 4595, + "name": "DUP2", + "source": 1 + }, + { + "begin": 4597, + "end": 4604, + "name": "DUP6", + "source": 1 + }, + { + "begin": 4606, + "end": 4612, + "name": "DUP6", + "source": 1 + }, + { + "begin": 4581, + "end": 4589, + "name": "PUSH [tag]", + "source": 1, + "value": "98" + }, + { + "begin": 4581, + "end": 4613, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 4581, + "end": 4613, + "name": "tag", + "source": 1, + "value": "97" + }, + { + "begin": 4581, + "end": 4613, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4630, + "end": 4634, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 4623, + "end": 4634, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 4623, + "end": 4634, + "name": "POP", + "source": 1 + }, + { + "begin": 4623, + "end": 4634, + "name": "POP", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "POP", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "name": "POP", + "source": 1 + }, + { + "begin": 4444, + "end": 4641, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "tag", + "source": 1, + "value": "33" + }, + { + "begin": 3255, + "end": 3361, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3316, + "end": 3323, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 3342, + "end": 3354, + "name": "PUSH", + "source": 1, + "value": "2" + }, + { + "begin": 3342, + "end": 3354, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 3335, + "end": 3354, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3335, + "end": 3354, + "name": "POP", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3255, + "end": 3361, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "tag", + "source": 1, + "value": "39" + }, + { + "begin": 5203, + "end": 5459, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5300, + "end": 5304, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 5316, + "end": 5331, + "name": "DUP1", + "source": 1 + }, + { + "begin": 5334, + "end": 5346, + "name": "PUSH [tag]", + "source": 1, + "value": "101" + }, + { + "begin": 5334, + "end": 5344, + "name": "PUSH [tag]", + "source": 1, + "value": "96" + }, + { + "begin": 5334, + "end": 5346, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5334, + "end": 5346, + "name": "tag", + "source": 1, + "value": "101" + }, + { + "begin": 5334, + "end": 5346, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5316, + "end": 5346, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5316, + "end": 5346, + "name": "POP", + "source": 1 + }, + { + "begin": 5356, + "end": 5394, + "name": "PUSH [tag]", + "source": 1, + "value": "102" + }, + { + "begin": 5372, + "end": 5376, + "name": "DUP6", + "source": 1 + }, + { + "begin": 5378, + "end": 5385, + "name": "DUP3", + "source": 1 + }, + { + "begin": 5387, + "end": 5393, + "name": "DUP6", + "source": 1 + }, + { + "begin": 5356, + "end": 5371, + "name": "PUSH [tag]", + "source": 1, + "value": "103" + }, + { + "begin": 5356, + "end": 5394, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5356, + "end": 5394, + "name": "tag", + "source": 1, + "value": "102" + }, + { + "begin": 5356, + "end": 5394, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5404, + "end": 5431, + "name": "PUSH [tag]", + "source": 1, + "value": "104" + }, + { + "begin": 5414, + "end": 5418, + "name": "DUP6", + "source": 1 + }, + { + "begin": 5420, + "end": 5422, + "name": "DUP6", + "source": 1 + }, + { + "begin": 5424, + "end": 5430, + "name": "DUP6", + "source": 1 + }, + { + "begin": 5404, + "end": 5413, + "name": "PUSH [tag]", + "source": 1, + "value": "105" + }, + { + "begin": 5404, + "end": 5431, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5404, + "end": 5431, + "name": "tag", + "source": 1, + "value": "104" + }, + { + "begin": 5404, + "end": 5431, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5448, + "end": 5452, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 5441, + "end": 5452, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 5441, + "end": 5452, + "name": "POP", + "source": 1 + }, + { + "begin": 5441, + "end": 5452, + "name": "POP", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "SWAP4", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "POP", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "POP", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "name": "POP", + "source": 1 + }, + { + "begin": 5203, + "end": 5459, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "tag", + "source": 1, + "value": "42" + }, + { + "begin": 3104, + "end": 3195, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3162, + "end": 3167, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 3186, + "end": 3188, + "name": "PUSH", + "source": 1, + "value": "12" + }, + { + "begin": 3179, + "end": 3188, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3179, + "end": 3188, + "name": "POP", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3104, + "end": 3195, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "tag", + "source": 1, + "value": "47" + }, + { + "begin": 5854, + "end": 6088, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5942, + "end": 5946, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 5958, + "end": 5971, + "name": "DUP1", + "source": 1 + }, + { + "begin": 5974, + "end": 5986, + "name": "PUSH [tag]", + "source": 1, + "value": "108" + }, + { + "begin": 5974, + "end": 5984, + "name": "PUSH [tag]", + "source": 1, + "value": "96" + }, + { + "begin": 5974, + "end": 5986, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5974, + "end": 5986, + "name": "tag", + "source": 1, + "value": "108" + }, + { + "begin": 5974, + "end": 5986, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5958, + "end": 5986, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 5958, + "end": 5986, + "name": "POP", + "source": 1 + }, + { + "begin": 5996, + "end": 6060, + "name": "PUSH [tag]", + "source": 1, + "value": "109" + }, + { + "begin": 6005, + "end": 6010, + "name": "DUP2", + "source": 1 + }, + { + "begin": 6012, + "end": 6019, + "name": "DUP6", + "source": 1 + }, + { + "begin": 6049, + "end": 6059, + "name": "DUP6", + "source": 1 + }, + { + "begin": 6021, + "end": 6046, + "name": "PUSH [tag]", + "source": 1, + "value": "110" + }, + { + "begin": 6031, + "end": 6036, + "name": "DUP6", + "source": 1 + }, + { + "begin": 6038, + "end": 6045, + "name": "DUP10", + "source": 1 + }, + { + "begin": 6021, + "end": 6030, + "name": "PUSH [tag]", + "source": 1, + "value": "82" + }, + { + "begin": 6021, + "end": 6046, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 6021, + "end": 6046, + "name": "tag", + "source": 1, + "value": "110" + }, + { + "begin": 6021, + "end": 6046, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6021, + "end": 6059, + "name": "PUSH [tag]", + "source": 1, + "value": "111" + }, + { + "begin": 6021, + "end": 6059, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 6021, + "end": 6059, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 6021, + "end": 6059, + "name": "PUSH [tag]", + "source": 1, + "value": "112" + }, + { + "begin": 6021, + "end": 6059, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 6021, + "end": 6059, + "name": "tag", + "source": 1, + "value": "111" + }, + { + "begin": 6021, + "end": 6059, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 5996, + "end": 6004, + "name": "PUSH [tag]", + "source": 1, + "value": "98" + }, + { + "begin": 5996, + "end": 6060, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 5996, + "end": 6060, + "name": "tag", + "source": 1, + "value": "109" + }, + { + "begin": 5996, + "end": 6060, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6077, + "end": 6081, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 6070, + "end": 6081, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 6070, + "end": 6081, + "name": "POP", + "source": 1 + }, + { + "begin": 6070, + "end": 6081, + "name": "POP", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "POP", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "name": "POP", + "source": 1 + }, + { + "begin": 5854, + "end": 6088, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 300, + "end": 393, + "name": "tag", + "source": 5, + "value": "51" + }, + { + "begin": 300, + "end": 393, + "name": "JUMPDEST", + "source": 5 + }, + { + "begin": 1094, + "end": 1107, + "name": "PUSH [tag]", + "source": 0, + "value": "114" + }, + { + "begin": 1094, + "end": 1105, + "name": "PUSH [tag]", + "source": 0, + "value": "115" + }, + { + "begin": 1094, + "end": 1107, + "jumpType": "[in]", + "name": "JUMP", + "source": 0 + }, + { + "begin": 1094, + "end": 1107, + "name": "tag", + "source": 0, + "value": "114" + }, + { + "begin": 1094, + "end": 1107, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 369, + "end": 386, + "modifierDepth": 1, + "name": "PUSH [tag]", + "source": 5, + "value": "117" + }, + { + "begin": 375, + "end": 377, + "modifierDepth": 1, + "name": "DUP3", + "source": 5 + }, + { + "begin": 379, + "end": 385, + "modifierDepth": 1, + "name": "DUP3", + "source": 5 + }, + { + "begin": 369, + "end": 374, + "modifierDepth": 1, + "name": "PUSH [tag]", + "source": 5, + "value": "118" + }, + { + "begin": 369, + "end": 386, + "jumpType": "[in]", + "modifierDepth": 1, + "name": "JUMP", + "source": 5 + }, + { + "begin": 369, + "end": 386, + "modifierDepth": 1, + "name": "tag", + "source": 5, + "value": "117" + }, + { + "begin": 369, + "end": 386, + "modifierDepth": 1, + "name": "JUMPDEST", + "source": 5 + }, + { + "begin": 300, + "end": 393, + "name": "POP", + "source": 5 + }, + { + "begin": 300, + "end": 393, + "name": "POP", + "source": 5 + }, + { + "begin": 300, + "end": 393, + "jumpType": "[out]", + "name": "JUMP", + "source": 5 + }, + { + "begin": 3419, + "end": 3544, + "name": "tag", + "source": 1, + "value": "55" + }, + { + "begin": 3419, + "end": 3544, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3493, + "end": 3500, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 3519, + "end": 3528, + "name": "DUP1", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 3529, + "end": 3536, + "name": "DUP4", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 3519, + "end": 3537, + "name": "AND", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 3519, + "end": 3537, + "name": "AND", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "DUP2", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 3519, + "end": 3537, + "name": "ADD", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "DUP2", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 3519, + "end": 3537, + "name": "ADD", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 3519, + "end": 3537, + "name": "KECCAK256", + "source": 1 + }, + { + "begin": 3519, + "end": 3537, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 3512, + "end": 3537, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3512, + "end": 3537, + "name": "POP", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "name": "POP", + "source": 1 + }, + { + "begin": 3419, + "end": 3544, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 1824, + "end": 1925, + "name": "tag", + "source": 0, + "value": "58" + }, + { + "begin": 1824, + "end": 1925, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1094, + "end": 1107, + "name": "PUSH [tag]", + "source": 0, + "value": "121" + }, + { + "begin": 1094, + "end": 1105, + "name": "PUSH [tag]", + "source": 0, + "value": "115" + }, + { + "begin": 1094, + "end": 1107, + "jumpType": "[in]", + "name": "JUMP", + "source": 0 + }, + { + "begin": 1094, + "end": 1107, + "name": "tag", + "source": 0, + "value": "121" + }, + { + "begin": 1094, + "end": 1107, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1888, + "end": 1918, + "modifierDepth": 1, + "name": "PUSH [tag]", + "source": 0, + "value": "123" + }, + { + "begin": 1915, + "end": 1916, + "modifierDepth": 1, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 1888, + "end": 1906, + "modifierDepth": 1, + "name": "PUSH [tag]", + "source": 0, + "value": "124" + }, + { + "begin": 1888, + "end": 1918, + "jumpType": "[in]", + "modifierDepth": 1, + "name": "JUMP", + "source": 0 + }, + { + "begin": 1888, + "end": 1918, + "modifierDepth": 1, + "name": "tag", + "source": 0, + "value": "123" + }, + { + "begin": 1888, + "end": 1918, + "modifierDepth": 1, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1824, + "end": 1925, + "jumpType": "[out]", + "name": "JUMP", + "source": 0 + }, + { + "begin": 1201, + "end": 1286, + "name": "tag", + "source": 0, + "value": "60" + }, + { + "begin": 1201, + "end": 1286, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1247, + "end": 1254, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 1273, + "end": 1279, + "name": "PUSH", + "source": 0, + "value": "5" + }, + { + "begin": 1273, + "end": 1279, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 1273, + "end": 1279, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1273, + "end": 1279, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 1273, + "end": 1279, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1273, + "end": 1279, + "name": "PUSH", + "source": 0, + "value": "100" + }, + { + "begin": 1273, + "end": 1279, + "name": "EXP", + "source": 0 + }, + { + "begin": 1273, + "end": 1279, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1273, + "end": 1279, + "name": "DIV", + "source": 0 + }, + { + "begin": 1273, + "end": 1279, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 1273, + "end": 1279, + "name": "AND", + "source": 0 + }, + { + "begin": 1266, + "end": 1279, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1266, + "end": 1279, + "name": "POP", + "source": 0 + }, + { + "begin": 1201, + "end": 1286, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1201, + "end": 1286, + "jumpType": "[out]", + "name": "JUMP", + "source": 0 + }, + { + "begin": 2369, + "end": 2471, + "name": "tag", + "source": 1, + "value": "64" + }, + { + "begin": 2369, + "end": 2471, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2425, + "end": 2438, + "name": "PUSH", + "source": 1, + "value": "60" + }, + { + "begin": 2457, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH [tag]", + "source": 1, + "value": "127" + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH [tag]", + "source": 1, + "value": "89" + }, + { + "begin": 2450, + "end": 2464, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "tag", + "source": 1, + "value": "127" + }, + { + "begin": 2450, + "end": 2464, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "1F" + }, + { + "begin": 2450, + "end": 2464, + "name": "ADD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DIV", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "MUL", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2450, + "end": 2464, + "name": "ADD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 2450, + "end": 2464, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "ADD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 2450, + "end": 2464, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2450, + "end": 2464, + "name": "ADD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP3", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH [tag]", + "source": 1, + "value": "128" + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH [tag]", + "source": 1, + "value": "89" + }, + { + "begin": 2450, + "end": 2464, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "tag", + "source": 1, + "value": "128" + }, + { + "begin": 2450, + "end": 2464, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH [tag]", + "source": 1, + "value": "129" + }, + { + "begin": 2450, + "end": 2464, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "1F" + }, + { + "begin": 2450, + "end": 2464, + "name": "LT", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH [tag]", + "source": 1, + "value": "130" + }, + { + "begin": 2450, + "end": 2464, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "100" + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP4", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DIV", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "MUL", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP4", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2450, + "end": 2464, + "name": "ADD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH [tag]", + "source": 1, + "value": "129" + }, + { + "begin": 2450, + "end": 2464, + "name": "JUMP", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "tag", + "source": 1, + "value": "130" + }, + { + "begin": 2450, + "end": 2464, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP3", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "ADD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 2450, + "end": 2464, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 2450, + "end": 2464, + "name": "KECCAK256", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "tag", + "source": 1, + "value": "131" + }, + { + "begin": 2450, + "end": 2464, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP2", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 2450, + "end": 2464, + "name": "ADD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 2450, + "end": 2464, + "name": "ADD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP4", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "GT", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH [tag]", + "source": 1, + "value": "131" + }, + { + "begin": 2450, + "end": 2464, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP3", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SUB", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "PUSH", + "source": 1, + "value": "1F" + }, + { + "begin": 2450, + "end": 2464, + "name": "AND", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "DUP3", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "ADD", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "tag", + "source": 1, + "value": "129" + }, + { + "begin": 2450, + "end": 2464, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "POP", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "POP", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "POP", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "POP", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "POP", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2450, + "end": 2464, + "name": "POP", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 2369, + "end": 2471, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "tag", + "source": 1, + "value": "68" + }, + { + "begin": 6575, + "end": 7002, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6668, + "end": 6672, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 6684, + "end": 6697, + "name": "DUP1", + "source": 1 + }, + { + "begin": 6700, + "end": 6712, + "name": "PUSH [tag]", + "source": 1, + "value": "133" + }, + { + "begin": 6700, + "end": 6710, + "name": "PUSH [tag]", + "source": 1, + "value": "96" + }, + { + "begin": 6700, + "end": 6712, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 6700, + "end": 6712, + "name": "tag", + "source": 1, + "value": "133" + }, + { + "begin": 6700, + "end": 6712, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6684, + "end": 6712, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 6684, + "end": 6712, + "name": "POP", + "source": 1 + }, + { + "begin": 6722, + "end": 6746, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 6749, + "end": 6774, + "name": "PUSH [tag]", + "source": 1, + "value": "134" + }, + { + "begin": 6759, + "end": 6764, + "name": "DUP3", + "source": 1 + }, + { + "begin": 6766, + "end": 6773, + "name": "DUP7", + "source": 1 + }, + { + "begin": 6749, + "end": 6758, + "name": "PUSH [tag]", + "source": 1, + "value": "82" + }, + { + "begin": 6749, + "end": 6774, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 6749, + "end": 6774, + "name": "tag", + "source": 1, + "value": "134" + }, + { + "begin": 6749, + "end": 6774, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6722, + "end": 6774, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 6722, + "end": 6774, + "name": "POP", + "source": 1 + }, + { + "begin": 6812, + "end": 6827, + "name": "DUP4", + "source": 1 + }, + { + "begin": 6792, + "end": 6808, + "name": "DUP2", + "source": 1 + }, + { + "begin": 6792, + "end": 6827, + "name": "LT", + "source": 1 + }, + { + "begin": 6792, + "end": 6827, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "PUSH [tag]", + "source": 1, + "value": "135" + }, + { + "begin": 6784, + "end": 6869, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 6784, + "end": 6869, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "PUSH", + "source": 1, + "value": "8C379A000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 6784, + "end": 6869, + "name": "DUP2", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 6784, + "end": 6869, + "name": "ADD", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "PUSH [tag]", + "source": 1, + "value": "136" + }, + { + "begin": 6784, + "end": 6869, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "PUSH [tag]", + "source": 1, + "value": "137" + }, + { + "begin": 6784, + "end": 6869, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "tag", + "source": 1, + "value": "136" + }, + { + "begin": 6784, + "end": 6869, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 6784, + "end": 6869, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "DUP1", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "SUB", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "REVERT", + "source": 1 + }, + { + "begin": 6784, + "end": 6869, + "name": "tag", + "source": 1, + "value": "135" + }, + { + "begin": 6784, + "end": 6869, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6903, + "end": 6963, + "name": "PUSH [tag]", + "source": 1, + "value": "138" + }, + { + "begin": 6912, + "end": 6917, + "name": "DUP3", + "source": 1 + }, + { + "begin": 6919, + "end": 6926, + "name": "DUP7", + "source": 1 + }, + { + "begin": 6947, + "end": 6962, + "name": "DUP7", + "source": 1 + }, + { + "begin": 6928, + "end": 6944, + "name": "DUP5", + "source": 1 + }, + { + "begin": 6928, + "end": 6962, + "name": "SUB", + "source": 1 + }, + { + "begin": 6903, + "end": 6911, + "name": "PUSH [tag]", + "source": 1, + "value": "98" + }, + { + "begin": 6903, + "end": 6963, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 6903, + "end": 6963, + "name": "tag", + "source": 1, + "value": "138" + }, + { + "begin": 6903, + "end": 6963, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 6991, + "end": 6995, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 6984, + "end": 6995, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 6984, + "end": 6995, + "name": "POP", + "source": 1 + }, + { + "begin": 6984, + "end": 6995, + "name": "POP", + "source": 1 + }, + { + "begin": 6984, + "end": 6995, + "name": "POP", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "POP", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "name": "POP", + "source": 1 + }, + { + "begin": 6575, + "end": 7002, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 398, + "end": 436, + "name": "tag", + "source": 5, + "value": "72" + }, + { + "begin": 398, + "end": 436, + "name": "JUMPDEST", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "7" + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "20" + }, + { + "begin": 398, + "end": 436, + "name": "MSTORE", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "0" + }, + { + "begin": 398, + "end": 436, + "name": "MSTORE", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "40" + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "0" + }, + { + "begin": 398, + "end": 436, + "name": "KECCAK256", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "0" + }, + { + "begin": 398, + "end": 436, + "name": "SWAP2", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "POP", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "POP", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "0" + }, + { + "begin": 398, + "end": 436, + "name": "ADD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SLOAD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH [tag]", + "source": 5, + "value": "139" + }, + { + "begin": 398, + "end": 436, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH [tag]", + "source": 5, + "value": "89" + }, + { + "begin": 398, + "end": 436, + "jumpType": "[in]", + "name": "JUMP", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "tag", + "source": 5, + "value": "139" + }, + { + "begin": 398, + "end": 436, + "name": "JUMPDEST", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "1F" + }, + { + "begin": 398, + "end": 436, + "name": "ADD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "20" + }, + { + "begin": 398, + "end": 436, + "name": "DUP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP2", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DIV", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "MUL", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "20" + }, + { + "begin": 398, + "end": 436, + "name": "ADD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "40" + }, + { + "begin": 398, + "end": 436, + "name": "MLOAD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP2", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "ADD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "40" + }, + { + "begin": 398, + "end": 436, + "name": "MSTORE", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP3", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP2", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP2", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP2", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "MSTORE", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "20" + }, + { + "begin": 398, + "end": 436, + "name": "ADD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP3", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SLOAD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH [tag]", + "source": 5, + "value": "140" + }, + { + "begin": 398, + "end": 436, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH [tag]", + "source": 5, + "value": "89" + }, + { + "begin": 398, + "end": 436, + "jumpType": "[in]", + "name": "JUMP", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "tag", + "source": 5, + "value": "140" + }, + { + "begin": 398, + "end": 436, + "name": "JUMPDEST", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "ISZERO", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH [tag]", + "source": 5, + "value": "141" + }, + { + "begin": 398, + "end": 436, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "1F" + }, + { + "begin": 398, + "end": 436, + "name": "LT", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH [tag]", + "source": 5, + "value": "142" + }, + { + "begin": 398, + "end": 436, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "100" + }, + { + "begin": 398, + "end": 436, + "name": "DUP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP4", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SLOAD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DIV", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "MUL", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP4", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "MSTORE", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP2", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "20" + }, + { + "begin": 398, + "end": 436, + "name": "ADD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP2", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH [tag]", + "source": 5, + "value": "141" + }, + { + "begin": 398, + "end": 436, + "name": "JUMP", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "tag", + "source": 5, + "value": "142" + }, + { + "begin": 398, + "end": 436, + "name": "JUMPDEST", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP3", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "ADD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP2", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "0" + }, + { + "begin": 398, + "end": 436, + "name": "MSTORE", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "20" + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "0" + }, + { + "begin": 398, + "end": 436, + "name": "KECCAK256", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "tag", + "source": 5, + "value": "143" + }, + { + "begin": 398, + "end": 436, + "name": "JUMPDEST", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP2", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SLOAD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP2", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "MSTORE", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "1" + }, + { + "begin": 398, + "end": 436, + "name": "ADD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "20" + }, + { + "begin": 398, + "end": 436, + "name": "ADD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP4", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "GT", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH [tag]", + "source": 5, + "value": "143" + }, + { + "begin": 398, + "end": 436, + "name": "JUMPI", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP3", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SUB", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "1F" + }, + { + "begin": 398, + "end": 436, + "name": "AND", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP3", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "ADD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP2", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "tag", + "source": 5, + "value": "141" + }, + { + "begin": 398, + "end": 436, + "name": "JUMPDEST", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "POP", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "POP", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "POP", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "POP", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "POP", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "1" + }, + { + "begin": 398, + "end": 436, + "name": "ADD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "0" + }, + { + "begin": 398, + "end": 436, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SLOAD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "100" + }, + { + "begin": 398, + "end": 436, + "name": "EXP", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DIV", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 398, + "end": 436, + "name": "AND", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "2" + }, + { + "begin": 398, + "end": 436, + "name": "ADD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SLOAD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "PUSH", + "source": 5, + "value": "3" + }, + { + "begin": 398, + "end": 436, + "name": "ADD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SLOAD", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "SWAP1", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "POP", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "name": "DUP5", + "source": 5 + }, + { + "begin": 398, + "end": 436, + "jumpType": "[out]", + "name": "JUMP", + "source": 5 + }, + { + "begin": 3740, + "end": 3929, + "name": "tag", + "source": 1, + "value": "77" + }, + { + "begin": 3740, + "end": 3929, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3819, + "end": 3823, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 3835, + "end": 3848, + "name": "DUP1", + "source": 1 + }, + { + "begin": 3851, + "end": 3863, + "name": "PUSH [tag]", + "source": 1, + "value": "145" + }, + { + "begin": 3851, + "end": 3861, + "name": "PUSH [tag]", + "source": 1, + "value": "96" + }, + { + "begin": 3851, + "end": 3863, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3851, + "end": 3863, + "name": "tag", + "source": 1, + "value": "145" + }, + { + "begin": 3851, + "end": 3863, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3835, + "end": 3863, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 3835, + "end": 3863, + "name": "POP", + "source": 1 + }, + { + "begin": 3873, + "end": 3901, + "name": "PUSH [tag]", + "source": 1, + "value": "146" + }, + { + "begin": 3883, + "end": 3888, + "name": "DUP2", + "source": 1 + }, + { + "begin": 3890, + "end": 3892, + "name": "DUP6", + "source": 1 + }, + { + "begin": 3894, + "end": 3900, + "name": "DUP6", + "source": 1 + }, + { + "begin": 3873, + "end": 3882, + "name": "PUSH [tag]", + "source": 1, + "value": "105" + }, + { + "begin": 3873, + "end": 3901, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3873, + "end": 3901, + "name": "tag", + "source": 1, + "value": "146" + }, + { + "begin": 3873, + "end": 3901, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 3918, + "end": 3922, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 3911, + "end": 3922, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3911, + "end": 3922, + "name": "POP", + "source": 1 + }, + { + "begin": 3911, + "end": 3922, + "name": "POP", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "POP", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "name": "POP", + "source": 1 + }, + { + "begin": 3740, + "end": 3929, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "tag", + "source": 1, + "value": "82" + }, + { + "begin": 3987, + "end": 4136, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 4076, + "end": 4083, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 4102, + "end": 4113, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 4102, + "end": 4120, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 4114, + "end": 4119, + "name": "DUP5", + "source": 1 + }, + { + "begin": 4102, + "end": 4120, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 4102, + "end": 4120, + "name": "AND", + "source": 1 + }, + { + "begin": 4102, + "end": 4120, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 4102, + "end": 4120, + "name": "AND", + "source": 1 + }, + { + "begin": 4102, + "end": 4120, + "name": "DUP2", + "source": 1 + }, + { + "begin": 4102, + "end": 4120, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 4102, + "end": 4120, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 4102, + "end": 4120, + "name": "ADD", + "source": 1 + }, + { + "begin": 4102, + "end": 4120, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 4102, + "end": 4120, + "name": "DUP2", + "source": 1 + }, + { + "begin": 4102, + "end": 4120, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 4102, + "end": 4120, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 4102, + "end": 4120, + "name": "ADD", + "source": 1 + }, + { + "begin": 4102, + "end": 4120, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 4102, + "end": 4120, + "name": "KECCAK256", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 4121, + "end": 4128, + "name": "DUP4", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 4102, + "end": 4129, + "name": "AND", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 4102, + "end": 4129, + "name": "AND", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "DUP2", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 4102, + "end": 4129, + "name": "ADD", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "DUP2", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 4102, + "end": 4129, + "name": "ADD", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 4102, + "end": 4129, + "name": "KECCAK256", + "source": 1 + }, + { + "begin": 4102, + "end": 4129, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 4095, + "end": 4129, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 4095, + "end": 4129, + "name": "POP", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "POP", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "name": "POP", + "source": 1 + }, + { + "begin": 3987, + "end": 4136, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2074, + "end": 2272, + "name": "tag", + "source": 0, + "value": "86" + }, + { + "begin": 2074, + "end": 2272, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1094, + "end": 1107, + "name": "PUSH [tag]", + "source": 0, + "value": "149" + }, + { + "begin": 1094, + "end": 1105, + "name": "PUSH [tag]", + "source": 0, + "value": "115" + }, + { + "begin": 1094, + "end": 1107, + "jumpType": "[in]", + "name": "JUMP", + "source": 0 + }, + { + "begin": 1094, + "end": 1107, + "name": "tag", + "source": 0, + "value": "149" + }, + { + "begin": 1094, + "end": 1107, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 2182, + "end": 2183, + "modifierDepth": 1, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 2162, + "end": 2184, + "modifierDepth": 1, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 2162, + "end": 2184, + "modifierDepth": 1, + "name": "AND", + "source": 0 + }, + { + "begin": 2162, + "end": 2170, + "modifierDepth": 1, + "name": "DUP2", + "source": 0 + }, + { + "begin": 2162, + "end": 2184, + "modifierDepth": 1, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 2162, + "end": 2184, + "modifierDepth": 1, + "name": "AND", + "source": 0 + }, + { + "begin": 2162, + "end": 2184, + "name": "SUB", + "source": 0 + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "PUSH [tag]", + "source": 0, + "value": "151" + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "PUSH", + "source": 0, + "value": "8C379A000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "DUP2", + "source": 0 + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "PUSH", + "source": 0, + "value": "4" + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "ADD", + "source": 0 + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "PUSH [tag]", + "source": 0, + "value": "152" + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "PUSH [tag]", + "source": 0, + "value": "153" + }, + { + "begin": 2154, + "end": 2227, + "jumpType": "[in]", + "modifierDepth": 1, + "name": "JUMP", + "source": 0 + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "tag", + "source": 0, + "value": "152" + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "DUP1", + "source": 0 + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "SUB", + "source": 0 + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "REVERT", + "source": 0 + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "tag", + "source": 0, + "value": "151" + }, + { + "begin": 2154, + "end": 2227, + "modifierDepth": 1, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 2237, + "end": 2265, + "modifierDepth": 1, + "name": "PUSH [tag]", + "source": 0, + "value": "154" + }, + { + "begin": 2256, + "end": 2264, + "modifierDepth": 1, + "name": "DUP2", + "source": 0 + }, + { + "begin": 2237, + "end": 2255, + "modifierDepth": 1, + "name": "PUSH [tag]", + "source": 0, + "value": "124" + }, + { + "begin": 2237, + "end": 2265, + "jumpType": "[in]", + "modifierDepth": 1, + "name": "JUMP", + "source": 0 + }, + { + "begin": 2237, + "end": 2265, + "modifierDepth": 1, + "name": "tag", + "source": 0, + "value": "154" + }, + { + "begin": 2237, + "end": 2265, + "modifierDepth": 1, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 2074, + "end": 2272, + "name": "POP", + "source": 0 + }, + { + "begin": 2074, + "end": 2272, + "jumpType": "[out]", + "name": "JUMP", + "source": 0 + }, + { + "begin": 640, + "end": 736, + "name": "tag", + "source": 4, + "value": "96" + }, + { + "begin": 640, + "end": 736, + "name": "JUMPDEST", + "source": 4 + }, + { + "begin": 693, + "end": 700, + "name": "PUSH", + "source": 4, + "value": "0" + }, + { + "begin": 719, + "end": 729, + "name": "CALLER", + "source": 4 + }, + { + "begin": 712, + "end": 729, + "name": "SWAP1", + "source": 4 + }, + { + "begin": 712, + "end": 729, + "name": "POP", + "source": 4 + }, + { + "begin": 640, + "end": 736, + "name": "SWAP1", + "source": 4 + }, + { + "begin": 640, + "end": 736, + "jumpType": "[out]", + "name": "JUMP", + "source": 4 + }, + { + "begin": 10457, + "end": 10797, + "name": "tag", + "source": 1, + "value": "98" + }, + { + "begin": 10457, + "end": 10797, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 10575, + "end": 10576, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 10558, + "end": 10577, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 10558, + "end": 10577, + "name": "AND", + "source": 1 + }, + { + "begin": 10558, + "end": 10563, + "name": "DUP4", + "source": 1 + }, + { + "begin": 10558, + "end": 10577, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 10558, + "end": 10577, + "name": "AND", + "source": 1 + }, + { + "begin": 10558, + "end": 10577, + "name": "SUB", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "PUSH [tag]", + "source": 1, + "value": "157" + }, + { + "begin": 10550, + "end": 10618, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 10550, + "end": 10618, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "PUSH", + "source": 1, + "value": "8C379A000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 10550, + "end": 10618, + "name": "DUP2", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 10550, + "end": 10618, + "name": "ADD", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "PUSH [tag]", + "source": 1, + "value": "158" + }, + { + "begin": 10550, + "end": 10618, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "PUSH [tag]", + "source": 1, + "value": "159" + }, + { + "begin": 10550, + "end": 10618, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "tag", + "source": 1, + "value": "158" + }, + { + "begin": 10550, + "end": 10618, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 10550, + "end": 10618, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "DUP1", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "SUB", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "REVERT", + "source": 1 + }, + { + "begin": 10550, + "end": 10618, + "name": "tag", + "source": 1, + "value": "157" + }, + { + "begin": 10550, + "end": 10618, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 10655, + "end": 10656, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 10636, + "end": 10657, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 10636, + "end": 10657, + "name": "AND", + "source": 1 + }, + { + "begin": 10636, + "end": 10643, + "name": "DUP3", + "source": 1 + }, + { + "begin": 10636, + "end": 10657, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 10636, + "end": 10657, + "name": "AND", + "source": 1 + }, + { + "begin": 10636, + "end": 10657, + "name": "SUB", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "PUSH [tag]", + "source": 1, + "value": "160" + }, + { + "begin": 10628, + "end": 10696, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 10628, + "end": 10696, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "PUSH", + "source": 1, + "value": "8C379A000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 10628, + "end": 10696, + "name": "DUP2", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 10628, + "end": 10696, + "name": "ADD", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "PUSH [tag]", + "source": 1, + "value": "161" + }, + { + "begin": 10628, + "end": 10696, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "PUSH [tag]", + "source": 1, + "value": "162" + }, + { + "begin": 10628, + "end": 10696, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "tag", + "source": 1, + "value": "161" + }, + { + "begin": 10628, + "end": 10696, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 10628, + "end": 10696, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "DUP1", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "SUB", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "REVERT", + "source": 1 + }, + { + "begin": 10628, + "end": 10696, + "name": "tag", + "source": 1, + "value": "160" + }, + { + "begin": 10628, + "end": 10696, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 10737, + "end": 10743, + "name": "DUP1", + "source": 1 + }, + { + "begin": 10707, + "end": 10718, + "name": "PUSH", + "source": 1, + "value": "1" + }, + { + "begin": 10707, + "end": 10725, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 10719, + "end": 10724, + "name": "DUP6", + "source": 1 + }, + { + "begin": 10707, + "end": 10725, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 10707, + "end": 10725, + "name": "AND", + "source": 1 + }, + { + "begin": 10707, + "end": 10725, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 10707, + "end": 10725, + "name": "AND", + "source": 1 + }, + { + "begin": 10707, + "end": 10725, + "name": "DUP2", + "source": 1 + }, + { + "begin": 10707, + "end": 10725, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 10707, + "end": 10725, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 10707, + "end": 10725, + "name": "ADD", + "source": 1 + }, + { + "begin": 10707, + "end": 10725, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10707, + "end": 10725, + "name": "DUP2", + "source": 1 + }, + { + "begin": 10707, + "end": 10725, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 10707, + "end": 10725, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 10707, + "end": 10725, + "name": "ADD", + "source": 1 + }, + { + "begin": 10707, + "end": 10725, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 10707, + "end": 10725, + "name": "KECCAK256", + "source": 1 + }, + { + "begin": 10707, + "end": 10734, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 10726, + "end": 10733, + "name": "DUP5", + "source": 1 + }, + { + "begin": 10707, + "end": 10734, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 10707, + "end": 10734, + "name": "AND", + "source": 1 + }, + { + "begin": 10707, + "end": 10734, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 10707, + "end": 10734, + "name": "AND", + "source": 1 + }, + { + "begin": 10707, + "end": 10734, + "name": "DUP2", + "source": 1 + }, + { + "begin": 10707, + "end": 10734, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 10707, + "end": 10734, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 10707, + "end": 10734, + "name": "ADD", + "source": 1 + }, + { + "begin": 10707, + "end": 10734, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10707, + "end": 10734, + "name": "DUP2", + "source": 1 + }, + { + "begin": 10707, + "end": 10734, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 10707, + "end": 10734, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 10707, + "end": 10734, + "name": "ADD", + "source": 1 + }, + { + "begin": 10707, + "end": 10734, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 10707, + "end": 10734, + "name": "KECCAK256", + "source": 1 + }, + { + "begin": 10707, + "end": 10743, + "name": "DUP2", + "source": 1 + }, + { + "begin": 10707, + "end": 10743, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10707, + "end": 10743, + "name": "SSTORE", + "source": 1 + }, + { + "begin": 10707, + "end": 10743, + "name": "POP", + "source": 1 + }, + { + "begin": 10774, + "end": 10781, + "name": "DUP2", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 10758, + "end": 10790, + "name": "AND", + "source": 1 + }, + { + "begin": 10767, + "end": 10772, + "name": "DUP4", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 10758, + "end": 10790, + "name": "AND", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "PUSH", + "source": 1, + "value": "8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925" + }, + { + "begin": 10783, + "end": 10789, + "name": "DUP4", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 10758, + "end": 10790, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "PUSH [tag]", + "source": 1, + "value": "163" + }, + { + "begin": 10758, + "end": 10790, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "PUSH [tag]", + "source": 1, + "value": "35" + }, + { + "begin": 10758, + "end": 10790, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "tag", + "source": 1, + "value": "163" + }, + { + "begin": 10758, + "end": 10790, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 10758, + "end": 10790, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "DUP1", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "SUB", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 10758, + "end": 10790, + "name": "LOG3", + "source": 1 + }, + { + "begin": 10457, + "end": 10797, + "name": "POP", + "source": 1 + }, + { + "begin": 10457, + "end": 10797, + "name": "POP", + "source": 1 + }, + { + "begin": 10457, + "end": 10797, + "name": "POP", + "source": 1 + }, + { + "begin": 10457, + "end": 10797, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 11078, + "end": 11489, + "name": "tag", + "source": 1, + "value": "103" + }, + { + "begin": 11078, + "end": 11489, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 11178, + "end": 11202, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 11205, + "end": 11230, + "name": "PUSH [tag]", + "source": 1, + "value": "165" + }, + { + "begin": 11215, + "end": 11220, + "name": "DUP5", + "source": 1 + }, + { + "begin": 11222, + "end": 11229, + "name": "DUP5", + "source": 1 + }, + { + "begin": 11205, + "end": 11214, + "name": "PUSH [tag]", + "source": 1, + "value": "82" + }, + { + "begin": 11205, + "end": 11230, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 11205, + "end": 11230, + "name": "tag", + "source": 1, + "value": "165" + }, + { + "begin": 11205, + "end": 11230, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 11178, + "end": 11230, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 11178, + "end": 11230, + "name": "POP", + "source": 1 + }, + { + "begin": 11264, + "end": 11281, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 11244, + "end": 11260, + "name": "DUP2", + "source": 1 + }, + { + "begin": 11244, + "end": 11281, + "name": "EQ", + "source": 1 + }, + { + "begin": 11240, + "end": 11483, + "name": "PUSH [tag]", + "source": 1, + "value": "166" + }, + { + "begin": 11240, + "end": 11483, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 11325, + "end": 11331, + "name": "DUP2", + "source": 1 + }, + { + "begin": 11305, + "end": 11321, + "name": "DUP2", + "source": 1 + }, + { + "begin": 11305, + "end": 11331, + "name": "LT", + "source": 1 + }, + { + "begin": 11305, + "end": 11331, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "PUSH [tag]", + "source": 1, + "value": "167" + }, + { + "begin": 11297, + "end": 11365, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 11297, + "end": 11365, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "PUSH", + "source": 1, + "value": "8C379A000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 11297, + "end": 11365, + "name": "DUP2", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 11297, + "end": 11365, + "name": "ADD", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "PUSH [tag]", + "source": 1, + "value": "168" + }, + { + "begin": 11297, + "end": 11365, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "PUSH [tag]", + "source": 1, + "value": "169" + }, + { + "begin": 11297, + "end": 11365, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "tag", + "source": 1, + "value": "168" + }, + { + "begin": 11297, + "end": 11365, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 11297, + "end": 11365, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "DUP1", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "SUB", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "REVERT", + "source": 1 + }, + { + "begin": 11297, + "end": 11365, + "name": "tag", + "source": 1, + "value": "167" + }, + { + "begin": 11297, + "end": 11365, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 11407, + "end": 11458, + "name": "PUSH [tag]", + "source": 1, + "value": "170" + }, + { + "begin": 11416, + "end": 11421, + "name": "DUP5", + "source": 1 + }, + { + "begin": 11423, + "end": 11430, + "name": "DUP5", + "source": 1 + }, + { + "begin": 11451, + "end": 11457, + "name": "DUP5", + "source": 1 + }, + { + "begin": 11432, + "end": 11448, + "name": "DUP5", + "source": 1 + }, + { + "begin": 11432, + "end": 11457, + "name": "SUB", + "source": 1 + }, + { + "begin": 11407, + "end": 11415, + "name": "PUSH [tag]", + "source": 1, + "value": "98" + }, + { + "begin": 11407, + "end": 11458, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 11407, + "end": 11458, + "name": "tag", + "source": 1, + "value": "170" + }, + { + "begin": 11407, + "end": 11458, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 11240, + "end": 11483, + "name": "tag", + "source": 1, + "value": "166" + }, + { + "begin": 11240, + "end": 11483, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 11168, + "end": 11489, + "name": "POP", + "source": 1 + }, + { + "begin": 11078, + "end": 11489, + "name": "POP", + "source": 1 + }, + { + "begin": 11078, + "end": 11489, + "name": "POP", + "source": 1 + }, + { + "begin": 11078, + "end": 11489, + "name": "POP", + "source": 1 + }, + { + "begin": 11078, + "end": 11489, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 7456, + "end": 8244, + "name": "tag", + "source": 1, + "value": "105" + }, + { + "begin": 7456, + "end": 8244, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7568, + "end": 7569, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 7552, + "end": 7570, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 7552, + "end": 7570, + "name": "AND", + "source": 1 + }, + { + "begin": 7552, + "end": 7556, + "name": "DUP4", + "source": 1 + }, + { + "begin": 7552, + "end": 7570, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 7552, + "end": 7570, + "name": "AND", + "source": 1 + }, + { + "begin": 7552, + "end": 7570, + "name": "SUB", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "PUSH [tag]", + "source": 1, + "value": "172" + }, + { + "begin": 7544, + "end": 7612, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 7544, + "end": 7612, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "PUSH", + "source": 1, + "value": "8C379A000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 7544, + "end": 7612, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 7544, + "end": 7612, + "name": "ADD", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "PUSH [tag]", + "source": 1, + "value": "173" + }, + { + "begin": 7544, + "end": 7612, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "PUSH [tag]", + "source": 1, + "value": "174" + }, + { + "begin": 7544, + "end": 7612, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "tag", + "source": 1, + "value": "173" + }, + { + "begin": 7544, + "end": 7612, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 7544, + "end": 7612, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "DUP1", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "SUB", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "REVERT", + "source": 1 + }, + { + "begin": 7544, + "end": 7612, + "name": "tag", + "source": 1, + "value": "172" + }, + { + "begin": 7544, + "end": 7612, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7644, + "end": 7645, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 7630, + "end": 7646, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 7630, + "end": 7646, + "name": "AND", + "source": 1 + }, + { + "begin": 7630, + "end": 7632, + "name": "DUP3", + "source": 1 + }, + { + "begin": 7630, + "end": 7646, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 7630, + "end": 7646, + "name": "AND", + "source": 1 + }, + { + "begin": 7630, + "end": 7646, + "name": "SUB", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "PUSH [tag]", + "source": 1, + "value": "175" + }, + { + "begin": 7622, + "end": 7686, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 7622, + "end": 7686, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "PUSH", + "source": 1, + "value": "8C379A000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 7622, + "end": 7686, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 7622, + "end": 7686, + "name": "ADD", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "PUSH [tag]", + "source": 1, + "value": "176" + }, + { + "begin": 7622, + "end": 7686, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "PUSH [tag]", + "source": 1, + "value": "177" + }, + { + "begin": 7622, + "end": 7686, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "tag", + "source": 1, + "value": "176" + }, + { + "begin": 7622, + "end": 7686, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 7622, + "end": 7686, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "DUP1", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "SUB", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "REVERT", + "source": 1 + }, + { + "begin": 7622, + "end": 7686, + "name": "tag", + "source": 1, + "value": "175" + }, + { + "begin": 7622, + "end": 7686, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7697, + "end": 7735, + "name": "PUSH [tag]", + "source": 1, + "value": "178" + }, + { + "begin": 7718, + "end": 7722, + "name": "DUP4", + "source": 1 + }, + { + "begin": 7724, + "end": 7726, + "name": "DUP4", + "source": 1 + }, + { + "begin": 7728, + "end": 7734, + "name": "DUP4", + "source": 1 + }, + { + "begin": 7697, + "end": 7717, + "name": "PUSH [tag]", + "source": 1, + "value": "179" + }, + { + "begin": 7697, + "end": 7735, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 7697, + "end": 7735, + "name": "tag", + "source": 1, + "value": "178" + }, + { + "begin": 7697, + "end": 7735, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7746, + "end": 7765, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 7768, + "end": 7777, + "name": "DUP1", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 7778, + "end": 7782, + "name": "DUP6", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 7768, + "end": 7783, + "name": "AND", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 7768, + "end": 7783, + "name": "AND", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 7768, + "end": 7783, + "name": "ADD", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 7768, + "end": 7783, + "name": "ADD", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 7768, + "end": 7783, + "name": "KECCAK256", + "source": 1 + }, + { + "begin": 7768, + "end": 7783, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 7746, + "end": 7783, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7746, + "end": 7783, + "name": "POP", + "source": 1 + }, + { + "begin": 7816, + "end": 7822, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7801, + "end": 7812, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7801, + "end": 7822, + "name": "LT", + "source": 1 + }, + { + "begin": 7801, + "end": 7822, + "name": "ISZERO", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "PUSH [tag]", + "source": 1, + "value": "180" + }, + { + "begin": 7793, + "end": 7865, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 7793, + "end": 7865, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "PUSH", + "source": 1, + "value": "8C379A000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 7793, + "end": 7865, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 7793, + "end": 7865, + "name": "ADD", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "PUSH [tag]", + "source": 1, + "value": "181" + }, + { + "begin": 7793, + "end": 7865, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "PUSH [tag]", + "source": 1, + "value": "182" + }, + { + "begin": 7793, + "end": 7865, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "tag", + "source": 1, + "value": "181" + }, + { + "begin": 7793, + "end": 7865, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 7793, + "end": 7865, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "DUP1", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "SUB", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "REVERT", + "source": 1 + }, + { + "begin": 7793, + "end": 7865, + "name": "tag", + "source": 1, + "value": "180" + }, + { + "begin": 7793, + "end": 7865, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7931, + "end": 7937, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7917, + "end": 7928, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7917, + "end": 7937, + "name": "SUB", + "source": 1 + }, + { + "begin": 7899, + "end": 7908, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 7899, + "end": 7914, + "name": "DUP1", + "source": 1 + }, + { + "begin": 7909, + "end": 7913, + "name": "DUP7", + "source": 1 + }, + { + "begin": 7899, + "end": 7914, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 7899, + "end": 7914, + "name": "AND", + "source": 1 + }, + { + "begin": 7899, + "end": 7914, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 7899, + "end": 7914, + "name": "AND", + "source": 1 + }, + { + "begin": 7899, + "end": 7914, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7899, + "end": 7914, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 7899, + "end": 7914, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 7899, + "end": 7914, + "name": "ADD", + "source": 1 + }, + { + "begin": 7899, + "end": 7914, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7899, + "end": 7914, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7899, + "end": 7914, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 7899, + "end": 7914, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 7899, + "end": 7914, + "name": "ADD", + "source": 1 + }, + { + "begin": 7899, + "end": 7914, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 7899, + "end": 7914, + "name": "KECCAK256", + "source": 1 + }, + { + "begin": 7899, + "end": 7937, + "name": "DUP2", + "source": 1 + }, + { + "begin": 7899, + "end": 7937, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 7899, + "end": 7937, + "name": "SSTORE", + "source": 1 + }, + { + "begin": 7899, + "end": 7937, + "name": "POP", + "source": 1 + }, + { + "begin": 8131, + "end": 8137, + "name": "DUP2", + "source": 1 + }, + { + "begin": 8114, + "end": 8123, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 8114, + "end": 8127, + "name": "DUP1", + "source": 1 + }, + { + "begin": 8124, + "end": 8126, + "name": "DUP6", + "source": 1 + }, + { + "begin": 8114, + "end": 8127, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 8114, + "end": 8127, + "name": "AND", + "source": 1 + }, + { + "begin": 8114, + "end": 8127, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 8114, + "end": 8127, + "name": "AND", + "source": 1 + }, + { + "begin": 8114, + "end": 8127, + "name": "DUP2", + "source": 1 + }, + { + "begin": 8114, + "end": 8127, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 8114, + "end": 8127, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 8114, + "end": 8127, + "name": "ADD", + "source": 1 + }, + { + "begin": 8114, + "end": 8127, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 8114, + "end": 8127, + "name": "DUP2", + "source": 1 + }, + { + "begin": 8114, + "end": 8127, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 8114, + "end": 8127, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 8114, + "end": 8127, + "name": "ADD", + "source": 1 + }, + { + "begin": 8114, + "end": 8127, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 8114, + "end": 8127, + "name": "KECCAK256", + "source": 1 + }, + { + "begin": 8114, + "end": 8127, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 8114, + "end": 8137, + "name": "DUP3", + "source": 1 + }, + { + "begin": 8114, + "end": 8137, + "name": "DUP3", + "source": 1 + }, + { + "begin": 8114, + "end": 8137, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 8114, + "end": 8137, + "name": "ADD", + "source": 1 + }, + { + "begin": 8114, + "end": 8137, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 8114, + "end": 8137, + "name": "POP", + "source": 1 + }, + { + "begin": 8114, + "end": 8137, + "name": "POP", + "source": 1 + }, + { + "begin": 8114, + "end": 8137, + "name": "DUP2", + "source": 1 + }, + { + "begin": 8114, + "end": 8137, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 8114, + "end": 8137, + "name": "SSTORE", + "source": 1 + }, + { + "begin": 8114, + "end": 8137, + "name": "POP", + "source": 1 + }, + { + "begin": 8178, + "end": 8180, + "name": "DUP3", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 8163, + "end": 8189, + "name": "AND", + "source": 1 + }, + { + "begin": 8172, + "end": 8176, + "name": "DUP5", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 8163, + "end": 8189, + "name": "AND", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "PUSH", + "source": 1, + "value": "DDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF" + }, + { + "begin": 8182, + "end": 8188, + "name": "DUP5", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 8163, + "end": 8189, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "PUSH [tag]", + "source": 1, + "value": "183" + }, + { + "begin": 8163, + "end": 8189, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "PUSH [tag]", + "source": 1, + "value": "35" + }, + { + "begin": 8163, + "end": 8189, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "tag", + "source": 1, + "value": "183" + }, + { + "begin": 8163, + "end": 8189, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 8163, + "end": 8189, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "DUP1", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "SUB", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 8163, + "end": 8189, + "name": "LOG3", + "source": 1 + }, + { + "begin": 8200, + "end": 8237, + "name": "PUSH [tag]", + "source": 1, + "value": "184" + }, + { + "begin": 8220, + "end": 8224, + "name": "DUP5", + "source": 1 + }, + { + "begin": 8226, + "end": 8228, + "name": "DUP5", + "source": 1 + }, + { + "begin": 8230, + "end": 8236, + "name": "DUP5", + "source": 1 + }, + { + "begin": 8200, + "end": 8219, + "name": "PUSH [tag]", + "source": 1, + "value": "185" + }, + { + "begin": 8200, + "end": 8237, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 8200, + "end": 8237, + "name": "tag", + "source": 1, + "value": "184" + }, + { + "begin": 8200, + "end": 8237, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 7534, + "end": 8244, + "name": "POP", + "source": 1 + }, + { + "begin": 7456, + "end": 8244, + "name": "POP", + "source": 1 + }, + { + "begin": 7456, + "end": 8244, + "name": "POP", + "source": 1 + }, + { + "begin": 7456, + "end": 8244, + "name": "POP", + "source": 1 + }, + { + "begin": 7456, + "end": 8244, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 1359, + "end": 1489, + "name": "tag", + "source": 0, + "value": "115" + }, + { + "begin": 1359, + "end": 1489, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1433, + "end": 1445, + "name": "PUSH [tag]", + "source": 0, + "value": "187" + }, + { + "begin": 1433, + "end": 1443, + "name": "PUSH [tag]", + "source": 0, + "value": "96" + }, + { + "begin": 1433, + "end": 1445, + "jumpType": "[in]", + "name": "JUMP", + "source": 0 + }, + { + "begin": 1433, + "end": 1445, + "name": "tag", + "source": 0, + "value": "187" + }, + { + "begin": 1433, + "end": 1445, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1422, + "end": 1445, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 1422, + "end": 1445, + "name": "AND", + "source": 0 + }, + { + "begin": 1422, + "end": 1429, + "name": "PUSH [tag]", + "source": 0, + "value": "188" + }, + { + "begin": 1422, + "end": 1427, + "name": "PUSH [tag]", + "source": 0, + "value": "60" + }, + { + "begin": 1422, + "end": 1429, + "jumpType": "[in]", + "name": "JUMP", + "source": 0 + }, + { + "begin": 1422, + "end": 1429, + "name": "tag", + "source": 0, + "value": "188" + }, + { + "begin": 1422, + "end": 1429, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1422, + "end": 1445, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 1422, + "end": 1445, + "name": "AND", + "source": 0 + }, + { + "begin": 1422, + "end": 1445, + "name": "EQ", + "source": 0 + }, + { + "begin": 1414, + "end": 1482, + "name": "PUSH [tag]", + "source": 0, + "value": "189" + }, + { + "begin": 1414, + "end": 1482, + "name": "JUMPI", + "source": 0 + }, + { + "begin": 1414, + "end": 1482, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 1414, + "end": 1482, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 1414, + "end": 1482, + "name": "PUSH", + "source": 0, + "value": "8C379A000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 1414, + "end": 1482, + "name": "DUP2", + "source": 0 + }, + { + "begin": 1414, + "end": 1482, + "name": "MSTORE", + "source": 0 + }, + { + "begin": 1414, + "end": 1482, + "name": "PUSH", + "source": 0, + "value": "4" + }, + { + "begin": 1414, + "end": 1482, + "name": "ADD", + "source": 0 + }, + { + "begin": 1414, + "end": 1482, + "name": "PUSH [tag]", + "source": 0, + "value": "190" + }, + { + "begin": 1414, + "end": 1482, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1414, + "end": 1482, + "name": "PUSH [tag]", + "source": 0, + "value": "191" + }, + { + "begin": 1414, + "end": 1482, + "jumpType": "[in]", + "name": "JUMP", + "source": 0 + }, + { + "begin": 1414, + "end": 1482, + "name": "tag", + "source": 0, + "value": "190" + }, + { + "begin": 1414, + "end": 1482, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1414, + "end": 1482, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 1414, + "end": 1482, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 1414, + "end": 1482, + "name": "DUP1", + "source": 0 + }, + { + "begin": 1414, + "end": 1482, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 1414, + "end": 1482, + "name": "SUB", + "source": 0 + }, + { + "begin": 1414, + "end": 1482, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 1414, + "end": 1482, + "name": "REVERT", + "source": 0 + }, + { + "begin": 1414, + "end": 1482, + "name": "tag", + "source": 0, + "value": "189" + }, + { + "begin": 1414, + "end": 1482, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 1359, + "end": 1489, + "jumpType": "[out]", + "name": "JUMP", + "source": 0 + }, + { + "begin": 8520, + "end": 9055, + "name": "tag", + "source": 1, + "value": "118" + }, + { + "begin": 8520, + "end": 9055, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 8622, + "end": 8623, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 8603, + "end": 8624, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 8603, + "end": 8624, + "name": "AND", + "source": 1 + }, + { + "begin": 8603, + "end": 8610, + "name": "DUP3", + "source": 1 + }, + { + "begin": 8603, + "end": 8624, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 8603, + "end": 8624, + "name": "AND", + "source": 1 + }, + { + "begin": 8603, + "end": 8624, + "name": "SUB", + "source": 1 + }, + { + "begin": 8595, + "end": 8660, + "name": "PUSH [tag]", + "source": 1, + "value": "193" + }, + { + "begin": 8595, + "end": 8660, + "name": "JUMPI", + "source": 1 + }, + { + "begin": 8595, + "end": 8660, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 8595, + "end": 8660, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 8595, + "end": 8660, + "name": "PUSH", + "source": 1, + "value": "8C379A000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 8595, + "end": 8660, + "name": "DUP2", + "source": 1 + }, + { + "begin": 8595, + "end": 8660, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 8595, + "end": 8660, + "name": "PUSH", + "source": 1, + "value": "4" + }, + { + "begin": 8595, + "end": 8660, + "name": "ADD", + "source": 1 + }, + { + "begin": 8595, + "end": 8660, + "name": "PUSH [tag]", + "source": 1, + "value": "194" + }, + { + "begin": 8595, + "end": 8660, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 8595, + "end": 8660, + "name": "PUSH [tag]", + "source": 1, + "value": "195" + }, + { + "begin": 8595, + "end": 8660, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 8595, + "end": 8660, + "name": "tag", + "source": 1, + "value": "194" + }, + { + "begin": 8595, + "end": 8660, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 8595, + "end": 8660, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 8595, + "end": 8660, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 8595, + "end": 8660, + "name": "DUP1", + "source": 1 + }, + { + "begin": 8595, + "end": 8660, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 8595, + "end": 8660, + "name": "SUB", + "source": 1 + }, + { + "begin": 8595, + "end": 8660, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 8595, + "end": 8660, + "name": "REVERT", + "source": 1 + }, + { + "begin": 8595, + "end": 8660, + "name": "tag", + "source": 1, + "value": "193" + }, + { + "begin": 8595, + "end": 8660, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 8671, + "end": 8720, + "name": "PUSH [tag]", + "source": 1, + "value": "196" + }, + { + "begin": 8700, + "end": 8701, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 8704, + "end": 8711, + "name": "DUP4", + "source": 1 + }, + { + "begin": 8713, + "end": 8719, + "name": "DUP4", + "source": 1 + }, + { + "begin": 8671, + "end": 8691, + "name": "PUSH [tag]", + "source": 1, + "value": "179" + }, + { + "begin": 8671, + "end": 8720, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 8671, + "end": 8720, + "name": "tag", + "source": 1, + "value": "196" + }, + { + "begin": 8671, + "end": 8720, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 8747, + "end": 8753, + "name": "DUP1", + "source": 1 + }, + { + "begin": 8731, + "end": 8743, + "name": "PUSH", + "source": 1, + "value": "2" + }, + { + "begin": 8731, + "end": 8743, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 8731, + "end": 8753, + "name": "DUP3", + "source": 1 + }, + { + "begin": 8731, + "end": 8753, + "name": "DUP3", + "source": 1 + }, + { + "begin": 8731, + "end": 8753, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 8731, + "end": 8753, + "name": "PUSH [tag]", + "source": 1, + "value": "197" + }, + { + "begin": 8731, + "end": 8753, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 8731, + "end": 8753, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 8731, + "end": 8753, + "name": "PUSH [tag]", + "source": 1, + "value": "112" + }, + { + "begin": 8731, + "end": 8753, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 8731, + "end": 8753, + "name": "tag", + "source": 1, + "value": "197" + }, + { + "begin": 8731, + "end": 8753, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 8731, + "end": 8753, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 8731, + "end": 8753, + "name": "POP", + "source": 1 + }, + { + "begin": 8731, + "end": 8753, + "name": "POP", + "source": 1 + }, + { + "begin": 8731, + "end": 8753, + "name": "DUP2", + "source": 1 + }, + { + "begin": 8731, + "end": 8753, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 8731, + "end": 8753, + "name": "SSTORE", + "source": 1 + }, + { + "begin": 8731, + "end": 8753, + "name": "POP", + "source": 1 + }, + { + "begin": 8921, + "end": 8927, + "name": "DUP1", + "source": 1 + }, + { + "begin": 8899, + "end": 8908, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 8899, + "end": 8917, + "name": "DUP1", + "source": 1 + }, + { + "begin": 8909, + "end": 8916, + "name": "DUP5", + "source": 1 + }, + { + "begin": 8899, + "end": 8917, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 8899, + "end": 8917, + "name": "AND", + "source": 1 + }, + { + "begin": 8899, + "end": 8917, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 8899, + "end": 8917, + "name": "AND", + "source": 1 + }, + { + "begin": 8899, + "end": 8917, + "name": "DUP2", + "source": 1 + }, + { + "begin": 8899, + "end": 8917, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 8899, + "end": 8917, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 8899, + "end": 8917, + "name": "ADD", + "source": 1 + }, + { + "begin": 8899, + "end": 8917, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 8899, + "end": 8917, + "name": "DUP2", + "source": 1 + }, + { + "begin": 8899, + "end": 8917, + "name": "MSTORE", + "source": 1 + }, + { + "begin": 8899, + "end": 8917, + "name": "PUSH", + "source": 1, + "value": "20" + }, + { + "begin": 8899, + "end": 8917, + "name": "ADD", + "source": 1 + }, + { + "begin": 8899, + "end": 8917, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 8899, + "end": 8917, + "name": "KECCAK256", + "source": 1 + }, + { + "begin": 8899, + "end": 8917, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 8899, + "end": 8927, + "name": "DUP3", + "source": 1 + }, + { + "begin": 8899, + "end": 8927, + "name": "DUP3", + "source": 1 + }, + { + "begin": 8899, + "end": 8927, + "name": "SLOAD", + "source": 1 + }, + { + "begin": 8899, + "end": 8927, + "name": "ADD", + "source": 1 + }, + { + "begin": 8899, + "end": 8927, + "name": "SWAP3", + "source": 1 + }, + { + "begin": 8899, + "end": 8927, + "name": "POP", + "source": 1 + }, + { + "begin": 8899, + "end": 8927, + "name": "POP", + "source": 1 + }, + { + "begin": 8899, + "end": 8927, + "name": "DUP2", + "source": 1 + }, + { + "begin": 8899, + "end": 8927, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 8899, + "end": 8927, + "name": "SSTORE", + "source": 1 + }, + { + "begin": 8899, + "end": 8927, + "name": "POP", + "source": 1 + }, + { + "begin": 8973, + "end": 8980, + "name": "DUP2", + "source": 1 + }, + { + "begin": 8952, + "end": 8989, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 8952, + "end": 8989, + "name": "AND", + "source": 1 + }, + { + "begin": 8969, + "end": 8970, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 8952, + "end": 8989, + "name": "PUSH", + "source": 1, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 8952, + "end": 8989, + "name": "AND", + "source": 1 + }, + { + "begin": 8952, + "end": 8989, + "name": "PUSH", + "source": 1, + "value": "DDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF" + }, + { + "begin": 8982, + "end": 8988, + "name": "DUP4", + "source": 1 + }, + { + "begin": 8952, + "end": 8989, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 8952, + "end": 8989, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 8952, + "end": 8989, + "name": "PUSH [tag]", + "source": 1, + "value": "198" + }, + { + "begin": 8952, + "end": 8989, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 8952, + "end": 8989, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 8952, + "end": 8989, + "name": "PUSH [tag]", + "source": 1, + "value": "35" + }, + { + "begin": 8952, + "end": 8989, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 8952, + "end": 8989, + "name": "tag", + "source": 1, + "value": "198" + }, + { + "begin": 8952, + "end": 8989, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 8952, + "end": 8989, + "name": "PUSH", + "source": 1, + "value": "40" + }, + { + "begin": 8952, + "end": 8989, + "name": "MLOAD", + "source": 1 + }, + { + "begin": 8952, + "end": 8989, + "name": "DUP1", + "source": 1 + }, + { + "begin": 8952, + "end": 8989, + "name": "SWAP2", + "source": 1 + }, + { + "begin": 8952, + "end": 8989, + "name": "SUB", + "source": 1 + }, + { + "begin": 8952, + "end": 8989, + "name": "SWAP1", + "source": 1 + }, + { + "begin": 8952, + "end": 8989, + "name": "LOG3", + "source": 1 + }, + { + "begin": 9000, + "end": 9048, + "name": "PUSH [tag]", + "source": 1, + "value": "199" + }, + { + "begin": 9028, + "end": 9029, + "name": "PUSH", + "source": 1, + "value": "0" + }, + { + "begin": 9032, + "end": 9039, + "name": "DUP4", + "source": 1 + }, + { + "begin": 9041, + "end": 9047, + "name": "DUP4", + "source": 1 + }, + { + "begin": 9000, + "end": 9019, + "name": "PUSH [tag]", + "source": 1, + "value": "185" + }, + { + "begin": 9000, + "end": 9048, + "jumpType": "[in]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 9000, + "end": 9048, + "name": "tag", + "source": 1, + "value": "199" + }, + { + "begin": 9000, + "end": 9048, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 8520, + "end": 9055, + "name": "POP", + "source": 1 + }, + { + "begin": 8520, + "end": 9055, + "name": "POP", + "source": 1 + }, + { + "begin": 8520, + "end": 9055, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 2426, + "end": 2613, + "name": "tag", + "source": 0, + "value": "124" + }, + { + "begin": 2426, + "end": 2613, + "name": "JUMPDEST", + "source": 0 + }, + { + "begin": 2499, + "end": 2515, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 2518, + "end": 2524, + "name": "PUSH", + "source": 0, + "value": "5" + }, + { + "begin": 2518, + "end": 2524, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 2518, + "end": 2524, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 2518, + "end": 2524, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 2518, + "end": 2524, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 2518, + "end": 2524, + "name": "PUSH", + "source": 0, + "value": "100" + }, + { + "begin": 2518, + "end": 2524, + "name": "EXP", + "source": 0 + }, + { + "begin": 2518, + "end": 2524, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 2518, + "end": 2524, + "name": "DIV", + "source": 0 + }, + { + "begin": 2518, + "end": 2524, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 2518, + "end": 2524, + "name": "AND", + "source": 0 + }, + { + "begin": 2499, + "end": 2524, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 2499, + "end": 2524, + "name": "POP", + "source": 0 + }, + { + "begin": 2543, + "end": 2551, + "name": "DUP2", + "source": 0 + }, + { + "begin": 2534, + "end": 2540, + "name": "PUSH", + "source": 0, + "value": "5" + }, + { + "begin": 2534, + "end": 2540, + "name": "PUSH", + "source": 0, + "value": "0" + }, + { + "begin": 2534, + "end": 2551, + "name": "PUSH", + "source": 0, + "value": "100" + }, + { + "begin": 2534, + "end": 2551, + "name": "EXP", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "DUP2", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "SLOAD", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "DUP2", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 2534, + "end": 2551, + "name": "MUL", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "NOT", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "AND", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "DUP4", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 2534, + "end": 2551, + "name": "AND", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "MUL", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "OR", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "SSTORE", + "source": 0 + }, + { + "begin": 2534, + "end": 2551, + "name": "POP", + "source": 0 + }, + { + "begin": 2597, + "end": 2605, + "name": "DUP2", + "source": 0 + }, + { + "begin": 2566, + "end": 2606, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 2566, + "end": 2606, + "name": "AND", + "source": 0 + }, + { + "begin": 2587, + "end": 2595, + "name": "DUP2", + "source": 0 + }, + { + "begin": 2566, + "end": 2606, + "name": "PUSH", + "source": 0, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 2566, + "end": 2606, + "name": "AND", + "source": 0 + }, + { + "begin": 2566, + "end": 2606, + "name": "PUSH", + "source": 0, + "value": "8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0" + }, + { + "begin": 2566, + "end": 2606, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 2566, + "end": 2606, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 2566, + "end": 2606, + "name": "PUSH", + "source": 0, + "value": "40" + }, + { + "begin": 2566, + "end": 2606, + "name": "MLOAD", + "source": 0 + }, + { + "begin": 2566, + "end": 2606, + "name": "DUP1", + "source": 0 + }, + { + "begin": 2566, + "end": 2606, + "name": "SWAP2", + "source": 0 + }, + { + "begin": 2566, + "end": 2606, + "name": "SUB", + "source": 0 + }, + { + "begin": 2566, + "end": 2606, + "name": "SWAP1", + "source": 0 + }, + { + "begin": 2566, + "end": 2606, + "name": "LOG3", + "source": 0 + }, + { + "begin": 2489, + "end": 2613, + "name": "POP", + "source": 0 + }, + { + "begin": 2426, + "end": 2613, + "name": "POP", + "source": 0 + }, + { + "begin": 2426, + "end": 2613, + "jumpType": "[out]", + "name": "JUMP", + "source": 0 + }, + { + "begin": 12073, + "end": 12164, + "name": "tag", + "source": 1, + "value": "179" + }, + { + "begin": 12073, + "end": 12164, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 12073, + "end": 12164, + "name": "POP", + "source": 1 + }, + { + "begin": 12073, + "end": 12164, + "name": "POP", + "source": 1 + }, + { + "begin": 12073, + "end": 12164, + "name": "POP", + "source": 1 + }, + { + "begin": 12073, + "end": 12164, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 12752, + "end": 12842, + "name": "tag", + "source": 1, + "value": "185" + }, + { + "begin": 12752, + "end": 12842, + "name": "JUMPDEST", + "source": 1 + }, + { + "begin": 12752, + "end": 12842, + "name": "POP", + "source": 1 + }, + { + "begin": 12752, + "end": 12842, + "name": "POP", + "source": 1 + }, + { + "begin": 12752, + "end": 12842, + "name": "POP", + "source": 1 + }, + { + "begin": 12752, + "end": 12842, + "jumpType": "[out]", + "name": "JUMP", + "source": 1 + }, + { + "begin": 7, + "end": 106, + "name": "tag", + "source": 6, + "value": "203" + }, + { + "begin": 7, + "end": 106, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 59, + "end": 65, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 93, + "end": 98, + "name": "DUP2", + "source": 6 + }, + { + "begin": 87, + "end": 99, + "name": "MLOAD", + "source": 6 + }, + { + "begin": 77, + "end": 99, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 77, + "end": 99, + "name": "POP", + "source": 6 + }, + { + "begin": 7, + "end": 106, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 7, + "end": 106, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 7, + "end": 106, + "name": "POP", + "source": 6 + }, + { + "begin": 7, + "end": 106, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 112, + "end": 281, + "name": "tag", + "source": 6, + "value": "204" + }, + { + "begin": 112, + "end": 281, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 196, + "end": 207, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 230, + "end": 236, + "name": "DUP3", + "source": 6 + }, + { + "begin": 225, + "end": 228, + "name": "DUP3", + "source": 6 + }, + { + "begin": 218, + "end": 237, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 270, + "end": 274, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 265, + "end": 268, + "name": "DUP3", + "source": 6 + }, + { + "begin": 261, + "end": 275, + "name": "ADD", + "source": 6 + }, + { + "begin": 246, + "end": 275, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 246, + "end": 275, + "name": "POP", + "source": 6 + }, + { + "begin": 112, + "end": 281, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 112, + "end": 281, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 112, + "end": 281, + "name": "POP", + "source": 6 + }, + { + "begin": 112, + "end": 281, + "name": "POP", + "source": 6 + }, + { + "begin": 112, + "end": 281, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 287, + "end": 533, + "name": "tag", + "source": 6, + "value": "205" + }, + { + "begin": 287, + "end": 533, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 368, + "end": 369, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 378, + "end": 491, + "name": "tag", + "source": 6, + "value": "250" + }, + { + "begin": 378, + "end": 491, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 392, + "end": 398, + "name": "DUP4", + "source": 6 + }, + { + "begin": 389, + "end": 390, + "name": "DUP2", + "source": 6 + }, + { + "begin": 386, + "end": 399, + "name": "LT", + "source": 6 + }, + { + "begin": 378, + "end": 491, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 378, + "end": 491, + "name": "PUSH [tag]", + "source": 6, + "value": "252" + }, + { + "begin": 378, + "end": 491, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 477, + "end": 478, + "name": "DUP1", + "source": 6 + }, + { + "begin": 472, + "end": 475, + "name": "DUP3", + "source": 6 + }, + { + "begin": 468, + "end": 479, + "name": "ADD", + "source": 6 + }, + { + "begin": 462, + "end": 480, + "name": "MLOAD", + "source": 6 + }, + { + "begin": 458, + "end": 459, + "name": "DUP2", + "source": 6 + }, + { + "begin": 453, + "end": 456, + "name": "DUP5", + "source": 6 + }, + { + "begin": 449, + "end": 460, + "name": "ADD", + "source": 6 + }, + { + "begin": 442, + "end": 481, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 414, + "end": 416, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 411, + "end": 412, + "name": "DUP2", + "source": 6 + }, + { + "begin": 407, + "end": 417, + "name": "ADD", + "source": 6 + }, + { + "begin": 402, + "end": 417, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 402, + "end": 417, + "name": "POP", + "source": 6 + }, + { + "begin": 378, + "end": 491, + "name": "PUSH [tag]", + "source": 6, + "value": "250" + }, + { + "begin": 378, + "end": 491, + "name": "JUMP", + "source": 6 + }, + { + "begin": 378, + "end": 491, + "name": "tag", + "source": 6, + "value": "252" + }, + { + "begin": 378, + "end": 491, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 525, + "end": 526, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 516, + "end": 522, + "name": "DUP5", + "source": 6 + }, + { + "begin": 511, + "end": 514, + "name": "DUP5", + "source": 6 + }, + { + "begin": 507, + "end": 523, + "name": "ADD", + "source": 6 + }, + { + "begin": 500, + "end": 527, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 349, + "end": 533, + "name": "POP", + "source": 6 + }, + { + "begin": 287, + "end": 533, + "name": "POP", + "source": 6 + }, + { + "begin": 287, + "end": 533, + "name": "POP", + "source": 6 + }, + { + "begin": 287, + "end": 533, + "name": "POP", + "source": 6 + }, + { + "begin": 287, + "end": 533, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 539, + "end": 641, + "name": "tag", + "source": 6, + "value": "206" + }, + { + "begin": 539, + "end": 641, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 580, + "end": 586, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 631, + "end": 633, + "name": "PUSH", + "source": 6, + "value": "1F" + }, + { + "begin": 627, + "end": 634, + "name": "NOT", + "source": 6 + }, + { + "begin": 622, + "end": 624, + "name": "PUSH", + "source": 6, + "value": "1F" + }, + { + "begin": 615, + "end": 620, + "name": "DUP4", + "source": 6 + }, + { + "begin": 611, + "end": 625, + "name": "ADD", + "source": 6 + }, + { + "begin": 607, + "end": 635, + "name": "AND", + "source": 6 + }, + { + "begin": 597, + "end": 635, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 597, + "end": 635, + "name": "POP", + "source": 6 + }, + { + "begin": 539, + "end": 641, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 539, + "end": 641, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 539, + "end": 641, + "name": "POP", + "source": 6 + }, + { + "begin": 539, + "end": 641, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 647, + "end": 1024, + "name": "tag", + "source": 6, + "value": "207" + }, + { + "begin": 647, + "end": 1024, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 735, + "end": 738, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 763, + "end": 802, + "name": "PUSH [tag]", + "source": 6, + "value": "255" + }, + { + "begin": 796, + "end": 801, + "name": "DUP3", + "source": 6 + }, + { + "begin": 763, + "end": 802, + "name": "PUSH [tag]", + "source": 6, + "value": "203" + }, + { + "begin": 763, + "end": 802, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 763, + "end": 802, + "name": "tag", + "source": 6, + "value": "255" + }, + { + "begin": 763, + "end": 802, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 818, + "end": 889, + "name": "PUSH [tag]", + "source": 6, + "value": "256" + }, + { + "begin": 882, + "end": 888, + "name": "DUP2", + "source": 6 + }, + { + "begin": 877, + "end": 880, + "name": "DUP6", + "source": 6 + }, + { + "begin": 818, + "end": 889, + "name": "PUSH [tag]", + "source": 6, + "value": "204" + }, + { + "begin": 818, + "end": 889, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 818, + "end": 889, + "name": "tag", + "source": 6, + "value": "256" + }, + { + "begin": 818, + "end": 889, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 811, + "end": 889, + "name": "SWAP4", + "source": 6 + }, + { + "begin": 811, + "end": 889, + "name": "POP", + "source": 6 + }, + { + "begin": 898, + "end": 963, + "name": "PUSH [tag]", + "source": 6, + "value": "257" + }, + { + "begin": 956, + "end": 962, + "name": "DUP2", + "source": 6 + }, + { + "begin": 951, + "end": 954, + "name": "DUP6", + "source": 6 + }, + { + "begin": 944, + "end": 948, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 937, + "end": 942, + "name": "DUP7", + "source": 6 + }, + { + "begin": 933, + "end": 949, + "name": "ADD", + "source": 6 + }, + { + "begin": 898, + "end": 963, + "name": "PUSH [tag]", + "source": 6, + "value": "205" + }, + { + "begin": 898, + "end": 963, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 898, + "end": 963, + "name": "tag", + "source": 6, + "value": "257" + }, + { + "begin": 898, + "end": 963, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 988, + "end": 1017, + "name": "PUSH [tag]", + "source": 6, + "value": "258" + }, + { + "begin": 1010, + "end": 1016, + "name": "DUP2", + "source": 6 + }, + { + "begin": 988, + "end": 1017, + "name": "PUSH [tag]", + "source": 6, + "value": "206" + }, + { + "begin": 988, + "end": 1017, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 988, + "end": 1017, + "name": "tag", + "source": 6, + "value": "258" + }, + { + "begin": 988, + "end": 1017, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 983, + "end": 986, + "name": "DUP5", + "source": 6 + }, + { + "begin": 979, + "end": 1018, + "name": "ADD", + "source": 6 + }, + { + "begin": 972, + "end": 1018, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 972, + "end": 1018, + "name": "POP", + "source": 6 + }, + { + "begin": 739, + "end": 1024, + "name": "POP", + "source": 6 + }, + { + "begin": 647, + "end": 1024, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 647, + "end": 1024, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 647, + "end": 1024, + "name": "POP", + "source": 6 + }, + { + "begin": 647, + "end": 1024, + "name": "POP", + "source": 6 + }, + { + "begin": 647, + "end": 1024, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1030, + "end": 1343, + "name": "tag", + "source": 6, + "value": "25" + }, + { + "begin": 1030, + "end": 1343, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1143, + "end": 1147, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 1181, + "end": 1183, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 1170, + "end": 1179, + "name": "DUP3", + "source": 6 + }, + { + "begin": 1166, + "end": 1184, + "name": "ADD", + "source": 6 + }, + { + "begin": 1158, + "end": 1184, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1158, + "end": 1184, + "name": "POP", + "source": 6 + }, + { + "begin": 1230, + "end": 1239, + "name": "DUP2", + "source": 6 + }, + { + "begin": 1224, + "end": 1228, + "name": "DUP2", + "source": 6 + }, + { + "begin": 1220, + "end": 1240, + "name": "SUB", + "source": 6 + }, + { + "begin": 1216, + "end": 1217, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 1205, + "end": 1214, + "name": "DUP4", + "source": 6 + }, + { + "begin": 1201, + "end": 1218, + "name": "ADD", + "source": 6 + }, + { + "begin": 1194, + "end": 1241, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 1258, + "end": 1336, + "name": "PUSH [tag]", + "source": 6, + "value": "260" + }, + { + "begin": 1331, + "end": 1335, + "name": "DUP2", + "source": 6 + }, + { + "begin": 1322, + "end": 1328, + "name": "DUP5", + "source": 6 + }, + { + "begin": 1258, + "end": 1336, + "name": "PUSH [tag]", + "source": 6, + "value": "207" + }, + { + "begin": 1258, + "end": 1336, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1258, + "end": 1336, + "name": "tag", + "source": 6, + "value": "260" + }, + { + "begin": 1258, + "end": 1336, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1250, + "end": 1336, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1250, + "end": 1336, + "name": "POP", + "source": 6 + }, + { + "begin": 1030, + "end": 1343, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 1030, + "end": 1343, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 1030, + "end": 1343, + "name": "POP", + "source": 6 + }, + { + "begin": 1030, + "end": 1343, + "name": "POP", + "source": 6 + }, + { + "begin": 1030, + "end": 1343, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1430, + "end": 1547, + "name": "tag", + "source": 6, + "value": "209" + }, + { + "begin": 1430, + "end": 1547, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1539, + "end": 1540, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 1536, + "end": 1537, + "name": "DUP1", + "source": 6 + }, + { + "begin": 1529, + "end": 1541, + "name": "REVERT", + "source": 6 + }, + { + "begin": 1676, + "end": 1802, + "name": "tag", + "source": 6, + "value": "211" + }, + { + "begin": 1676, + "end": 1802, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1713, + "end": 1720, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 1753, + "end": 1795, + "name": "PUSH", + "source": 6, + "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "begin": 1746, + "end": 1751, + "name": "DUP3", + "source": 6 + }, + { + "begin": 1742, + "end": 1796, + "name": "AND", + "source": 6 + }, + { + "begin": 1731, + "end": 1796, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1731, + "end": 1796, + "name": "POP", + "source": 6 + }, + { + "begin": 1676, + "end": 1802, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 1676, + "end": 1802, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1676, + "end": 1802, + "name": "POP", + "source": 6 + }, + { + "begin": 1676, + "end": 1802, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1808, + "end": 1904, + "name": "tag", + "source": 6, + "value": "212" + }, + { + "begin": 1808, + "end": 1904, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1845, + "end": 1852, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 1874, + "end": 1898, + "name": "PUSH [tag]", + "source": 6, + "value": "266" + }, + { + "begin": 1892, + "end": 1897, + "name": "DUP3", + "source": 6 + }, + { + "begin": 1874, + "end": 1898, + "name": "PUSH [tag]", + "source": 6, + "value": "211" + }, + { + "begin": 1874, + "end": 1898, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1874, + "end": 1898, + "name": "tag", + "source": 6, + "value": "266" + }, + { + "begin": 1874, + "end": 1898, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1863, + "end": 1898, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1863, + "end": 1898, + "name": "POP", + "source": 6 + }, + { + "begin": 1808, + "end": 1904, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 1808, + "end": 1904, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 1808, + "end": 1904, + "name": "POP", + "source": 6 + }, + { + "begin": 1808, + "end": 1904, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1910, + "end": 2032, + "name": "tag", + "source": 6, + "value": "213" + }, + { + "begin": 1910, + "end": 2032, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1983, + "end": 2007, + "name": "PUSH [tag]", + "source": 6, + "value": "268" + }, + { + "begin": 2001, + "end": 2006, + "name": "DUP2", + "source": 6 + }, + { + "begin": 1983, + "end": 2007, + "name": "PUSH [tag]", + "source": 6, + "value": "212" + }, + { + "begin": 1983, + "end": 2007, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 1983, + "end": 2007, + "name": "tag", + "source": 6, + "value": "268" + }, + { + "begin": 1983, + "end": 2007, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1976, + "end": 1981, + "name": "DUP2", + "source": 6 + }, + { + "begin": 1973, + "end": 2008, + "name": "EQ", + "source": 6 + }, + { + "begin": 1963, + "end": 2026, + "name": "PUSH [tag]", + "source": 6, + "value": "269" + }, + { + "begin": 1963, + "end": 2026, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 2022, + "end": 2023, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 2019, + "end": 2020, + "name": "DUP1", + "source": 6 + }, + { + "begin": 2012, + "end": 2024, + "name": "REVERT", + "source": 6 + }, + { + "begin": 1963, + "end": 2026, + "name": "tag", + "source": 6, + "value": "269" + }, + { + "begin": 1963, + "end": 2026, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 1910, + "end": 2032, + "name": "POP", + "source": 6 + }, + { + "begin": 1910, + "end": 2032, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2038, + "end": 2177, + "name": "tag", + "source": 6, + "value": "214" + }, + { + "begin": 2038, + "end": 2177, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2084, + "end": 2089, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 2122, + "end": 2128, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2109, + "end": 2129, + "name": "CALLDATALOAD", + "source": 6 + }, + { + "begin": 2100, + "end": 2129, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 2100, + "end": 2129, + "name": "POP", + "source": 6 + }, + { + "begin": 2138, + "end": 2171, + "name": "PUSH [tag]", + "source": 6, + "value": "271" + }, + { + "begin": 2165, + "end": 2170, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2138, + "end": 2171, + "name": "PUSH [tag]", + "source": 6, + "value": "213" + }, + { + "begin": 2138, + "end": 2171, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2138, + "end": 2171, + "name": "tag", + "source": 6, + "value": "271" + }, + { + "begin": 2138, + "end": 2171, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2038, + "end": 2177, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 2038, + "end": 2177, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 2038, + "end": 2177, + "name": "POP", + "source": 6 + }, + { + "begin": 2038, + "end": 2177, + "name": "POP", + "source": 6 + }, + { + "begin": 2038, + "end": 2177, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2183, + "end": 2260, + "name": "tag", + "source": 6, + "value": "215" + }, + { + "begin": 2183, + "end": 2260, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2220, + "end": 2227, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 2249, + "end": 2254, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2238, + "end": 2254, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 2238, + "end": 2254, + "name": "POP", + "source": 6 + }, + { + "begin": 2183, + "end": 2260, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 2183, + "end": 2260, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 2183, + "end": 2260, + "name": "POP", + "source": 6 + }, + { + "begin": 2183, + "end": 2260, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2266, + "end": 2388, + "name": "tag", + "source": 6, + "value": "216" + }, + { + "begin": 2266, + "end": 2388, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2339, + "end": 2363, + "name": "PUSH [tag]", + "source": 6, + "value": "274" + }, + { + "begin": 2357, + "end": 2362, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2339, + "end": 2363, + "name": "PUSH [tag]", + "source": 6, + "value": "215" + }, + { + "begin": 2339, + "end": 2363, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2339, + "end": 2363, + "name": "tag", + "source": 6, + "value": "274" + }, + { + "begin": 2339, + "end": 2363, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2332, + "end": 2337, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2329, + "end": 2364, + "name": "EQ", + "source": 6 + }, + { + "begin": 2319, + "end": 2382, + "name": "PUSH [tag]", + "source": 6, + "value": "275" + }, + { + "begin": 2319, + "end": 2382, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 2378, + "end": 2379, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 2375, + "end": 2376, + "name": "DUP1", + "source": 6 + }, + { + "begin": 2368, + "end": 2380, + "name": "REVERT", + "source": 6 + }, + { + "begin": 2319, + "end": 2382, + "name": "tag", + "source": 6, + "value": "275" + }, + { + "begin": 2319, + "end": 2382, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2266, + "end": 2388, + "name": "POP", + "source": 6 + }, + { + "begin": 2266, + "end": 2388, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2394, + "end": 2533, + "name": "tag", + "source": 6, + "value": "217" + }, + { + "begin": 2394, + "end": 2533, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2440, + "end": 2445, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 2478, + "end": 2484, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2465, + "end": 2485, + "name": "CALLDATALOAD", + "source": 6 + }, + { + "begin": 2456, + "end": 2485, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 2456, + "end": 2485, + "name": "POP", + "source": 6 + }, + { + "begin": 2494, + "end": 2527, + "name": "PUSH [tag]", + "source": 6, + "value": "277" + }, + { + "begin": 2521, + "end": 2526, + "name": "DUP2", + "source": 6 + }, + { + "begin": 2494, + "end": 2527, + "name": "PUSH [tag]", + "source": 6, + "value": "216" + }, + { + "begin": 2494, + "end": 2527, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2494, + "end": 2527, + "name": "tag", + "source": 6, + "value": "277" + }, + { + "begin": 2494, + "end": 2527, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2394, + "end": 2533, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 2394, + "end": 2533, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 2394, + "end": 2533, + "name": "POP", + "source": 6 + }, + { + "begin": 2394, + "end": 2533, + "name": "POP", + "source": 6 + }, + { + "begin": 2394, + "end": 2533, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2539, + "end": 3013, + "name": "tag", + "source": 6, + "value": "28" + }, + { + "begin": 2539, + "end": 3013, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2607, + "end": 2613, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 2615, + "end": 2621, + "name": "DUP1", + "source": 6 + }, + { + "begin": 2664, + "end": 2666, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 2652, + "end": 2661, + "name": "DUP4", + "source": 6 + }, + { + "begin": 2643, + "end": 2650, + "name": "DUP6", + "source": 6 + }, + { + "begin": 2639, + "end": 2662, + "name": "SUB", + "source": 6 + }, + { + "begin": 2635, + "end": 2667, + "name": "SLT", + "source": 6 + }, + { + "begin": 2632, + "end": 2751, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 2632, + "end": 2751, + "name": "PUSH [tag]", + "source": 6, + "value": "279" + }, + { + "begin": 2632, + "end": 2751, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 2670, + "end": 2749, + "name": "PUSH [tag]", + "source": 6, + "value": "280" + }, + { + "begin": 2670, + "end": 2749, + "name": "PUSH [tag]", + "source": 6, + "value": "209" + }, + { + "begin": 2670, + "end": 2749, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2670, + "end": 2749, + "name": "tag", + "source": 6, + "value": "280" + }, + { + "begin": 2670, + "end": 2749, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2632, + "end": 2751, + "name": "tag", + "source": 6, + "value": "279" + }, + { + "begin": 2632, + "end": 2751, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2790, + "end": 2791, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 2815, + "end": 2868, + "name": "PUSH [tag]", + "source": 6, + "value": "281" + }, + { + "begin": 2860, + "end": 2867, + "name": "DUP6", + "source": 6 + }, + { + "begin": 2851, + "end": 2857, + "name": "DUP3", + "source": 6 + }, + { + "begin": 2840, + "end": 2849, + "name": "DUP7", + "source": 6 + }, + { + "begin": 2836, + "end": 2858, + "name": "ADD", + "source": 6 + }, + { + "begin": 2815, + "end": 2868, + "name": "PUSH [tag]", + "source": 6, + "value": "214" + }, + { + "begin": 2815, + "end": 2868, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2815, + "end": 2868, + "name": "tag", + "source": 6, + "value": "281" + }, + { + "begin": 2815, + "end": 2868, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2805, + "end": 2868, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 2805, + "end": 2868, + "name": "POP", + "source": 6 + }, + { + "begin": 2761, + "end": 2878, + "name": "POP", + "source": 6 + }, + { + "begin": 2917, + "end": 2919, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 2943, + "end": 2996, + "name": "PUSH [tag]", + "source": 6, + "value": "282" + }, + { + "begin": 2988, + "end": 2995, + "name": "DUP6", + "source": 6 + }, + { + "begin": 2979, + "end": 2985, + "name": "DUP3", + "source": 6 + }, + { + "begin": 2968, + "end": 2977, + "name": "DUP7", + "source": 6 + }, + { + "begin": 2964, + "end": 2986, + "name": "ADD", + "source": 6 + }, + { + "begin": 2943, + "end": 2996, + "name": "PUSH [tag]", + "source": 6, + "value": "217" + }, + { + "begin": 2943, + "end": 2996, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 2943, + "end": 2996, + "name": "tag", + "source": 6, + "value": "282" + }, + { + "begin": 2943, + "end": 2996, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 2933, + "end": 2996, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 2933, + "end": 2996, + "name": "POP", + "source": 6 + }, + { + "begin": 2888, + "end": 3006, + "name": "POP", + "source": 6 + }, + { + "begin": 2539, + "end": 3013, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 2539, + "end": 3013, + "name": "POP", + "source": 6 + }, + { + "begin": 2539, + "end": 3013, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 2539, + "end": 3013, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 2539, + "end": 3013, + "name": "POP", + "source": 6 + }, + { + "begin": 2539, + "end": 3013, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3019, + "end": 3109, + "name": "tag", + "source": 6, + "value": "218" + }, + { + "begin": 3019, + "end": 3109, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3053, + "end": 3060, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 3096, + "end": 3101, + "name": "DUP2", + "source": 6 + }, + { + "begin": 3089, + "end": 3102, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 3082, + "end": 3103, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 3071, + "end": 3103, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 3071, + "end": 3103, + "name": "POP", + "source": 6 + }, + { + "begin": 3019, + "end": 3109, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 3019, + "end": 3109, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 3019, + "end": 3109, + "name": "POP", + "source": 6 + }, + { + "begin": 3019, + "end": 3109, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3115, + "end": 3224, + "name": "tag", + "source": 6, + "value": "219" + }, + { + "begin": 3115, + "end": 3224, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3196, + "end": 3217, + "name": "PUSH [tag]", + "source": 6, + "value": "285" + }, + { + "begin": 3211, + "end": 3216, + "name": "DUP2", + "source": 6 + }, + { + "begin": 3196, + "end": 3217, + "name": "PUSH [tag]", + "source": 6, + "value": "218" + }, + { + "begin": 3196, + "end": 3217, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3196, + "end": 3217, + "name": "tag", + "source": 6, + "value": "285" + }, + { + "begin": 3196, + "end": 3217, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3191, + "end": 3194, + "name": "DUP3", + "source": 6 + }, + { + "begin": 3184, + "end": 3218, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 3115, + "end": 3224, + "name": "POP", + "source": 6 + }, + { + "begin": 3115, + "end": 3224, + "name": "POP", + "source": 6 + }, + { + "begin": 3115, + "end": 3224, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3230, + "end": 3440, + "name": "tag", + "source": 6, + "value": "31" + }, + { + "begin": 3230, + "end": 3440, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3317, + "end": 3321, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 3355, + "end": 3357, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 3344, + "end": 3353, + "name": "DUP3", + "source": 6 + }, + { + "begin": 3340, + "end": 3358, + "name": "ADD", + "source": 6 + }, + { + "begin": 3332, + "end": 3358, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 3332, + "end": 3358, + "name": "POP", + "source": 6 + }, + { + "begin": 3368, + "end": 3433, + "name": "PUSH [tag]", + "source": 6, + "value": "287" + }, + { + "begin": 3430, + "end": 3431, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 3419, + "end": 3428, + "name": "DUP4", + "source": 6 + }, + { + "begin": 3415, + "end": 3432, + "name": "ADD", + "source": 6 + }, + { + "begin": 3406, + "end": 3412, + "name": "DUP5", + "source": 6 + }, + { + "begin": 3368, + "end": 3433, + "name": "PUSH [tag]", + "source": 6, + "value": "219" + }, + { + "begin": 3368, + "end": 3433, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3368, + "end": 3433, + "name": "tag", + "source": 6, + "value": "287" + }, + { + "begin": 3368, + "end": 3433, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3230, + "end": 3440, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 3230, + "end": 3440, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 3230, + "end": 3440, + "name": "POP", + "source": 6 + }, + { + "begin": 3230, + "end": 3440, + "name": "POP", + "source": 6 + }, + { + "begin": 3230, + "end": 3440, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3446, + "end": 3564, + "name": "tag", + "source": 6, + "value": "220" + }, + { + "begin": 3446, + "end": 3564, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3533, + "end": 3557, + "name": "PUSH [tag]", + "source": 6, + "value": "289" + }, + { + "begin": 3551, + "end": 3556, + "name": "DUP2", + "source": 6 + }, + { + "begin": 3533, + "end": 3557, + "name": "PUSH [tag]", + "source": 6, + "value": "215" + }, + { + "begin": 3533, + "end": 3557, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3533, + "end": 3557, + "name": "tag", + "source": 6, + "value": "289" + }, + { + "begin": 3533, + "end": 3557, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3528, + "end": 3531, + "name": "DUP3", + "source": 6 + }, + { + "begin": 3521, + "end": 3558, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 3446, + "end": 3564, + "name": "POP", + "source": 6 + }, + { + "begin": 3446, + "end": 3564, + "name": "POP", + "source": 6 + }, + { + "begin": 3446, + "end": 3564, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3570, + "end": 3792, + "name": "tag", + "source": 6, + "value": "35" + }, + { + "begin": 3570, + "end": 3792, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3663, + "end": 3667, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 3701, + "end": 3703, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 3690, + "end": 3699, + "name": "DUP3", + "source": 6 + }, + { + "begin": 3686, + "end": 3704, + "name": "ADD", + "source": 6 + }, + { + "begin": 3678, + "end": 3704, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 3678, + "end": 3704, + "name": "POP", + "source": 6 + }, + { + "begin": 3714, + "end": 3785, + "name": "PUSH [tag]", + "source": 6, + "value": "291" + }, + { + "begin": 3782, + "end": 3783, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 3771, + "end": 3780, + "name": "DUP4", + "source": 6 + }, + { + "begin": 3767, + "end": 3784, + "name": "ADD", + "source": 6 + }, + { + "begin": 3758, + "end": 3764, + "name": "DUP5", + "source": 6 + }, + { + "begin": 3714, + "end": 3785, + "name": "PUSH [tag]", + "source": 6, + "value": "220" + }, + { + "begin": 3714, + "end": 3785, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3714, + "end": 3785, + "name": "tag", + "source": 6, + "value": "291" + }, + { + "begin": 3714, + "end": 3785, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3570, + "end": 3792, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 3570, + "end": 3792, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 3570, + "end": 3792, + "name": "POP", + "source": 6 + }, + { + "begin": 3570, + "end": 3792, + "name": "POP", + "source": 6 + }, + { + "begin": 3570, + "end": 3792, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3798, + "end": 4417, + "name": "tag", + "source": 6, + "value": "38" + }, + { + "begin": 3798, + "end": 4417, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3875, + "end": 3881, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 3883, + "end": 3889, + "name": "DUP1", + "source": 6 + }, + { + "begin": 3891, + "end": 3897, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 3940, + "end": 3942, + "name": "PUSH", + "source": 6, + "value": "60" + }, + { + "begin": 3928, + "end": 3937, + "name": "DUP5", + "source": 6 + }, + { + "begin": 3919, + "end": 3926, + "name": "DUP7", + "source": 6 + }, + { + "begin": 3915, + "end": 3938, + "name": "SUB", + "source": 6 + }, + { + "begin": 3911, + "end": 3943, + "name": "SLT", + "source": 6 + }, + { + "begin": 3908, + "end": 4027, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 3908, + "end": 4027, + "name": "PUSH [tag]", + "source": 6, + "value": "293" + }, + { + "begin": 3908, + "end": 4027, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 3946, + "end": 4025, + "name": "PUSH [tag]", + "source": 6, + "value": "294" + }, + { + "begin": 3946, + "end": 4025, + "name": "PUSH [tag]", + "source": 6, + "value": "209" + }, + { + "begin": 3946, + "end": 4025, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 3946, + "end": 4025, + "name": "tag", + "source": 6, + "value": "294" + }, + { + "begin": 3946, + "end": 4025, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 3908, + "end": 4027, + "name": "tag", + "source": 6, + "value": "293" + }, + { + "begin": 3908, + "end": 4027, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4066, + "end": 4067, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 4091, + "end": 4144, + "name": "PUSH [tag]", + "source": 6, + "value": "295" + }, + { + "begin": 4136, + "end": 4143, + "name": "DUP7", + "source": 6 + }, + { + "begin": 4127, + "end": 4133, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4116, + "end": 4125, + "name": "DUP8", + "source": 6 + }, + { + "begin": 4112, + "end": 4134, + "name": "ADD", + "source": 6 + }, + { + "begin": 4091, + "end": 4144, + "name": "PUSH [tag]", + "source": 6, + "value": "214" + }, + { + "begin": 4091, + "end": 4144, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4091, + "end": 4144, + "name": "tag", + "source": 6, + "value": "295" + }, + { + "begin": 4091, + "end": 4144, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4081, + "end": 4144, + "name": "SWAP4", + "source": 6 + }, + { + "begin": 4081, + "end": 4144, + "name": "POP", + "source": 6 + }, + { + "begin": 4037, + "end": 4154, + "name": "POP", + "source": 6 + }, + { + "begin": 4193, + "end": 4195, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 4219, + "end": 4272, + "name": "PUSH [tag]", + "source": 6, + "value": "296" + }, + { + "begin": 4264, + "end": 4271, + "name": "DUP7", + "source": 6 + }, + { + "begin": 4255, + "end": 4261, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4244, + "end": 4253, + "name": "DUP8", + "source": 6 + }, + { + "begin": 4240, + "end": 4262, + "name": "ADD", + "source": 6 + }, + { + "begin": 4219, + "end": 4272, + "name": "PUSH [tag]", + "source": 6, + "value": "214" + }, + { + "begin": 4219, + "end": 4272, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4219, + "end": 4272, + "name": "tag", + "source": 6, + "value": "296" + }, + { + "begin": 4219, + "end": 4272, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4209, + "end": 4272, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 4209, + "end": 4272, + "name": "POP", + "source": 6 + }, + { + "begin": 4164, + "end": 4282, + "name": "POP", + "source": 6 + }, + { + "begin": 4321, + "end": 4323, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 4347, + "end": 4400, + "name": "PUSH [tag]", + "source": 6, + "value": "297" + }, + { + "begin": 4392, + "end": 4399, + "name": "DUP7", + "source": 6 + }, + { + "begin": 4383, + "end": 4389, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4372, + "end": 4381, + "name": "DUP8", + "source": 6 + }, + { + "begin": 4368, + "end": 4390, + "name": "ADD", + "source": 6 + }, + { + "begin": 4347, + "end": 4400, + "name": "PUSH [tag]", + "source": 6, + "value": "217" + }, + { + "begin": 4347, + "end": 4400, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4347, + "end": 4400, + "name": "tag", + "source": 6, + "value": "297" + }, + { + "begin": 4347, + "end": 4400, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4337, + "end": 4400, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 4337, + "end": 4400, + "name": "POP", + "source": 6 + }, + { + "begin": 4292, + "end": 4410, + "name": "POP", + "source": 6 + }, + { + "begin": 3798, + "end": 4417, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 3798, + "end": 4417, + "name": "POP", + "source": 6 + }, + { + "begin": 3798, + "end": 4417, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 3798, + "end": 4417, + "name": "POP", + "source": 6 + }, + { + "begin": 3798, + "end": 4417, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 3798, + "end": 4417, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4423, + "end": 4509, + "name": "tag", + "source": 6, + "value": "221" + }, + { + "begin": 4423, + "end": 4509, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4458, + "end": 4465, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 4498, + "end": 4502, + "name": "PUSH", + "source": 6, + "value": "FF" + }, + { + "begin": 4491, + "end": 4496, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4487, + "end": 4503, + "name": "AND", + "source": 6 + }, + { + "begin": 4476, + "end": 4503, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 4476, + "end": 4503, + "name": "POP", + "source": 6 + }, + { + "begin": 4423, + "end": 4509, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 4423, + "end": 4509, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 4423, + "end": 4509, + "name": "POP", + "source": 6 + }, + { + "begin": 4423, + "end": 4509, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4515, + "end": 4627, + "name": "tag", + "source": 6, + "value": "222" + }, + { + "begin": 4515, + "end": 4627, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4598, + "end": 4620, + "name": "PUSH [tag]", + "source": 6, + "value": "300" + }, + { + "begin": 4614, + "end": 4619, + "name": "DUP2", + "source": 6 + }, + { + "begin": 4598, + "end": 4620, + "name": "PUSH [tag]", + "source": 6, + "value": "221" + }, + { + "begin": 4598, + "end": 4620, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4598, + "end": 4620, + "name": "tag", + "source": 6, + "value": "300" + }, + { + "begin": 4598, + "end": 4620, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4593, + "end": 4596, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4586, + "end": 4621, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 4515, + "end": 4627, + "name": "POP", + "source": 6 + }, + { + "begin": 4515, + "end": 4627, + "name": "POP", + "source": 6 + }, + { + "begin": 4515, + "end": 4627, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4633, + "end": 4847, + "name": "tag", + "source": 6, + "value": "44" + }, + { + "begin": 4633, + "end": 4847, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4722, + "end": 4726, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 4760, + "end": 4762, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 4749, + "end": 4758, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4745, + "end": 4763, + "name": "ADD", + "source": 6 + }, + { + "begin": 4737, + "end": 4763, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 4737, + "end": 4763, + "name": "POP", + "source": 6 + }, + { + "begin": 4773, + "end": 4840, + "name": "PUSH [tag]", + "source": 6, + "value": "302" + }, + { + "begin": 4837, + "end": 4838, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 4826, + "end": 4835, + "name": "DUP4", + "source": 6 + }, + { + "begin": 4822, + "end": 4839, + "name": "ADD", + "source": 6 + }, + { + "begin": 4813, + "end": 4819, + "name": "DUP5", + "source": 6 + }, + { + "begin": 4773, + "end": 4840, + "name": "PUSH [tag]", + "source": 6, + "value": "222" + }, + { + "begin": 4773, + "end": 4840, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4773, + "end": 4840, + "name": "tag", + "source": 6, + "value": "302" + }, + { + "begin": 4773, + "end": 4840, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4633, + "end": 4847, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 4633, + "end": 4847, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 4633, + "end": 4847, + "name": "POP", + "source": 6 + }, + { + "begin": 4633, + "end": 4847, + "name": "POP", + "source": 6 + }, + { + "begin": 4633, + "end": 4847, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4853, + "end": 5182, + "name": "tag", + "source": 6, + "value": "54" + }, + { + "begin": 4853, + "end": 5182, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4912, + "end": 4918, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 4961, + "end": 4963, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 4949, + "end": 4958, + "name": "DUP3", + "source": 6 + }, + { + "begin": 4940, + "end": 4947, + "name": "DUP5", + "source": 6 + }, + { + "begin": 4936, + "end": 4959, + "name": "SUB", + "source": 6 + }, + { + "begin": 4932, + "end": 4964, + "name": "SLT", + "source": 6 + }, + { + "begin": 4929, + "end": 5048, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 4929, + "end": 5048, + "name": "PUSH [tag]", + "source": 6, + "value": "304" + }, + { + "begin": 4929, + "end": 5048, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 4967, + "end": 5046, + "name": "PUSH [tag]", + "source": 6, + "value": "305" + }, + { + "begin": 4967, + "end": 5046, + "name": "PUSH [tag]", + "source": 6, + "value": "209" + }, + { + "begin": 4967, + "end": 5046, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 4967, + "end": 5046, + "name": "tag", + "source": 6, + "value": "305" + }, + { + "begin": 4967, + "end": 5046, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 4929, + "end": 5048, + "name": "tag", + "source": 6, + "value": "304" + }, + { + "begin": 4929, + "end": 5048, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5087, + "end": 5088, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 5112, + "end": 5165, + "name": "PUSH [tag]", + "source": 6, + "value": "306" + }, + { + "begin": 5157, + "end": 5164, + "name": "DUP5", + "source": 6 + }, + { + "begin": 5148, + "end": 5154, + "name": "DUP3", + "source": 6 + }, + { + "begin": 5137, + "end": 5146, + "name": "DUP6", + "source": 6 + }, + { + "begin": 5133, + "end": 5155, + "name": "ADD", + "source": 6 + }, + { + "begin": 5112, + "end": 5165, + "name": "PUSH [tag]", + "source": 6, + "value": "214" + }, + { + "begin": 5112, + "end": 5165, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5112, + "end": 5165, + "name": "tag", + "source": 6, + "value": "306" + }, + { + "begin": 5112, + "end": 5165, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5102, + "end": 5165, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 5102, + "end": 5165, + "name": "POP", + "source": 6 + }, + { + "begin": 5058, + "end": 5175, + "name": "POP", + "source": 6 + }, + { + "begin": 4853, + "end": 5182, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 4853, + "end": 5182, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 4853, + "end": 5182, + "name": "POP", + "source": 6 + }, + { + "begin": 4853, + "end": 5182, + "name": "POP", + "source": 6 + }, + { + "begin": 4853, + "end": 5182, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5188, + "end": 5306, + "name": "tag", + "source": 6, + "value": "223" + }, + { + "begin": 5188, + "end": 5306, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5275, + "end": 5299, + "name": "PUSH [tag]", + "source": 6, + "value": "308" + }, + { + "begin": 5293, + "end": 5298, + "name": "DUP2", + "source": 6 + }, + { + "begin": 5275, + "end": 5299, + "name": "PUSH [tag]", + "source": 6, + "value": "212" + }, + { + "begin": 5275, + "end": 5299, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5275, + "end": 5299, + "name": "tag", + "source": 6, + "value": "308" + }, + { + "begin": 5275, + "end": 5299, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5270, + "end": 5273, + "name": "DUP3", + "source": 6 + }, + { + "begin": 5263, + "end": 5300, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 5188, + "end": 5306, + "name": "POP", + "source": 6 + }, + { + "begin": 5188, + "end": 5306, + "name": "POP", + "source": 6 + }, + { + "begin": 5188, + "end": 5306, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5312, + "end": 5534, + "name": "tag", + "source": 6, + "value": "62" + }, + { + "begin": 5312, + "end": 5534, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5405, + "end": 5409, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 5443, + "end": 5445, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 5432, + "end": 5441, + "name": "DUP3", + "source": 6 + }, + { + "begin": 5428, + "end": 5446, + "name": "ADD", + "source": 6 + }, + { + "begin": 5420, + "end": 5446, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 5420, + "end": 5446, + "name": "POP", + "source": 6 + }, + { + "begin": 5456, + "end": 5527, + "name": "PUSH [tag]", + "source": 6, + "value": "310" + }, + { + "begin": 5524, + "end": 5525, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 5513, + "end": 5522, + "name": "DUP4", + "source": 6 + }, + { + "begin": 5509, + "end": 5526, + "name": "ADD", + "source": 6 + }, + { + "begin": 5500, + "end": 5506, + "name": "DUP5", + "source": 6 + }, + { + "begin": 5456, + "end": 5527, + "name": "PUSH [tag]", + "source": 6, + "value": "223" + }, + { + "begin": 5456, + "end": 5527, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5456, + "end": 5527, + "name": "tag", + "source": 6, + "value": "310" + }, + { + "begin": 5456, + "end": 5527, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5312, + "end": 5534, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 5312, + "end": 5534, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 5312, + "end": 5534, + "name": "POP", + "source": 6 + }, + { + "begin": 5312, + "end": 5534, + "name": "POP", + "source": 6 + }, + { + "begin": 5312, + "end": 5534, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5540, + "end": 6184, + "name": "tag", + "source": 6, + "value": "74" + }, + { + "begin": 5540, + "end": 6184, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5737, + "end": 5741, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 5775, + "end": 5778, + "name": "PUSH", + "source": 6, + "value": "80" + }, + { + "begin": 5764, + "end": 5773, + "name": "DUP3", + "source": 6 + }, + { + "begin": 5760, + "end": 5779, + "name": "ADD", + "source": 6 + }, + { + "begin": 5752, + "end": 5779, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 5752, + "end": 5779, + "name": "POP", + "source": 6 + }, + { + "begin": 5825, + "end": 5834, + "name": "DUP2", + "source": 6 + }, + { + "begin": 5819, + "end": 5823, + "name": "DUP2", + "source": 6 + }, + { + "begin": 5815, + "end": 5835, + "name": "SUB", + "source": 6 + }, + { + "begin": 5811, + "end": 5812, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 5800, + "end": 5809, + "name": "DUP4", + "source": 6 + }, + { + "begin": 5796, + "end": 5813, + "name": "ADD", + "source": 6 + }, + { + "begin": 5789, + "end": 5836, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 5853, + "end": 5931, + "name": "PUSH [tag]", + "source": 6, + "value": "312" + }, + { + "begin": 5926, + "end": 5930, + "name": "DUP2", + "source": 6 + }, + { + "begin": 5917, + "end": 5923, + "name": "DUP8", + "source": 6 + }, + { + "begin": 5853, + "end": 5931, + "name": "PUSH [tag]", + "source": 6, + "value": "207" + }, + { + "begin": 5853, + "end": 5931, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5853, + "end": 5931, + "name": "tag", + "source": 6, + "value": "312" + }, + { + "begin": 5853, + "end": 5931, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5845, + "end": 5931, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 5845, + "end": 5931, + "name": "POP", + "source": 6 + }, + { + "begin": 5941, + "end": 6013, + "name": "PUSH [tag]", + "source": 6, + "value": "313" + }, + { + "begin": 6009, + "end": 6011, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 5998, + "end": 6007, + "name": "DUP4", + "source": 6 + }, + { + "begin": 5994, + "end": 6012, + "name": "ADD", + "source": 6 + }, + { + "begin": 5985, + "end": 5991, + "name": "DUP7", + "source": 6 + }, + { + "begin": 5941, + "end": 6013, + "name": "PUSH [tag]", + "source": 6, + "value": "223" + }, + { + "begin": 5941, + "end": 6013, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 5941, + "end": 6013, + "name": "tag", + "source": 6, + "value": "313" + }, + { + "begin": 5941, + "end": 6013, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6023, + "end": 6095, + "name": "PUSH [tag]", + "source": 6, + "value": "314" + }, + { + "begin": 6091, + "end": 6093, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 6080, + "end": 6089, + "name": "DUP4", + "source": 6 + }, + { + "begin": 6076, + "end": 6094, + "name": "ADD", + "source": 6 + }, + { + "begin": 6067, + "end": 6073, + "name": "DUP6", + "source": 6 + }, + { + "begin": 6023, + "end": 6095, + "name": "PUSH [tag]", + "source": 6, + "value": "220" + }, + { + "begin": 6023, + "end": 6095, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6023, + "end": 6095, + "name": "tag", + "source": 6, + "value": "314" + }, + { + "begin": 6023, + "end": 6095, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6105, + "end": 6177, + "name": "PUSH [tag]", + "source": 6, + "value": "315" + }, + { + "begin": 6173, + "end": 6175, + "name": "PUSH", + "source": 6, + "value": "60" + }, + { + "begin": 6162, + "end": 6171, + "name": "DUP4", + "source": 6 + }, + { + "begin": 6158, + "end": 6176, + "name": "ADD", + "source": 6 + }, + { + "begin": 6149, + "end": 6155, + "name": "DUP5", + "source": 6 + }, + { + "begin": 6105, + "end": 6177, + "name": "PUSH [tag]", + "source": 6, + "value": "220" + }, + { + "begin": 6105, + "end": 6177, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6105, + "end": 6177, + "name": "tag", + "source": 6, + "value": "315" + }, + { + "begin": 6105, + "end": 6177, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 5540, + "end": 6184, + "name": "SWAP6", + "source": 6 + }, + { + "begin": 5540, + "end": 6184, + "name": "SWAP5", + "source": 6 + }, + { + "begin": 5540, + "end": 6184, + "name": "POP", + "source": 6 + }, + { + "begin": 5540, + "end": 6184, + "name": "POP", + "source": 6 + }, + { + "begin": 5540, + "end": 6184, + "name": "POP", + "source": 6 + }, + { + "begin": 5540, + "end": 6184, + "name": "POP", + "source": 6 + }, + { + "begin": 5540, + "end": 6184, + "name": "POP", + "source": 6 + }, + { + "begin": 5540, + "end": 6184, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6190, + "end": 6664, + "name": "tag", + "source": 6, + "value": "81" + }, + { + "begin": 6190, + "end": 6664, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6258, + "end": 6264, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 6266, + "end": 6272, + "name": "DUP1", + "source": 6 + }, + { + "begin": 6315, + "end": 6317, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 6303, + "end": 6312, + "name": "DUP4", + "source": 6 + }, + { + "begin": 6294, + "end": 6301, + "name": "DUP6", + "source": 6 + }, + { + "begin": 6290, + "end": 6313, + "name": "SUB", + "source": 6 + }, + { + "begin": 6286, + "end": 6318, + "name": "SLT", + "source": 6 + }, + { + "begin": 6283, + "end": 6402, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 6283, + "end": 6402, + "name": "PUSH [tag]", + "source": 6, + "value": "317" + }, + { + "begin": 6283, + "end": 6402, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 6321, + "end": 6400, + "name": "PUSH [tag]", + "source": 6, + "value": "318" + }, + { + "begin": 6321, + "end": 6400, + "name": "PUSH [tag]", + "source": 6, + "value": "209" + }, + { + "begin": 6321, + "end": 6400, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6321, + "end": 6400, + "name": "tag", + "source": 6, + "value": "318" + }, + { + "begin": 6321, + "end": 6400, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6283, + "end": 6402, + "name": "tag", + "source": 6, + "value": "317" + }, + { + "begin": 6283, + "end": 6402, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6441, + "end": 6442, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 6466, + "end": 6519, + "name": "PUSH [tag]", + "source": 6, + "value": "319" + }, + { + "begin": 6511, + "end": 6518, + "name": "DUP6", + "source": 6 + }, + { + "begin": 6502, + "end": 6508, + "name": "DUP3", + "source": 6 + }, + { + "begin": 6491, + "end": 6500, + "name": "DUP7", + "source": 6 + }, + { + "begin": 6487, + "end": 6509, + "name": "ADD", + "source": 6 + }, + { + "begin": 6466, + "end": 6519, + "name": "PUSH [tag]", + "source": 6, + "value": "214" + }, + { + "begin": 6466, + "end": 6519, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6466, + "end": 6519, + "name": "tag", + "source": 6, + "value": "319" + }, + { + "begin": 6466, + "end": 6519, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6456, + "end": 6519, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 6456, + "end": 6519, + "name": "POP", + "source": 6 + }, + { + "begin": 6412, + "end": 6529, + "name": "POP", + "source": 6 + }, + { + "begin": 6568, + "end": 6570, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 6594, + "end": 6647, + "name": "PUSH [tag]", + "source": 6, + "value": "320" + }, + { + "begin": 6639, + "end": 6646, + "name": "DUP6", + "source": 6 + }, + { + "begin": 6630, + "end": 6636, + "name": "DUP3", + "source": 6 + }, + { + "begin": 6619, + "end": 6628, + "name": "DUP7", + "source": 6 + }, + { + "begin": 6615, + "end": 6637, + "name": "ADD", + "source": 6 + }, + { + "begin": 6594, + "end": 6647, + "name": "PUSH [tag]", + "source": 6, + "value": "214" + }, + { + "begin": 6594, + "end": 6647, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6594, + "end": 6647, + "name": "tag", + "source": 6, + "value": "320" + }, + { + "begin": 6594, + "end": 6647, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6584, + "end": 6647, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 6584, + "end": 6647, + "name": "POP", + "source": 6 + }, + { + "begin": 6539, + "end": 6657, + "name": "POP", + "source": 6 + }, + { + "begin": 6190, + "end": 6664, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 6190, + "end": 6664, + "name": "POP", + "source": 6 + }, + { + "begin": 6190, + "end": 6664, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 6190, + "end": 6664, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 6190, + "end": 6664, + "name": "POP", + "source": 6 + }, + { + "begin": 6190, + "end": 6664, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 6670, + "end": 6850, + "name": "tag", + "source": 6, + "value": "224" + }, + { + "begin": 6670, + "end": 6850, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6718, + "end": 6795, + "name": "PUSH", + "source": 6, + "value": "4E487B7100000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 6715, + "end": 6716, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 6708, + "end": 6796, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 6815, + "end": 6819, + "name": "PUSH", + "source": 6, + "value": "22" + }, + { + "begin": 6812, + "end": 6813, + "name": "PUSH", + "source": 6, + "value": "4" + }, + { + "begin": 6805, + "end": 6820, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 6839, + "end": 6843, + "name": "PUSH", + "source": 6, + "value": "24" + }, + { + "begin": 6836, + "end": 6837, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 6829, + "end": 6844, + "name": "REVERT", + "source": 6 + }, + { + "begin": 6856, + "end": 7176, + "name": "tag", + "source": 6, + "value": "89" + }, + { + "begin": 6856, + "end": 7176, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6900, + "end": 6906, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 6937, + "end": 6938, + "name": "PUSH", + "source": 6, + "value": "2" + }, + { + "begin": 6931, + "end": 6935, + "name": "DUP3", + "source": 6 + }, + { + "begin": 6927, + "end": 6939, + "name": "DIV", + "source": 6 + }, + { + "begin": 6917, + "end": 6939, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 6917, + "end": 6939, + "name": "POP", + "source": 6 + }, + { + "begin": 6984, + "end": 6985, + "name": "PUSH", + "source": 6, + "value": "1" + }, + { + "begin": 6978, + "end": 6982, + "name": "DUP3", + "source": 6 + }, + { + "begin": 6974, + "end": 6986, + "name": "AND", + "source": 6 + }, + { + "begin": 7005, + "end": 7023, + "name": "DUP1", + "source": 6 + }, + { + "begin": 6995, + "end": 7076, + "name": "PUSH [tag]", + "source": 6, + "value": "323" + }, + { + "begin": 6995, + "end": 7076, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 7061, + "end": 7065, + "name": "PUSH", + "source": 6, + "value": "7F" + }, + { + "begin": 7053, + "end": 7059, + "name": "DUP3", + "source": 6 + }, + { + "begin": 7049, + "end": 7066, + "name": "AND", + "source": 6 + }, + { + "begin": 7039, + "end": 7066, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 7039, + "end": 7066, + "name": "POP", + "source": 6 + }, + { + "begin": 6995, + "end": 7076, + "name": "tag", + "source": 6, + "value": "323" + }, + { + "begin": 6995, + "end": 7076, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7123, + "end": 7125, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 7115, + "end": 7121, + "name": "DUP3", + "source": 6 + }, + { + "begin": 7112, + "end": 7126, + "name": "LT", + "source": 6 + }, + { + "begin": 7092, + "end": 7110, + "name": "DUP2", + "source": 6 + }, + { + "begin": 7089, + "end": 7127, + "name": "SUB", + "source": 6 + }, + { + "begin": 7086, + "end": 7170, + "name": "PUSH [tag]", + "source": 6, + "value": "324" + }, + { + "begin": 7086, + "end": 7170, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 7142, + "end": 7160, + "name": "PUSH [tag]", + "source": 6, + "value": "325" + }, + { + "begin": 7142, + "end": 7160, + "name": "PUSH [tag]", + "source": 6, + "value": "224" + }, + { + "begin": 7142, + "end": 7160, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 7142, + "end": 7160, + "name": "tag", + "source": 6, + "value": "325" + }, + { + "begin": 7142, + "end": 7160, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7086, + "end": 7170, + "name": "tag", + "source": 6, + "value": "324" + }, + { + "begin": 7086, + "end": 7170, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 6907, + "end": 7176, + "name": "POP", + "source": 6 + }, + { + "begin": 6856, + "end": 7176, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 6856, + "end": 7176, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 6856, + "end": 7176, + "name": "POP", + "source": 6 + }, + { + "begin": 6856, + "end": 7176, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 7182, + "end": 7362, + "name": "tag", + "source": 6, + "value": "225" + }, + { + "begin": 7182, + "end": 7362, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7230, + "end": 7307, + "name": "PUSH", + "source": 6, + "value": "4E487B7100000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 7227, + "end": 7228, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 7220, + "end": 7308, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 7327, + "end": 7331, + "name": "PUSH", + "source": 6, + "value": "11" + }, + { + "begin": 7324, + "end": 7325, + "name": "PUSH", + "source": 6, + "value": "4" + }, + { + "begin": 7317, + "end": 7332, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 7351, + "end": 7355, + "name": "PUSH", + "source": 6, + "value": "24" + }, + { + "begin": 7348, + "end": 7349, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 7341, + "end": 7356, + "name": "REVERT", + "source": 6 + }, + { + "begin": 7368, + "end": 7559, + "name": "tag", + "source": 6, + "value": "112" + }, + { + "begin": 7368, + "end": 7559, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7408, + "end": 7411, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 7427, + "end": 7447, + "name": "PUSH [tag]", + "source": 6, + "value": "328" + }, + { + "begin": 7445, + "end": 7446, + "name": "DUP3", + "source": 6 + }, + { + "begin": 7427, + "end": 7447, + "name": "PUSH [tag]", + "source": 6, + "value": "215" + }, + { + "begin": 7427, + "end": 7447, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 7427, + "end": 7447, + "name": "tag", + "source": 6, + "value": "328" + }, + { + "begin": 7427, + "end": 7447, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7422, + "end": 7447, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 7422, + "end": 7447, + "name": "POP", + "source": 6 + }, + { + "begin": 7461, + "end": 7481, + "name": "PUSH [tag]", + "source": 6, + "value": "329" + }, + { + "begin": 7479, + "end": 7480, + "name": "DUP4", + "source": 6 + }, + { + "begin": 7461, + "end": 7481, + "name": "PUSH [tag]", + "source": 6, + "value": "215" + }, + { + "begin": 7461, + "end": 7481, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 7461, + "end": 7481, + "name": "tag", + "source": 6, + "value": "329" + }, + { + "begin": 7461, + "end": 7481, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7456, + "end": 7481, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 7456, + "end": 7481, + "name": "POP", + "source": 6 + }, + { + "begin": 7504, + "end": 7505, + "name": "DUP3", + "source": 6 + }, + { + "begin": 7501, + "end": 7502, + "name": "DUP3", + "source": 6 + }, + { + "begin": 7497, + "end": 7506, + "name": "ADD", + "source": 6 + }, + { + "begin": 7490, + "end": 7506, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 7490, + "end": 7506, + "name": "POP", + "source": 6 + }, + { + "begin": 7525, + "end": 7528, + "name": "DUP1", + "source": 6 + }, + { + "begin": 7522, + "end": 7523, + "name": "DUP3", + "source": 6 + }, + { + "begin": 7519, + "end": 7529, + "name": "GT", + "source": 6 + }, + { + "begin": 7516, + "end": 7552, + "name": "ISZERO", + "source": 6 + }, + { + "begin": 7516, + "end": 7552, + "name": "PUSH [tag]", + "source": 6, + "value": "330" + }, + { + "begin": 7516, + "end": 7552, + "name": "JUMPI", + "source": 6 + }, + { + "begin": 7532, + "end": 7550, + "name": "PUSH [tag]", + "source": 6, + "value": "331" + }, + { + "begin": 7532, + "end": 7550, + "name": "PUSH [tag]", + "source": 6, + "value": "225" + }, + { + "begin": 7532, + "end": 7550, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 7532, + "end": 7550, + "name": "tag", + "source": 6, + "value": "331" + }, + { + "begin": 7532, + "end": 7550, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7516, + "end": 7552, + "name": "tag", + "source": 6, + "value": "330" + }, + { + "begin": 7516, + "end": 7552, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7368, + "end": 7559, + "name": "SWAP3", + "source": 6 + }, + { + "begin": 7368, + "end": 7559, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 7368, + "end": 7559, + "name": "POP", + "source": 6 + }, + { + "begin": 7368, + "end": 7559, + "name": "POP", + "source": 6 + }, + { + "begin": 7368, + "end": 7559, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 7565, + "end": 7789, + "name": "tag", + "source": 6, + "value": "226" + }, + { + "begin": 7565, + "end": 7789, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7705, + "end": 7739, + "name": "PUSH", + "source": 6, + "value": "45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77" + }, + { + "begin": 7701, + "end": 7702, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 7693, + "end": 7699, + "name": "DUP3", + "source": 6 + }, + { + "begin": 7689, + "end": 7703, + "name": "ADD", + "source": 6 + }, + { + "begin": 7682, + "end": 7740, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 7774, + "end": 7781, + "name": "PUSH", + "source": 6, + "value": "207A65726F000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 7769, + "end": 7771, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 7761, + "end": 7767, + "name": "DUP3", + "source": 6 + }, + { + "begin": 7757, + "end": 7772, + "name": "ADD", + "source": 6 + }, + { + "begin": 7750, + "end": 7782, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 7565, + "end": 7789, + "name": "POP", + "source": 6 + }, + { + "begin": 7565, + "end": 7789, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 7795, + "end": 8161, + "name": "tag", + "source": 6, + "value": "227" + }, + { + "begin": 7795, + "end": 8161, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7937, + "end": 7940, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 7958, + "end": 8025, + "name": "PUSH [tag]", + "source": 6, + "value": "334" + }, + { + "begin": 8022, + "end": 8024, + "name": "PUSH", + "source": 6, + "value": "25" + }, + { + "begin": 8017, + "end": 8020, + "name": "DUP4", + "source": 6 + }, + { + "begin": 7958, + "end": 8025, + "name": "PUSH [tag]", + "source": 6, + "value": "204" + }, + { + "begin": 7958, + "end": 8025, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 7958, + "end": 8025, + "name": "tag", + "source": 6, + "value": "334" + }, + { + "begin": 7958, + "end": 8025, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 7951, + "end": 8025, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 7951, + "end": 8025, + "name": "POP", + "source": 6 + }, + { + "begin": 8034, + "end": 8127, + "name": "PUSH [tag]", + "source": 6, + "value": "335" + }, + { + "begin": 8123, + "end": 8126, + "name": "DUP3", + "source": 6 + }, + { + "begin": 8034, + "end": 8127, + "name": "PUSH [tag]", + "source": 6, + "value": "226" + }, + { + "begin": 8034, + "end": 8127, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 8034, + "end": 8127, + "name": "tag", + "source": 6, + "value": "335" + }, + { + "begin": 8034, + "end": 8127, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 8152, + "end": 8154, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 8147, + "end": 8150, + "name": "DUP3", + "source": 6 + }, + { + "begin": 8143, + "end": 8155, + "name": "ADD", + "source": 6 + }, + { + "begin": 8136, + "end": 8155, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 8136, + "end": 8155, + "name": "POP", + "source": 6 + }, + { + "begin": 7795, + "end": 8161, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 7795, + "end": 8161, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 7795, + "end": 8161, + "name": "POP", + "source": 6 + }, + { + "begin": 7795, + "end": 8161, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 8167, + "end": 8586, + "name": "tag", + "source": 6, + "value": "137" + }, + { + "begin": 8167, + "end": 8586, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 8333, + "end": 8337, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 8371, + "end": 8373, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 8360, + "end": 8369, + "name": "DUP3", + "source": 6 + }, + { + "begin": 8356, + "end": 8374, + "name": "ADD", + "source": 6 + }, + { + "begin": 8348, + "end": 8374, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 8348, + "end": 8374, + "name": "POP", + "source": 6 + }, + { + "begin": 8420, + "end": 8429, + "name": "DUP2", + "source": 6 + }, + { + "begin": 8414, + "end": 8418, + "name": "DUP2", + "source": 6 + }, + { + "begin": 8410, + "end": 8430, + "name": "SUB", + "source": 6 + }, + { + "begin": 8406, + "end": 8407, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 8395, + "end": 8404, + "name": "DUP4", + "source": 6 + }, + { + "begin": 8391, + "end": 8408, + "name": "ADD", + "source": 6 + }, + { + "begin": 8384, + "end": 8431, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 8448, + "end": 8579, + "name": "PUSH [tag]", + "source": 6, + "value": "337" + }, + { + "begin": 8574, + "end": 8578, + "name": "DUP2", + "source": 6 + }, + { + "begin": 8448, + "end": 8579, + "name": "PUSH [tag]", + "source": 6, + "value": "227" + }, + { + "begin": 8448, + "end": 8579, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 8448, + "end": 8579, + "name": "tag", + "source": 6, + "value": "337" + }, + { + "begin": 8448, + "end": 8579, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 8440, + "end": 8579, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 8440, + "end": 8579, + "name": "POP", + "source": 6 + }, + { + "begin": 8167, + "end": 8586, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 8167, + "end": 8586, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 8167, + "end": 8586, + "name": "POP", + "source": 6 + }, + { + "begin": 8167, + "end": 8586, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 8592, + "end": 8817, + "name": "tag", + "source": 6, + "value": "228" + }, + { + "begin": 8592, + "end": 8817, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 8732, + "end": 8766, + "name": "PUSH", + "source": 6, + "value": "4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061" + }, + { + "begin": 8728, + "end": 8729, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 8720, + "end": 8726, + "name": "DUP3", + "source": 6 + }, + { + "begin": 8716, + "end": 8730, + "name": "ADD", + "source": 6 + }, + { + "begin": 8709, + "end": 8767, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 8801, + "end": 8809, + "name": "PUSH", + "source": 6, + "value": "6464726573730000000000000000000000000000000000000000000000000000" + }, + { + "begin": 8796, + "end": 8798, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 8788, + "end": 8794, + "name": "DUP3", + "source": 6 + }, + { + "begin": 8784, + "end": 8799, + "name": "ADD", + "source": 6 + }, + { + "begin": 8777, + "end": 8810, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 8592, + "end": 8817, + "name": "POP", + "source": 6 + }, + { + "begin": 8592, + "end": 8817, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 8823, + "end": 9189, + "name": "tag", + "source": 6, + "value": "229" + }, + { + "begin": 8823, + "end": 9189, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 8965, + "end": 8968, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 8986, + "end": 9053, + "name": "PUSH [tag]", + "source": 6, + "value": "340" + }, + { + "begin": 9050, + "end": 9052, + "name": "PUSH", + "source": 6, + "value": "26" + }, + { + "begin": 9045, + "end": 9048, + "name": "DUP4", + "source": 6 + }, + { + "begin": 8986, + "end": 9053, + "name": "PUSH [tag]", + "source": 6, + "value": "204" + }, + { + "begin": 8986, + "end": 9053, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 8986, + "end": 9053, + "name": "tag", + "source": 6, + "value": "340" + }, + { + "begin": 8986, + "end": 9053, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 8979, + "end": 9053, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 8979, + "end": 9053, + "name": "POP", + "source": 6 + }, + { + "begin": 9062, + "end": 9155, + "name": "PUSH [tag]", + "source": 6, + "value": "341" + }, + { + "begin": 9151, + "end": 9154, + "name": "DUP3", + "source": 6 + }, + { + "begin": 9062, + "end": 9155, + "name": "PUSH [tag]", + "source": 6, + "value": "228" + }, + { + "begin": 9062, + "end": 9155, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 9062, + "end": 9155, + "name": "tag", + "source": 6, + "value": "341" + }, + { + "begin": 9062, + "end": 9155, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 9180, + "end": 9182, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 9175, + "end": 9178, + "name": "DUP3", + "source": 6 + }, + { + "begin": 9171, + "end": 9183, + "name": "ADD", + "source": 6 + }, + { + "begin": 9164, + "end": 9183, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 9164, + "end": 9183, + "name": "POP", + "source": 6 + }, + { + "begin": 8823, + "end": 9189, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 8823, + "end": 9189, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 8823, + "end": 9189, + "name": "POP", + "source": 6 + }, + { + "begin": 8823, + "end": 9189, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 9195, + "end": 9614, + "name": "tag", + "source": 6, + "value": "153" + }, + { + "begin": 9195, + "end": 9614, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 9361, + "end": 9365, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 9399, + "end": 9401, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 9388, + "end": 9397, + "name": "DUP3", + "source": 6 + }, + { + "begin": 9384, + "end": 9402, + "name": "ADD", + "source": 6 + }, + { + "begin": 9376, + "end": 9402, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 9376, + "end": 9402, + "name": "POP", + "source": 6 + }, + { + "begin": 9448, + "end": 9457, + "name": "DUP2", + "source": 6 + }, + { + "begin": 9442, + "end": 9446, + "name": "DUP2", + "source": 6 + }, + { + "begin": 9438, + "end": 9458, + "name": "SUB", + "source": 6 + }, + { + "begin": 9434, + "end": 9435, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 9423, + "end": 9432, + "name": "DUP4", + "source": 6 + }, + { + "begin": 9419, + "end": 9436, + "name": "ADD", + "source": 6 + }, + { + "begin": 9412, + "end": 9459, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 9476, + "end": 9607, + "name": "PUSH [tag]", + "source": 6, + "value": "343" + }, + { + "begin": 9602, + "end": 9606, + "name": "DUP2", + "source": 6 + }, + { + "begin": 9476, + "end": 9607, + "name": "PUSH [tag]", + "source": 6, + "value": "229" + }, + { + "begin": 9476, + "end": 9607, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 9476, + "end": 9607, + "name": "tag", + "source": 6, + "value": "343" + }, + { + "begin": 9476, + "end": 9607, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 9468, + "end": 9607, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 9468, + "end": 9607, + "name": "POP", + "source": 6 + }, + { + "begin": 9195, + "end": 9614, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 9195, + "end": 9614, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 9195, + "end": 9614, + "name": "POP", + "source": 6 + }, + { + "begin": 9195, + "end": 9614, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 9620, + "end": 9843, + "name": "tag", + "source": 6, + "value": "230" + }, + { + "begin": 9620, + "end": 9843, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 9760, + "end": 9794, + "name": "PUSH", + "source": 6, + "value": "45524332303A20617070726F76652066726F6D20746865207A65726F20616464" + }, + { + "begin": 9756, + "end": 9757, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 9748, + "end": 9754, + "name": "DUP3", + "source": 6 + }, + { + "begin": 9744, + "end": 9758, + "name": "ADD", + "source": 6 + }, + { + "begin": 9737, + "end": 9795, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 9829, + "end": 9835, + "name": "PUSH", + "source": 6, + "value": "7265737300000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 9824, + "end": 9826, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 9816, + "end": 9822, + "name": "DUP3", + "source": 6 + }, + { + "begin": 9812, + "end": 9827, + "name": "ADD", + "source": 6 + }, + { + "begin": 9805, + "end": 9836, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 9620, + "end": 9843, + "name": "POP", + "source": 6 + }, + { + "begin": 9620, + "end": 9843, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 9849, + "end": 10215, + "name": "tag", + "source": 6, + "value": "231" + }, + { + "begin": 9849, + "end": 10215, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 9991, + "end": 9994, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 10012, + "end": 10079, + "name": "PUSH [tag]", + "source": 6, + "value": "346" + }, + { + "begin": 10076, + "end": 10078, + "name": "PUSH", + "source": 6, + "value": "24" + }, + { + "begin": 10071, + "end": 10074, + "name": "DUP4", + "source": 6 + }, + { + "begin": 10012, + "end": 10079, + "name": "PUSH [tag]", + "source": 6, + "value": "204" + }, + { + "begin": 10012, + "end": 10079, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 10012, + "end": 10079, + "name": "tag", + "source": 6, + "value": "346" + }, + { + "begin": 10012, + "end": 10079, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 10005, + "end": 10079, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 10005, + "end": 10079, + "name": "POP", + "source": 6 + }, + { + "begin": 10088, + "end": 10181, + "name": "PUSH [tag]", + "source": 6, + "value": "347" + }, + { + "begin": 10177, + "end": 10180, + "name": "DUP3", + "source": 6 + }, + { + "begin": 10088, + "end": 10181, + "name": "PUSH [tag]", + "source": 6, + "value": "230" + }, + { + "begin": 10088, + "end": 10181, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 10088, + "end": 10181, + "name": "tag", + "source": 6, + "value": "347" + }, + { + "begin": 10088, + "end": 10181, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 10206, + "end": 10208, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 10201, + "end": 10204, + "name": "DUP3", + "source": 6 + }, + { + "begin": 10197, + "end": 10209, + "name": "ADD", + "source": 6 + }, + { + "begin": 10190, + "end": 10209, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 10190, + "end": 10209, + "name": "POP", + "source": 6 + }, + { + "begin": 9849, + "end": 10215, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 9849, + "end": 10215, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 9849, + "end": 10215, + "name": "POP", + "source": 6 + }, + { + "begin": 9849, + "end": 10215, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 10221, + "end": 10640, + "name": "tag", + "source": 6, + "value": "159" + }, + { + "begin": 10221, + "end": 10640, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 10387, + "end": 10391, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 10425, + "end": 10427, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 10414, + "end": 10423, + "name": "DUP3", + "source": 6 + }, + { + "begin": 10410, + "end": 10428, + "name": "ADD", + "source": 6 + }, + { + "begin": 10402, + "end": 10428, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 10402, + "end": 10428, + "name": "POP", + "source": 6 + }, + { + "begin": 10474, + "end": 10483, + "name": "DUP2", + "source": 6 + }, + { + "begin": 10468, + "end": 10472, + "name": "DUP2", + "source": 6 + }, + { + "begin": 10464, + "end": 10484, + "name": "SUB", + "source": 6 + }, + { + "begin": 10460, + "end": 10461, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 10449, + "end": 10458, + "name": "DUP4", + "source": 6 + }, + { + "begin": 10445, + "end": 10462, + "name": "ADD", + "source": 6 + }, + { + "begin": 10438, + "end": 10485, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 10502, + "end": 10633, + "name": "PUSH [tag]", + "source": 6, + "value": "349" + }, + { + "begin": 10628, + "end": 10632, + "name": "DUP2", + "source": 6 + }, + { + "begin": 10502, + "end": 10633, + "name": "PUSH [tag]", + "source": 6, + "value": "231" + }, + { + "begin": 10502, + "end": 10633, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 10502, + "end": 10633, + "name": "tag", + "source": 6, + "value": "349" + }, + { + "begin": 10502, + "end": 10633, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 10494, + "end": 10633, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 10494, + "end": 10633, + "name": "POP", + "source": 6 + }, + { + "begin": 10221, + "end": 10640, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 10221, + "end": 10640, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 10221, + "end": 10640, + "name": "POP", + "source": 6 + }, + { + "begin": 10221, + "end": 10640, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 10646, + "end": 10867, + "name": "tag", + "source": 6, + "value": "232" + }, + { + "begin": 10646, + "end": 10867, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 10786, + "end": 10820, + "name": "PUSH", + "source": 6, + "value": "45524332303A20617070726F766520746F20746865207A65726F206164647265" + }, + { + "begin": 10782, + "end": 10783, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 10774, + "end": 10780, + "name": "DUP3", + "source": 6 + }, + { + "begin": 10770, + "end": 10784, + "name": "ADD", + "source": 6 + }, + { + "begin": 10763, + "end": 10821, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 10855, + "end": 10859, + "name": "PUSH", + "source": 6, + "value": "7373000000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 10850, + "end": 10852, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 10842, + "end": 10848, + "name": "DUP3", + "source": 6 + }, + { + "begin": 10838, + "end": 10853, + "name": "ADD", + "source": 6 + }, + { + "begin": 10831, + "end": 10860, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 10646, + "end": 10867, + "name": "POP", + "source": 6 + }, + { + "begin": 10646, + "end": 10867, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 10873, + "end": 11239, + "name": "tag", + "source": 6, + "value": "233" + }, + { + "begin": 10873, + "end": 11239, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 11015, + "end": 11018, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 11036, + "end": 11103, + "name": "PUSH [tag]", + "source": 6, + "value": "352" + }, + { + "begin": 11100, + "end": 11102, + "name": "PUSH", + "source": 6, + "value": "22" + }, + { + "begin": 11095, + "end": 11098, + "name": "DUP4", + "source": 6 + }, + { + "begin": 11036, + "end": 11103, + "name": "PUSH [tag]", + "source": 6, + "value": "204" + }, + { + "begin": 11036, + "end": 11103, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 11036, + "end": 11103, + "name": "tag", + "source": 6, + "value": "352" + }, + { + "begin": 11036, + "end": 11103, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 11029, + "end": 11103, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 11029, + "end": 11103, + "name": "POP", + "source": 6 + }, + { + "begin": 11112, + "end": 11205, + "name": "PUSH [tag]", + "source": 6, + "value": "353" + }, + { + "begin": 11201, + "end": 11204, + "name": "DUP3", + "source": 6 + }, + { + "begin": 11112, + "end": 11205, + "name": "PUSH [tag]", + "source": 6, + "value": "232" + }, + { + "begin": 11112, + "end": 11205, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 11112, + "end": 11205, + "name": "tag", + "source": 6, + "value": "353" + }, + { + "begin": 11112, + "end": 11205, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 11230, + "end": 11232, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 11225, + "end": 11228, + "name": "DUP3", + "source": 6 + }, + { + "begin": 11221, + "end": 11233, + "name": "ADD", + "source": 6 + }, + { + "begin": 11214, + "end": 11233, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 11214, + "end": 11233, + "name": "POP", + "source": 6 + }, + { + "begin": 10873, + "end": 11239, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 10873, + "end": 11239, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 10873, + "end": 11239, + "name": "POP", + "source": 6 + }, + { + "begin": 10873, + "end": 11239, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 11245, + "end": 11664, + "name": "tag", + "source": 6, + "value": "162" + }, + { + "begin": 11245, + "end": 11664, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 11411, + "end": 11415, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 11449, + "end": 11451, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 11438, + "end": 11447, + "name": "DUP3", + "source": 6 + }, + { + "begin": 11434, + "end": 11452, + "name": "ADD", + "source": 6 + }, + { + "begin": 11426, + "end": 11452, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 11426, + "end": 11452, + "name": "POP", + "source": 6 + }, + { + "begin": 11498, + "end": 11507, + "name": "DUP2", + "source": 6 + }, + { + "begin": 11492, + "end": 11496, + "name": "DUP2", + "source": 6 + }, + { + "begin": 11488, + "end": 11508, + "name": "SUB", + "source": 6 + }, + { + "begin": 11484, + "end": 11485, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 11473, + "end": 11482, + "name": "DUP4", + "source": 6 + }, + { + "begin": 11469, + "end": 11486, + "name": "ADD", + "source": 6 + }, + { + "begin": 11462, + "end": 11509, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 11526, + "end": 11657, + "name": "PUSH [tag]", + "source": 6, + "value": "355" + }, + { + "begin": 11652, + "end": 11656, + "name": "DUP2", + "source": 6 + }, + { + "begin": 11526, + "end": 11657, + "name": "PUSH [tag]", + "source": 6, + "value": "233" + }, + { + "begin": 11526, + "end": 11657, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 11526, + "end": 11657, + "name": "tag", + "source": 6, + "value": "355" + }, + { + "begin": 11526, + "end": 11657, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 11518, + "end": 11657, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 11518, + "end": 11657, + "name": "POP", + "source": 6 + }, + { + "begin": 11245, + "end": 11664, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 11245, + "end": 11664, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 11245, + "end": 11664, + "name": "POP", + "source": 6 + }, + { + "begin": 11245, + "end": 11664, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 11670, + "end": 11849, + "name": "tag", + "source": 6, + "value": "234" + }, + { + "begin": 11670, + "end": 11849, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 11810, + "end": 11841, + "name": "PUSH", + "source": 6, + "value": "45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000" + }, + { + "begin": 11806, + "end": 11807, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 11798, + "end": 11804, + "name": "DUP3", + "source": 6 + }, + { + "begin": 11794, + "end": 11808, + "name": "ADD", + "source": 6 + }, + { + "begin": 11787, + "end": 11842, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 11670, + "end": 11849, + "name": "POP", + "source": 6 + }, + { + "begin": 11670, + "end": 11849, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 11855, + "end": 12221, + "name": "tag", + "source": 6, + "value": "235" + }, + { + "begin": 11855, + "end": 12221, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 11997, + "end": 12000, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 12018, + "end": 12085, + "name": "PUSH [tag]", + "source": 6, + "value": "358" + }, + { + "begin": 12082, + "end": 12084, + "name": "PUSH", + "source": 6, + "value": "1D" + }, + { + "begin": 12077, + "end": 12080, + "name": "DUP4", + "source": 6 + }, + { + "begin": 12018, + "end": 12085, + "name": "PUSH [tag]", + "source": 6, + "value": "204" + }, + { + "begin": 12018, + "end": 12085, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 12018, + "end": 12085, + "name": "tag", + "source": 6, + "value": "358" + }, + { + "begin": 12018, + "end": 12085, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 12011, + "end": 12085, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 12011, + "end": 12085, + "name": "POP", + "source": 6 + }, + { + "begin": 12094, + "end": 12187, + "name": "PUSH [tag]", + "source": 6, + "value": "359" + }, + { + "begin": 12183, + "end": 12186, + "name": "DUP3", + "source": 6 + }, + { + "begin": 12094, + "end": 12187, + "name": "PUSH [tag]", + "source": 6, + "value": "234" + }, + { + "begin": 12094, + "end": 12187, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 12094, + "end": 12187, + "name": "tag", + "source": 6, + "value": "359" + }, + { + "begin": 12094, + "end": 12187, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 12212, + "end": 12214, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 12207, + "end": 12210, + "name": "DUP3", + "source": 6 + }, + { + "begin": 12203, + "end": 12215, + "name": "ADD", + "source": 6 + }, + { + "begin": 12196, + "end": 12215, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 12196, + "end": 12215, + "name": "POP", + "source": 6 + }, + { + "begin": 11855, + "end": 12221, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 11855, + "end": 12221, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 11855, + "end": 12221, + "name": "POP", + "source": 6 + }, + { + "begin": 11855, + "end": 12221, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 12227, + "end": 12646, + "name": "tag", + "source": 6, + "value": "169" + }, + { + "begin": 12227, + "end": 12646, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 12393, + "end": 12397, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 12431, + "end": 12433, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 12420, + "end": 12429, + "name": "DUP3", + "source": 6 + }, + { + "begin": 12416, + "end": 12434, + "name": "ADD", + "source": 6 + }, + { + "begin": 12408, + "end": 12434, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 12408, + "end": 12434, + "name": "POP", + "source": 6 + }, + { + "begin": 12480, + "end": 12489, + "name": "DUP2", + "source": 6 + }, + { + "begin": 12474, + "end": 12478, + "name": "DUP2", + "source": 6 + }, + { + "begin": 12470, + "end": 12490, + "name": "SUB", + "source": 6 + }, + { + "begin": 12466, + "end": 12467, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 12455, + "end": 12464, + "name": "DUP4", + "source": 6 + }, + { + "begin": 12451, + "end": 12468, + "name": "ADD", + "source": 6 + }, + { + "begin": 12444, + "end": 12491, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 12508, + "end": 12639, + "name": "PUSH [tag]", + "source": 6, + "value": "361" + }, + { + "begin": 12634, + "end": 12638, + "name": "DUP2", + "source": 6 + }, + { + "begin": 12508, + "end": 12639, + "name": "PUSH [tag]", + "source": 6, + "value": "235" + }, + { + "begin": 12508, + "end": 12639, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 12508, + "end": 12639, + "name": "tag", + "source": 6, + "value": "361" + }, + { + "begin": 12508, + "end": 12639, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 12500, + "end": 12639, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 12500, + "end": 12639, + "name": "POP", + "source": 6 + }, + { + "begin": 12227, + "end": 12646, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 12227, + "end": 12646, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 12227, + "end": 12646, + "name": "POP", + "source": 6 + }, + { + "begin": 12227, + "end": 12646, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 12652, + "end": 12876, + "name": "tag", + "source": 6, + "value": "236" + }, + { + "begin": 12652, + "end": 12876, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 12792, + "end": 12826, + "name": "PUSH", + "source": 6, + "value": "45524332303A207472616E736665722066726F6D20746865207A65726F206164" + }, + { + "begin": 12788, + "end": 12789, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 12780, + "end": 12786, + "name": "DUP3", + "source": 6 + }, + { + "begin": 12776, + "end": 12790, + "name": "ADD", + "source": 6 + }, + { + "begin": 12769, + "end": 12827, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 12861, + "end": 12868, + "name": "PUSH", + "source": 6, + "value": "6472657373000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 12856, + "end": 12858, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 12848, + "end": 12854, + "name": "DUP3", + "source": 6 + }, + { + "begin": 12844, + "end": 12859, + "name": "ADD", + "source": 6 + }, + { + "begin": 12837, + "end": 12869, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 12652, + "end": 12876, + "name": "POP", + "source": 6 + }, + { + "begin": 12652, + "end": 12876, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 12882, + "end": 13248, + "name": "tag", + "source": 6, + "value": "237" + }, + { + "begin": 12882, + "end": 13248, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 13024, + "end": 13027, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 13045, + "end": 13112, + "name": "PUSH [tag]", + "source": 6, + "value": "364" + }, + { + "begin": 13109, + "end": 13111, + "name": "PUSH", + "source": 6, + "value": "25" + }, + { + "begin": 13104, + "end": 13107, + "name": "DUP4", + "source": 6 + }, + { + "begin": 13045, + "end": 13112, + "name": "PUSH [tag]", + "source": 6, + "value": "204" + }, + { + "begin": 13045, + "end": 13112, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 13045, + "end": 13112, + "name": "tag", + "source": 6, + "value": "364" + }, + { + "begin": 13045, + "end": 13112, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 13038, + "end": 13112, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 13038, + "end": 13112, + "name": "POP", + "source": 6 + }, + { + "begin": 13121, + "end": 13214, + "name": "PUSH [tag]", + "source": 6, + "value": "365" + }, + { + "begin": 13210, + "end": 13213, + "name": "DUP3", + "source": 6 + }, + { + "begin": 13121, + "end": 13214, + "name": "PUSH [tag]", + "source": 6, + "value": "236" + }, + { + "begin": 13121, + "end": 13214, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 13121, + "end": 13214, + "name": "tag", + "source": 6, + "value": "365" + }, + { + "begin": 13121, + "end": 13214, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 13239, + "end": 13241, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 13234, + "end": 13237, + "name": "DUP3", + "source": 6 + }, + { + "begin": 13230, + "end": 13242, + "name": "ADD", + "source": 6 + }, + { + "begin": 13223, + "end": 13242, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 13223, + "end": 13242, + "name": "POP", + "source": 6 + }, + { + "begin": 12882, + "end": 13248, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 12882, + "end": 13248, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 12882, + "end": 13248, + "name": "POP", + "source": 6 + }, + { + "begin": 12882, + "end": 13248, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 13254, + "end": 13673, + "name": "tag", + "source": 6, + "value": "174" + }, + { + "begin": 13254, + "end": 13673, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 13420, + "end": 13424, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 13458, + "end": 13460, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 13447, + "end": 13456, + "name": "DUP3", + "source": 6 + }, + { + "begin": 13443, + "end": 13461, + "name": "ADD", + "source": 6 + }, + { + "begin": 13435, + "end": 13461, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 13435, + "end": 13461, + "name": "POP", + "source": 6 + }, + { + "begin": 13507, + "end": 13516, + "name": "DUP2", + "source": 6 + }, + { + "begin": 13501, + "end": 13505, + "name": "DUP2", + "source": 6 + }, + { + "begin": 13497, + "end": 13517, + "name": "SUB", + "source": 6 + }, + { + "begin": 13493, + "end": 13494, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 13482, + "end": 13491, + "name": "DUP4", + "source": 6 + }, + { + "begin": 13478, + "end": 13495, + "name": "ADD", + "source": 6 + }, + { + "begin": 13471, + "end": 13518, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 13535, + "end": 13666, + "name": "PUSH [tag]", + "source": 6, + "value": "367" + }, + { + "begin": 13661, + "end": 13665, + "name": "DUP2", + "source": 6 + }, + { + "begin": 13535, + "end": 13666, + "name": "PUSH [tag]", + "source": 6, + "value": "237" + }, + { + "begin": 13535, + "end": 13666, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 13535, + "end": 13666, + "name": "tag", + "source": 6, + "value": "367" + }, + { + "begin": 13535, + "end": 13666, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 13527, + "end": 13666, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 13527, + "end": 13666, + "name": "POP", + "source": 6 + }, + { + "begin": 13254, + "end": 13673, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 13254, + "end": 13673, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 13254, + "end": 13673, + "name": "POP", + "source": 6 + }, + { + "begin": 13254, + "end": 13673, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 13679, + "end": 13901, + "name": "tag", + "source": 6, + "value": "238" + }, + { + "begin": 13679, + "end": 13901, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 13819, + "end": 13853, + "name": "PUSH", + "source": 6, + "value": "45524332303A207472616E7366657220746F20746865207A65726F2061646472" + }, + { + "begin": 13815, + "end": 13816, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 13807, + "end": 13813, + "name": "DUP3", + "source": 6 + }, + { + "begin": 13803, + "end": 13817, + "name": "ADD", + "source": 6 + }, + { + "begin": 13796, + "end": 13854, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 13888, + "end": 13893, + "name": "PUSH", + "source": 6, + "value": "6573730000000000000000000000000000000000000000000000000000000000" + }, + { + "begin": 13883, + "end": 13885, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 13875, + "end": 13881, + "name": "DUP3", + "source": 6 + }, + { + "begin": 13871, + "end": 13886, + "name": "ADD", + "source": 6 + }, + { + "begin": 13864, + "end": 13894, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 13679, + "end": 13901, + "name": "POP", + "source": 6 + }, + { + "begin": 13679, + "end": 13901, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 13907, + "end": 14273, + "name": "tag", + "source": 6, + "value": "239" + }, + { + "begin": 13907, + "end": 14273, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 14049, + "end": 14052, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 14070, + "end": 14137, + "name": "PUSH [tag]", + "source": 6, + "value": "370" + }, + { + "begin": 14134, + "end": 14136, + "name": "PUSH", + "source": 6, + "value": "23" + }, + { + "begin": 14129, + "end": 14132, + "name": "DUP4", + "source": 6 + }, + { + "begin": 14070, + "end": 14137, + "name": "PUSH [tag]", + "source": 6, + "value": "204" + }, + { + "begin": 14070, + "end": 14137, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 14070, + "end": 14137, + "name": "tag", + "source": 6, + "value": "370" + }, + { + "begin": 14070, + "end": 14137, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 14063, + "end": 14137, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 14063, + "end": 14137, + "name": "POP", + "source": 6 + }, + { + "begin": 14146, + "end": 14239, + "name": "PUSH [tag]", + "source": 6, + "value": "371" + }, + { + "begin": 14235, + "end": 14238, + "name": "DUP3", + "source": 6 + }, + { + "begin": 14146, + "end": 14239, + "name": "PUSH [tag]", + "source": 6, + "value": "238" + }, + { + "begin": 14146, + "end": 14239, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 14146, + "end": 14239, + "name": "tag", + "source": 6, + "value": "371" + }, + { + "begin": 14146, + "end": 14239, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 14264, + "end": 14266, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 14259, + "end": 14262, + "name": "DUP3", + "source": 6 + }, + { + "begin": 14255, + "end": 14267, + "name": "ADD", + "source": 6 + }, + { + "begin": 14248, + "end": 14267, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 14248, + "end": 14267, + "name": "POP", + "source": 6 + }, + { + "begin": 13907, + "end": 14273, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 13907, + "end": 14273, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 13907, + "end": 14273, + "name": "POP", + "source": 6 + }, + { + "begin": 13907, + "end": 14273, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 14279, + "end": 14698, + "name": "tag", + "source": 6, + "value": "177" + }, + { + "begin": 14279, + "end": 14698, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 14445, + "end": 14449, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 14483, + "end": 14485, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 14472, + "end": 14481, + "name": "DUP3", + "source": 6 + }, + { + "begin": 14468, + "end": 14486, + "name": "ADD", + "source": 6 + }, + { + "begin": 14460, + "end": 14486, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 14460, + "end": 14486, + "name": "POP", + "source": 6 + }, + { + "begin": 14532, + "end": 14541, + "name": "DUP2", + "source": 6 + }, + { + "begin": 14526, + "end": 14530, + "name": "DUP2", + "source": 6 + }, + { + "begin": 14522, + "end": 14542, + "name": "SUB", + "source": 6 + }, + { + "begin": 14518, + "end": 14519, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 14507, + "end": 14516, + "name": "DUP4", + "source": 6 + }, + { + "begin": 14503, + "end": 14520, + "name": "ADD", + "source": 6 + }, + { + "begin": 14496, + "end": 14543, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 14560, + "end": 14691, + "name": "PUSH [tag]", + "source": 6, + "value": "373" + }, + { + "begin": 14686, + "end": 14690, + "name": "DUP2", + "source": 6 + }, + { + "begin": 14560, + "end": 14691, + "name": "PUSH [tag]", + "source": 6, + "value": "239" + }, + { + "begin": 14560, + "end": 14691, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 14560, + "end": 14691, + "name": "tag", + "source": 6, + "value": "373" + }, + { + "begin": 14560, + "end": 14691, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 14552, + "end": 14691, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 14552, + "end": 14691, + "name": "POP", + "source": 6 + }, + { + "begin": 14279, + "end": 14698, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 14279, + "end": 14698, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 14279, + "end": 14698, + "name": "POP", + "source": 6 + }, + { + "begin": 14279, + "end": 14698, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 14704, + "end": 14929, + "name": "tag", + "source": 6, + "value": "240" + }, + { + "begin": 14704, + "end": 14929, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 14844, + "end": 14878, + "name": "PUSH", + "source": 6, + "value": "45524332303A207472616E7366657220616D6F756E7420657863656564732062" + }, + { + "begin": 14840, + "end": 14841, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 14832, + "end": 14838, + "name": "DUP3", + "source": 6 + }, + { + "begin": 14828, + "end": 14842, + "name": "ADD", + "source": 6 + }, + { + "begin": 14821, + "end": 14879, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 14913, + "end": 14921, + "name": "PUSH", + "source": 6, + "value": "616C616E63650000000000000000000000000000000000000000000000000000" + }, + { + "begin": 14908, + "end": 14910, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 14900, + "end": 14906, + "name": "DUP3", + "source": 6 + }, + { + "begin": 14896, + "end": 14911, + "name": "ADD", + "source": 6 + }, + { + "begin": 14889, + "end": 14922, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 14704, + "end": 14929, + "name": "POP", + "source": 6 + }, + { + "begin": 14704, + "end": 14929, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 14935, + "end": 15301, + "name": "tag", + "source": 6, + "value": "241" + }, + { + "begin": 14935, + "end": 15301, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 15077, + "end": 15080, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 15098, + "end": 15165, + "name": "PUSH [tag]", + "source": 6, + "value": "376" + }, + { + "begin": 15162, + "end": 15164, + "name": "PUSH", + "source": 6, + "value": "26" + }, + { + "begin": 15157, + "end": 15160, + "name": "DUP4", + "source": 6 + }, + { + "begin": 15098, + "end": 15165, + "name": "PUSH [tag]", + "source": 6, + "value": "204" + }, + { + "begin": 15098, + "end": 15165, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 15098, + "end": 15165, + "name": "tag", + "source": 6, + "value": "376" + }, + { + "begin": 15098, + "end": 15165, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 15091, + "end": 15165, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 15091, + "end": 15165, + "name": "POP", + "source": 6 + }, + { + "begin": 15174, + "end": 15267, + "name": "PUSH [tag]", + "source": 6, + "value": "377" + }, + { + "begin": 15263, + "end": 15266, + "name": "DUP3", + "source": 6 + }, + { + "begin": 15174, + "end": 15267, + "name": "PUSH [tag]", + "source": 6, + "value": "240" + }, + { + "begin": 15174, + "end": 15267, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 15174, + "end": 15267, + "name": "tag", + "source": 6, + "value": "377" + }, + { + "begin": 15174, + "end": 15267, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 15292, + "end": 15294, + "name": "PUSH", + "source": 6, + "value": "40" + }, + { + "begin": 15287, + "end": 15290, + "name": "DUP3", + "source": 6 + }, + { + "begin": 15283, + "end": 15295, + "name": "ADD", + "source": 6 + }, + { + "begin": 15276, + "end": 15295, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 15276, + "end": 15295, + "name": "POP", + "source": 6 + }, + { + "begin": 14935, + "end": 15301, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 14935, + "end": 15301, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 14935, + "end": 15301, + "name": "POP", + "source": 6 + }, + { + "begin": 14935, + "end": 15301, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 15307, + "end": 15726, + "name": "tag", + "source": 6, + "value": "182" + }, + { + "begin": 15307, + "end": 15726, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 15473, + "end": 15477, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 15511, + "end": 15513, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 15500, + "end": 15509, + "name": "DUP3", + "source": 6 + }, + { + "begin": 15496, + "end": 15514, + "name": "ADD", + "source": 6 + }, + { + "begin": 15488, + "end": 15514, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 15488, + "end": 15514, + "name": "POP", + "source": 6 + }, + { + "begin": 15560, + "end": 15569, + "name": "DUP2", + "source": 6 + }, + { + "begin": 15554, + "end": 15558, + "name": "DUP2", + "source": 6 + }, + { + "begin": 15550, + "end": 15570, + "name": "SUB", + "source": 6 + }, + { + "begin": 15546, + "end": 15547, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 15535, + "end": 15544, + "name": "DUP4", + "source": 6 + }, + { + "begin": 15531, + "end": 15548, + "name": "ADD", + "source": 6 + }, + { + "begin": 15524, + "end": 15571, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 15588, + "end": 15719, + "name": "PUSH [tag]", + "source": 6, + "value": "379" + }, + { + "begin": 15714, + "end": 15718, + "name": "DUP2", + "source": 6 + }, + { + "begin": 15588, + "end": 15719, + "name": "PUSH [tag]", + "source": 6, + "value": "241" + }, + { + "begin": 15588, + "end": 15719, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 15588, + "end": 15719, + "name": "tag", + "source": 6, + "value": "379" + }, + { + "begin": 15588, + "end": 15719, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 15580, + "end": 15719, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 15580, + "end": 15719, + "name": "POP", + "source": 6 + }, + { + "begin": 15307, + "end": 15726, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 15307, + "end": 15726, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 15307, + "end": 15726, + "name": "POP", + "source": 6 + }, + { + "begin": 15307, + "end": 15726, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 15732, + "end": 15914, + "name": "tag", + "source": 6, + "value": "242" + }, + { + "begin": 15732, + "end": 15914, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 15872, + "end": 15906, + "name": "PUSH", + "source": 6, + "value": "4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572" + }, + { + "begin": 15868, + "end": 15869, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 15860, + "end": 15866, + "name": "DUP3", + "source": 6 + }, + { + "begin": 15856, + "end": 15870, + "name": "ADD", + "source": 6 + }, + { + "begin": 15849, + "end": 15907, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 15732, + "end": 15914, + "name": "POP", + "source": 6 + }, + { + "begin": 15732, + "end": 15914, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 15920, + "end": 16286, + "name": "tag", + "source": 6, + "value": "243" + }, + { + "begin": 15920, + "end": 16286, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 16062, + "end": 16065, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 16083, + "end": 16150, + "name": "PUSH [tag]", + "source": 6, + "value": "382" + }, + { + "begin": 16147, + "end": 16149, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 16142, + "end": 16145, + "name": "DUP4", + "source": 6 + }, + { + "begin": 16083, + "end": 16150, + "name": "PUSH [tag]", + "source": 6, + "value": "204" + }, + { + "begin": 16083, + "end": 16150, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 16083, + "end": 16150, + "name": "tag", + "source": 6, + "value": "382" + }, + { + "begin": 16083, + "end": 16150, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 16076, + "end": 16150, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 16076, + "end": 16150, + "name": "POP", + "source": 6 + }, + { + "begin": 16159, + "end": 16252, + "name": "PUSH [tag]", + "source": 6, + "value": "383" + }, + { + "begin": 16248, + "end": 16251, + "name": "DUP3", + "source": 6 + }, + { + "begin": 16159, + "end": 16252, + "name": "PUSH [tag]", + "source": 6, + "value": "242" + }, + { + "begin": 16159, + "end": 16252, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 16159, + "end": 16252, + "name": "tag", + "source": 6, + "value": "383" + }, + { + "begin": 16159, + "end": 16252, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 16277, + "end": 16279, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 16272, + "end": 16275, + "name": "DUP3", + "source": 6 + }, + { + "begin": 16268, + "end": 16280, + "name": "ADD", + "source": 6 + }, + { + "begin": 16261, + "end": 16280, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 16261, + "end": 16280, + "name": "POP", + "source": 6 + }, + { + "begin": 15920, + "end": 16286, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 15920, + "end": 16286, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 15920, + "end": 16286, + "name": "POP", + "source": 6 + }, + { + "begin": 15920, + "end": 16286, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 16292, + "end": 16711, + "name": "tag", + "source": 6, + "value": "191" + }, + { + "begin": 16292, + "end": 16711, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 16458, + "end": 16462, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 16496, + "end": 16498, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 16485, + "end": 16494, + "name": "DUP3", + "source": 6 + }, + { + "begin": 16481, + "end": 16499, + "name": "ADD", + "source": 6 + }, + { + "begin": 16473, + "end": 16499, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 16473, + "end": 16499, + "name": "POP", + "source": 6 + }, + { + "begin": 16545, + "end": 16554, + "name": "DUP2", + "source": 6 + }, + { + "begin": 16539, + "end": 16543, + "name": "DUP2", + "source": 6 + }, + { + "begin": 16535, + "end": 16555, + "name": "SUB", + "source": 6 + }, + { + "begin": 16531, + "end": 16532, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 16520, + "end": 16529, + "name": "DUP4", + "source": 6 + }, + { + "begin": 16516, + "end": 16533, + "name": "ADD", + "source": 6 + }, + { + "begin": 16509, + "end": 16556, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 16573, + "end": 16704, + "name": "PUSH [tag]", + "source": 6, + "value": "385" + }, + { + "begin": 16699, + "end": 16703, + "name": "DUP2", + "source": 6 + }, + { + "begin": 16573, + "end": 16704, + "name": "PUSH [tag]", + "source": 6, + "value": "243" + }, + { + "begin": 16573, + "end": 16704, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 16573, + "end": 16704, + "name": "tag", + "source": 6, + "value": "385" + }, + { + "begin": 16573, + "end": 16704, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 16565, + "end": 16704, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 16565, + "end": 16704, + "name": "POP", + "source": 6 + }, + { + "begin": 16292, + "end": 16711, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 16292, + "end": 16711, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 16292, + "end": 16711, + "name": "POP", + "source": 6 + }, + { + "begin": 16292, + "end": 16711, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 16717, + "end": 16898, + "name": "tag", + "source": 6, + "value": "244" + }, + { + "begin": 16717, + "end": 16898, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 16857, + "end": 16890, + "name": "PUSH", + "source": 6, + "value": "45524332303A206D696E7420746F20746865207A65726F206164647265737300" + }, + { + "begin": 16853, + "end": 16854, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 16845, + "end": 16851, + "name": "DUP3", + "source": 6 + }, + { + "begin": 16841, + "end": 16855, + "name": "ADD", + "source": 6 + }, + { + "begin": 16834, + "end": 16891, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 16717, + "end": 16898, + "name": "POP", + "source": 6 + }, + { + "begin": 16717, + "end": 16898, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 16904, + "end": 17270, + "name": "tag", + "source": 6, + "value": "245" + }, + { + "begin": 16904, + "end": 17270, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 17046, + "end": 17049, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 17067, + "end": 17134, + "name": "PUSH [tag]", + "source": 6, + "value": "388" + }, + { + "begin": 17131, + "end": 17133, + "name": "PUSH", + "source": 6, + "value": "1F" + }, + { + "begin": 17126, + "end": 17129, + "name": "DUP4", + "source": 6 + }, + { + "begin": 17067, + "end": 17134, + "name": "PUSH [tag]", + "source": 6, + "value": "204" + }, + { + "begin": 17067, + "end": 17134, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 17067, + "end": 17134, + "name": "tag", + "source": 6, + "value": "388" + }, + { + "begin": 17067, + "end": 17134, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 17060, + "end": 17134, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 17060, + "end": 17134, + "name": "POP", + "source": 6 + }, + { + "begin": 17143, + "end": 17236, + "name": "PUSH [tag]", + "source": 6, + "value": "389" + }, + { + "begin": 17232, + "end": 17235, + "name": "DUP3", + "source": 6 + }, + { + "begin": 17143, + "end": 17236, + "name": "PUSH [tag]", + "source": 6, + "value": "244" + }, + { + "begin": 17143, + "end": 17236, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 17143, + "end": 17236, + "name": "tag", + "source": 6, + "value": "389" + }, + { + "begin": 17143, + "end": 17236, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 17261, + "end": 17263, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 17256, + "end": 17259, + "name": "DUP3", + "source": 6 + }, + { + "begin": 17252, + "end": 17264, + "name": "ADD", + "source": 6 + }, + { + "begin": 17245, + "end": 17264, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 17245, + "end": 17264, + "name": "POP", + "source": 6 + }, + { + "begin": 16904, + "end": 17270, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 16904, + "end": 17270, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 16904, + "end": 17270, + "name": "POP", + "source": 6 + }, + { + "begin": 16904, + "end": 17270, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 17276, + "end": 17695, + "name": "tag", + "source": 6, + "value": "195" + }, + { + "begin": 17276, + "end": 17695, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 17442, + "end": 17446, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 17480, + "end": 17482, + "name": "PUSH", + "source": 6, + "value": "20" + }, + { + "begin": 17469, + "end": 17478, + "name": "DUP3", + "source": 6 + }, + { + "begin": 17465, + "end": 17483, + "name": "ADD", + "source": 6 + }, + { + "begin": 17457, + "end": 17483, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 17457, + "end": 17483, + "name": "POP", + "source": 6 + }, + { + "begin": 17529, + "end": 17538, + "name": "DUP2", + "source": 6 + }, + { + "begin": 17523, + "end": 17527, + "name": "DUP2", + "source": 6 + }, + { + "begin": 17519, + "end": 17539, + "name": "SUB", + "source": 6 + }, + { + "begin": 17515, + "end": 17516, + "name": "PUSH", + "source": 6, + "value": "0" + }, + { + "begin": 17504, + "end": 17513, + "name": "DUP4", + "source": 6 + }, + { + "begin": 17500, + "end": 17517, + "name": "ADD", + "source": 6 + }, + { + "begin": 17493, + "end": 17540, + "name": "MSTORE", + "source": 6 + }, + { + "begin": 17557, + "end": 17688, + "name": "PUSH [tag]", + "source": 6, + "value": "391" + }, + { + "begin": 17683, + "end": 17687, + "name": "DUP2", + "source": 6 + }, + { + "begin": 17557, + "end": 17688, + "name": "PUSH [tag]", + "source": 6, + "value": "245" + }, + { + "begin": 17557, + "end": 17688, + "jumpType": "[in]", + "name": "JUMP", + "source": 6 + }, + { + "begin": 17557, + "end": 17688, + "name": "tag", + "source": 6, + "value": "391" + }, + { + "begin": 17557, + "end": 17688, + "name": "JUMPDEST", + "source": 6 + }, + { + "begin": 17549, + "end": 17688, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 17549, + "end": 17688, + "name": "POP", + "source": 6 + }, + { + "begin": 17276, + "end": 17695, + "name": "SWAP2", + "source": 6 + }, + { + "begin": 17276, + "end": 17695, + "name": "SWAP1", + "source": 6 + }, + { + "begin": 17276, + "end": 17695, + "name": "POP", + "source": 6 + }, + { + "begin": 17276, + "end": 17695, + "jumpType": "[out]", + "name": "JUMP", + "source": 6 + } + ] + } + }, + "sourceList": [ + "@openzeppelin/contracts/access/Ownable.sol", + "@openzeppelin/contracts/token/ERC20/ERC20.sol", + "@openzeppelin/contracts/token/ERC20/IERC20.sol", + "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol", + "@openzeppelin/contracts/utils/Context.sol", + "contracts/InsuranceContract.sol", + "#utility.yul" + ] + }, + "methodIdentifiers": { + "allowance(address,address)": "dd62ed3e", + "approve(address,uint256)": "095ea7b3", + "balanceOf(address)": "70a08231", + "decimals()": "313ce567", + "decreaseAllowance(address,uint256)": "a457c2d7", + "increaseAllowance(address,uint256)": "39509351", + "mint(address,uint256)": "40c10f19", + "name()": "06fdde03", + "owner()": "8da5cb5b", + "renounceOwnership()": "715018a6", + "symbol()": "95d89b41", + "totalSupply()": "18160ddd", + "transfer(address,uint256)": "a9059cbb", + "transferFrom(address,address,uint256)": "23b872dd", + "transferOwnership(address)": "f2fde38b", + "users(address)": "a87430ba" + } + }, + "metadata": "{\"compiler\":{\"version\":\"0.8.20+commit.a1b79de6\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"subtractedValue\",\"type\":\"uint256\"}],\"name\":\"decreaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"addedValue\",\"type\":\"uint256\"}],\"name\":\"increaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"mint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"users\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"userName\",\"type\":\"string\"},{\"internalType\":\"address\",\"name\":\"userAddress\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"userAge\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"userBalance\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"renounceOwnership()\":{\"details\":\"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.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`.\"},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/InsuranceContract.sol\":\"InsuranceContract\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0xba43b97fba0d32eb4254f6a5a297b39a19a247082a02d6e69349e071e2946218\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fc980984badf3984b6303b377711220e067722bbd6a135b24669ff5069ef9f32\",\"dweb:/ipfs/QmPHXMSXj99XjSVM21YsY6aNtLLjLVXDbyN76J5HQYvvrz\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0xa56ca923f70c1748830700250b19c61b70db9a683516dc5e216694a50445d99c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cac938788bc4be12101e59d45588b4e059579f4e61062e1cda8d6b06c0191b15\",\"dweb:/ipfs/QmV2JKCyjTVH3rkWNrfdJRhAT7tZ3usAN2XcnD4h53Mvih\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bd39944e8fc06be6dbe2dd1d8449b5336e23c6a7ba3e8e9ae5ae0f37f35283f5\",\"dweb:/ipfs/QmPV3FGYjVwvKSgAXKUN3r9T9GwniZz83CxBpM7vyj2G53\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5a376d3dda2cb70536c0a45c208b29b34ac560c4cb4f513a42079f96ba47d2dd\",\"dweb:/ipfs/QmZQg6gn1sUpM8wHzwNvSnihumUCAhxD119MpXeKp8B9s8\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]},\"contracts/InsuranceContract.sol\":{\"keccak256\":\"0x7505869f0b6e48e69049ba3a44b5baf9ff76283df389cf063f476bd52c442a99\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://630369b706030bd91d2908a478a04e520324faae05b4b519981393ecf2113d32\",\"dweb:/ipfs/QmSjeW7VX6FoFzoz4MVxQubA8GKUfiDrjPJ2uhdAd9Jhe2\"]}},\"version\":1}", + "storageLayout": { + "storage": [ + { + "astId": 128, + "contract": "contracts/InsuranceContract.sol:InsuranceContract", + "label": "_balances", + "offset": 0, + "slot": "0", + "type": "t_mapping(t_address,t_uint256)" + }, + { + "astId": 134, + "contract": "contracts/InsuranceContract.sol:InsuranceContract", + "label": "_allowances", + "offset": 0, + "slot": "1", + "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))" + }, + { + "astId": 136, + "contract": "contracts/InsuranceContract.sol:InsuranceContract", + "label": "_totalSupply", + "offset": 0, + "slot": "2", + "type": "t_uint256" + }, + { + "astId": 138, + "contract": "contracts/InsuranceContract.sol:InsuranceContract", + "label": "_name", + "offset": 0, + "slot": "3", + "type": "t_string_storage" + }, + { + "astId": 140, + "contract": "contracts/InsuranceContract.sol:InsuranceContract", + "label": "_symbol", + "offset": 0, + "slot": "4", + "type": "t_string_storage" + }, + { + "astId": 7, + "contract": "contracts/InsuranceContract.sol:InsuranceContract", + "label": "_owner", + "offset": 0, + "slot": "5", + "type": "t_address" + }, + { + "astId": 834, + "contract": "contracts/InsuranceContract.sol:InsuranceContract", + "label": "userAddress", + "offset": 0, + "slot": "6", + "type": "t_address" + }, + { + "astId": 862, + "contract": "contracts/InsuranceContract.sol:InsuranceContract", + "label": "users", + "offset": 0, + "slot": "7", + "type": "t_mapping(t_address,t_struct(User)871_storage)" + } + ], + "types": { + "t_address": { + "encoding": "inplace", + "label": "address", + "numberOfBytes": "20" + }, + "t_mapping(t_address,t_mapping(t_address,t_uint256))": { + "encoding": "mapping", + "key": "t_address", + "label": "mapping(address => mapping(address => uint256))", + "numberOfBytes": "32", + "value": "t_mapping(t_address,t_uint256)" + }, + "t_mapping(t_address,t_struct(User)871_storage)": { + "encoding": "mapping", + "key": "t_address", + "label": "mapping(address => struct InsuranceContract.User)", + "numberOfBytes": "32", + "value": "t_struct(User)871_storage" + }, + "t_mapping(t_address,t_uint256)": { + "encoding": "mapping", + "key": "t_address", + "label": "mapping(address => uint256)", + "numberOfBytes": "32", + "value": "t_uint256" + }, + "t_string_storage": { + "encoding": "bytes", + "label": "string", + "numberOfBytes": "32" + }, + "t_struct(User)871_storage": { + "encoding": "inplace", + "label": "struct InsuranceContract.User", + "members": [ + { + "astId": 864, + "contract": "contracts/InsuranceContract.sol:InsuranceContract", + "label": "userName", + "offset": 0, + "slot": "0", + "type": "t_string_storage" + }, + { + "astId": 866, + "contract": "contracts/InsuranceContract.sol:InsuranceContract", + "label": "userAddress", + "offset": 0, + "slot": "1", + "type": "t_address" + }, + { + "astId": 868, + "contract": "contracts/InsuranceContract.sol:InsuranceContract", + "label": "userAge", + "offset": 0, + "slot": "2", + "type": "t_uint256" + }, + { + "astId": 870, + "contract": "contracts/InsuranceContract.sol:InsuranceContract", + "label": "userBalance", + "offset": 0, + "slot": "3", + "type": "t_uint256" + } + ], + "numberOfBytes": "128" + }, + "t_uint256": { + "encoding": "inplace", + "label": "uint256", + "numberOfBytes": "32" + } + } + }, + "userdoc": { + "kind": "user", + "methods": {}, + "version": 1 + } + } + } + }, + "sources": { + "@openzeppelin/contracts/access/Ownable.sol": { + "ast": { + "absolutePath": "@openzeppelin/contracts/access/Ownable.sol", + "exportedSymbols": { + "Context": [ + 824 + ], + "Ownable": [ + 112 + ] + }, + "id": 113, + "license": "MIT", + "nodeType": "SourceUnit", + "nodes": [ + { + "id": 1, + "literals": [ + "solidity", + "^", + "0.8", + ".0" + ], + "nodeType": "PragmaDirective", + "src": "102:23:0" + }, + { + "absolutePath": "@openzeppelin/contracts/utils/Context.sol", + "file": "../utils/Context.sol", + "id": 2, + "nameLocation": "-1:-1:-1", + "nodeType": "ImportDirective", + "scope": 113, + "sourceUnit": 825, + "src": "127:30:0", + "symbolAliases": [], + "unitAlias": "" + }, + { + "abstract": true, + "baseContracts": [ + { + "baseName": { + "id": 4, + "name": "Context", + "nameLocations": [ + "683:7:0" + ], + "nodeType": "IdentifierPath", + "referencedDeclaration": 824, + "src": "683:7:0" + }, + "id": 5, + "nodeType": "InheritanceSpecifier", + "src": "683:7:0" + } + ], + "canonicalName": "Ownable", + "contractDependencies": [], + "contractKind": "contract", + "documentation": { + "id": 3, + "nodeType": "StructuredDocumentation", + "src": "159:494:0", + "text": " @dev Contract module which provides a basic access control mechanism, where\n there is an account (an owner) that can be granted exclusive access to\n specific functions.\n By default, the owner account will be the one that deploys the contract. This\n can later be changed with {transferOwnership}.\n This module is used through inheritance. It will make available the modifier\n `onlyOwner`, which can be applied to your functions to restrict their use to\n the owner." + }, + "fullyImplemented": true, + "id": 112, + "linearizedBaseContracts": [ + 112, + 824 + ], + "name": "Ownable", + "nameLocation": "672:7:0", + "nodeType": "ContractDefinition", + "nodes": [ + { + "constant": false, + "id": 7, + "mutability": "mutable", + "name": "_owner", + "nameLocation": "713:6:0", + "nodeType": "VariableDeclaration", + "scope": 112, + "src": "697:22:0", + "stateVariable": true, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 6, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "697:7:0", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "private" + }, + { + "anonymous": false, + "eventSelector": "8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "id": 13, + "name": "OwnershipTransferred", + "nameLocation": "732:20:0", + "nodeType": "EventDefinition", + "parameters": { + "id": 12, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 9, + "indexed": true, + "mutability": "mutable", + "name": "previousOwner", + "nameLocation": "769:13:0", + "nodeType": "VariableDeclaration", + "scope": 13, + "src": "753:29:0", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 8, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "753:7:0", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 11, + "indexed": true, + "mutability": "mutable", + "name": "newOwner", + "nameLocation": "800:8:0", + "nodeType": "VariableDeclaration", + "scope": 13, + "src": "784:24:0", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 10, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "784:7:0", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + } + ], + "src": "752:57:0" + }, + "src": "726:84:0" + }, + { + "body": { + "id": 22, + "nodeType": "Block", + "src": "926:49:0", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [], + "expression": { + "argumentTypes": [], + "id": 18, + "name": "_msgSender", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 814, + "src": "955:10:0", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$", + "typeString": "function () view returns (address)" + } + }, + "id": 19, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "955:12:0", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + } + ], + "id": 17, + "name": "_transferOwnership", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 111, + "src": "936:18:0", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$", + "typeString": "function (address)" + } + }, + "id": 20, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "936:32:0", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 21, + "nodeType": "ExpressionStatement", + "src": "936:32:0" + } + ] + }, + "documentation": { + "id": 14, + "nodeType": "StructuredDocumentation", + "src": "816:91:0", + "text": " @dev Initializes the contract setting the deployer as the initial owner." + }, + "id": 23, + "implemented": true, + "kind": "constructor", + "modifiers": [], + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 15, + "nodeType": "ParameterList", + "parameters": [], + "src": "923:2:0" + }, + "returnParameters": { + "id": 16, + "nodeType": "ParameterList", + "parameters": [], + "src": "926:0:0" + }, + "scope": 112, + "src": "912:63:0", + "stateMutability": "nonpayable", + "virtual": false, + "visibility": "internal" + }, + { + "body": { + "id": 30, + "nodeType": "Block", + "src": "1084:41:0", + "statements": [ + { + "expression": { + "arguments": [], + "expression": { + "argumentTypes": [], + "id": 26, + "name": "_checkOwner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 54, + "src": "1094:11:0", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_view$__$returns$__$", + "typeString": "function () view" + } + }, + "id": 27, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "1094:13:0", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 28, + "nodeType": "ExpressionStatement", + "src": "1094:13:0" + }, + { + "id": 29, + "nodeType": "PlaceholderStatement", + "src": "1117:1:0" + } + ] + }, + "documentation": { + "id": 24, + "nodeType": "StructuredDocumentation", + "src": "981:77:0", + "text": " @dev Throws if called by any account other than the owner." + }, + "id": 31, + "name": "onlyOwner", + "nameLocation": "1072:9:0", + "nodeType": "ModifierDefinition", + "parameters": { + "id": 25, + "nodeType": "ParameterList", + "parameters": [], + "src": "1081:2:0" + }, + "src": "1063:62:0", + "virtual": false, + "visibility": "internal" + }, + { + "body": { + "id": 39, + "nodeType": "Block", + "src": "1256:30:0", + "statements": [ + { + "expression": { + "id": 37, + "name": "_owner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 7, + "src": "1273:6:0", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "functionReturnParameters": 36, + "id": 38, + "nodeType": "Return", + "src": "1266:13:0" + } + ] + }, + "documentation": { + "id": 32, + "nodeType": "StructuredDocumentation", + "src": "1131:65:0", + "text": " @dev Returns the address of the current owner." + }, + "functionSelector": "8da5cb5b", + "id": 40, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "owner", + "nameLocation": "1210:5:0", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 33, + "nodeType": "ParameterList", + "parameters": [], + "src": "1215:2:0" + }, + "returnParameters": { + "id": 36, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 35, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 40, + "src": "1247:7:0", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 34, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "1247:7:0", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + } + ], + "src": "1246:9:0" + }, + "scope": 112, + "src": "1201:85:0", + "stateMutability": "view", + "virtual": true, + "visibility": "public" + }, + { + "body": { + "id": 53, + "nodeType": "Block", + "src": "1404:85:0", + "statements": [ + { + "expression": { + "arguments": [ + { + "commonType": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "id": 49, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftExpression": { + "arguments": [], + "expression": { + "argumentTypes": [], + "id": 45, + "name": "owner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 40, + "src": "1422:5:0", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$", + "typeString": "function () view returns (address)" + } + }, + "id": 46, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "1422:7:0", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "BinaryOperation", + "operator": "==", + "rightExpression": { + "arguments": [], + "expression": { + "argumentTypes": [], + "id": 47, + "name": "_msgSender", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 814, + "src": "1433:10:0", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$", + "typeString": "function () view returns (address)" + } + }, + "id": 48, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "1433:12:0", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "src": "1422:23:0", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + { + "hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572", + "id": 50, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "string", + "lValueRequested": false, + "nodeType": "Literal", + "src": "1447:34:0", + "typeDescriptions": { + "typeIdentifier": "t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe", + "typeString": "literal_string \"Ownable: caller is not the owner\"" + }, + "value": "Ownable: caller is not the owner" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + { + "typeIdentifier": "t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe", + "typeString": "literal_string \"Ownable: caller is not the owner\"" + } + ], + "id": 44, + "name": "require", + "nodeType": "Identifier", + "overloadedDeclarations": [ + 4294967278, + 4294967278 + ], + "referencedDeclaration": 4294967278, + "src": "1414:7:0", + "typeDescriptions": { + "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$", + "typeString": "function (bool,string memory) pure" + } + }, + "id": 51, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "1414:68:0", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 52, + "nodeType": "ExpressionStatement", + "src": "1414:68:0" + } + ] + }, + "documentation": { + "id": 41, + "nodeType": "StructuredDocumentation", + "src": "1292:62:0", + "text": " @dev Throws if the sender is not the owner." + }, + "id": 54, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "_checkOwner", + "nameLocation": "1368:11:0", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 42, + "nodeType": "ParameterList", + "parameters": [], + "src": "1379:2:0" + }, + "returnParameters": { + "id": 43, + "nodeType": "ParameterList", + "parameters": [], + "src": "1404:0:0" + }, + "scope": 112, + "src": "1359:130:0", + "stateMutability": "view", + "virtual": true, + "visibility": "internal" + }, + { + "body": { + "id": 67, + "nodeType": "Block", + "src": "1878:47:0", + "statements": [ + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "hexValue": "30", + "id": 63, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "number", + "lValueRequested": false, + "nodeType": "Literal", + "src": "1915:1:0", + "typeDescriptions": { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + }, + "value": "0" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + } + ], + "id": 62, + "isConstant": false, + "isLValue": false, + "isPure": true, + "lValueRequested": false, + "nodeType": "ElementaryTypeNameExpression", + "src": "1907:7:0", + "typeDescriptions": { + "typeIdentifier": "t_type$_t_address_$", + "typeString": "type(address)" + }, + "typeName": { + "id": 61, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "1907:7:0", + "typeDescriptions": {} + } + }, + "id": 64, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "typeConversion", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "1907:10:0", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + } + ], + "id": 60, + "name": "_transferOwnership", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 111, + "src": "1888:18:0", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$", + "typeString": "function (address)" + } + }, + "id": 65, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "1888:30:0", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 66, + "nodeType": "ExpressionStatement", + "src": "1888:30:0" + } + ] + }, + "documentation": { + "id": 55, + "nodeType": "StructuredDocumentation", + "src": "1495:324:0", + "text": " @dev Leaves the contract without owner. It will not be possible to call\n `onlyOwner` functions. Can only be called by the current owner.\n NOTE: Renouncing ownership will leave the contract without an owner,\n thereby disabling any functionality that is only available to the owner." + }, + "functionSelector": "715018a6", + "id": 68, + "implemented": true, + "kind": "function", + "modifiers": [ + { + "id": 58, + "kind": "modifierInvocation", + "modifierName": { + "id": 57, + "name": "onlyOwner", + "nameLocations": [ + "1868:9:0" + ], + "nodeType": "IdentifierPath", + "referencedDeclaration": 31, + "src": "1868:9:0" + }, + "nodeType": "ModifierInvocation", + "src": "1868:9:0" + } + ], + "name": "renounceOwnership", + "nameLocation": "1833:17:0", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 56, + "nodeType": "ParameterList", + "parameters": [], + "src": "1850:2:0" + }, + "returnParameters": { + "id": 59, + "nodeType": "ParameterList", + "parameters": [], + "src": "1878:0:0" + }, + "scope": 112, + "src": "1824:101:0", + "stateMutability": "nonpayable", + "virtual": true, + "visibility": "public" + }, + { + "body": { + "id": 90, + "nodeType": "Block", + "src": "2144:128:0", + "statements": [ + { + "expression": { + "arguments": [ + { + "commonType": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "id": 82, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftExpression": { + "id": 77, + "name": "newOwner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 71, + "src": "2162:8:0", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "BinaryOperation", + "operator": "!=", + "rightExpression": { + "arguments": [ + { + "hexValue": "30", + "id": 80, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "number", + "lValueRequested": false, + "nodeType": "Literal", + "src": "2182:1:0", + "typeDescriptions": { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + }, + "value": "0" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + } + ], + "id": 79, + "isConstant": false, + "isLValue": false, + "isPure": true, + "lValueRequested": false, + "nodeType": "ElementaryTypeNameExpression", + "src": "2174:7:0", + "typeDescriptions": { + "typeIdentifier": "t_type$_t_address_$", + "typeString": "type(address)" + }, + "typeName": { + "id": 78, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "2174:7:0", + "typeDescriptions": {} + } + }, + "id": 81, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "typeConversion", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "2174:10:0", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "src": "2162:22:0", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + { + "hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373", + "id": 83, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "string", + "lValueRequested": false, + "nodeType": "Literal", + "src": "2186:40:0", + "typeDescriptions": { + "typeIdentifier": "t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe", + "typeString": "literal_string \"Ownable: new owner is the zero address\"" + }, + "value": "Ownable: new owner is the zero address" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + { + "typeIdentifier": "t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe", + "typeString": "literal_string \"Ownable: new owner is the zero address\"" + } + ], + "id": 76, + "name": "require", + "nodeType": "Identifier", + "overloadedDeclarations": [ + 4294967278, + 4294967278 + ], + "referencedDeclaration": 4294967278, + "src": "2154:7:0", + "typeDescriptions": { + "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$", + "typeString": "function (bool,string memory) pure" + } + }, + "id": 84, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "2154:73:0", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 85, + "nodeType": "ExpressionStatement", + "src": "2154:73:0" + }, + { + "expression": { + "arguments": [ + { + "id": 87, + "name": "newOwner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 71, + "src": "2256:8:0", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + } + ], + "id": 86, + "name": "_transferOwnership", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 111, + "src": "2237:18:0", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$", + "typeString": "function (address)" + } + }, + "id": 88, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "2237:28:0", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 89, + "nodeType": "ExpressionStatement", + "src": "2237:28:0" + } + ] + }, + "documentation": { + "id": 69, + "nodeType": "StructuredDocumentation", + "src": "1931:138:0", + "text": " @dev Transfers ownership of the contract to a new account (`newOwner`).\n Can only be called by the current owner." + }, + "functionSelector": "f2fde38b", + "id": 91, + "implemented": true, + "kind": "function", + "modifiers": [ + { + "id": 74, + "kind": "modifierInvocation", + "modifierName": { + "id": 73, + "name": "onlyOwner", + "nameLocations": [ + "2134:9:0" + ], + "nodeType": "IdentifierPath", + "referencedDeclaration": 31, + "src": "2134:9:0" + }, + "nodeType": "ModifierInvocation", + "src": "2134:9:0" + } + ], + "name": "transferOwnership", + "nameLocation": "2083:17:0", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 72, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 71, + "mutability": "mutable", + "name": "newOwner", + "nameLocation": "2109:8:0", + "nodeType": "VariableDeclaration", + "scope": 91, + "src": "2101:16:0", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 70, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "2101:7:0", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + } + ], + "src": "2100:18:0" + }, + "returnParameters": { + "id": 75, + "nodeType": "ParameterList", + "parameters": [], + "src": "2144:0:0" + }, + "scope": 112, + "src": "2074:198:0", + "stateMutability": "nonpayable", + "virtual": true, + "visibility": "public" + }, + { + "body": { + "id": 110, + "nodeType": "Block", + "src": "2489:124:0", + "statements": [ + { + "assignments": [ + 98 + ], + "declarations": [ + { + "constant": false, + "id": 98, + "mutability": "mutable", + "name": "oldOwner", + "nameLocation": "2507:8:0", + "nodeType": "VariableDeclaration", + "scope": 110, + "src": "2499:16:0", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 97, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "2499:7:0", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + } + ], + "id": 100, + "initialValue": { + "id": 99, + "name": "_owner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 7, + "src": "2518:6:0", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "VariableDeclarationStatement", + "src": "2499:25:0" + }, + { + "expression": { + "id": 103, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftHandSide": { + "id": 101, + "name": "_owner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 7, + "src": "2534:6:0", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "Assignment", + "operator": "=", + "rightHandSide": { + "id": 102, + "name": "newOwner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 94, + "src": "2543:8:0", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "src": "2534:17:0", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "id": 104, + "nodeType": "ExpressionStatement", + "src": "2534:17:0" + }, + { + "eventCall": { + "arguments": [ + { + "id": 106, + "name": "oldOwner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 98, + "src": "2587:8:0", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 107, + "name": "newOwner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 94, + "src": "2597:8:0", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_address", + "typeString": "address" + } + ], + "id": 105, + "name": "OwnershipTransferred", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 13, + "src": "2566:20:0", + "typeDescriptions": { + "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$returns$__$", + "typeString": "function (address,address)" + } + }, + "id": 108, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "2566:40:0", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 109, + "nodeType": "EmitStatement", + "src": "2561:45:0" + } + ] + }, + "documentation": { + "id": 92, + "nodeType": "StructuredDocumentation", + "src": "2278:143:0", + "text": " @dev Transfers ownership of the contract to a new account (`newOwner`).\n Internal function without access restriction." + }, + "id": 111, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "_transferOwnership", + "nameLocation": "2435:18:0", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 95, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 94, + "mutability": "mutable", + "name": "newOwner", + "nameLocation": "2462:8:0", + "nodeType": "VariableDeclaration", + "scope": 111, + "src": "2454:16:0", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 93, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "2454:7:0", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + } + ], + "src": "2453:18:0" + }, + "returnParameters": { + "id": 96, + "nodeType": "ParameterList", + "parameters": [], + "src": "2489:0:0" + }, + "scope": 112, + "src": "2426:187:0", + "stateMutability": "nonpayable", + "virtual": true, + "visibility": "internal" + } + ], + "scope": 113, + "src": "654:1961:0", + "usedErrors": [], + "usedEvents": [ + 13 + ] + } + ], + "src": "102:2514:0" + }, + "id": 0 + }, + "@openzeppelin/contracts/token/ERC20/ERC20.sol": { + "ast": { + "absolutePath": "@openzeppelin/contracts/token/ERC20/ERC20.sol", + "exportedSymbols": { + "Context": [ + 824 + ], + "ERC20": [ + 699 + ], + "IERC20": [ + 777 + ], + "IERC20Metadata": [ + 802 + ] + }, + "id": 700, + "license": "MIT", + "nodeType": "SourceUnit", + "nodes": [ + { + "id": 114, + "literals": [ + "solidity", + "^", + "0.8", + ".0" + ], + "nodeType": "PragmaDirective", + "src": "105:23:1" + }, + { + "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol", + "file": "./IERC20.sol", + "id": 115, + "nameLocation": "-1:-1:-1", + "nodeType": "ImportDirective", + "scope": 700, + "sourceUnit": 778, + "src": "130:22:1", + "symbolAliases": [], + "unitAlias": "" + }, + { + "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol", + "file": "./extensions/IERC20Metadata.sol", + "id": 116, + "nameLocation": "-1:-1:-1", + "nodeType": "ImportDirective", + "scope": 700, + "sourceUnit": 803, + "src": "153:41:1", + "symbolAliases": [], + "unitAlias": "" + }, + { + "absolutePath": "@openzeppelin/contracts/utils/Context.sol", + "file": "../../utils/Context.sol", + "id": 117, + "nameLocation": "-1:-1:-1", + "nodeType": "ImportDirective", + "scope": 700, + "sourceUnit": 825, + "src": "195:33:1", + "symbolAliases": [], + "unitAlias": "" + }, + { + "abstract": false, + "baseContracts": [ + { + "baseName": { + "id": 119, + "name": "Context", + "nameLocations": [ + "1550:7:1" + ], + "nodeType": "IdentifierPath", + "referencedDeclaration": 824, + "src": "1550:7:1" + }, + "id": 120, + "nodeType": "InheritanceSpecifier", + "src": "1550:7:1" + }, + { + "baseName": { + "id": 121, + "name": "IERC20", + "nameLocations": [ + "1559:6:1" + ], + "nodeType": "IdentifierPath", + "referencedDeclaration": 777, + "src": "1559:6:1" + }, + "id": 122, + "nodeType": "InheritanceSpecifier", + "src": "1559:6:1" + }, + { + "baseName": { + "id": 123, + "name": "IERC20Metadata", + "nameLocations": [ + "1567:14:1" + ], + "nodeType": "IdentifierPath", + "referencedDeclaration": 802, + "src": "1567:14:1" + }, + "id": 124, + "nodeType": "InheritanceSpecifier", + "src": "1567:14:1" + } + ], + "canonicalName": "ERC20", + "contractDependencies": [], + "contractKind": "contract", + "documentation": { + "id": 118, + "nodeType": "StructuredDocumentation", + "src": "230:1301:1", + "text": " @dev Implementation of the {IERC20} interface.\n This implementation is agnostic to the way tokens are created. This means\n that a supply mechanism has to be added in a derived contract using {_mint}.\n For a generic mechanism see {ERC20PresetMinterPauser}.\n TIP: For a detailed writeup see our guide\n https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n to implement supply mechanisms].\n The default value of {decimals} is 18. To change this, you should override\n this function so it returns a different value.\n We have followed general OpenZeppelin Contracts guidelines: functions revert\n instead returning `false` on failure. This behavior is nonetheless\n conventional and does not conflict with the expectations of ERC20\n applications.\n Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n This allows applications to reconstruct the allowance for all accounts just\n by listening to said events. Other implementations of the EIP may not emit\n these events, as it isn't required by the specification.\n Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n functions have been added to mitigate the well-known issues around setting\n allowances. See {IERC20-approve}." + }, + "fullyImplemented": true, + "id": 699, + "linearizedBaseContracts": [ + 699, + 802, + 777, + 824 + ], + "name": "ERC20", + "nameLocation": "1541:5:1", + "nodeType": "ContractDefinition", + "nodes": [ + { + "constant": false, + "id": 128, + "mutability": "mutable", + "name": "_balances", + "nameLocation": "1624:9:1", + "nodeType": "VariableDeclaration", + "scope": 699, + "src": "1588:45:1", + "stateVariable": true, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$", + "typeString": "mapping(address => uint256)" + }, + "typeName": { + "id": 127, + "keyName": "", + "keyNameLocation": "-1:-1:-1", + "keyType": { + "id": 125, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "1596:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "Mapping", + "src": "1588:27:1", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$", + "typeString": "mapping(address => uint256)" + }, + "valueName": "", + "valueNameLocation": "-1:-1:-1", + "valueType": { + "id": 126, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "1607:7:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + }, + "visibility": "private" + }, + { + "constant": false, + "id": 134, + "mutability": "mutable", + "name": "_allowances", + "nameLocation": "1696:11:1", + "nodeType": "VariableDeclaration", + "scope": 699, + "src": "1640:67:1", + "stateVariable": true, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$", + "typeString": "mapping(address => mapping(address => uint256))" + }, + "typeName": { + "id": 133, + "keyName": "", + "keyNameLocation": "-1:-1:-1", + "keyType": { + "id": 129, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "1648:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "Mapping", + "src": "1640:47:1", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$", + "typeString": "mapping(address => mapping(address => uint256))" + }, + "valueName": "", + "valueNameLocation": "-1:-1:-1", + "valueType": { + "id": 132, + "keyName": "", + "keyNameLocation": "-1:-1:-1", + "keyType": { + "id": 130, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "1667:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "Mapping", + "src": "1659:27:1", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$", + "typeString": "mapping(address => uint256)" + }, + "valueName": "", + "valueNameLocation": "-1:-1:-1", + "valueType": { + "id": 131, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "1678:7:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + } + }, + "visibility": "private" + }, + { + "constant": false, + "id": 136, + "mutability": "mutable", + "name": "_totalSupply", + "nameLocation": "1730:12:1", + "nodeType": "VariableDeclaration", + "scope": 699, + "src": "1714:28:1", + "stateVariable": true, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 135, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "1714:7:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "private" + }, + { + "constant": false, + "id": 138, + "mutability": "mutable", + "name": "_name", + "nameLocation": "1764:5:1", + "nodeType": "VariableDeclaration", + "scope": 699, + "src": "1749:20:1", + "stateVariable": true, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_string_storage", + "typeString": "string" + }, + "typeName": { + "id": 137, + "name": "string", + "nodeType": "ElementaryTypeName", + "src": "1749:6:1", + "typeDescriptions": { + "typeIdentifier": "t_string_storage_ptr", + "typeString": "string" + } + }, + "visibility": "private" + }, + { + "constant": false, + "id": 140, + "mutability": "mutable", + "name": "_symbol", + "nameLocation": "1790:7:1", + "nodeType": "VariableDeclaration", + "scope": 699, + "src": "1775:22:1", + "stateVariable": true, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_string_storage", + "typeString": "string" + }, + "typeName": { + "id": 139, + "name": "string", + "nodeType": "ElementaryTypeName", + "src": "1775:6:1", + "typeDescriptions": { + "typeIdentifier": "t_string_storage_ptr", + "typeString": "string" + } + }, + "visibility": "private" + }, + { + "body": { + "id": 156, + "nodeType": "Block", + "src": "2036:57:1", + "statements": [ + { + "expression": { + "id": 150, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftHandSide": { + "id": 148, + "name": "_name", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 138, + "src": "2046:5:1", + "typeDescriptions": { + "typeIdentifier": "t_string_storage", + "typeString": "string storage ref" + } + }, + "nodeType": "Assignment", + "operator": "=", + "rightHandSide": { + "id": 149, + "name": "name_", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 143, + "src": "2054:5:1", + "typeDescriptions": { + "typeIdentifier": "t_string_memory_ptr", + "typeString": "string memory" + } + }, + "src": "2046:13:1", + "typeDescriptions": { + "typeIdentifier": "t_string_storage", + "typeString": "string storage ref" + } + }, + "id": 151, + "nodeType": "ExpressionStatement", + "src": "2046:13:1" + }, + { + "expression": { + "id": 154, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftHandSide": { + "id": 152, + "name": "_symbol", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 140, + "src": "2069:7:1", + "typeDescriptions": { + "typeIdentifier": "t_string_storage", + "typeString": "string storage ref" + } + }, + "nodeType": "Assignment", + "operator": "=", + "rightHandSide": { + "id": 153, + "name": "symbol_", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 145, + "src": "2079:7:1", + "typeDescriptions": { + "typeIdentifier": "t_string_memory_ptr", + "typeString": "string memory" + } + }, + "src": "2069:17:1", + "typeDescriptions": { + "typeIdentifier": "t_string_storage", + "typeString": "string storage ref" + } + }, + "id": 155, + "nodeType": "ExpressionStatement", + "src": "2069:17:1" + } + ] + }, + "documentation": { + "id": 141, + "nodeType": "StructuredDocumentation", + "src": "1804:171:1", + "text": " @dev Sets the values for {name} and {symbol}.\n All two of these values are immutable: they can only be set once during\n construction." + }, + "id": 157, + "implemented": true, + "kind": "constructor", + "modifiers": [], + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 146, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 143, + "mutability": "mutable", + "name": "name_", + "nameLocation": "2006:5:1", + "nodeType": "VariableDeclaration", + "scope": 157, + "src": "1992:19:1", + "stateVariable": false, + "storageLocation": "memory", + "typeDescriptions": { + "typeIdentifier": "t_string_memory_ptr", + "typeString": "string" + }, + "typeName": { + "id": 142, + "name": "string", + "nodeType": "ElementaryTypeName", + "src": "1992:6:1", + "typeDescriptions": { + "typeIdentifier": "t_string_storage_ptr", + "typeString": "string" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 145, + "mutability": "mutable", + "name": "symbol_", + "nameLocation": "2027:7:1", + "nodeType": "VariableDeclaration", + "scope": 157, + "src": "2013:21:1", + "stateVariable": false, + "storageLocation": "memory", + "typeDescriptions": { + "typeIdentifier": "t_string_memory_ptr", + "typeString": "string" + }, + "typeName": { + "id": 144, + "name": "string", + "nodeType": "ElementaryTypeName", + "src": "2013:6:1", + "typeDescriptions": { + "typeIdentifier": "t_string_storage_ptr", + "typeString": "string" + } + }, + "visibility": "internal" + } + ], + "src": "1991:44:1" + }, + "returnParameters": { + "id": 147, + "nodeType": "ParameterList", + "parameters": [], + "src": "2036:0:1" + }, + "scope": 699, + "src": "1980:113:1", + "stateMutability": "nonpayable", + "virtual": false, + "visibility": "public" + }, + { + "baseFunctions": [ + 789 + ], + "body": { + "id": 166, + "nodeType": "Block", + "src": "2227:29:1", + "statements": [ + { + "expression": { + "id": 164, + "name": "_name", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 138, + "src": "2244:5:1", + "typeDescriptions": { + "typeIdentifier": "t_string_storage", + "typeString": "string storage ref" + } + }, + "functionReturnParameters": 163, + "id": 165, + "nodeType": "Return", + "src": "2237:12:1" + } + ] + }, + "documentation": { + "id": 158, + "nodeType": "StructuredDocumentation", + "src": "2099:54:1", + "text": " @dev Returns the name of the token." + }, + "functionSelector": "06fdde03", + "id": 167, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "name", + "nameLocation": "2167:4:1", + "nodeType": "FunctionDefinition", + "overrides": { + "id": 160, + "nodeType": "OverrideSpecifier", + "overrides": [], + "src": "2194:8:1" + }, + "parameters": { + "id": 159, + "nodeType": "ParameterList", + "parameters": [], + "src": "2171:2:1" + }, + "returnParameters": { + "id": 163, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 162, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 167, + "src": "2212:13:1", + "stateVariable": false, + "storageLocation": "memory", + "typeDescriptions": { + "typeIdentifier": "t_string_memory_ptr", + "typeString": "string" + }, + "typeName": { + "id": 161, + "name": "string", + "nodeType": "ElementaryTypeName", + "src": "2212:6:1", + "typeDescriptions": { + "typeIdentifier": "t_string_storage_ptr", + "typeString": "string" + } + }, + "visibility": "internal" + } + ], + "src": "2211:15:1" + }, + "scope": 699, + "src": "2158:98:1", + "stateMutability": "view", + "virtual": true, + "visibility": "public" + }, + { + "baseFunctions": [ + 795 + ], + "body": { + "id": 176, + "nodeType": "Block", + "src": "2440:31:1", + "statements": [ + { + "expression": { + "id": 174, + "name": "_symbol", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 140, + "src": "2457:7:1", + "typeDescriptions": { + "typeIdentifier": "t_string_storage", + "typeString": "string storage ref" + } + }, + "functionReturnParameters": 173, + "id": 175, + "nodeType": "Return", + "src": "2450:14:1" + } + ] + }, + "documentation": { + "id": 168, + "nodeType": "StructuredDocumentation", + "src": "2262:102:1", + "text": " @dev Returns the symbol of the token, usually a shorter version of the\n name." + }, + "functionSelector": "95d89b41", + "id": 177, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "symbol", + "nameLocation": "2378:6:1", + "nodeType": "FunctionDefinition", + "overrides": { + "id": 170, + "nodeType": "OverrideSpecifier", + "overrides": [], + "src": "2407:8:1" + }, + "parameters": { + "id": 169, + "nodeType": "ParameterList", + "parameters": [], + "src": "2384:2:1" + }, + "returnParameters": { + "id": 173, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 172, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 177, + "src": "2425:13:1", + "stateVariable": false, + "storageLocation": "memory", + "typeDescriptions": { + "typeIdentifier": "t_string_memory_ptr", + "typeString": "string" + }, + "typeName": { + "id": 171, + "name": "string", + "nodeType": "ElementaryTypeName", + "src": "2425:6:1", + "typeDescriptions": { + "typeIdentifier": "t_string_storage_ptr", + "typeString": "string" + } + }, + "visibility": "internal" + } + ], + "src": "2424:15:1" + }, + "scope": 699, + "src": "2369:102:1", + "stateMutability": "view", + "virtual": true, + "visibility": "public" + }, + { + "baseFunctions": [ + 801 + ], + "body": { + "id": 186, + "nodeType": "Block", + "src": "3169:26:1", + "statements": [ + { + "expression": { + "hexValue": "3138", + "id": 184, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "number", + "lValueRequested": false, + "nodeType": "Literal", + "src": "3186:2:1", + "typeDescriptions": { + "typeIdentifier": "t_rational_18_by_1", + "typeString": "int_const 18" + }, + "value": "18" + }, + "functionReturnParameters": 183, + "id": 185, + "nodeType": "Return", + "src": "3179:9:1" + } + ] + }, + "documentation": { + "id": 178, + "nodeType": "StructuredDocumentation", + "src": "2477:622:1", + "text": " @dev Returns the number of decimals used to get its user representation.\n For example, if `decimals` equals `2`, a balance of `505` tokens should\n be displayed to a user as `5.05` (`505 / 10 ** 2`).\n Tokens usually opt for a value of 18, imitating the relationship between\n Ether and Wei. This is the default value returned by this function, unless\n it's overridden.\n NOTE: This information is only used for _display_ purposes: it in\n no way affects any of the arithmetic of the contract, including\n {IERC20-balanceOf} and {IERC20-transfer}." + }, + "functionSelector": "313ce567", + "id": 187, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "decimals", + "nameLocation": "3113:8:1", + "nodeType": "FunctionDefinition", + "overrides": { + "id": 180, + "nodeType": "OverrideSpecifier", + "overrides": [], + "src": "3144:8:1" + }, + "parameters": { + "id": 179, + "nodeType": "ParameterList", + "parameters": [], + "src": "3121:2:1" + }, + "returnParameters": { + "id": 183, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 182, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 187, + "src": "3162:5:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint8", + "typeString": "uint8" + }, + "typeName": { + "id": 181, + "name": "uint8", + "nodeType": "ElementaryTypeName", + "src": "3162:5:1", + "typeDescriptions": { + "typeIdentifier": "t_uint8", + "typeString": "uint8" + } + }, + "visibility": "internal" + } + ], + "src": "3161:7:1" + }, + "scope": 699, + "src": "3104:91:1", + "stateMutability": "view", + "virtual": true, + "visibility": "public" + }, + { + "baseFunctions": [ + 726 + ], + "body": { + "id": 196, + "nodeType": "Block", + "src": "3325:36:1", + "statements": [ + { + "expression": { + "id": 194, + "name": "_totalSupply", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 136, + "src": "3342:12:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "functionReturnParameters": 193, + "id": 195, + "nodeType": "Return", + "src": "3335:19:1" + } + ] + }, + "documentation": { + "id": 188, + "nodeType": "StructuredDocumentation", + "src": "3201:49:1", + "text": " @dev See {IERC20-totalSupply}." + }, + "functionSelector": "18160ddd", + "id": 197, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "totalSupply", + "nameLocation": "3264:11:1", + "nodeType": "FunctionDefinition", + "overrides": { + "id": 190, + "nodeType": "OverrideSpecifier", + "overrides": [], + "src": "3298:8:1" + }, + "parameters": { + "id": 189, + "nodeType": "ParameterList", + "parameters": [], + "src": "3275:2:1" + }, + "returnParameters": { + "id": 193, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 192, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 197, + "src": "3316:7:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 191, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "3316:7:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "3315:9:1" + }, + "scope": 699, + "src": "3255:106:1", + "stateMutability": "view", + "virtual": true, + "visibility": "public" + }, + { + "baseFunctions": [ + 734 + ], + "body": { + "id": 210, + "nodeType": "Block", + "src": "3502:42:1", + "statements": [ + { + "expression": { + "baseExpression": { + "id": 206, + "name": "_balances", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 128, + "src": "3519:9:1", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$", + "typeString": "mapping(address => uint256)" + } + }, + "id": 208, + "indexExpression": { + "id": 207, + "name": "account", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 200, + "src": "3529:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "isConstant": false, + "isLValue": true, + "isPure": false, + "lValueRequested": false, + "nodeType": "IndexAccess", + "src": "3519:18:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "functionReturnParameters": 205, + "id": 209, + "nodeType": "Return", + "src": "3512:25:1" + } + ] + }, + "documentation": { + "id": 198, + "nodeType": "StructuredDocumentation", + "src": "3367:47:1", + "text": " @dev See {IERC20-balanceOf}." + }, + "functionSelector": "70a08231", + "id": 211, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "balanceOf", + "nameLocation": "3428:9:1", + "nodeType": "FunctionDefinition", + "overrides": { + "id": 202, + "nodeType": "OverrideSpecifier", + "overrides": [], + "src": "3475:8:1" + }, + "parameters": { + "id": 201, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 200, + "mutability": "mutable", + "name": "account", + "nameLocation": "3446:7:1", + "nodeType": "VariableDeclaration", + "scope": 211, + "src": "3438:15:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 199, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "3438:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + } + ], + "src": "3437:17:1" + }, + "returnParameters": { + "id": 205, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 204, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 211, + "src": "3493:7:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 203, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "3493:7:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "3492:9:1" + }, + "scope": 699, + "src": "3419:125:1", + "stateMutability": "view", + "virtual": true, + "visibility": "public" + }, + { + "baseFunctions": [ + 744 + ], + "body": { + "id": 235, + "nodeType": "Block", + "src": "3825:104:1", + "statements": [ + { + "assignments": [ + 223 + ], + "declarations": [ + { + "constant": false, + "id": 223, + "mutability": "mutable", + "name": "owner", + "nameLocation": "3843:5:1", + "nodeType": "VariableDeclaration", + "scope": 235, + "src": "3835:13:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 222, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "3835:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + } + ], + "id": 226, + "initialValue": { + "arguments": [], + "expression": { + "argumentTypes": [], + "id": 224, + "name": "_msgSender", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 814, + "src": "3851:10:1", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$", + "typeString": "function () view returns (address)" + } + }, + "id": 225, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "3851:12:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "VariableDeclarationStatement", + "src": "3835:28:1" + }, + { + "expression": { + "arguments": [ + { + "id": 228, + "name": "owner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 223, + "src": "3883:5:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 229, + "name": "to", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 214, + "src": "3890:2:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 230, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 216, + "src": "3894:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + ], + "id": 227, + "name": "_transfer", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 459, + "src": "3873:9:1", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$", + "typeString": "function (address,address,uint256)" + } + }, + "id": 231, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "3873:28:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 232, + "nodeType": "ExpressionStatement", + "src": "3873:28:1" + }, + { + "expression": { + "hexValue": "74727565", + "id": 233, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "bool", + "lValueRequested": false, + "nodeType": "Literal", + "src": "3918:4:1", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + "value": "true" + }, + "functionReturnParameters": 221, + "id": 234, + "nodeType": "Return", + "src": "3911:11:1" + } + ] + }, + "documentation": { + "id": 212, + "nodeType": "StructuredDocumentation", + "src": "3550:185:1", + "text": " @dev See {IERC20-transfer}.\n Requirements:\n - `to` cannot be the zero address.\n - the caller must have a balance of at least `amount`." + }, + "functionSelector": "a9059cbb", + "id": 236, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "transfer", + "nameLocation": "3749:8:1", + "nodeType": "FunctionDefinition", + "overrides": { + "id": 218, + "nodeType": "OverrideSpecifier", + "overrides": [], + "src": "3801:8:1" + }, + "parameters": { + "id": 217, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 214, + "mutability": "mutable", + "name": "to", + "nameLocation": "3766:2:1", + "nodeType": "VariableDeclaration", + "scope": 236, + "src": "3758:10:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 213, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "3758:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 216, + "mutability": "mutable", + "name": "amount", + "nameLocation": "3778:6:1", + "nodeType": "VariableDeclaration", + "scope": 236, + "src": "3770:14:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 215, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "3770:7:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "3757:28:1" + }, + "returnParameters": { + "id": 221, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 220, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 236, + "src": "3819:4:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + "typeName": { + "id": 219, + "name": "bool", + "nodeType": "ElementaryTypeName", + "src": "3819:4:1", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + "visibility": "internal" + } + ], + "src": "3818:6:1" + }, + "scope": 699, + "src": "3740:189:1", + "stateMutability": "nonpayable", + "virtual": true, + "visibility": "public" + }, + { + "baseFunctions": [ + 754 + ], + "body": { + "id": 253, + "nodeType": "Block", + "src": "4085:51:1", + "statements": [ + { + "expression": { + "baseExpression": { + "baseExpression": { + "id": 247, + "name": "_allowances", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 134, + "src": "4102:11:1", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$", + "typeString": "mapping(address => mapping(address => uint256))" + } + }, + "id": 249, + "indexExpression": { + "id": 248, + "name": "owner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 239, + "src": "4114:5:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "isConstant": false, + "isLValue": true, + "isPure": false, + "lValueRequested": false, + "nodeType": "IndexAccess", + "src": "4102:18:1", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$", + "typeString": "mapping(address => uint256)" + } + }, + "id": 251, + "indexExpression": { + "id": 250, + "name": "spender", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 241, + "src": "4121:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "isConstant": false, + "isLValue": true, + "isPure": false, + "lValueRequested": false, + "nodeType": "IndexAccess", + "src": "4102:27:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "functionReturnParameters": 246, + "id": 252, + "nodeType": "Return", + "src": "4095:34:1" + } + ] + }, + "documentation": { + "id": 237, + "nodeType": "StructuredDocumentation", + "src": "3935:47:1", + "text": " @dev See {IERC20-allowance}." + }, + "functionSelector": "dd62ed3e", + "id": 254, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "allowance", + "nameLocation": "3996:9:1", + "nodeType": "FunctionDefinition", + "overrides": { + "id": 243, + "nodeType": "OverrideSpecifier", + "overrides": [], + "src": "4058:8:1" + }, + "parameters": { + "id": 242, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 239, + "mutability": "mutable", + "name": "owner", + "nameLocation": "4014:5:1", + "nodeType": "VariableDeclaration", + "scope": 254, + "src": "4006:13:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 238, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "4006:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 241, + "mutability": "mutable", + "name": "spender", + "nameLocation": "4029:7:1", + "nodeType": "VariableDeclaration", + "scope": 254, + "src": "4021:15:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 240, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "4021:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + } + ], + "src": "4005:32:1" + }, + "returnParameters": { + "id": 246, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 245, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 254, + "src": "4076:7:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 244, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "4076:7:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "4075:9:1" + }, + "scope": 699, + "src": "3987:149:1", + "stateMutability": "view", + "virtual": true, + "visibility": "public" + }, + { + "baseFunctions": [ + 764 + ], + "body": { + "id": 278, + "nodeType": "Block", + "src": "4533:108:1", + "statements": [ + { + "assignments": [ + 266 + ], + "declarations": [ + { + "constant": false, + "id": 266, + "mutability": "mutable", + "name": "owner", + "nameLocation": "4551:5:1", + "nodeType": "VariableDeclaration", + "scope": 278, + "src": "4543:13:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 265, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "4543:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + } + ], + "id": 269, + "initialValue": { + "arguments": [], + "expression": { + "argumentTypes": [], + "id": 267, + "name": "_msgSender", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 814, + "src": "4559:10:1", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$", + "typeString": "function () view returns (address)" + } + }, + "id": 268, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "4559:12:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "VariableDeclarationStatement", + "src": "4543:28:1" + }, + { + "expression": { + "arguments": [ + { + "id": 271, + "name": "owner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 266, + "src": "4590:5:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 272, + "name": "spender", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 257, + "src": "4597:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 273, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 259, + "src": "4606:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + ], + "id": 270, + "name": "_approve", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 633, + "src": "4581:8:1", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$", + "typeString": "function (address,address,uint256)" + } + }, + "id": 274, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "4581:32:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 275, + "nodeType": "ExpressionStatement", + "src": "4581:32:1" + }, + { + "expression": { + "hexValue": "74727565", + "id": 276, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "bool", + "lValueRequested": false, + "nodeType": "Literal", + "src": "4630:4:1", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + "value": "true" + }, + "functionReturnParameters": 264, + "id": 277, + "nodeType": "Return", + "src": "4623:11:1" + } + ] + }, + "documentation": { + "id": 255, + "nodeType": "StructuredDocumentation", + "src": "4142:297:1", + "text": " @dev See {IERC20-approve}.\n NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on\n `transferFrom`. This is semantically equivalent to an infinite approval.\n Requirements:\n - `spender` cannot be the zero address." + }, + "functionSelector": "095ea7b3", + "id": 279, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "approve", + "nameLocation": "4453:7:1", + "nodeType": "FunctionDefinition", + "overrides": { + "id": 261, + "nodeType": "OverrideSpecifier", + "overrides": [], + "src": "4509:8:1" + }, + "parameters": { + "id": 260, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 257, + "mutability": "mutable", + "name": "spender", + "nameLocation": "4469:7:1", + "nodeType": "VariableDeclaration", + "scope": 279, + "src": "4461:15:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 256, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "4461:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 259, + "mutability": "mutable", + "name": "amount", + "nameLocation": "4486:6:1", + "nodeType": "VariableDeclaration", + "scope": 279, + "src": "4478:14:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 258, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "4478:7:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "4460:33:1" + }, + "returnParameters": { + "id": 264, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 263, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 279, + "src": "4527:4:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + "typeName": { + "id": 262, + "name": "bool", + "nodeType": "ElementaryTypeName", + "src": "4527:4:1", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + "visibility": "internal" + } + ], + "src": "4526:6:1" + }, + "scope": 699, + "src": "4444:197:1", + "stateMutability": "nonpayable", + "virtual": true, + "visibility": "public" + }, + { + "baseFunctions": [ + 776 + ], + "body": { + "id": 311, + "nodeType": "Block", + "src": "5306:153:1", + "statements": [ + { + "assignments": [ + 293 + ], + "declarations": [ + { + "constant": false, + "id": 293, + "mutability": "mutable", + "name": "spender", + "nameLocation": "5324:7:1", + "nodeType": "VariableDeclaration", + "scope": 311, + "src": "5316:15:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 292, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "5316:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + } + ], + "id": 296, + "initialValue": { + "arguments": [], + "expression": { + "argumentTypes": [], + "id": 294, + "name": "_msgSender", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 814, + "src": "5334:10:1", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$", + "typeString": "function () view returns (address)" + } + }, + "id": 295, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "5334:12:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "VariableDeclarationStatement", + "src": "5316:30:1" + }, + { + "expression": { + "arguments": [ + { + "id": 298, + "name": "from", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 282, + "src": "5372:4:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 299, + "name": "spender", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 293, + "src": "5378:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 300, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 286, + "src": "5387:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + ], + "id": 297, + "name": "_spendAllowance", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 676, + "src": "5356:15:1", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$", + "typeString": "function (address,address,uint256)" + } + }, + "id": 301, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "5356:38:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 302, + "nodeType": "ExpressionStatement", + "src": "5356:38:1" + }, + { + "expression": { + "arguments": [ + { + "id": 304, + "name": "from", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 282, + "src": "5414:4:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 305, + "name": "to", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 284, + "src": "5420:2:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 306, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 286, + "src": "5424:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + ], + "id": 303, + "name": "_transfer", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 459, + "src": "5404:9:1", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$", + "typeString": "function (address,address,uint256)" + } + }, + "id": 307, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "5404:27:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 308, + "nodeType": "ExpressionStatement", + "src": "5404:27:1" + }, + { + "expression": { + "hexValue": "74727565", + "id": 309, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "bool", + "lValueRequested": false, + "nodeType": "Literal", + "src": "5448:4:1", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + "value": "true" + }, + "functionReturnParameters": 291, + "id": 310, + "nodeType": "Return", + "src": "5441:11:1" + } + ] + }, + "documentation": { + "id": 280, + "nodeType": "StructuredDocumentation", + "src": "4647:551:1", + "text": " @dev See {IERC20-transferFrom}.\n Emits an {Approval} event indicating the updated allowance. This is not\n required by the EIP. See the note at the beginning of {ERC20}.\n NOTE: Does not update the allowance if the current allowance\n is the maximum `uint256`.\n Requirements:\n - `from` and `to` cannot be the zero address.\n - `from` must have a balance of at least `amount`.\n - the caller must have allowance for ``from``'s tokens of at least\n `amount`." + }, + "functionSelector": "23b872dd", + "id": 312, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "transferFrom", + "nameLocation": "5212:12:1", + "nodeType": "FunctionDefinition", + "overrides": { + "id": 288, + "nodeType": "OverrideSpecifier", + "overrides": [], + "src": "5282:8:1" + }, + "parameters": { + "id": 287, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 282, + "mutability": "mutable", + "name": "from", + "nameLocation": "5233:4:1", + "nodeType": "VariableDeclaration", + "scope": 312, + "src": "5225:12:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 281, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "5225:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 284, + "mutability": "mutable", + "name": "to", + "nameLocation": "5247:2:1", + "nodeType": "VariableDeclaration", + "scope": 312, + "src": "5239:10:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 283, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "5239:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 286, + "mutability": "mutable", + "name": "amount", + "nameLocation": "5259:6:1", + "nodeType": "VariableDeclaration", + "scope": 312, + "src": "5251:14:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 285, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "5251:7:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "5224:42:1" + }, + "returnParameters": { + "id": 291, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 290, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 312, + "src": "5300:4:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + "typeName": { + "id": 289, + "name": "bool", + "nodeType": "ElementaryTypeName", + "src": "5300:4:1", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + "visibility": "internal" + } + ], + "src": "5299:6:1" + }, + "scope": 699, + "src": "5203:256:1", + "stateMutability": "nonpayable", + "virtual": true, + "visibility": "public" + }, + { + "body": { + "id": 340, + "nodeType": "Block", + "src": "5948:140:1", + "statements": [ + { + "assignments": [ + 323 + ], + "declarations": [ + { + "constant": false, + "id": 323, + "mutability": "mutable", + "name": "owner", + "nameLocation": "5966:5:1", + "nodeType": "VariableDeclaration", + "scope": 340, + "src": "5958:13:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 322, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "5958:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + } + ], + "id": 326, + "initialValue": { + "arguments": [], + "expression": { + "argumentTypes": [], + "id": 324, + "name": "_msgSender", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 814, + "src": "5974:10:1", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$", + "typeString": "function () view returns (address)" + } + }, + "id": 325, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "5974:12:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "VariableDeclarationStatement", + "src": "5958:28:1" + }, + { + "expression": { + "arguments": [ + { + "id": 328, + "name": "owner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 323, + "src": "6005:5:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 329, + "name": "spender", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 315, + "src": "6012:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "commonType": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "id": 335, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftExpression": { + "arguments": [ + { + "id": 331, + "name": "owner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 323, + "src": "6031:5:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 332, + "name": "spender", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 315, + "src": "6038:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_address", + "typeString": "address" + } + ], + "id": 330, + "name": "allowance", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 254, + "src": "6021:9:1", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$", + "typeString": "function (address,address) view returns (uint256)" + } + }, + "id": 333, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "6021:25:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "BinaryOperation", + "operator": "+", + "rightExpression": { + "id": 334, + "name": "addedValue", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 317, + "src": "6049:10:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "src": "6021:38:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + ], + "id": 327, + "name": "_approve", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 633, + "src": "5996:8:1", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$", + "typeString": "function (address,address,uint256)" + } + }, + "id": 336, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "5996:64:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 337, + "nodeType": "ExpressionStatement", + "src": "5996:64:1" + }, + { + "expression": { + "hexValue": "74727565", + "id": 338, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "bool", + "lValueRequested": false, + "nodeType": "Literal", + "src": "6077:4:1", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + "value": "true" + }, + "functionReturnParameters": 321, + "id": 339, + "nodeType": "Return", + "src": "6070:11:1" + } + ] + }, + "documentation": { + "id": 313, + "nodeType": "StructuredDocumentation", + "src": "5465:384:1", + "text": " @dev Atomically increases the allowance granted to `spender` by the caller.\n This is an alternative to {approve} that can be used as a mitigation for\n problems described in {IERC20-approve}.\n Emits an {Approval} event indicating the updated allowance.\n Requirements:\n - `spender` cannot be the zero address." + }, + "functionSelector": "39509351", + "id": 341, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "increaseAllowance", + "nameLocation": "5863:17:1", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 318, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 315, + "mutability": "mutable", + "name": "spender", + "nameLocation": "5889:7:1", + "nodeType": "VariableDeclaration", + "scope": 341, + "src": "5881:15:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 314, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "5881:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 317, + "mutability": "mutable", + "name": "addedValue", + "nameLocation": "5906:10:1", + "nodeType": "VariableDeclaration", + "scope": 341, + "src": "5898:18:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 316, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "5898:7:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "5880:37:1" + }, + "returnParameters": { + "id": 321, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 320, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 341, + "src": "5942:4:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + "typeName": { + "id": 319, + "name": "bool", + "nodeType": "ElementaryTypeName", + "src": "5942:4:1", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + "visibility": "internal" + } + ], + "src": "5941:6:1" + }, + "scope": 699, + "src": "5854:234:1", + "stateMutability": "nonpayable", + "virtual": true, + "visibility": "public" + }, + { + "body": { + "id": 381, + "nodeType": "Block", + "src": "6674:328:1", + "statements": [ + { + "assignments": [ + 352 + ], + "declarations": [ + { + "constant": false, + "id": 352, + "mutability": "mutable", + "name": "owner", + "nameLocation": "6692:5:1", + "nodeType": "VariableDeclaration", + "scope": 381, + "src": "6684:13:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 351, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "6684:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + } + ], + "id": 355, + "initialValue": { + "arguments": [], + "expression": { + "argumentTypes": [], + "id": 353, + "name": "_msgSender", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 814, + "src": "6700:10:1", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$", + "typeString": "function () view returns (address)" + } + }, + "id": 354, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "6700:12:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "VariableDeclarationStatement", + "src": "6684:28:1" + }, + { + "assignments": [ + 357 + ], + "declarations": [ + { + "constant": false, + "id": 357, + "mutability": "mutable", + "name": "currentAllowance", + "nameLocation": "6730:16:1", + "nodeType": "VariableDeclaration", + "scope": 381, + "src": "6722:24:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 356, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "6722:7:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "id": 362, + "initialValue": { + "arguments": [ + { + "id": 359, + "name": "owner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 352, + "src": "6759:5:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 360, + "name": "spender", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 344, + "src": "6766:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_address", + "typeString": "address" + } + ], + "id": 358, + "name": "allowance", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 254, + "src": "6749:9:1", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$", + "typeString": "function (address,address) view returns (uint256)" + } + }, + "id": 361, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "6749:25:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "VariableDeclarationStatement", + "src": "6722:52:1" + }, + { + "expression": { + "arguments": [ + { + "commonType": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "id": 366, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftExpression": { + "id": 364, + "name": "currentAllowance", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 357, + "src": "6792:16:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "BinaryOperation", + "operator": ">=", + "rightExpression": { + "id": 365, + "name": "subtractedValue", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 346, + "src": "6812:15:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "src": "6792:35:1", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + { + "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f", + "id": 367, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "string", + "lValueRequested": false, + "nodeType": "Literal", + "src": "6829:39:1", + "typeDescriptions": { + "typeIdentifier": "t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8", + "typeString": "literal_string \"ERC20: decreased allowance below zero\"" + }, + "value": "ERC20: decreased allowance below zero" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + { + "typeIdentifier": "t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8", + "typeString": "literal_string \"ERC20: decreased allowance below zero\"" + } + ], + "id": 363, + "name": "require", + "nodeType": "Identifier", + "overloadedDeclarations": [ + 4294967278, + 4294967278 + ], + "referencedDeclaration": 4294967278, + "src": "6784:7:1", + "typeDescriptions": { + "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$", + "typeString": "function (bool,string memory) pure" + } + }, + "id": 368, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "6784:85:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 369, + "nodeType": "ExpressionStatement", + "src": "6784:85:1" + }, + { + "id": 378, + "nodeType": "UncheckedBlock", + "src": "6879:95:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "id": 371, + "name": "owner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 352, + "src": "6912:5:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 372, + "name": "spender", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 344, + "src": "6919:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "commonType": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "id": 375, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftExpression": { + "id": 373, + "name": "currentAllowance", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 357, + "src": "6928:16:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "BinaryOperation", + "operator": "-", + "rightExpression": { + "id": 374, + "name": "subtractedValue", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 346, + "src": "6947:15:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "src": "6928:34:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + ], + "id": 370, + "name": "_approve", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 633, + "src": "6903:8:1", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$", + "typeString": "function (address,address,uint256)" + } + }, + "id": 376, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "6903:60:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 377, + "nodeType": "ExpressionStatement", + "src": "6903:60:1" + } + ] + }, + { + "expression": { + "hexValue": "74727565", + "id": 379, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "bool", + "lValueRequested": false, + "nodeType": "Literal", + "src": "6991:4:1", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + "value": "true" + }, + "functionReturnParameters": 350, + "id": 380, + "nodeType": "Return", + "src": "6984:11:1" + } + ] + }, + "documentation": { + "id": 342, + "nodeType": "StructuredDocumentation", + "src": "6094:476:1", + "text": " @dev Atomically decreases the allowance granted to `spender` by the caller.\n This is an alternative to {approve} that can be used as a mitigation for\n problems described in {IERC20-approve}.\n Emits an {Approval} event indicating the updated allowance.\n Requirements:\n - `spender` cannot be the zero address.\n - `spender` must have allowance for the caller of at least\n `subtractedValue`." + }, + "functionSelector": "a457c2d7", + "id": 382, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "decreaseAllowance", + "nameLocation": "6584:17:1", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 347, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 344, + "mutability": "mutable", + "name": "spender", + "nameLocation": "6610:7:1", + "nodeType": "VariableDeclaration", + "scope": 382, + "src": "6602:15:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 343, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "6602:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 346, + "mutability": "mutable", + "name": "subtractedValue", + "nameLocation": "6627:15:1", + "nodeType": "VariableDeclaration", + "scope": 382, + "src": "6619:23:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 345, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "6619:7:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "6601:42:1" + }, + "returnParameters": { + "id": 350, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 349, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 382, + "src": "6668:4:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + "typeName": { + "id": 348, + "name": "bool", + "nodeType": "ElementaryTypeName", + "src": "6668:4:1", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + "visibility": "internal" + } + ], + "src": "6667:6:1" + }, + "scope": 699, + "src": "6575:427:1", + "stateMutability": "nonpayable", + "virtual": true, + "visibility": "public" + }, + { + "body": { + "id": 458, + "nodeType": "Block", + "src": "7534:710:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "commonType": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "id": 398, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftExpression": { + "id": 393, + "name": "from", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 385, + "src": "7552:4:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "BinaryOperation", + "operator": "!=", + "rightExpression": { + "arguments": [ + { + "hexValue": "30", + "id": 396, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "number", + "lValueRequested": false, + "nodeType": "Literal", + "src": "7568:1:1", + "typeDescriptions": { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + }, + "value": "0" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + } + ], + "id": 395, + "isConstant": false, + "isLValue": false, + "isPure": true, + "lValueRequested": false, + "nodeType": "ElementaryTypeNameExpression", + "src": "7560:7:1", + "typeDescriptions": { + "typeIdentifier": "t_type$_t_address_$", + "typeString": "type(address)" + }, + "typeName": { + "id": 394, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "7560:7:1", + "typeDescriptions": {} + } + }, + "id": 397, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "typeConversion", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "7560:10:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "src": "7552:18:1", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + { + "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373", + "id": 399, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "string", + "lValueRequested": false, + "nodeType": "Literal", + "src": "7572:39:1", + "typeDescriptions": { + "typeIdentifier": "t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea", + "typeString": "literal_string \"ERC20: transfer from the zero address\"" + }, + "value": "ERC20: transfer from the zero address" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + { + "typeIdentifier": "t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea", + "typeString": "literal_string \"ERC20: transfer from the zero address\"" + } + ], + "id": 392, + "name": "require", + "nodeType": "Identifier", + "overloadedDeclarations": [ + 4294967278, + 4294967278 + ], + "referencedDeclaration": 4294967278, + "src": "7544:7:1", + "typeDescriptions": { + "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$", + "typeString": "function (bool,string memory) pure" + } + }, + "id": 400, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "7544:68:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 401, + "nodeType": "ExpressionStatement", + "src": "7544:68:1" + }, + { + "expression": { + "arguments": [ + { + "commonType": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "id": 408, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftExpression": { + "id": 403, + "name": "to", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 387, + "src": "7630:2:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "BinaryOperation", + "operator": "!=", + "rightExpression": { + "arguments": [ + { + "hexValue": "30", + "id": 406, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "number", + "lValueRequested": false, + "nodeType": "Literal", + "src": "7644:1:1", + "typeDescriptions": { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + }, + "value": "0" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + } + ], + "id": 405, + "isConstant": false, + "isLValue": false, + "isPure": true, + "lValueRequested": false, + "nodeType": "ElementaryTypeNameExpression", + "src": "7636:7:1", + "typeDescriptions": { + "typeIdentifier": "t_type$_t_address_$", + "typeString": "type(address)" + }, + "typeName": { + "id": 404, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "7636:7:1", + "typeDescriptions": {} + } + }, + "id": 407, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "typeConversion", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "7636:10:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "src": "7630:16:1", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + { + "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472657373", + "id": 409, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "string", + "lValueRequested": false, + "nodeType": "Literal", + "src": "7648:37:1", + "typeDescriptions": { + "typeIdentifier": "t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f", + "typeString": "literal_string \"ERC20: transfer to the zero address\"" + }, + "value": "ERC20: transfer to the zero address" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + { + "typeIdentifier": "t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f", + "typeString": "literal_string \"ERC20: transfer to the zero address\"" + } + ], + "id": 402, + "name": "require", + "nodeType": "Identifier", + "overloadedDeclarations": [ + 4294967278, + 4294967278 + ], + "referencedDeclaration": 4294967278, + "src": "7622:7:1", + "typeDescriptions": { + "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$", + "typeString": "function (bool,string memory) pure" + } + }, + "id": 410, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "7622:64:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 411, + "nodeType": "ExpressionStatement", + "src": "7622:64:1" + }, + { + "expression": { + "arguments": [ + { + "id": 413, + "name": "from", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 385, + "src": "7718:4:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 414, + "name": "to", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 387, + "src": "7724:2:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 415, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 389, + "src": "7728:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + ], + "id": 412, + "name": "_beforeTokenTransfer", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 687, + "src": "7697:20:1", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$", + "typeString": "function (address,address,uint256)" + } + }, + "id": 416, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "7697:38:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 417, + "nodeType": "ExpressionStatement", + "src": "7697:38:1" + }, + { + "assignments": [ + 419 + ], + "declarations": [ + { + "constant": false, + "id": 419, + "mutability": "mutable", + "name": "fromBalance", + "nameLocation": "7754:11:1", + "nodeType": "VariableDeclaration", + "scope": 458, + "src": "7746:19:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 418, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "7746:7:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "id": 423, + "initialValue": { + "baseExpression": { + "id": 420, + "name": "_balances", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 128, + "src": "7768:9:1", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$", + "typeString": "mapping(address => uint256)" + } + }, + "id": 422, + "indexExpression": { + "id": 421, + "name": "from", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 385, + "src": "7778:4:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "isConstant": false, + "isLValue": true, + "isPure": false, + "lValueRequested": false, + "nodeType": "IndexAccess", + "src": "7768:15:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "VariableDeclarationStatement", + "src": "7746:37:1" + }, + { + "expression": { + "arguments": [ + { + "commonType": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "id": 427, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftExpression": { + "id": 425, + "name": "fromBalance", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 419, + "src": "7801:11:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "BinaryOperation", + "operator": ">=", + "rightExpression": { + "id": 426, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 389, + "src": "7816:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "src": "7801:21:1", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + { + "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365", + "id": 428, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "string", + "lValueRequested": false, + "nodeType": "Literal", + "src": "7824:40:1", + "typeDescriptions": { + "typeIdentifier": "t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6", + "typeString": "literal_string \"ERC20: transfer amount exceeds balance\"" + }, + "value": "ERC20: transfer amount exceeds balance" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + { + "typeIdentifier": "t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6", + "typeString": "literal_string \"ERC20: transfer amount exceeds balance\"" + } + ], + "id": 424, + "name": "require", + "nodeType": "Identifier", + "overloadedDeclarations": [ + 4294967278, + 4294967278 + ], + "referencedDeclaration": 4294967278, + "src": "7793:7:1", + "typeDescriptions": { + "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$", + "typeString": "function (bool,string memory) pure" + } + }, + "id": 429, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "7793:72:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 430, + "nodeType": "ExpressionStatement", + "src": "7793:72:1" + }, + { + "id": 445, + "nodeType": "UncheckedBlock", + "src": "7875:273:1", + "statements": [ + { + "expression": { + "id": 437, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftHandSide": { + "baseExpression": { + "id": 431, + "name": "_balances", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 128, + "src": "7899:9:1", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$", + "typeString": "mapping(address => uint256)" + } + }, + "id": 433, + "indexExpression": { + "id": 432, + "name": "from", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 385, + "src": "7909:4:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "isConstant": false, + "isLValue": true, + "isPure": false, + "lValueRequested": true, + "nodeType": "IndexAccess", + "src": "7899:15:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "Assignment", + "operator": "=", + "rightHandSide": { + "commonType": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "id": 436, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftExpression": { + "id": 434, + "name": "fromBalance", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 419, + "src": "7917:11:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "BinaryOperation", + "operator": "-", + "rightExpression": { + "id": 435, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 389, + "src": "7931:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "src": "7917:20:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "src": "7899:38:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "id": 438, + "nodeType": "ExpressionStatement", + "src": "7899:38:1" + }, + { + "expression": { + "id": 443, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftHandSide": { + "baseExpression": { + "id": 439, + "name": "_balances", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 128, + "src": "8114:9:1", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$", + "typeString": "mapping(address => uint256)" + } + }, + "id": 441, + "indexExpression": { + "id": 440, + "name": "to", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 387, + "src": "8124:2:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "isConstant": false, + "isLValue": true, + "isPure": false, + "lValueRequested": true, + "nodeType": "IndexAccess", + "src": "8114:13:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "Assignment", + "operator": "+=", + "rightHandSide": { + "id": 442, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 389, + "src": "8131:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "src": "8114:23:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "id": 444, + "nodeType": "ExpressionStatement", + "src": "8114:23:1" + } + ] + }, + { + "eventCall": { + "arguments": [ + { + "id": 447, + "name": "from", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 385, + "src": "8172:4:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 448, + "name": "to", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 387, + "src": "8178:2:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 449, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 389, + "src": "8182:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + ], + "id": 446, + "name": "Transfer", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 711, + "src": "8163:8:1", + "typeDescriptions": { + "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$", + "typeString": "function (address,address,uint256)" + } + }, + "id": 450, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "8163:26:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 451, + "nodeType": "EmitStatement", + "src": "8158:31:1" + }, + { + "expression": { + "arguments": [ + { + "id": 453, + "name": "from", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 385, + "src": "8220:4:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 454, + "name": "to", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 387, + "src": "8226:2:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 455, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 389, + "src": "8230:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + ], + "id": 452, + "name": "_afterTokenTransfer", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 698, + "src": "8200:19:1", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$", + "typeString": "function (address,address,uint256)" + } + }, + "id": 456, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "8200:37:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 457, + "nodeType": "ExpressionStatement", + "src": "8200:37:1" + } + ] + }, + "documentation": { + "id": 383, + "nodeType": "StructuredDocumentation", + "src": "7008:443:1", + "text": " @dev Moves `amount` of tokens from `from` to `to`.\n This internal function is equivalent to {transfer}, and can be used to\n e.g. implement automatic token fees, slashing mechanisms, etc.\n Emits a {Transfer} event.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `from` must have a balance of at least `amount`." + }, + "id": 459, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "_transfer", + "nameLocation": "7465:9:1", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 390, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 385, + "mutability": "mutable", + "name": "from", + "nameLocation": "7483:4:1", + "nodeType": "VariableDeclaration", + "scope": 459, + "src": "7475:12:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 384, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "7475:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 387, + "mutability": "mutable", + "name": "to", + "nameLocation": "7497:2:1", + "nodeType": "VariableDeclaration", + "scope": 459, + "src": "7489:10:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 386, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "7489:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 389, + "mutability": "mutable", + "name": "amount", + "nameLocation": "7509:6:1", + "nodeType": "VariableDeclaration", + "scope": 459, + "src": "7501:14:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 388, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "7501:7:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "7474:42:1" + }, + "returnParameters": { + "id": 391, + "nodeType": "ParameterList", + "parameters": [], + "src": "7534:0:1" + }, + "scope": 699, + "src": "7456:788:1", + "stateMutability": "nonpayable", + "virtual": true, + "visibility": "internal" + }, + { + "body": { + "id": 515, + "nodeType": "Block", + "src": "8585:470:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "commonType": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "id": 473, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftExpression": { + "id": 468, + "name": "account", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 462, + "src": "8603:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "BinaryOperation", + "operator": "!=", + "rightExpression": { + "arguments": [ + { + "hexValue": "30", + "id": 471, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "number", + "lValueRequested": false, + "nodeType": "Literal", + "src": "8622:1:1", + "typeDescriptions": { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + }, + "value": "0" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + } + ], + "id": 470, + "isConstant": false, + "isLValue": false, + "isPure": true, + "lValueRequested": false, + "nodeType": "ElementaryTypeNameExpression", + "src": "8614:7:1", + "typeDescriptions": { + "typeIdentifier": "t_type$_t_address_$", + "typeString": "type(address)" + }, + "typeName": { + "id": 469, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "8614:7:1", + "typeDescriptions": {} + } + }, + "id": 472, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "typeConversion", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "8614:10:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "src": "8603:21:1", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + { + "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373", + "id": 474, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "string", + "lValueRequested": false, + "nodeType": "Literal", + "src": "8626:33:1", + "typeDescriptions": { + "typeIdentifier": "t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e", + "typeString": "literal_string \"ERC20: mint to the zero address\"" + }, + "value": "ERC20: mint to the zero address" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + { + "typeIdentifier": "t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e", + "typeString": "literal_string \"ERC20: mint to the zero address\"" + } + ], + "id": 467, + "name": "require", + "nodeType": "Identifier", + "overloadedDeclarations": [ + 4294967278, + 4294967278 + ], + "referencedDeclaration": 4294967278, + "src": "8595:7:1", + "typeDescriptions": { + "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$", + "typeString": "function (bool,string memory) pure" + } + }, + "id": 475, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "8595:65:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 476, + "nodeType": "ExpressionStatement", + "src": "8595:65:1" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "hexValue": "30", + "id": 480, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "number", + "lValueRequested": false, + "nodeType": "Literal", + "src": "8700:1:1", + "typeDescriptions": { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + }, + "value": "0" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + } + ], + "id": 479, + "isConstant": false, + "isLValue": false, + "isPure": true, + "lValueRequested": false, + "nodeType": "ElementaryTypeNameExpression", + "src": "8692:7:1", + "typeDescriptions": { + "typeIdentifier": "t_type$_t_address_$", + "typeString": "type(address)" + }, + "typeName": { + "id": 478, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "8692:7:1", + "typeDescriptions": {} + } + }, + "id": 481, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "typeConversion", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "8692:10:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 482, + "name": "account", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 462, + "src": "8704:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 483, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 464, + "src": "8713:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + ], + "id": 477, + "name": "_beforeTokenTransfer", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 687, + "src": "8671:20:1", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$", + "typeString": "function (address,address,uint256)" + } + }, + "id": 484, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "8671:49:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 485, + "nodeType": "ExpressionStatement", + "src": "8671:49:1" + }, + { + "expression": { + "id": 488, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftHandSide": { + "id": 486, + "name": "_totalSupply", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 136, + "src": "8731:12:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "Assignment", + "operator": "+=", + "rightHandSide": { + "id": 487, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 464, + "src": "8747:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "src": "8731:22:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "id": 489, + "nodeType": "ExpressionStatement", + "src": "8731:22:1" + }, + { + "id": 496, + "nodeType": "UncheckedBlock", + "src": "8763:175:1", + "statements": [ + { + "expression": { + "id": 494, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftHandSide": { + "baseExpression": { + "id": 490, + "name": "_balances", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 128, + "src": "8899:9:1", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$", + "typeString": "mapping(address => uint256)" + } + }, + "id": 492, + "indexExpression": { + "id": 491, + "name": "account", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 462, + "src": "8909:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "isConstant": false, + "isLValue": true, + "isPure": false, + "lValueRequested": true, + "nodeType": "IndexAccess", + "src": "8899:18:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "Assignment", + "operator": "+=", + "rightHandSide": { + "id": 493, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 464, + "src": "8921:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "src": "8899:28:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "id": 495, + "nodeType": "ExpressionStatement", + "src": "8899:28:1" + } + ] + }, + { + "eventCall": { + "arguments": [ + { + "arguments": [ + { + "hexValue": "30", + "id": 500, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "number", + "lValueRequested": false, + "nodeType": "Literal", + "src": "8969:1:1", + "typeDescriptions": { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + }, + "value": "0" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + } + ], + "id": 499, + "isConstant": false, + "isLValue": false, + "isPure": true, + "lValueRequested": false, + "nodeType": "ElementaryTypeNameExpression", + "src": "8961:7:1", + "typeDescriptions": { + "typeIdentifier": "t_type$_t_address_$", + "typeString": "type(address)" + }, + "typeName": { + "id": 498, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "8961:7:1", + "typeDescriptions": {} + } + }, + "id": 501, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "typeConversion", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "8961:10:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 502, + "name": "account", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 462, + "src": "8973:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 503, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 464, + "src": "8982:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + ], + "id": 497, + "name": "Transfer", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 711, + "src": "8952:8:1", + "typeDescriptions": { + "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$", + "typeString": "function (address,address,uint256)" + } + }, + "id": 504, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "8952:37:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 505, + "nodeType": "EmitStatement", + "src": "8947:42:1" + }, + { + "expression": { + "arguments": [ + { + "arguments": [ + { + "hexValue": "30", + "id": 509, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "number", + "lValueRequested": false, + "nodeType": "Literal", + "src": "9028:1:1", + "typeDescriptions": { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + }, + "value": "0" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + } + ], + "id": 508, + "isConstant": false, + "isLValue": false, + "isPure": true, + "lValueRequested": false, + "nodeType": "ElementaryTypeNameExpression", + "src": "9020:7:1", + "typeDescriptions": { + "typeIdentifier": "t_type$_t_address_$", + "typeString": "type(address)" + }, + "typeName": { + "id": 507, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "9020:7:1", + "typeDescriptions": {} + } + }, + "id": 510, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "typeConversion", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "9020:10:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 511, + "name": "account", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 462, + "src": "9032:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 512, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 464, + "src": "9041:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + ], + "id": 506, + "name": "_afterTokenTransfer", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 698, + "src": "9000:19:1", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$", + "typeString": "function (address,address,uint256)" + } + }, + "id": 513, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "9000:48:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 514, + "nodeType": "ExpressionStatement", + "src": "9000:48:1" + } + ] + }, + "documentation": { + "id": 460, + "nodeType": "StructuredDocumentation", + "src": "8250:265:1", + "text": "@dev Creates `amount` tokens and assigns them to `account`, increasing\n the total supply.\n Emits a {Transfer} event with `from` set to the zero address.\n Requirements:\n - `account` cannot be the zero address." + }, + "id": 516, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "_mint", + "nameLocation": "8529:5:1", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 465, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 462, + "mutability": "mutable", + "name": "account", + "nameLocation": "8543:7:1", + "nodeType": "VariableDeclaration", + "scope": 516, + "src": "8535:15:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 461, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "8535:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 464, + "mutability": "mutable", + "name": "amount", + "nameLocation": "8560:6:1", + "nodeType": "VariableDeclaration", + "scope": 516, + "src": "8552:14:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 463, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "8552:7:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "8534:33:1" + }, + "returnParameters": { + "id": 466, + "nodeType": "ParameterList", + "parameters": [], + "src": "8585:0:1" + }, + "scope": 699, + "src": "8520:535:1", + "stateMutability": "nonpayable", + "virtual": true, + "visibility": "internal" + }, + { + "body": { + "id": 587, + "nodeType": "Block", + "src": "9440:594:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "commonType": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "id": 530, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftExpression": { + "id": 525, + "name": "account", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 519, + "src": "9458:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "BinaryOperation", + "operator": "!=", + "rightExpression": { + "arguments": [ + { + "hexValue": "30", + "id": 528, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "number", + "lValueRequested": false, + "nodeType": "Literal", + "src": "9477:1:1", + "typeDescriptions": { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + }, + "value": "0" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + } + ], + "id": 527, + "isConstant": false, + "isLValue": false, + "isPure": true, + "lValueRequested": false, + "nodeType": "ElementaryTypeNameExpression", + "src": "9469:7:1", + "typeDescriptions": { + "typeIdentifier": "t_type$_t_address_$", + "typeString": "type(address)" + }, + "typeName": { + "id": 526, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "9469:7:1", + "typeDescriptions": {} + } + }, + "id": 529, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "typeConversion", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "9469:10:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "src": "9458:21:1", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + { + "hexValue": "45524332303a206275726e2066726f6d20746865207a65726f2061646472657373", + "id": 531, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "string", + "lValueRequested": false, + "nodeType": "Literal", + "src": "9481:35:1", + "typeDescriptions": { + "typeIdentifier": "t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f", + "typeString": "literal_string \"ERC20: burn from the zero address\"" + }, + "value": "ERC20: burn from the zero address" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + { + "typeIdentifier": "t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f", + "typeString": "literal_string \"ERC20: burn from the zero address\"" + } + ], + "id": 524, + "name": "require", + "nodeType": "Identifier", + "overloadedDeclarations": [ + 4294967278, + 4294967278 + ], + "referencedDeclaration": 4294967278, + "src": "9450:7:1", + "typeDescriptions": { + "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$", + "typeString": "function (bool,string memory) pure" + } + }, + "id": 532, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "9450:67:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 533, + "nodeType": "ExpressionStatement", + "src": "9450:67:1" + }, + { + "expression": { + "arguments": [ + { + "id": 535, + "name": "account", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 519, + "src": "9549:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "arguments": [ + { + "hexValue": "30", + "id": 538, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "number", + "lValueRequested": false, + "nodeType": "Literal", + "src": "9566:1:1", + "typeDescriptions": { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + }, + "value": "0" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + } + ], + "id": 537, + "isConstant": false, + "isLValue": false, + "isPure": true, + "lValueRequested": false, + "nodeType": "ElementaryTypeNameExpression", + "src": "9558:7:1", + "typeDescriptions": { + "typeIdentifier": "t_type$_t_address_$", + "typeString": "type(address)" + }, + "typeName": { + "id": 536, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "9558:7:1", + "typeDescriptions": {} + } + }, + "id": 539, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "typeConversion", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "9558:10:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 540, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 521, + "src": "9570:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + ], + "id": 534, + "name": "_beforeTokenTransfer", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 687, + "src": "9528:20:1", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$", + "typeString": "function (address,address,uint256)" + } + }, + "id": 541, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "9528:49:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 542, + "nodeType": "ExpressionStatement", + "src": "9528:49:1" + }, + { + "assignments": [ + 544 + ], + "declarations": [ + { + "constant": false, + "id": 544, + "mutability": "mutable", + "name": "accountBalance", + "nameLocation": "9596:14:1", + "nodeType": "VariableDeclaration", + "scope": 587, + "src": "9588:22:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 543, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "9588:7:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "id": 548, + "initialValue": { + "baseExpression": { + "id": 545, + "name": "_balances", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 128, + "src": "9613:9:1", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$", + "typeString": "mapping(address => uint256)" + } + }, + "id": 547, + "indexExpression": { + "id": 546, + "name": "account", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 519, + "src": "9623:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "isConstant": false, + "isLValue": true, + "isPure": false, + "lValueRequested": false, + "nodeType": "IndexAccess", + "src": "9613:18:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "VariableDeclarationStatement", + "src": "9588:43:1" + }, + { + "expression": { + "arguments": [ + { + "commonType": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "id": 552, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftExpression": { + "id": 550, + "name": "accountBalance", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 544, + "src": "9649:14:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "BinaryOperation", + "operator": ">=", + "rightExpression": { + "id": 551, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 521, + "src": "9667:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "src": "9649:24:1", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + { + "hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e6365", + "id": 553, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "string", + "lValueRequested": false, + "nodeType": "Literal", + "src": "9675:36:1", + "typeDescriptions": { + "typeIdentifier": "t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd", + "typeString": "literal_string \"ERC20: burn amount exceeds balance\"" + }, + "value": "ERC20: burn amount exceeds balance" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + { + "typeIdentifier": "t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd", + "typeString": "literal_string \"ERC20: burn amount exceeds balance\"" + } + ], + "id": 549, + "name": "require", + "nodeType": "Identifier", + "overloadedDeclarations": [ + 4294967278, + 4294967278 + ], + "referencedDeclaration": 4294967278, + "src": "9641:7:1", + "typeDescriptions": { + "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$", + "typeString": "function (bool,string memory) pure" + } + }, + "id": 554, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "9641:71:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 555, + "nodeType": "ExpressionStatement", + "src": "9641:71:1" + }, + { + "id": 568, + "nodeType": "UncheckedBlock", + "src": "9722:194:1", + "statements": [ + { + "expression": { + "id": 562, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftHandSide": { + "baseExpression": { + "id": 556, + "name": "_balances", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 128, + "src": "9746:9:1", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$", + "typeString": "mapping(address => uint256)" + } + }, + "id": 558, + "indexExpression": { + "id": 557, + "name": "account", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 519, + "src": "9756:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "isConstant": false, + "isLValue": true, + "isPure": false, + "lValueRequested": true, + "nodeType": "IndexAccess", + "src": "9746:18:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "Assignment", + "operator": "=", + "rightHandSide": { + "commonType": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "id": 561, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftExpression": { + "id": 559, + "name": "accountBalance", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 544, + "src": "9767:14:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "BinaryOperation", + "operator": "-", + "rightExpression": { + "id": 560, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 521, + "src": "9784:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "src": "9767:23:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "src": "9746:44:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "id": 563, + "nodeType": "ExpressionStatement", + "src": "9746:44:1" + }, + { + "expression": { + "id": 566, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftHandSide": { + "id": 564, + "name": "_totalSupply", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 136, + "src": "9883:12:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "Assignment", + "operator": "-=", + "rightHandSide": { + "id": 565, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 521, + "src": "9899:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "src": "9883:22:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "id": 567, + "nodeType": "ExpressionStatement", + "src": "9883:22:1" + } + ] + }, + { + "eventCall": { + "arguments": [ + { + "id": 570, + "name": "account", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 519, + "src": "9940:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "arguments": [ + { + "hexValue": "30", + "id": 573, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "number", + "lValueRequested": false, + "nodeType": "Literal", + "src": "9957:1:1", + "typeDescriptions": { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + }, + "value": "0" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + } + ], + "id": 572, + "isConstant": false, + "isLValue": false, + "isPure": true, + "lValueRequested": false, + "nodeType": "ElementaryTypeNameExpression", + "src": "9949:7:1", + "typeDescriptions": { + "typeIdentifier": "t_type$_t_address_$", + "typeString": "type(address)" + }, + "typeName": { + "id": 571, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "9949:7:1", + "typeDescriptions": {} + } + }, + "id": 574, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "typeConversion", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "9949:10:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 575, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 521, + "src": "9961:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + ], + "id": 569, + "name": "Transfer", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 711, + "src": "9931:8:1", + "typeDescriptions": { + "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$", + "typeString": "function (address,address,uint256)" + } + }, + "id": 576, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "9931:37:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 577, + "nodeType": "EmitStatement", + "src": "9926:42:1" + }, + { + "expression": { + "arguments": [ + { + "id": 579, + "name": "account", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 519, + "src": "9999:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "arguments": [ + { + "hexValue": "30", + "id": 582, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "number", + "lValueRequested": false, + "nodeType": "Literal", + "src": "10016:1:1", + "typeDescriptions": { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + }, + "value": "0" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + } + ], + "id": 581, + "isConstant": false, + "isLValue": false, + "isPure": true, + "lValueRequested": false, + "nodeType": "ElementaryTypeNameExpression", + "src": "10008:7:1", + "typeDescriptions": { + "typeIdentifier": "t_type$_t_address_$", + "typeString": "type(address)" + }, + "typeName": { + "id": 580, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "10008:7:1", + "typeDescriptions": {} + } + }, + "id": 583, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "typeConversion", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "10008:10:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 584, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 521, + "src": "10020:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + ], + "id": 578, + "name": "_afterTokenTransfer", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 698, + "src": "9979:19:1", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$", + "typeString": "function (address,address,uint256)" + } + }, + "id": 585, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "9979:48:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 586, + "nodeType": "ExpressionStatement", + "src": "9979:48:1" + } + ] + }, + "documentation": { + "id": 517, + "nodeType": "StructuredDocumentation", + "src": "9061:309:1", + "text": " @dev Destroys `amount` tokens from `account`, reducing the\n total supply.\n Emits a {Transfer} event with `to` set to the zero address.\n Requirements:\n - `account` cannot be the zero address.\n - `account` must have at least `amount` tokens." + }, + "id": 588, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "_burn", + "nameLocation": "9384:5:1", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 522, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 519, + "mutability": "mutable", + "name": "account", + "nameLocation": "9398:7:1", + "nodeType": "VariableDeclaration", + "scope": 588, + "src": "9390:15:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 518, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "9390:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 521, + "mutability": "mutable", + "name": "amount", + "nameLocation": "9415:6:1", + "nodeType": "VariableDeclaration", + "scope": 588, + "src": "9407:14:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 520, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "9407:7:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "9389:33:1" + }, + "returnParameters": { + "id": 523, + "nodeType": "ParameterList", + "parameters": [], + "src": "9440:0:1" + }, + "scope": 699, + "src": "9375:659:1", + "stateMutability": "nonpayable", + "virtual": true, + "visibility": "internal" + }, + { + "body": { + "id": 632, + "nodeType": "Block", + "src": "10540:257:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "commonType": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "id": 604, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftExpression": { + "id": 599, + "name": "owner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 591, + "src": "10558:5:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "BinaryOperation", + "operator": "!=", + "rightExpression": { + "arguments": [ + { + "hexValue": "30", + "id": 602, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "number", + "lValueRequested": false, + "nodeType": "Literal", + "src": "10575:1:1", + "typeDescriptions": { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + }, + "value": "0" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + } + ], + "id": 601, + "isConstant": false, + "isLValue": false, + "isPure": true, + "lValueRequested": false, + "nodeType": "ElementaryTypeNameExpression", + "src": "10567:7:1", + "typeDescriptions": { + "typeIdentifier": "t_type$_t_address_$", + "typeString": "type(address)" + }, + "typeName": { + "id": 600, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "10567:7:1", + "typeDescriptions": {} + } + }, + "id": 603, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "typeConversion", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "10567:10:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "src": "10558:19:1", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + { + "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373", + "id": 605, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "string", + "lValueRequested": false, + "nodeType": "Literal", + "src": "10579:38:1", + "typeDescriptions": { + "typeIdentifier": "t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208", + "typeString": "literal_string \"ERC20: approve from the zero address\"" + }, + "value": "ERC20: approve from the zero address" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + { + "typeIdentifier": "t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208", + "typeString": "literal_string \"ERC20: approve from the zero address\"" + } + ], + "id": 598, + "name": "require", + "nodeType": "Identifier", + "overloadedDeclarations": [ + 4294967278, + 4294967278 + ], + "referencedDeclaration": 4294967278, + "src": "10550:7:1", + "typeDescriptions": { + "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$", + "typeString": "function (bool,string memory) pure" + } + }, + "id": 606, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "10550:68:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 607, + "nodeType": "ExpressionStatement", + "src": "10550:68:1" + }, + { + "expression": { + "arguments": [ + { + "commonType": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "id": 614, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftExpression": { + "id": 609, + "name": "spender", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 593, + "src": "10636:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "BinaryOperation", + "operator": "!=", + "rightExpression": { + "arguments": [ + { + "hexValue": "30", + "id": 612, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "number", + "lValueRequested": false, + "nodeType": "Literal", + "src": "10655:1:1", + "typeDescriptions": { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + }, + "value": "0" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_rational_0_by_1", + "typeString": "int_const 0" + } + ], + "id": 611, + "isConstant": false, + "isLValue": false, + "isPure": true, + "lValueRequested": false, + "nodeType": "ElementaryTypeNameExpression", + "src": "10647:7:1", + "typeDescriptions": { + "typeIdentifier": "t_type$_t_address_$", + "typeString": "type(address)" + }, + "typeName": { + "id": 610, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "10647:7:1", + "typeDescriptions": {} + } + }, + "id": 613, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "typeConversion", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "10647:10:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "src": "10636:21:1", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + { + "hexValue": "45524332303a20617070726f766520746f20746865207a65726f2061646472657373", + "id": 615, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "string", + "lValueRequested": false, + "nodeType": "Literal", + "src": "10659:36:1", + "typeDescriptions": { + "typeIdentifier": "t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029", + "typeString": "literal_string \"ERC20: approve to the zero address\"" + }, + "value": "ERC20: approve to the zero address" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + { + "typeIdentifier": "t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029", + "typeString": "literal_string \"ERC20: approve to the zero address\"" + } + ], + "id": 608, + "name": "require", + "nodeType": "Identifier", + "overloadedDeclarations": [ + 4294967278, + 4294967278 + ], + "referencedDeclaration": 4294967278, + "src": "10628:7:1", + "typeDescriptions": { + "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$", + "typeString": "function (bool,string memory) pure" + } + }, + "id": 616, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "10628:68:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 617, + "nodeType": "ExpressionStatement", + "src": "10628:68:1" + }, + { + "expression": { + "id": 624, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftHandSide": { + "baseExpression": { + "baseExpression": { + "id": 618, + "name": "_allowances", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 134, + "src": "10707:11:1", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$", + "typeString": "mapping(address => mapping(address => uint256))" + } + }, + "id": 621, + "indexExpression": { + "id": 619, + "name": "owner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 591, + "src": "10719:5:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "isConstant": false, + "isLValue": true, + "isPure": false, + "lValueRequested": false, + "nodeType": "IndexAccess", + "src": "10707:18:1", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$", + "typeString": "mapping(address => uint256)" + } + }, + "id": 622, + "indexExpression": { + "id": 620, + "name": "spender", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 593, + "src": "10726:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "isConstant": false, + "isLValue": true, + "isPure": false, + "lValueRequested": true, + "nodeType": "IndexAccess", + "src": "10707:27:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "Assignment", + "operator": "=", + "rightHandSide": { + "id": 623, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 595, + "src": "10737:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "src": "10707:36:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "id": 625, + "nodeType": "ExpressionStatement", + "src": "10707:36:1" + }, + { + "eventCall": { + "arguments": [ + { + "id": 627, + "name": "owner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 591, + "src": "10767:5:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 628, + "name": "spender", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 593, + "src": "10774:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 629, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 595, + "src": "10783:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + ], + "id": 626, + "name": "Approval", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 720, + "src": "10758:8:1", + "typeDescriptions": { + "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$", + "typeString": "function (address,address,uint256)" + } + }, + "id": 630, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "10758:32:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 631, + "nodeType": "EmitStatement", + "src": "10753:37:1" + } + ] + }, + "documentation": { + "id": 589, + "nodeType": "StructuredDocumentation", + "src": "10040:412:1", + "text": " @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n This internal function is equivalent to `approve`, and can be used to\n e.g. set automatic allowances for certain subsystems, etc.\n Emits an {Approval} event.\n Requirements:\n - `owner` cannot be the zero address.\n - `spender` cannot be the zero address." + }, + "id": 633, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "_approve", + "nameLocation": "10466:8:1", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 596, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 591, + "mutability": "mutable", + "name": "owner", + "nameLocation": "10483:5:1", + "nodeType": "VariableDeclaration", + "scope": 633, + "src": "10475:13:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 590, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "10475:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 593, + "mutability": "mutable", + "name": "spender", + "nameLocation": "10498:7:1", + "nodeType": "VariableDeclaration", + "scope": 633, + "src": "10490:15:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 592, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "10490:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 595, + "mutability": "mutable", + "name": "amount", + "nameLocation": "10515:6:1", + "nodeType": "VariableDeclaration", + "scope": 633, + "src": "10507:14:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 594, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "10507:7:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "10474:48:1" + }, + "returnParameters": { + "id": 597, + "nodeType": "ParameterList", + "parameters": [], + "src": "10540:0:1" + }, + "scope": 699, + "src": "10457:340:1", + "stateMutability": "nonpayable", + "virtual": true, + "visibility": "internal" + }, + { + "body": { + "id": 675, + "nodeType": "Block", + "src": "11168:321:1", + "statements": [ + { + "assignments": [ + 644 + ], + "declarations": [ + { + "constant": false, + "id": 644, + "mutability": "mutable", + "name": "currentAllowance", + "nameLocation": "11186:16:1", + "nodeType": "VariableDeclaration", + "scope": 675, + "src": "11178:24:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 643, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "11178:7:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "id": 649, + "initialValue": { + "arguments": [ + { + "id": 646, + "name": "owner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 636, + "src": "11215:5:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 647, + "name": "spender", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 638, + "src": "11222:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_address", + "typeString": "address" + } + ], + "id": 645, + "name": "allowance", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 254, + "src": "11205:9:1", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$", + "typeString": "function (address,address) view returns (uint256)" + } + }, + "id": 648, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "11205:25:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "VariableDeclarationStatement", + "src": "11178:52:1" + }, + { + "condition": { + "commonType": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "id": 656, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftExpression": { + "id": 650, + "name": "currentAllowance", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 644, + "src": "11244:16:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "BinaryOperation", + "operator": "!=", + "rightExpression": { + "expression": { + "arguments": [ + { + "id": 653, + "isConstant": false, + "isLValue": false, + "isPure": true, + "lValueRequested": false, + "nodeType": "ElementaryTypeNameExpression", + "src": "11269:7:1", + "typeDescriptions": { + "typeIdentifier": "t_type$_t_uint256_$", + "typeString": "type(uint256)" + }, + "typeName": { + "id": 652, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "11269:7:1", + "typeDescriptions": {} + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_type$_t_uint256_$", + "typeString": "type(uint256)" + } + ], + "id": 651, + "name": "type", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 4294967269, + "src": "11264:4:1", + "typeDescriptions": { + "typeIdentifier": "t_function_metatype_pure$__$returns$__$", + "typeString": "function () pure" + } + }, + "id": 654, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "11264:13:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_magic_meta_type_t_uint256", + "typeString": "type(uint256)" + } + }, + "id": 655, + "isConstant": false, + "isLValue": false, + "isPure": true, + "lValueRequested": false, + "memberLocation": "11278:3:1", + "memberName": "max", + "nodeType": "MemberAccess", + "src": "11264:17:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "src": "11244:37:1", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + "id": 674, + "nodeType": "IfStatement", + "src": "11240:243:1", + "trueBody": { + "id": 673, + "nodeType": "Block", + "src": "11283:200:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "commonType": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "id": 660, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftExpression": { + "id": 658, + "name": "currentAllowance", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 644, + "src": "11305:16:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "BinaryOperation", + "operator": ">=", + "rightExpression": { + "id": 659, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 640, + "src": "11325:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "src": "11305:26:1", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + { + "hexValue": "45524332303a20696e73756666696369656e7420616c6c6f77616e6365", + "id": 661, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "string", + "lValueRequested": false, + "nodeType": "Literal", + "src": "11333:31:1", + "typeDescriptions": { + "typeIdentifier": "t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe", + "typeString": "literal_string \"ERC20: insufficient allowance\"" + }, + "value": "ERC20: insufficient allowance" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + { + "typeIdentifier": "t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe", + "typeString": "literal_string \"ERC20: insufficient allowance\"" + } + ], + "id": 657, + "name": "require", + "nodeType": "Identifier", + "overloadedDeclarations": [ + 4294967278, + 4294967278 + ], + "referencedDeclaration": 4294967278, + "src": "11297:7:1", + "typeDescriptions": { + "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$", + "typeString": "function (bool,string memory) pure" + } + }, + "id": 662, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "11297:68:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 663, + "nodeType": "ExpressionStatement", + "src": "11297:68:1" + }, + { + "id": 672, + "nodeType": "UncheckedBlock", + "src": "11379:94:1", + "statements": [ + { + "expression": { + "arguments": [ + { + "id": 665, + "name": "owner", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 636, + "src": "11416:5:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 666, + "name": "spender", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 638, + "src": "11423:7:1", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "commonType": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "id": 669, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftExpression": { + "id": 667, + "name": "currentAllowance", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 644, + "src": "11432:16:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "nodeType": "BinaryOperation", + "operator": "-", + "rightExpression": { + "id": 668, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 640, + "src": "11451:6:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "src": "11432:25:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + ], + "id": 664, + "name": "_approve", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 633, + "src": "11407:8:1", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$", + "typeString": "function (address,address,uint256)" + } + }, + "id": 670, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "11407:51:1", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 671, + "nodeType": "ExpressionStatement", + "src": "11407:51:1" + } + ] + } + ] + } + } + ] + }, + "documentation": { + "id": 634, + "nodeType": "StructuredDocumentation", + "src": "10803:270:1", + "text": " @dev Updates `owner` s allowance for `spender` based on spent `amount`.\n Does not update the allowance amount in case of infinite allowance.\n Revert if not enough allowance is available.\n Might emit an {Approval} event." + }, + "id": 676, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "_spendAllowance", + "nameLocation": "11087:15:1", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 641, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 636, + "mutability": "mutable", + "name": "owner", + "nameLocation": "11111:5:1", + "nodeType": "VariableDeclaration", + "scope": 676, + "src": "11103:13:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 635, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "11103:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 638, + "mutability": "mutable", + "name": "spender", + "nameLocation": "11126:7:1", + "nodeType": "VariableDeclaration", + "scope": 676, + "src": "11118:15:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 637, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "11118:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 640, + "mutability": "mutable", + "name": "amount", + "nameLocation": "11143:6:1", + "nodeType": "VariableDeclaration", + "scope": 676, + "src": "11135:14:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 639, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "11135:7:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "11102:48:1" + }, + "returnParameters": { + "id": 642, + "nodeType": "ParameterList", + "parameters": [], + "src": "11168:0:1" + }, + "scope": 699, + "src": "11078:411:1", + "stateMutability": "nonpayable", + "virtual": true, + "visibility": "internal" + }, + { + "body": { + "id": 686, + "nodeType": "Block", + "src": "12162:2:1", + "statements": [] + }, + "documentation": { + "id": 677, + "nodeType": "StructuredDocumentation", + "src": "11495:573:1", + "text": " @dev Hook that is called before any transfer of tokens. This includes\n minting and burning.\n Calling conditions:\n - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n will be transferred to `to`.\n - when `from` is zero, `amount` tokens will be minted for `to`.\n - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n - `from` and `to` are never both zero.\n To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]." + }, + "id": 687, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "_beforeTokenTransfer", + "nameLocation": "12082:20:1", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 684, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 679, + "mutability": "mutable", + "name": "from", + "nameLocation": "12111:4:1", + "nodeType": "VariableDeclaration", + "scope": 687, + "src": "12103:12:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 678, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "12103:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 681, + "mutability": "mutable", + "name": "to", + "nameLocation": "12125:2:1", + "nodeType": "VariableDeclaration", + "scope": 687, + "src": "12117:10:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 680, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "12117:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 683, + "mutability": "mutable", + "name": "amount", + "nameLocation": "12137:6:1", + "nodeType": "VariableDeclaration", + "scope": 687, + "src": "12129:14:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 682, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "12129:7:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "12102:42:1" + }, + "returnParameters": { + "id": 685, + "nodeType": "ParameterList", + "parameters": [], + "src": "12162:0:1" + }, + "scope": 699, + "src": "12073:91:1", + "stateMutability": "nonpayable", + "virtual": true, + "visibility": "internal" + }, + { + "body": { + "id": 697, + "nodeType": "Block", + "src": "12840:2:1", + "statements": [] + }, + "documentation": { + "id": 688, + "nodeType": "StructuredDocumentation", + "src": "12170:577:1", + "text": " @dev Hook that is called after any transfer of tokens. This includes\n minting and burning.\n Calling conditions:\n - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n has been transferred to `to`.\n - when `from` is zero, `amount` tokens have been minted for `to`.\n - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n - `from` and `to` are never both zero.\n To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]." + }, + "id": 698, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "_afterTokenTransfer", + "nameLocation": "12761:19:1", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 695, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 690, + "mutability": "mutable", + "name": "from", + "nameLocation": "12789:4:1", + "nodeType": "VariableDeclaration", + "scope": 698, + "src": "12781:12:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 689, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "12781:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 692, + "mutability": "mutable", + "name": "to", + "nameLocation": "12803:2:1", + "nodeType": "VariableDeclaration", + "scope": 698, + "src": "12795:10:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 691, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "12795:7:1", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 694, + "mutability": "mutable", + "name": "amount", + "nameLocation": "12815:6:1", + "nodeType": "VariableDeclaration", + "scope": 698, + "src": "12807:14:1", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 693, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "12807:7:1", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "12780:42:1" + }, + "returnParameters": { + "id": 696, + "nodeType": "ParameterList", + "parameters": [], + "src": "12840:0:1" + }, + "scope": 699, + "src": "12752:90:1", + "stateMutability": "nonpayable", + "virtual": true, + "visibility": "internal" + } + ], + "scope": 700, + "src": "1532:11312:1", + "usedErrors": [], + "usedEvents": [ + 711, + 720 + ] + } + ], + "src": "105:12740:1" + }, + "id": 1 + }, + "@openzeppelin/contracts/token/ERC20/IERC20.sol": { + "ast": { + "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol", + "exportedSymbols": { + "IERC20": [ + 777 + ] + }, + "id": 778, + "license": "MIT", + "nodeType": "SourceUnit", + "nodes": [ + { + "id": 701, + "literals": [ + "solidity", + "^", + "0.8", + ".0" + ], + "nodeType": "PragmaDirective", + "src": "106:23:2" + }, + { + "abstract": false, + "baseContracts": [], + "canonicalName": "IERC20", + "contractDependencies": [], + "contractKind": "interface", + "documentation": { + "id": 702, + "nodeType": "StructuredDocumentation", + "src": "131:70:2", + "text": " @dev Interface of the ERC20 standard as defined in the EIP." + }, + "fullyImplemented": false, + "id": 777, + "linearizedBaseContracts": [ + 777 + ], + "name": "IERC20", + "nameLocation": "212:6:2", + "nodeType": "ContractDefinition", + "nodes": [ + { + "anonymous": false, + "documentation": { + "id": 703, + "nodeType": "StructuredDocumentation", + "src": "225:158:2", + "text": " @dev Emitted when `value` tokens are moved from one account (`from`) to\n another (`to`).\n Note that `value` may be zero." + }, + "eventSelector": "ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", + "id": 711, + "name": "Transfer", + "nameLocation": "394:8:2", + "nodeType": "EventDefinition", + "parameters": { + "id": 710, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 705, + "indexed": true, + "mutability": "mutable", + "name": "from", + "nameLocation": "419:4:2", + "nodeType": "VariableDeclaration", + "scope": 711, + "src": "403:20:2", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 704, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "403:7:2", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 707, + "indexed": true, + "mutability": "mutable", + "name": "to", + "nameLocation": "441:2:2", + "nodeType": "VariableDeclaration", + "scope": 711, + "src": "425:18:2", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 706, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "425:7:2", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 709, + "indexed": false, + "mutability": "mutable", + "name": "value", + "nameLocation": "453:5:2", + "nodeType": "VariableDeclaration", + "scope": 711, + "src": "445:13:2", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 708, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "445:7:2", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "402:57:2" + }, + "src": "388:72:2" + }, + { + "anonymous": false, + "documentation": { + "id": 712, + "nodeType": "StructuredDocumentation", + "src": "466:148:2", + "text": " @dev Emitted when the allowance of a `spender` for an `owner` is set by\n a call to {approve}. `value` is the new allowance." + }, + "eventSelector": "8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925", + "id": 720, + "name": "Approval", + "nameLocation": "625:8:2", + "nodeType": "EventDefinition", + "parameters": { + "id": 719, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 714, + "indexed": true, + "mutability": "mutable", + "name": "owner", + "nameLocation": "650:5:2", + "nodeType": "VariableDeclaration", + "scope": 720, + "src": "634:21:2", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 713, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "634:7:2", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 716, + "indexed": true, + "mutability": "mutable", + "name": "spender", + "nameLocation": "673:7:2", + "nodeType": "VariableDeclaration", + "scope": 720, + "src": "657:23:2", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 715, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "657:7:2", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 718, + "indexed": false, + "mutability": "mutable", + "name": "value", + "nameLocation": "690:5:2", + "nodeType": "VariableDeclaration", + "scope": 720, + "src": "682:13:2", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 717, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "682:7:2", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "633:63:2" + }, + "src": "619:78:2" + }, + { + "documentation": { + "id": 721, + "nodeType": "StructuredDocumentation", + "src": "703:66:2", + "text": " @dev Returns the amount of tokens in existence." + }, + "functionSelector": "18160ddd", + "id": 726, + "implemented": false, + "kind": "function", + "modifiers": [], + "name": "totalSupply", + "nameLocation": "783:11:2", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 722, + "nodeType": "ParameterList", + "parameters": [], + "src": "794:2:2" + }, + "returnParameters": { + "id": 725, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 724, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 726, + "src": "820:7:2", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 723, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "820:7:2", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "819:9:2" + }, + "scope": 777, + "src": "774:55:2", + "stateMutability": "view", + "virtual": false, + "visibility": "external" + }, + { + "documentation": { + "id": 727, + "nodeType": "StructuredDocumentation", + "src": "835:72:2", + "text": " @dev Returns the amount of tokens owned by `account`." + }, + "functionSelector": "70a08231", + "id": 734, + "implemented": false, + "kind": "function", + "modifiers": [], + "name": "balanceOf", + "nameLocation": "921:9:2", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 730, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 729, + "mutability": "mutable", + "name": "account", + "nameLocation": "939:7:2", + "nodeType": "VariableDeclaration", + "scope": 734, + "src": "931:15:2", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 728, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "931:7:2", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + } + ], + "src": "930:17:2" + }, + "returnParameters": { + "id": 733, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 732, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 734, + "src": "971:7:2", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 731, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "971:7:2", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "970:9:2" + }, + "scope": 777, + "src": "912:68:2", + "stateMutability": "view", + "virtual": false, + "visibility": "external" + }, + { + "documentation": { + "id": 735, + "nodeType": "StructuredDocumentation", + "src": "986:202:2", + "text": " @dev Moves `amount` tokens from the caller's account to `to`.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event." + }, + "functionSelector": "a9059cbb", + "id": 744, + "implemented": false, + "kind": "function", + "modifiers": [], + "name": "transfer", + "nameLocation": "1202:8:2", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 740, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 737, + "mutability": "mutable", + "name": "to", + "nameLocation": "1219:2:2", + "nodeType": "VariableDeclaration", + "scope": 744, + "src": "1211:10:2", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 736, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "1211:7:2", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 739, + "mutability": "mutable", + "name": "amount", + "nameLocation": "1231:6:2", + "nodeType": "VariableDeclaration", + "scope": 744, + "src": "1223:14:2", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 738, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "1223:7:2", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "1210:28:2" + }, + "returnParameters": { + "id": 743, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 742, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 744, + "src": "1257:4:2", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + "typeName": { + "id": 741, + "name": "bool", + "nodeType": "ElementaryTypeName", + "src": "1257:4:2", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + "visibility": "internal" + } + ], + "src": "1256:6:2" + }, + "scope": 777, + "src": "1193:70:2", + "stateMutability": "nonpayable", + "virtual": false, + "visibility": "external" + }, + { + "documentation": { + "id": 745, + "nodeType": "StructuredDocumentation", + "src": "1269:264:2", + "text": " @dev Returns the remaining number of tokens that `spender` will be\n allowed to spend on behalf of `owner` through {transferFrom}. This is\n zero by default.\n This value changes when {approve} or {transferFrom} are called." + }, + "functionSelector": "dd62ed3e", + "id": 754, + "implemented": false, + "kind": "function", + "modifiers": [], + "name": "allowance", + "nameLocation": "1547:9:2", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 750, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 747, + "mutability": "mutable", + "name": "owner", + "nameLocation": "1565:5:2", + "nodeType": "VariableDeclaration", + "scope": 754, + "src": "1557:13:2", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 746, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "1557:7:2", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 749, + "mutability": "mutable", + "name": "spender", + "nameLocation": "1580:7:2", + "nodeType": "VariableDeclaration", + "scope": 754, + "src": "1572:15:2", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 748, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "1572:7:2", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + } + ], + "src": "1556:32:2" + }, + "returnParameters": { + "id": 753, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 752, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 754, + "src": "1612:7:2", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 751, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "1612:7:2", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "1611:9:2" + }, + "scope": 777, + "src": "1538:83:2", + "stateMutability": "view", + "virtual": false, + "visibility": "external" + }, + { + "documentation": { + "id": 755, + "nodeType": "StructuredDocumentation", + "src": "1627:642:2", + "text": " @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n Returns a boolean value indicating whether the operation succeeded.\n IMPORTANT: Beware that changing an allowance with this method brings the risk\n that someone may use both the old and the new allowance by unfortunate\n transaction ordering. One possible solution to mitigate this race\n condition is to first reduce the spender's allowance to 0 and set the\n desired value afterwards:\n https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n Emits an {Approval} event." + }, + "functionSelector": "095ea7b3", + "id": 764, + "implemented": false, + "kind": "function", + "modifiers": [], + "name": "approve", + "nameLocation": "2283:7:2", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 760, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 757, + "mutability": "mutable", + "name": "spender", + "nameLocation": "2299:7:2", + "nodeType": "VariableDeclaration", + "scope": 764, + "src": "2291:15:2", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 756, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "2291:7:2", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 759, + "mutability": "mutable", + "name": "amount", + "nameLocation": "2316:6:2", + "nodeType": "VariableDeclaration", + "scope": 764, + "src": "2308:14:2", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 758, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "2308:7:2", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "2290:33:2" + }, + "returnParameters": { + "id": 763, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 762, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 764, + "src": "2342:4:2", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + "typeName": { + "id": 761, + "name": "bool", + "nodeType": "ElementaryTypeName", + "src": "2342:4:2", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + "visibility": "internal" + } + ], + "src": "2341:6:2" + }, + "scope": 777, + "src": "2274:74:2", + "stateMutability": "nonpayable", + "virtual": false, + "visibility": "external" + }, + { + "documentation": { + "id": 765, + "nodeType": "StructuredDocumentation", + "src": "2354:287:2", + "text": " @dev Moves `amount` tokens from `from` to `to` using the\n allowance mechanism. `amount` is then deducted from the caller's\n allowance.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event." + }, + "functionSelector": "23b872dd", + "id": 776, + "implemented": false, + "kind": "function", + "modifiers": [], + "name": "transferFrom", + "nameLocation": "2655:12:2", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 772, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 767, + "mutability": "mutable", + "name": "from", + "nameLocation": "2676:4:2", + "nodeType": "VariableDeclaration", + "scope": 776, + "src": "2668:12:2", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 766, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "2668:7:2", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 769, + "mutability": "mutable", + "name": "to", + "nameLocation": "2690:2:2", + "nodeType": "VariableDeclaration", + "scope": 776, + "src": "2682:10:2", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 768, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "2682:7:2", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 771, + "mutability": "mutable", + "name": "amount", + "nameLocation": "2702:6:2", + "nodeType": "VariableDeclaration", + "scope": 776, + "src": "2694:14:2", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 770, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "2694:7:2", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "2667:42:2" + }, + "returnParameters": { + "id": 775, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 774, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 776, + "src": "2728:4:2", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + "typeName": { + "id": 773, + "name": "bool", + "nodeType": "ElementaryTypeName", + "src": "2728:4:2", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + "visibility": "internal" + } + ], + "src": "2727:6:2" + }, + "scope": 777, + "src": "2646:88:2", + "stateMutability": "nonpayable", + "virtual": false, + "visibility": "external" + } + ], + "scope": 778, + "src": "202:2534:2", + "usedErrors": [], + "usedEvents": [ + 711, + 720 + ] + } + ], + "src": "106:2631:2" + }, + "id": 2 + }, + "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": { + "ast": { + "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol", + "exportedSymbols": { + "IERC20": [ + 777 + ], + "IERC20Metadata": [ + 802 + ] + }, + "id": 803, + "license": "MIT", + "nodeType": "SourceUnit", + "nodes": [ + { + "id": 779, + "literals": [ + "solidity", + "^", + "0.8", + ".0" + ], + "nodeType": "PragmaDirective", + "src": "110:23:3" + }, + { + "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol", + "file": "../IERC20.sol", + "id": 780, + "nameLocation": "-1:-1:-1", + "nodeType": "ImportDirective", + "scope": 803, + "sourceUnit": 778, + "src": "135:23:3", + "symbolAliases": [], + "unitAlias": "" + }, + { + "abstract": false, + "baseContracts": [ + { + "baseName": { + "id": 782, + "name": "IERC20", + "nameLocations": [ + "305:6:3" + ], + "nodeType": "IdentifierPath", + "referencedDeclaration": 777, + "src": "305:6:3" + }, + "id": 783, + "nodeType": "InheritanceSpecifier", + "src": "305:6:3" + } + ], + "canonicalName": "IERC20Metadata", + "contractDependencies": [], + "contractKind": "interface", + "documentation": { + "id": 781, + "nodeType": "StructuredDocumentation", + "src": "160:116:3", + "text": " @dev Interface for the optional metadata functions from the ERC20 standard.\n _Available since v4.1._" + }, + "fullyImplemented": false, + "id": 802, + "linearizedBaseContracts": [ + 802, + 777 + ], + "name": "IERC20Metadata", + "nameLocation": "287:14:3", + "nodeType": "ContractDefinition", + "nodes": [ + { + "documentation": { + "id": 784, + "nodeType": "StructuredDocumentation", + "src": "318:54:3", + "text": " @dev Returns the name of the token." + }, + "functionSelector": "06fdde03", + "id": 789, + "implemented": false, + "kind": "function", + "modifiers": [], + "name": "name", + "nameLocation": "386:4:3", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 785, + "nodeType": "ParameterList", + "parameters": [], + "src": "390:2:3" + }, + "returnParameters": { + "id": 788, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 787, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 789, + "src": "416:13:3", + "stateVariable": false, + "storageLocation": "memory", + "typeDescriptions": { + "typeIdentifier": "t_string_memory_ptr", + "typeString": "string" + }, + "typeName": { + "id": 786, + "name": "string", + "nodeType": "ElementaryTypeName", + "src": "416:6:3", + "typeDescriptions": { + "typeIdentifier": "t_string_storage_ptr", + "typeString": "string" + } + }, + "visibility": "internal" + } + ], + "src": "415:15:3" + }, + "scope": 802, + "src": "377:54:3", + "stateMutability": "view", + "virtual": false, + "visibility": "external" + }, + { + "documentation": { + "id": 790, + "nodeType": "StructuredDocumentation", + "src": "437:56:3", + "text": " @dev Returns the symbol of the token." + }, + "functionSelector": "95d89b41", + "id": 795, + "implemented": false, + "kind": "function", + "modifiers": [], + "name": "symbol", + "nameLocation": "507:6:3", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 791, + "nodeType": "ParameterList", + "parameters": [], + "src": "513:2:3" + }, + "returnParameters": { + "id": 794, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 793, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 795, + "src": "539:13:3", + "stateVariable": false, + "storageLocation": "memory", + "typeDescriptions": { + "typeIdentifier": "t_string_memory_ptr", + "typeString": "string" + }, + "typeName": { + "id": 792, + "name": "string", + "nodeType": "ElementaryTypeName", + "src": "539:6:3", + "typeDescriptions": { + "typeIdentifier": "t_string_storage_ptr", + "typeString": "string" + } + }, + "visibility": "internal" + } + ], + "src": "538:15:3" + }, + "scope": 802, + "src": "498:56:3", + "stateMutability": "view", + "virtual": false, + "visibility": "external" + }, + { + "documentation": { + "id": 796, + "nodeType": "StructuredDocumentation", + "src": "560:65:3", + "text": " @dev Returns the decimals places of the token." + }, + "functionSelector": "313ce567", + "id": 801, + "implemented": false, + "kind": "function", + "modifiers": [], + "name": "decimals", + "nameLocation": "639:8:3", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 797, + "nodeType": "ParameterList", + "parameters": [], + "src": "647:2:3" + }, + "returnParameters": { + "id": 800, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 799, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 801, + "src": "673:5:3", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint8", + "typeString": "uint8" + }, + "typeName": { + "id": 798, + "name": "uint8", + "nodeType": "ElementaryTypeName", + "src": "673:5:3", + "typeDescriptions": { + "typeIdentifier": "t_uint8", + "typeString": "uint8" + } + }, + "visibility": "internal" + } + ], + "src": "672:7:3" + }, + "scope": 802, + "src": "630:50:3", + "stateMutability": "view", + "virtual": false, + "visibility": "external" + } + ], + "scope": 803, + "src": "277:405:3", + "usedErrors": [], + "usedEvents": [ + 711, + 720 + ] + } + ], + "src": "110:573:3" + }, + "id": 3 + }, + "@openzeppelin/contracts/utils/Context.sol": { + "ast": { + "absolutePath": "@openzeppelin/contracts/utils/Context.sol", + "exportedSymbols": { + "Context": [ + 824 + ] + }, + "id": 825, + "license": "MIT", + "nodeType": "SourceUnit", + "nodes": [ + { + "id": 804, + "literals": [ + "solidity", + "^", + "0.8", + ".0" + ], + "nodeType": "PragmaDirective", + "src": "86:23:4" + }, + { + "abstract": true, + "baseContracts": [], + "canonicalName": "Context", + "contractDependencies": [], + "contractKind": "contract", + "documentation": { + "id": 805, + "nodeType": "StructuredDocumentation", + "src": "111:496:4", + "text": " @dev Provides information about the current execution context, including the\n sender of the transaction and its data. While these are generally available\n via msg.sender and msg.data, they should not be accessed in such a direct\n manner, since when dealing with meta-transactions the account sending and\n paying for execution may not be the actual sender (as far as an application\n is concerned).\n This contract is only required for intermediate, library-like contracts." + }, + "fullyImplemented": true, + "id": 824, + "linearizedBaseContracts": [ + 824 + ], + "name": "Context", + "nameLocation": "626:7:4", + "nodeType": "ContractDefinition", + "nodes": [ + { + "body": { + "id": 813, + "nodeType": "Block", + "src": "702:34:4", + "statements": [ + { + "expression": { + "expression": { + "id": 810, + "name": "msg", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 4294967281, + "src": "719:3:4", + "typeDescriptions": { + "typeIdentifier": "t_magic_message", + "typeString": "msg" + } + }, + "id": 811, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "memberLocation": "723:6:4", + "memberName": "sender", + "nodeType": "MemberAccess", + "src": "719:10:4", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "functionReturnParameters": 809, + "id": 812, + "nodeType": "Return", + "src": "712:17:4" + } + ] + }, + "id": 814, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "_msgSender", + "nameLocation": "649:10:4", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 806, + "nodeType": "ParameterList", + "parameters": [], + "src": "659:2:4" + }, + "returnParameters": { + "id": 809, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 808, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 814, + "src": "693:7:4", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 807, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "693:7:4", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + } + ], + "src": "692:9:4" + }, + "scope": 824, + "src": "640:96:4", + "stateMutability": "view", + "virtual": true, + "visibility": "internal" + }, + { + "body": { + "id": 822, + "nodeType": "Block", + "src": "809:32:4", + "statements": [ + { + "expression": { + "expression": { + "id": 819, + "name": "msg", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 4294967281, + "src": "826:3:4", + "typeDescriptions": { + "typeIdentifier": "t_magic_message", + "typeString": "msg" + } + }, + "id": 820, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "memberLocation": "830:4:4", + "memberName": "data", + "nodeType": "MemberAccess", + "src": "826:8:4", + "typeDescriptions": { + "typeIdentifier": "t_bytes_calldata_ptr", + "typeString": "bytes calldata" + } + }, + "functionReturnParameters": 818, + "id": 821, + "nodeType": "Return", + "src": "819:15:4" + } + ] + }, + "id": 823, + "implemented": true, + "kind": "function", + "modifiers": [], + "name": "_msgData", + "nameLocation": "751:8:4", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 815, + "nodeType": "ParameterList", + "parameters": [], + "src": "759:2:4" + }, + "returnParameters": { + "id": 818, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 817, + "mutability": "mutable", + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "VariableDeclaration", + "scope": 823, + "src": "793:14:4", + "stateVariable": false, + "storageLocation": "calldata", + "typeDescriptions": { + "typeIdentifier": "t_bytes_calldata_ptr", + "typeString": "bytes" + }, + "typeName": { + "id": 816, + "name": "bytes", + "nodeType": "ElementaryTypeName", + "src": "793:5:4", + "typeDescriptions": { + "typeIdentifier": "t_bytes_storage_ptr", + "typeString": "bytes" + } + }, + "visibility": "internal" + } + ], + "src": "792:16:4" + }, + "scope": 824, + "src": "742:99:4", + "stateMutability": "view", + "virtual": true, + "visibility": "internal" + } + ], + "scope": 825, + "src": "608:235:4", + "usedErrors": [], + "usedEvents": [] + } + ], + "src": "86:758:4" + }, + "id": 4 + }, + "contracts/InsuranceContract.sol": { + "ast": { + "absolutePath": "contracts/InsuranceContract.sol", + "exportedSymbols": { + "Context": [ + 824 + ], + "ERC20": [ + 699 + ], + "IERC20": [ + 777 + ], + "IERC20Metadata": [ + 802 + ], + "InsuranceContract": [ + 884 + ], + "Ownable": [ + 112 + ] + }, + "id": 885, + "license": "MIT", + "nodeType": "SourceUnit", + "nodes": [ + { + "id": 826, + "literals": [ + "solidity", + "^", + "0.8", + ".9" + ], + "nodeType": "PragmaDirective", + "src": "32:23:5" + }, + { + "absolutePath": "@openzeppelin/contracts/token/ERC20/ERC20.sol", + "file": "@openzeppelin/contracts/token/ERC20/ERC20.sol", + "id": 827, + "nameLocation": "-1:-1:-1", + "nodeType": "ImportDirective", + "scope": 885, + "sourceUnit": 700, + "src": "57:55:5", + "symbolAliases": [], + "unitAlias": "" + }, + { + "absolutePath": "@openzeppelin/contracts/access/Ownable.sol", + "file": "@openzeppelin/contracts/access/Ownable.sol", + "id": 828, + "nameLocation": "-1:-1:-1", + "nodeType": "ImportDirective", + "scope": 885, + "sourceUnit": 113, + "src": "113:52:5", + "symbolAliases": [], + "unitAlias": "" + }, + { + "abstract": false, + "baseContracts": [ + { + "baseName": { + "id": 829, + "name": "ERC20", + "nameLocations": [ + "197:5:5" + ], + "nodeType": "IdentifierPath", + "referencedDeclaration": 699, + "src": "197:5:5" + }, + "id": 830, + "nodeType": "InheritanceSpecifier", + "src": "197:5:5" + }, + { + "baseName": { + "id": 831, + "name": "Ownable", + "nameLocations": [ + "204:7:5" + ], + "nodeType": "IdentifierPath", + "referencedDeclaration": 112, + "src": "204:7:5" + }, + "id": 832, + "nodeType": "InheritanceSpecifier", + "src": "204:7:5" + } + ], + "canonicalName": "InsuranceContract", + "contractDependencies": [], + "contractKind": "contract", + "fullyImplemented": true, + "id": 884, + "linearizedBaseContracts": [ + 884, + 112, + 699, + 802, + 777, + 824 + ], + "name": "InsuranceContract", + "nameLocation": "176:17:5", + "nodeType": "ContractDefinition", + "nodes": [ + { + "constant": false, + "id": 834, + "mutability": "mutable", + "name": "userAddress", + "nameLocation": "226:11:5", + "nodeType": "VariableDeclaration", + "scope": 884, + "src": "218:19:5", + "stateVariable": true, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 833, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "218:7:5", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "body": { + "id": 841, + "nodeType": "Block", + "src": "292:2:5", + "statements": [] + }, + "id": 842, + "implemented": true, + "kind": "constructor", + "modifiers": [ + { + "arguments": [ + { + "hexValue": "4d7568616e6e616420496e737572616e6365", + "id": 837, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "string", + "lValueRequested": false, + "nodeType": "Literal", + "src": "263:20:5", + "typeDescriptions": { + "typeIdentifier": "t_stringliteral_c5a36c81f1c682bef14031b07fa5ac380275a51eee84ea746468f2ad82f85e3b", + "typeString": "literal_string \"Muhannad Insurance\"" + }, + "value": "Muhannad Insurance" + }, + { + "hexValue": "4d4954", + "id": 838, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "string", + "lValueRequested": false, + "nodeType": "Literal", + "src": "285:5:5", + "typeDescriptions": { + "typeIdentifier": "t_stringliteral_57d9801c55e30f9ed106172452b6033ad49a2d64397b3598dc4d8adb512cf2bb", + "typeString": "literal_string \"MIT\"" + }, + "value": "MIT" + } + ], + "id": 839, + "kind": "baseConstructorSpecifier", + "modifierName": { + "id": 836, + "name": "ERC20", + "nameLocations": [ + "257:5:5" + ], + "nodeType": "IdentifierPath", + "referencedDeclaration": 699, + "src": "257:5:5" + }, + "nodeType": "ModifierInvocation", + "src": "257:34:5" + } + ], + "name": "", + "nameLocation": "-1:-1:-1", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 835, + "nodeType": "ParameterList", + "parameters": [], + "src": "254:2:5" + }, + "returnParameters": { + "id": 840, + "nodeType": "ParameterList", + "parameters": [], + "src": "292:0:5" + }, + "scope": 884, + "src": "243:51:5", + "stateMutability": "nonpayable", + "virtual": false, + "visibility": "public" + }, + { + "body": { + "id": 856, + "nodeType": "Block", + "src": "359:34:5", + "statements": [ + { + "expression": { + "arguments": [ + { + "id": 852, + "name": "to", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 844, + "src": "375:2:5", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + { + "id": 853, + "name": "amount", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 846, + "src": "379:6:5", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_address", + "typeString": "address" + }, + { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + ], + "id": 851, + "name": "_mint", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 516, + "src": "369:5:5", + "typeDescriptions": { + "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$", + "typeString": "function (address,uint256)" + } + }, + "id": 854, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "369:17:5", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 855, + "nodeType": "ExpressionStatement", + "src": "369:17:5" + } + ] + }, + "functionSelector": "40c10f19", + "id": 857, + "implemented": true, + "kind": "function", + "modifiers": [ + { + "id": 849, + "kind": "modifierInvocation", + "modifierName": { + "id": 848, + "name": "onlyOwner", + "nameLocations": [ + "349:9:5" + ], + "nodeType": "IdentifierPath", + "referencedDeclaration": 31, + "src": "349:9:5" + }, + "nodeType": "ModifierInvocation", + "src": "349:9:5" + } + ], + "name": "mint", + "nameLocation": "309:4:5", + "nodeType": "FunctionDefinition", + "parameters": { + "id": 847, + "nodeType": "ParameterList", + "parameters": [ + { + "constant": false, + "id": 844, + "mutability": "mutable", + "name": "to", + "nameLocation": "322:2:5", + "nodeType": "VariableDeclaration", + "scope": 857, + "src": "314:10:5", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 843, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "314:7:5", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 846, + "mutability": "mutable", + "name": "amount", + "nameLocation": "334:6:5", + "nodeType": "VariableDeclaration", + "scope": 857, + "src": "326:14:5", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 845, + "name": "uint256", + "nodeType": "ElementaryTypeName", + "src": "326:7:5", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "src": "313:28:5" + }, + "returnParameters": { + "id": 850, + "nodeType": "ParameterList", + "parameters": [], + "src": "359:0:5" + }, + "scope": 884, + "src": "300:93:5", + "stateMutability": "nonpayable", + "virtual": false, + "visibility": "public" + }, + { + "constant": false, + "functionSelector": "a87430ba", + "id": 862, + "mutability": "mutable", + "name": "users", + "nameLocation": "431:5:5", + "nodeType": "VariableDeclaration", + "scope": 884, + "src": "398:38:5", + "stateVariable": true, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_struct$_User_$871_storage_$", + "typeString": "mapping(address => struct InsuranceContract.User)" + }, + "typeName": { + "id": 861, + "keyName": "", + "keyNameLocation": "-1:-1:-1", + "keyType": { + "id": 858, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "407:7:5", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "Mapping", + "src": "398:25:5", + "typeDescriptions": { + "typeIdentifier": "t_mapping$_t_address_$_t_struct$_User_$871_storage_$", + "typeString": "mapping(address => struct InsuranceContract.User)" + }, + "valueName": "", + "valueNameLocation": "-1:-1:-1", + "valueType": { + "id": 860, + "nodeType": "UserDefinedTypeName", + "pathNode": { + "id": 859, + "name": "User", + "nameLocations": [ + "418:4:5" + ], + "nodeType": "IdentifierPath", + "referencedDeclaration": 871, + "src": "418:4:5" + }, + "referencedDeclaration": 871, + "src": "418:4:5", + "typeDescriptions": { + "typeIdentifier": "t_struct$_User_$871_storage_ptr", + "typeString": "struct InsuranceContract.User" + } + } + }, + "visibility": "public" + }, + { + "canonicalName": "InsuranceContract.User", + "id": 871, + "members": [ + { + "constant": false, + "id": 864, + "mutability": "mutable", + "name": "userName", + "nameLocation": "471:8:5", + "nodeType": "VariableDeclaration", + "scope": 871, + "src": "464:15:5", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_string_storage_ptr", + "typeString": "string" + }, + "typeName": { + "id": 863, + "name": "string", + "nodeType": "ElementaryTypeName", + "src": "464:6:5", + "typeDescriptions": { + "typeIdentifier": "t_string_storage_ptr", + "typeString": "string" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 866, + "mutability": "mutable", + "name": "userAddress", + "nameLocation": "497:11:5", + "nodeType": "VariableDeclaration", + "scope": 871, + "src": "489:19:5", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "typeName": { + "id": 865, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "489:7:5", + "stateMutability": "nonpayable", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 868, + "mutability": "mutable", + "name": "userAge", + "nameLocation": "523:7:5", + "nodeType": "VariableDeclaration", + "scope": 871, + "src": "518:12:5", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 867, + "name": "uint", + "nodeType": "ElementaryTypeName", + "src": "518:4:5", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + }, + { + "constant": false, + "id": 870, + "mutability": "mutable", + "name": "userBalance", + "nameLocation": "545:11:5", + "nodeType": "VariableDeclaration", + "scope": 871, + "src": "540:16:5", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + }, + "typeName": { + "id": 869, + "name": "uint", + "nodeType": "ElementaryTypeName", + "src": "540:4:5", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + }, + "visibility": "internal" + } + ], + "name": "User", + "nameLocation": "450:4:5", + "nodeType": "StructDefinition", + "scope": 884, + "src": "443:120:5", + "visibility": "public" + }, + { + "body": { + "id": 882, + "nodeType": "Block", + "src": "586:77:5", + "statements": [ + { + "expression": { + "arguments": [ + { + "commonType": { + "typeIdentifier": "t_address", + "typeString": "address" + }, + "id": 877, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "leftExpression": { + "id": 874, + "name": "userAddress", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 834, + "src": "604:11:5", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "nodeType": "BinaryOperation", + "operator": "==", + "rightExpression": { + "expression": { + "id": 875, + "name": "msg", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 4294967281, + "src": "619:3:5", + "typeDescriptions": { + "typeIdentifier": "t_magic_message", + "typeString": "msg" + } + }, + "id": 876, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "memberLocation": "623:6:5", + "memberName": "sender", + "nodeType": "MemberAccess", + "src": "619:10:5", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "src": "604:25:5", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + { + "hexValue": "596f7520617265206e6f74207468652075736572", + "id": 878, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "string", + "lValueRequested": false, + "nodeType": "Literal", + "src": "631:22:5", + "typeDescriptions": { + "typeIdentifier": "t_stringliteral_119951af15044f84bace9959a503713044472d21cee765f37394e98a646762b0", + "typeString": "literal_string \"You are not the user\"" + }, + "value": "You are not the user" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + { + "typeIdentifier": "t_stringliteral_119951af15044f84bace9959a503713044472d21cee765f37394e98a646762b0", + "typeString": "literal_string \"You are not the user\"" + } + ], + "id": 873, + "name": "require", + "nodeType": "Identifier", + "overloadedDeclarations": [ + 4294967278, + 4294967278 + ], + "referencedDeclaration": 4294967278, + "src": "596:7:5", + "typeDescriptions": { + "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$", + "typeString": "function (bool,string memory) pure" + } + }, + "id": 879, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "596:58:5", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 880, + "nodeType": "ExpressionStatement", + "src": "596:58:5" + }, + { + "id": 881, + "nodeType": "PlaceholderStatement", + "src": "655:1:5" + } + ] + }, + "id": 883, + "name": "userCheck", + "nameLocation": "577:9:5", + "nodeType": "ModifierDefinition", + "parameters": { + "id": 872, + "nodeType": "ParameterList", + "parameters": [], + "src": "586:0:5" + }, + "src": "568:95:5", + "virtual": false, + "visibility": "internal" + } + ], + "scope": 885, + "src": "167:499:5", + "usedErrors": [], + "usedEvents": [ + 13, + 711, + 720 + ] + } + ], + "src": "32:635:5" + }, + "id": 5 + } + } + } +} \ No newline at end of file