Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Ganpath-Singh-B/2a5c0bdd0efae55e2bbb902cd7add063 to your computer and use it in GitHub Desktop.
Save Ganpath-Singh-B/2a5c0bdd0efae55e2bbb902cd7add063 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing 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);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: address zero is not a valid owner");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: invalid token ID");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
_requireMinted(tokenId);
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not token owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
_requireMinted(tokenId);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
_safeTransfer(from, to, tokenId, data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Reverts if the `tokenId` has not been minted yet.
*/
function _requireMinted(uint256 tokenId) internal view virtual {
require(_exists(tokenId), "ERC721: invalid token ID");
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
/// @solidity memory-safe-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` 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 tokenId
) 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.
* - `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 tokenId
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}
REMIX DEFAULT WORKSPACE
Remix default workspace is present when:
i. Remix loads for the very first time
ii. A new workspace is created with 'Default' template
iii. There are no files existing in the File Explorer
This workspace contains 3 directories:
1. 'contracts': Holds three contracts with increasing levels of complexity.
2. 'scripts': Contains four typescript files to deploy a contract. It is explained below.
3. 'tests': Contains one Solidity test file for 'Ballot' contract & one JS test file for 'Storage' contract.
SCRIPTS
The 'scripts' folder has four typescript files which help to deploy the 'Storage' contract using 'web3.js' and 'ethers.js' libraries.
For the deployment of any other contract, just update the contract's name from 'Storage' to the desired contract and provide constructor arguments accordingly
in the file `deploy_with_ethers.ts` or `deploy_with_web3.ts`
In the 'tests' folder there is a script containing Mocha-Chai unit tests for 'Storage' contract.
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled.
Output from script will appear in remix terminal.
Please note, require/import is supported in a limited manner for Remix supported modules.
For now, modules supported by Remix are ethers, web3, swarmgw, chai, multihashes, remix and hardhat only for hardhat.ethers object/plugin.
For unsupported modules, an error like this will be thrown: '<module_name> module require is not supported by Remix IDE' will be shown.
{
"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": {
"@_175": {
"entryPoint": null,
"id": 175,
"parameterSlots": 2,
"returnSlots": 0
},
"@_1825": {
"entryPoint": null,
"id": 1825,
"parameterSlots": 2,
"returnSlots": 0
},
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_1447": {
"entryPoint": 149,
"id": 1447,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_111": {
"entryPoint": 157,
"id": 111,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr_fromMemory": {
"entryPoint": 531,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr_fromMemory": {
"entryPoint": 606,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 657,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"allocate_memory": {
"entryPoint": 790,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 821,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 831,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 885,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 939,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 993,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1047,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1094,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 1141,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 1146,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 1151,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1156,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 1161,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:4093:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "102:326:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "112:75:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "179:6:12"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "137:41:12"
},
"nodeType": "YulFunctionCall",
"src": "137:49:12"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "121:15:12"
},
"nodeType": "YulFunctionCall",
"src": "121:66:12"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "112:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "203:5:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "210:6:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "196:6:12"
},
"nodeType": "YulFunctionCall",
"src": "196:21:12"
},
"nodeType": "YulExpressionStatement",
"src": "196:21:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "226:27:12",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "241:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "248:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "237:3:12"
},
"nodeType": "YulFunctionCall",
"src": "237:16:12"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "230:3:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "291:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "293:77:12"
},
"nodeType": "YulFunctionCall",
"src": "293:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "293:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "272:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "277:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "268:3:12"
},
"nodeType": "YulFunctionCall",
"src": "268:16:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "286:3:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "265:2:12"
},
"nodeType": "YulFunctionCall",
"src": "265:25:12"
},
"nodeType": "YulIf",
"src": "262:112:12"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "405:3:12"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "410:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "415:6:12"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "383:21:12"
},
"nodeType": "YulFunctionCall",
"src": "383:39:12"
},
"nodeType": "YulExpressionStatement",
"src": "383:39:12"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "75:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "80:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "88:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "96:5:12",
"type": ""
}
],
"src": "7:421:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "521:282:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "570:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "572:77:12"
},
"nodeType": "YulFunctionCall",
"src": "572:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "572:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "549:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "557:4:12",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "545:3:12"
},
"nodeType": "YulFunctionCall",
"src": "545:17:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "564:3:12"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "541:3:12"
},
"nodeType": "YulFunctionCall",
"src": "541:27:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "534:6:12"
},
"nodeType": "YulFunctionCall",
"src": "534:35:12"
},
"nodeType": "YulIf",
"src": "531:122:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "662:27:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "682:6:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "676:5:12"
},
"nodeType": "YulFunctionCall",
"src": "676:13:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "666:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "698:99:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "770:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "778:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "766:3:12"
},
"nodeType": "YulFunctionCall",
"src": "766:17:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "785:6:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "793:3:12"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "707:58:12"
},
"nodeType": "YulFunctionCall",
"src": "707:90:12"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "698:5:12"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "499:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "507:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "515:5:12",
"type": ""
}
],
"src": "448:355:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "923:739:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "969:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "971:77:12"
},
"nodeType": "YulFunctionCall",
"src": "971:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "971:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "944:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "953:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "940:3:12"
},
"nodeType": "YulFunctionCall",
"src": "940:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "965:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "936:3:12"
},
"nodeType": "YulFunctionCall",
"src": "936:32:12"
},
"nodeType": "YulIf",
"src": "933:119:12"
},
{
"nodeType": "YulBlock",
"src": "1062:291:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1077:38:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1101:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1112:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1097:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1097:17:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1091:5:12"
},
"nodeType": "YulFunctionCall",
"src": "1091:24:12"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1081:6:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1162:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1164:77:12"
},
"nodeType": "YulFunctionCall",
"src": "1164:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "1164:79:12"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1134:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1142:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1131:2:12"
},
"nodeType": "YulFunctionCall",
"src": "1131:30:12"
},
"nodeType": "YulIf",
"src": "1128:117:12"
},
{
"nodeType": "YulAssignment",
"src": "1259:84:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1315:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1326:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1311:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1311:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1335:7:12"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1269:41:12"
},
"nodeType": "YulFunctionCall",
"src": "1269:74:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1259:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1363:292:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1378:39:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1402:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1413:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1398:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1398:18:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1392:5:12"
},
"nodeType": "YulFunctionCall",
"src": "1392:25:12"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1382:6:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1464:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1466:77:12"
},
"nodeType": "YulFunctionCall",
"src": "1466:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "1466:79:12"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1436:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1444:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1433:2:12"
},
"nodeType": "YulFunctionCall",
"src": "1433:30:12"
},
"nodeType": "YulIf",
"src": "1430:117:12"
},
{
"nodeType": "YulAssignment",
"src": "1561:84:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1617:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1628:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1613:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1613:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1637:7:12"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1571:41:12"
},
"nodeType": "YulFunctionCall",
"src": "1571:74:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1561:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "885:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "896:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "908:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "916:6:12",
"type": ""
}
],
"src": "809:853:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1709:88:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1719:30:12",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1729:18:12"
},
"nodeType": "YulFunctionCall",
"src": "1729:20:12"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1719:6:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1778:6:12"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1786:4:12"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1758:19:12"
},
"nodeType": "YulFunctionCall",
"src": "1758:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "1758:33:12"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1693:4:12",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1702:6:12",
"type": ""
}
],
"src": "1668:129:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1843:35:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1853:19:12",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1869:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1863:5:12"
},
"nodeType": "YulFunctionCall",
"src": "1863:9:12"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1853:6:12"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1836:6:12",
"type": ""
}
],
"src": "1803:75:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1951:241:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2056:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "2058:16:12"
},
"nodeType": "YulFunctionCall",
"src": "2058:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "2058:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2028:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2036:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2025:2:12"
},
"nodeType": "YulFunctionCall",
"src": "2025:30:12"
},
"nodeType": "YulIf",
"src": "2022:56:12"
},
{
"nodeType": "YulAssignment",
"src": "2088:37:12",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2118:6:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2096:21:12"
},
"nodeType": "YulFunctionCall",
"src": "2096:29:12"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2088:4:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2162:23:12",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2174:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2180:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2170:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2170:15:12"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2162:4:12"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1935:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1946:4:12",
"type": ""
}
],
"src": "1884:308:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2247:258:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2257:10:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2266:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "2261:1:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2326:63:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2351:3:12"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2356:1:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2347:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2347:11:12"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2370:3:12"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2375:1:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2366:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2366:11:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2360:5:12"
},
"nodeType": "YulFunctionCall",
"src": "2360:18:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2340:6:12"
},
"nodeType": "YulFunctionCall",
"src": "2340:39:12"
},
"nodeType": "YulExpressionStatement",
"src": "2340:39:12"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2287:1:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2290:6:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2284:2:12"
},
"nodeType": "YulFunctionCall",
"src": "2284:13:12"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2298:19:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2300:15:12",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2309:1:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2312:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2305:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2305:10:12"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2300:1:12"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "2280:3:12",
"statements": []
},
"src": "2276:113:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2423:76:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2473:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2478:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2469:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2469:16:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2487:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2462:6:12"
},
"nodeType": "YulFunctionCall",
"src": "2462:27:12"
},
"nodeType": "YulExpressionStatement",
"src": "2462:27:12"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2404:1:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2407:6:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2401:2:12"
},
"nodeType": "YulFunctionCall",
"src": "2401:13:12"
},
"nodeType": "YulIf",
"src": "2398:101:12"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2229:3:12",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2234:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2239:6:12",
"type": ""
}
],
"src": "2198:307:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2562:269:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2572:22:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2586:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2592:1:12",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "2582:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2582:12:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2572:6:12"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2603:38:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2633:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2639:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2629:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2629:12:12"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "2607:18:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2680:51:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2694:27:12",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2708:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2716:4:12",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2704:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2704:17:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2694:6:12"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2660:18:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2653:6:12"
},
"nodeType": "YulFunctionCall",
"src": "2653:26:12"
},
"nodeType": "YulIf",
"src": "2650:81:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2783:42:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "2797:16:12"
},
"nodeType": "YulFunctionCall",
"src": "2797:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "2797:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2747:18:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2770:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2778:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2767:2:12"
},
"nodeType": "YulFunctionCall",
"src": "2767:14:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2744:2:12"
},
"nodeType": "YulFunctionCall",
"src": "2744:38:12"
},
"nodeType": "YulIf",
"src": "2741:84:12"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "2546:4:12",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2555:6:12",
"type": ""
}
],
"src": "2511:320:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2880:238:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2890:58:12",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2912:6:12"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2942:4:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2920:21:12"
},
"nodeType": "YulFunctionCall",
"src": "2920:27:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2908:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2908:40:12"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "2894:10:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3059:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "3061:16:12"
},
"nodeType": "YulFunctionCall",
"src": "3061:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "3061:18:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3002:10:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3014:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2999:2:12"
},
"nodeType": "YulFunctionCall",
"src": "2999:34:12"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3038:10:12"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3050:6:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3035:2:12"
},
"nodeType": "YulFunctionCall",
"src": "3035:22:12"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "2996:2:12"
},
"nodeType": "YulFunctionCall",
"src": "2996:62:12"
},
"nodeType": "YulIf",
"src": "2993:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3097:2:12",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3101:10:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3090:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3090:22:12"
},
"nodeType": "YulExpressionStatement",
"src": "3090:22:12"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2866:6:12",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2874:4:12",
"type": ""
}
],
"src": "2837:281:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3152:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3169:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3172:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3162:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3162:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "3162:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3266:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3269:4:12",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3259:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3259:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "3259:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3290:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3293:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3283:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3283:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "3283:15:12"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "3124:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3338:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3355:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3358:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3348:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3348:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "3348:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3452:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3455:4:12",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3445:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3445:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "3445:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3476:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3479:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3469:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3469:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "3469:15:12"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "3310:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3585:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3602:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3605:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3595:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3595:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "3595:12:12"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "3496:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3708:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3725:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3728:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3718:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3718:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "3718:12:12"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "3619:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3831:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3848:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3851:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3841:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3841:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "3841:12:12"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "3742:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3954:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3971:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3974:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3964:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3964:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "3964:12:12"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "3865:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4036:54:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4046:38:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4064:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4071:2:12",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4060:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4060:14:12"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4080:2:12",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4076:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4076:7:12"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4056:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4056:28:12"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "4046:6:12"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4019:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "4029:6:12",
"type": ""
}
],
"src": "3988:102:12"
}
]
},
"contents": "{\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(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 allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\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(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 if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\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 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 panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\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 revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\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}\n",
"id": 12,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b5060405162002ca138038062002ca1833981810160405281019062000037919062000291565b818181600090805190602001906200005192919062000163565b5080600190805190602001906200006a92919062000163565b5050506200008d620000816200009560201b60201c565b6200009d60201b60201c565b50506200049a565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200017190620003ab565b90600052602060002090601f016020900481019282620001955760008555620001e1565b82601f10620001b057805160ff1916838001178555620001e1565b82800160010185558215620001e1579182015b82811115620001e0578251825591602001919060010190620001c3565b5b509050620001f09190620001f4565b5090565b5b808211156200020f576000816000905550600101620001f5565b5090565b60006200022a62000224846200033f565b62000316565b9050828152602081018484840111156200024957620002486200047a565b5b6200025684828562000375565b509392505050565b600082601f83011262000276576200027562000475565b5b81516200028884826020860162000213565b91505092915050565b60008060408385031215620002ab57620002aa62000484565b5b600083015167ffffffffffffffff811115620002cc57620002cb6200047f565b5b620002da858286016200025e565b925050602083015167ffffffffffffffff811115620002fe57620002fd6200047f565b5b6200030c858286016200025e565b9150509250929050565b60006200032262000335565b9050620003308282620003e1565b919050565b6000604051905090565b600067ffffffffffffffff8211156200035d576200035c62000446565b5b620003688262000489565b9050602081019050919050565b60005b838110156200039557808201518184015260208101905062000378565b83811115620003a5576000848401525b50505050565b60006002820490506001821680620003c457607f821691505b60208210811415620003db57620003da62000417565b5b50919050565b620003ec8262000489565b810181811067ffffffffffffffff821117156200040e576200040d62000446565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6127f780620004aa6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063b88d4fde11610071578063b88d4fde146102a4578063c87b56dd146102c0578063d204c45e146102f0578063e985e9c514610320578063f2fde38b146103505761010b565b8063715018a6146102425780638da5cb5b1461024c57806395d89b411461026a578063a22cb465146102885761010b565b806323b872dd116100de57806323b872dd146101aa57806342842e0e146101c65780636352211e146101e257806370a08231146102125761010b565b806301ffc9a71461011057806306fdde0314610140578063081812fc1461015e578063095ea7b31461018e575b600080fd5b61012a60048036038101906101259190611bc0565b61036c565b6040516101379190611f14565b60405180910390f35b61014861044e565b6040516101559190611f2f565b60405180910390f35b61017860048036038101906101739190611c1a565b6104e0565b6040516101859190611ead565b60405180910390f35b6101a860048036038101906101a39190611b80565b610526565b005b6101c460048036038101906101bf9190611a0e565b61063e565b005b6101e060048036038101906101db9190611a0e565b61069e565b005b6101fc60048036038101906101f79190611c1a565b6106be565b6040516102099190611ead565b60405180910390f35b61022c600480360381019061022791906119a1565b610770565b60405161023991906120f1565b60405180910390f35b61024a610828565b005b61025461083c565b6040516102619190611ead565b60405180910390f35b610272610866565b60405161027f9190611f2f565b60405180910390f35b6102a2600480360381019061029d9190611ae4565b6108f8565b005b6102be60048036038101906102b99190611a61565b61090e565b005b6102da60048036038101906102d59190611c1a565b610970565b6040516102e79190611f2f565b60405180910390f35b61030a60048036038101906103059190611b24565b610a15565b60405161031791906120f1565b60405180910390f35b61033a600480360381019061033591906119ce565b610a77565b6040516103479190611f14565b60405180910390f35b61036a600480360381019061036591906119a1565b610b0b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061043757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610447575061044682610b8f565b5b9050919050565b60606000805461045d9061230b565b80601f01602080910402602001604051908101604052809291908181526020018280546104899061230b565b80156104d65780601f106104ab576101008083540402835291602001916104d6565b820191906000526020600020905b8154815290600101906020018083116104b957829003601f168201915b5050505050905090565b60006104eb82610bf9565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610531826106be565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610599906120b1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105c1610c44565b73ffffffffffffffffffffffffffffffffffffffff1614806105f057506105ef816105ea610c44565b610a77565b5b61062f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062690612031565b60405180910390fd5b6106398383610c4c565b505050565b61064f610649610c44565b82610d05565b61068e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610685906120d1565b60405180910390fd5b610699838383610d9a565b505050565b6106b98383836040518060200160405280600081525061090e565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075e90612091565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156107e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d890612011565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610830611001565b61083a600061107f565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546108759061230b565b80601f01602080910402602001604051908101604052809291908181526020018280546108a19061230b565b80156108ee5780601f106108c3576101008083540402835291602001916108ee565b820191906000526020600020905b8154815290600101906020018083116108d157829003601f168201915b5050505050905090565b61090a610903610c44565b8383611145565b5050565b61091f610919610c44565b83610d05565b61095e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610955906120d1565b60405180910390fd5b61096a848484846112b2565b50505050565b60606008600083815260200190815260200160002080546109909061230b565b80601f01602080910402602001604051908101604052809291908181526020018280546109bc9061230b565b8015610a095780601f106109de57610100808354040283529160200191610a09565b820191906000526020600020905b8154815290600101906020018083116109ec57829003601f168201915b50505050509050919050565b6000610a21600761130e565b610a3483610a2f6007611324565b611332565b8160086000610a436007611324565b81526020019081526020016000209080519060200190610a649291906117b5565b50610a6f6007611324565b905092915050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610b13611001565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90611f71565b60405180910390fd5b610b8c8161107f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610c0281611350565b610c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3890612091565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610cbf836106be565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610d11836106be565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610d535750610d528185610a77565b5b80610d9157508373ffffffffffffffffffffffffffffffffffffffff16610d79846104e0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610dba826106be565b73ffffffffffffffffffffffffffffffffffffffff1614610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790611f91565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7790611fd1565b60405180910390fd5b610e8b8383836113bc565b610e96600082610c4c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ee69190612221565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f3d91906121cb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ffc8383836113c1565b505050565b611009610c44565b73ffffffffffffffffffffffffffffffffffffffff1661102761083c565b73ffffffffffffffffffffffffffffffffffffffff161461107d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107490612071565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90611ff1565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112a59190611f14565b60405180910390a3505050565b6112bd848484610d9a565b6112c9848484846113c6565b611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff90611f51565b60405180910390fd5b50505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b61134c82826040518060200160405280600081525061155d565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b60006113e78473ffffffffffffffffffffffffffffffffffffffff166115b8565b15611550578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611410610c44565b8786866040518563ffffffff1660e01b81526004016114329493929190611ec8565b602060405180830381600087803b15801561144c57600080fd5b505af192505050801561147d57506040513d601f19601f8201168201806040525081019061147a9190611bed565b60015b611500573d80600081146114ad576040519150601f19603f3d011682016040523d82523d6000602084013e6114b2565b606091505b506000815114156114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef90611f51565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611555565b600190505b949350505050565b61156783836115db565b61157460008484846113c6565b6115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90611f51565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561164b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164290612051565b60405180910390fd5b61165481611350565b15611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90611fb1565b60405180910390fd5b6116a0600083836113bc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116f091906121cb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117b1600083836113c1565b5050565b8280546117c19061230b565b90600052602060002090601f0160209004810192826117e3576000855561182a565b82601f106117fc57805160ff191683800117855561182a565b8280016001018555821561182a579182015b8281111561182957825182559160200191906001019061180e565b5b509050611837919061183b565b5090565b5b8082111561185457600081600090555060010161183c565b5090565b600061186b61186684612131565b61210c565b90508281526020810184848401111561188757611886612400565b5b6118928482856122c9565b509392505050565b60006118ad6118a884612162565b61210c565b9050828152602081018484840111156118c9576118c8612400565b5b6118d48482856122c9565b509392505050565b6000813590506118eb81612765565b92915050565b6000813590506119008161277c565b92915050565b60008135905061191581612793565b92915050565b60008151905061192a81612793565b92915050565b600082601f830112611945576119446123fb565b5b8135611955848260208601611858565b91505092915050565b600082601f830112611973576119726123fb565b5b813561198384826020860161189a565b91505092915050565b60008135905061199b816127aa565b92915050565b6000602082840312156119b7576119b661240a565b5b60006119c5848285016118dc565b91505092915050565b600080604083850312156119e5576119e461240a565b5b60006119f3858286016118dc565b9250506020611a04858286016118dc565b9150509250929050565b600080600060608486031215611a2757611a2661240a565b5b6000611a35868287016118dc565b9350506020611a46868287016118dc565b9250506040611a578682870161198c565b9150509250925092565b60008060008060808587031215611a7b57611a7a61240a565b5b6000611a89878288016118dc565b9450506020611a9a878288016118dc565b9350506040611aab8782880161198c565b925050606085013567ffffffffffffffff811115611acc57611acb612405565b5b611ad887828801611930565b91505092959194509250565b60008060408385031215611afb57611afa61240a565b5b6000611b09858286016118dc565b9250506020611b1a858286016118f1565b9150509250929050565b60008060408385031215611b3b57611b3a61240a565b5b6000611b49858286016118dc565b925050602083013567ffffffffffffffff811115611b6a57611b69612405565b5b611b768582860161195e565b9150509250929050565b60008060408385031215611b9757611b9661240a565b5b6000611ba5858286016118dc565b9250506020611bb68582860161198c565b9150509250929050565b600060208284031215611bd657611bd561240a565b5b6000611be484828501611906565b91505092915050565b600060208284031215611c0357611c0261240a565b5b6000611c118482850161191b565b91505092915050565b600060208284031215611c3057611c2f61240a565b5b6000611c3e8482850161198c565b91505092915050565b611c5081612255565b82525050565b611c5f81612267565b82525050565b6000611c7082612193565b611c7a81856121a9565b9350611c8a8185602086016122d8565b611c938161240f565b840191505092915050565b6000611ca98261219e565b611cb381856121ba565b9350611cc38185602086016122d8565b611ccc8161240f565b840191505092915050565b6000611ce46032836121ba565b9150611cef82612420565b604082019050919050565b6000611d076026836121ba565b9150611d128261246f565b604082019050919050565b6000611d2a6025836121ba565b9150611d35826124be565b604082019050919050565b6000611d4d601c836121ba565b9150611d588261250d565b602082019050919050565b6000611d706024836121ba565b9150611d7b82612536565b604082019050919050565b6000611d936019836121ba565b9150611d9e82612585565b602082019050919050565b6000611db66029836121ba565b9150611dc1826125ae565b604082019050919050565b6000611dd9603e836121ba565b9150611de4826125fd565b604082019050919050565b6000611dfc6020836121ba565b9150611e078261264c565b602082019050919050565b6000611e1f6020836121ba565b9150611e2a82612675565b602082019050919050565b6000611e426018836121ba565b9150611e4d8261269e565b602082019050919050565b6000611e656021836121ba565b9150611e70826126c7565b604082019050919050565b6000611e88602e836121ba565b9150611e9382612716565b604082019050919050565b611ea7816122bf565b82525050565b6000602082019050611ec26000830184611c47565b92915050565b6000608082019050611edd6000830187611c47565b611eea6020830186611c47565b611ef76040830185611e9e565b8181036060830152611f098184611c65565b905095945050505050565b6000602082019050611f296000830184611c56565b92915050565b60006020820190508181036000830152611f498184611c9e565b905092915050565b60006020820190508181036000830152611f6a81611cd7565b9050919050565b60006020820190508181036000830152611f8a81611cfa565b9050919050565b60006020820190508181036000830152611faa81611d1d565b9050919050565b60006020820190508181036000830152611fca81611d40565b9050919050565b60006020820190508181036000830152611fea81611d63565b9050919050565b6000602082019050818103600083015261200a81611d86565b9050919050565b6000602082019050818103600083015261202a81611da9565b9050919050565b6000602082019050818103600083015261204a81611dcc565b9050919050565b6000602082019050818103600083015261206a81611def565b9050919050565b6000602082019050818103600083015261208a81611e12565b9050919050565b600060208201905081810360008301526120aa81611e35565b9050919050565b600060208201905081810360008301526120ca81611e58565b9050919050565b600060208201905081810360008301526120ea81611e7b565b9050919050565b60006020820190506121066000830184611e9e565b92915050565b6000612116612127565b9050612122828261233d565b919050565b6000604051905090565b600067ffffffffffffffff82111561214c5761214b6123cc565b5b6121558261240f565b9050602081019050919050565b600067ffffffffffffffff82111561217d5761217c6123cc565b5b6121868261240f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006121d6826122bf565b91506121e1836122bf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122165761221561236e565b5b828201905092915050565b600061222c826122bf565b9150612237836122bf565b92508282101561224a5761224961236e565b5b828203905092915050565b60006122608261229f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156122f65780820151818401526020810190506122db565b83811115612305576000848401525b50505050565b6000600282049050600182168061232357607f821691505b602082108114156123375761233661239d565b5b50919050565b6123468261240f565b810181811067ffffffffffffffff82111715612365576123646123cc565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b61276e81612255565b811461277957600080fd5b50565b61278581612267565b811461279057600080fd5b50565b61279c81612273565b81146127a757600080fd5b50565b6127b3816122bf565b81146127be57600080fd5b5056fea26469706673582212205e5b2ac26509accee5914b7406ca1567a70e3f5be3d9a874b385ba82f94fec3764736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x2CA1 CODESIZE SUB DUP1 PUSH3 0x2CA1 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x291 JUMP JUMPDEST DUP2 DUP2 DUP2 PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x51 SWAP3 SWAP2 SWAP1 PUSH3 0x163 JUMP JUMPDEST POP DUP1 PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x6A SWAP3 SWAP2 SWAP1 PUSH3 0x163 JUMP JUMPDEST POP POP POP PUSH3 0x8D PUSH3 0x81 PUSH3 0x95 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x9D PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP PUSH3 0x49A JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x6 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 DUP3 DUP1 SLOAD PUSH3 0x171 SWAP1 PUSH3 0x3AB JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x195 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x1E1 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x1B0 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x1E1 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x1E1 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x1E0 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x1C3 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x1F0 SWAP2 SWAP1 PUSH3 0x1F4 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x20F JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x1F5 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x22A PUSH3 0x224 DUP5 PUSH3 0x33F JUMP JUMPDEST PUSH3 0x316 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x249 JUMPI PUSH3 0x248 PUSH3 0x47A JUMP JUMPDEST JUMPDEST PUSH3 0x256 DUP5 DUP3 DUP6 PUSH3 0x375 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x276 JUMPI PUSH3 0x275 PUSH3 0x475 JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH3 0x288 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x213 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x2AB JUMPI PUSH3 0x2AA PUSH3 0x484 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x2CC JUMPI PUSH3 0x2CB PUSH3 0x47F JUMP JUMPDEST JUMPDEST PUSH3 0x2DA DUP6 DUP3 DUP7 ADD PUSH3 0x25E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x2FE JUMPI PUSH3 0x2FD PUSH3 0x47F JUMP JUMPDEST JUMPDEST PUSH3 0x30C DUP6 DUP3 DUP7 ADD PUSH3 0x25E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x322 PUSH3 0x335 JUMP JUMPDEST SWAP1 POP PUSH3 0x330 DUP3 DUP3 PUSH3 0x3E1 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x35D JUMPI PUSH3 0x35C PUSH3 0x446 JUMP JUMPDEST JUMPDEST PUSH3 0x368 DUP3 PUSH3 0x489 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x395 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x378 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x3A5 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x3C4 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x3DB JUMPI PUSH3 0x3DA PUSH3 0x417 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x3EC DUP3 PUSH3 0x489 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x40E JUMPI PUSH3 0x40D PUSH3 0x446 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT 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 PUSH2 0x27F7 DUP1 PUSH3 0x4AA 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 0x10B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xB88D4FDE GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x2A4 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x2C0 JUMPI DUP1 PUSH4 0xD204C45E EQ PUSH2 0x2F0 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x320 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x350 JUMPI PUSH2 0x10B JUMP JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x242 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x24C JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x26A JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x288 JUMPI PUSH2 0x10B JUMP JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1AA JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x1C6 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x1E2 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x212 JUMPI PUSH2 0x10B JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x110 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x140 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x15E JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x18E JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x12A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x125 SWAP2 SWAP1 PUSH2 0x1BC0 JUMP JUMPDEST PUSH2 0x36C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x137 SWAP2 SWAP1 PUSH2 0x1F14 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x148 PUSH2 0x44E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x155 SWAP2 SWAP1 PUSH2 0x1F2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x178 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x173 SWAP2 SWAP1 PUSH2 0x1C1A JUMP JUMPDEST PUSH2 0x4E0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x185 SWAP2 SWAP1 PUSH2 0x1EAD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1A8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1A3 SWAP2 SWAP1 PUSH2 0x1B80 JUMP JUMPDEST PUSH2 0x526 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1C4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0x1A0E JUMP JUMPDEST PUSH2 0x63E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1E0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1DB SWAP2 SWAP1 PUSH2 0x1A0E JUMP JUMPDEST PUSH2 0x69E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1FC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F7 SWAP2 SWAP1 PUSH2 0x1C1A JUMP JUMPDEST PUSH2 0x6BE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x209 SWAP2 SWAP1 PUSH2 0x1EAD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x22C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x227 SWAP2 SWAP1 PUSH2 0x19A1 JUMP JUMPDEST PUSH2 0x770 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x239 SWAP2 SWAP1 PUSH2 0x20F1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x24A PUSH2 0x828 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x254 PUSH2 0x83C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x261 SWAP2 SWAP1 PUSH2 0x1EAD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x272 PUSH2 0x866 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x27F SWAP2 SWAP1 PUSH2 0x1F2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x29D SWAP2 SWAP1 PUSH2 0x1AE4 JUMP JUMPDEST PUSH2 0x8F8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2BE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2B9 SWAP2 SWAP1 PUSH2 0x1A61 JUMP JUMPDEST PUSH2 0x90E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2DA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2D5 SWAP2 SWAP1 PUSH2 0x1C1A JUMP JUMPDEST PUSH2 0x970 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2E7 SWAP2 SWAP1 PUSH2 0x1F2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x30A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x305 SWAP2 SWAP1 PUSH2 0x1B24 JUMP JUMPDEST PUSH2 0xA15 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x317 SWAP2 SWAP1 PUSH2 0x20F1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x33A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x335 SWAP2 SWAP1 PUSH2 0x19CE JUMP JUMPDEST PUSH2 0xA77 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x347 SWAP2 SWAP1 PUSH2 0x1F14 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x36A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x365 SWAP2 SWAP1 PUSH2 0x19A1 JUMP JUMPDEST PUSH2 0xB0B JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x437 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x447 JUMPI POP PUSH2 0x446 DUP3 PUSH2 0xB8F JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x45D SWAP1 PUSH2 0x230B 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 0x489 SWAP1 PUSH2 0x230B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4D6 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x4AB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x4D6 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 0x4B9 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4EB DUP3 PUSH2 0xBF9 JUMP JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x531 DUP3 PUSH2 0x6BE JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x5A2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x599 SWAP1 PUSH2 0x20B1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x5C1 PUSH2 0xC44 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x5F0 JUMPI POP PUSH2 0x5EF DUP2 PUSH2 0x5EA PUSH2 0xC44 JUMP JUMPDEST PUSH2 0xA77 JUMP JUMPDEST JUMPDEST PUSH2 0x62F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x626 SWAP1 PUSH2 0x2031 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x639 DUP4 DUP4 PUSH2 0xC4C JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x64F PUSH2 0x649 PUSH2 0xC44 JUMP JUMPDEST DUP3 PUSH2 0xD05 JUMP JUMPDEST PUSH2 0x68E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x685 SWAP1 PUSH2 0x20D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x699 DUP4 DUP4 DUP4 PUSH2 0xD9A JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x6B9 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x90E JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x767 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75E SWAP1 PUSH2 0x2091 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x7E1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7D8 SWAP1 PUSH2 0x2011 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 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 0x830 PUSH2 0x1001 JUMP JUMPDEST PUSH2 0x83A PUSH1 0x0 PUSH2 0x107F JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x875 SWAP1 PUSH2 0x230B 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 0x8A1 SWAP1 PUSH2 0x230B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x8EE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x8C3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x8EE 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 0x8D1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x90A PUSH2 0x903 PUSH2 0xC44 JUMP JUMPDEST DUP4 DUP4 PUSH2 0x1145 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x91F PUSH2 0x919 PUSH2 0xC44 JUMP JUMPDEST DUP4 PUSH2 0xD05 JUMP JUMPDEST PUSH2 0x95E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x955 SWAP1 PUSH2 0x20D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x96A DUP5 DUP5 DUP5 DUP5 PUSH2 0x12B2 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x8 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH2 0x990 SWAP1 PUSH2 0x230B 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 0x9BC SWAP1 PUSH2 0x230B JUMP JUMPDEST DUP1 ISZERO PUSH2 0xA09 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x9DE JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xA09 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 0x9EC JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA21 PUSH1 0x7 PUSH2 0x130E JUMP JUMPDEST PUSH2 0xA34 DUP4 PUSH2 0xA2F PUSH1 0x7 PUSH2 0x1324 JUMP JUMPDEST PUSH2 0x1332 JUMP JUMPDEST DUP2 PUSH1 0x8 PUSH1 0x0 PUSH2 0xA43 PUSH1 0x7 PUSH2 0x1324 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0xA64 SWAP3 SWAP2 SWAP1 PUSH2 0x17B5 JUMP JUMPDEST POP PUSH2 0xA6F PUSH1 0x7 PUSH2 0x1324 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 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 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xB13 PUSH2 0x1001 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xB83 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB7A SWAP1 PUSH2 0x1F71 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xB8C DUP2 PUSH2 0x107F JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC02 DUP2 PUSH2 0x1350 JUMP JUMPDEST PUSH2 0xC41 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC38 SWAP1 PUSH2 0x2091 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xCBF DUP4 PUSH2 0x6BE JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xD11 DUP4 PUSH2 0x6BE JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xD53 JUMPI POP PUSH2 0xD52 DUP2 DUP6 PUSH2 0xA77 JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0xD91 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD79 DUP5 PUSH2 0x4E0 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xDBA DUP3 PUSH2 0x6BE JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xE10 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE07 SWAP1 PUSH2 0x1F91 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xE80 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE77 SWAP1 PUSH2 0x1FD1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xE8B DUP4 DUP4 DUP4 PUSH2 0x13BC JUMP JUMPDEST PUSH2 0xE96 PUSH1 0x0 DUP3 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 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 DUP3 DUP3 SLOAD PUSH2 0xEE6 SWAP2 SWAP1 PUSH2 0x2221 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x3 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 DUP3 DUP3 SLOAD PUSH2 0xF3D SWAP2 SWAP1 PUSH2 0x21CB JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0xFFC DUP4 DUP4 DUP4 PUSH2 0x13C1 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x1009 PUSH2 0xC44 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1027 PUSH2 0x83C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x107D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1074 SWAP1 PUSH2 0x2071 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x6 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 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x11B4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11AB SWAP1 PUSH2 0x1FF1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 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 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x12A5 SWAP2 SWAP1 PUSH2 0x1F14 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x12BD DUP5 DUP5 DUP5 PUSH2 0xD9A JUMP JUMPDEST PUSH2 0x12C9 DUP5 DUP5 DUP5 DUP5 PUSH2 0x13C6 JUMP JUMPDEST PUSH2 0x1308 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12FF SWAP1 PUSH2 0x1F51 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x134C DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x155D JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x13E7 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x15B8 JUMP JUMPDEST ISZERO PUSH2 0x1550 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x1410 PUSH2 0xC44 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1432 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1EC8 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x144C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x147D JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x147A SWAP2 SWAP1 PUSH2 0x1BED JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1500 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x14AD JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x14B2 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x14F8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14EF SWAP1 PUSH2 0x1F51 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP2 POP POP PUSH2 0x1555 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x1567 DUP4 DUP4 PUSH2 0x15DB JUMP JUMPDEST PUSH2 0x1574 PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x13C6 JUMP JUMPDEST PUSH2 0x15B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15AA SWAP1 PUSH2 0x1F51 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x164B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1642 SWAP1 PUSH2 0x2051 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1654 DUP2 PUSH2 0x1350 JUMP JUMPDEST ISZERO PUSH2 0x1694 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x168B SWAP1 PUSH2 0x1FB1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x16A0 PUSH1 0x0 DUP4 DUP4 PUSH2 0x13BC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 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 DUP3 DUP3 SLOAD PUSH2 0x16F0 SWAP2 SWAP1 PUSH2 0x21CB JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x17B1 PUSH1 0x0 DUP4 DUP4 PUSH2 0x13C1 JUMP JUMPDEST POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x17C1 SWAP1 PUSH2 0x230B JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x17E3 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x182A JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x17FC JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x182A JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x182A JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x1829 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x180E JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x1837 SWAP2 SWAP1 PUSH2 0x183B JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x1854 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x183C JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x186B PUSH2 0x1866 DUP5 PUSH2 0x2131 JUMP JUMPDEST PUSH2 0x210C JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1887 JUMPI PUSH2 0x1886 PUSH2 0x2400 JUMP JUMPDEST JUMPDEST PUSH2 0x1892 DUP5 DUP3 DUP6 PUSH2 0x22C9 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18AD PUSH2 0x18A8 DUP5 PUSH2 0x2162 JUMP JUMPDEST PUSH2 0x210C JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x18C9 JUMPI PUSH2 0x18C8 PUSH2 0x2400 JUMP JUMPDEST JUMPDEST PUSH2 0x18D4 DUP5 DUP3 DUP6 PUSH2 0x22C9 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x18EB DUP2 PUSH2 0x2765 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1900 DUP2 PUSH2 0x277C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1915 DUP2 PUSH2 0x2793 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x192A DUP2 PUSH2 0x2793 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1945 JUMPI PUSH2 0x1944 PUSH2 0x23FB JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1955 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1858 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1973 JUMPI PUSH2 0x1972 PUSH2 0x23FB JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1983 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x189A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x199B DUP2 PUSH2 0x27AA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x19B7 JUMPI PUSH2 0x19B6 PUSH2 0x240A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x19C5 DUP5 DUP3 DUP6 ADD PUSH2 0x18DC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x19E5 JUMPI PUSH2 0x19E4 PUSH2 0x240A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x19F3 DUP6 DUP3 DUP7 ADD PUSH2 0x18DC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1A04 DUP6 DUP3 DUP7 ADD PUSH2 0x18DC JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1A27 JUMPI PUSH2 0x1A26 PUSH2 0x240A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1A35 DUP7 DUP3 DUP8 ADD PUSH2 0x18DC JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1A46 DUP7 DUP3 DUP8 ADD PUSH2 0x18DC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1A57 DUP7 DUP3 DUP8 ADD PUSH2 0x198C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1A7B JUMPI PUSH2 0x1A7A PUSH2 0x240A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1A89 DUP8 DUP3 DUP9 ADD PUSH2 0x18DC JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x1A9A DUP8 DUP3 DUP9 ADD PUSH2 0x18DC JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x1AAB DUP8 DUP3 DUP9 ADD PUSH2 0x198C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1ACC JUMPI PUSH2 0x1ACB PUSH2 0x2405 JUMP JUMPDEST JUMPDEST PUSH2 0x1AD8 DUP8 DUP3 DUP9 ADD PUSH2 0x1930 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1AFB JUMPI PUSH2 0x1AFA PUSH2 0x240A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1B09 DUP6 DUP3 DUP7 ADD PUSH2 0x18DC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1B1A DUP6 DUP3 DUP7 ADD PUSH2 0x18F1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1B3B JUMPI PUSH2 0x1B3A PUSH2 0x240A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1B49 DUP6 DUP3 DUP7 ADD PUSH2 0x18DC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1B6A JUMPI PUSH2 0x1B69 PUSH2 0x2405 JUMP JUMPDEST JUMPDEST PUSH2 0x1B76 DUP6 DUP3 DUP7 ADD PUSH2 0x195E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1B97 JUMPI PUSH2 0x1B96 PUSH2 0x240A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1BA5 DUP6 DUP3 DUP7 ADD PUSH2 0x18DC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1BB6 DUP6 DUP3 DUP7 ADD PUSH2 0x198C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1BD6 JUMPI PUSH2 0x1BD5 PUSH2 0x240A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1BE4 DUP5 DUP3 DUP6 ADD PUSH2 0x1906 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C03 JUMPI PUSH2 0x1C02 PUSH2 0x240A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1C11 DUP5 DUP3 DUP6 ADD PUSH2 0x191B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C30 JUMPI PUSH2 0x1C2F PUSH2 0x240A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1C3E DUP5 DUP3 DUP6 ADD PUSH2 0x198C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1C50 DUP2 PUSH2 0x2255 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1C5F DUP2 PUSH2 0x2267 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1C70 DUP3 PUSH2 0x2193 JUMP JUMPDEST PUSH2 0x1C7A DUP2 DUP6 PUSH2 0x21A9 JUMP JUMPDEST SWAP4 POP PUSH2 0x1C8A DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x22D8 JUMP JUMPDEST PUSH2 0x1C93 DUP2 PUSH2 0x240F JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CA9 DUP3 PUSH2 0x219E JUMP JUMPDEST PUSH2 0x1CB3 DUP2 DUP6 PUSH2 0x21BA JUMP JUMPDEST SWAP4 POP PUSH2 0x1CC3 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x22D8 JUMP JUMPDEST PUSH2 0x1CCC DUP2 PUSH2 0x240F JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CE4 PUSH1 0x32 DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1CEF DUP3 PUSH2 0x2420 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D07 PUSH1 0x26 DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1D12 DUP3 PUSH2 0x246F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D2A PUSH1 0x25 DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1D35 DUP3 PUSH2 0x24BE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D4D PUSH1 0x1C DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1D58 DUP3 PUSH2 0x250D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D70 PUSH1 0x24 DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1D7B DUP3 PUSH2 0x2536 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D93 PUSH1 0x19 DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1D9E DUP3 PUSH2 0x2585 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1DB6 PUSH1 0x29 DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1DC1 DUP3 PUSH2 0x25AE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1DD9 PUSH1 0x3E DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1DE4 DUP3 PUSH2 0x25FD JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1DFC PUSH1 0x20 DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1E07 DUP3 PUSH2 0x264C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E1F PUSH1 0x20 DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1E2A DUP3 PUSH2 0x2675 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E42 PUSH1 0x18 DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1E4D DUP3 PUSH2 0x269E JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E65 PUSH1 0x21 DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1E70 DUP3 PUSH2 0x26C7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E88 PUSH1 0x2E DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1E93 DUP3 PUSH2 0x2716 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1EA7 DUP2 PUSH2 0x22BF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1EC2 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1C47 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x1EDD PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x1C47 JUMP JUMPDEST PUSH2 0x1EEA PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x1C47 JUMP JUMPDEST PUSH2 0x1EF7 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1E9E JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x1F09 DUP2 DUP5 PUSH2 0x1C65 JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1F29 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1C56 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1F49 DUP2 DUP5 PUSH2 0x1C9E JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1F6A DUP2 PUSH2 0x1CD7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1F8A DUP2 PUSH2 0x1CFA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1FAA DUP2 PUSH2 0x1D1D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1FCA DUP2 PUSH2 0x1D40 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1FEA DUP2 PUSH2 0x1D63 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x200A DUP2 PUSH2 0x1D86 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x202A DUP2 PUSH2 0x1DA9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x204A DUP2 PUSH2 0x1DCC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x206A DUP2 PUSH2 0x1DEF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x208A DUP2 PUSH2 0x1E12 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x20AA DUP2 PUSH2 0x1E35 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x20CA DUP2 PUSH2 0x1E58 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x20EA DUP2 PUSH2 0x1E7B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2106 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1E9E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2116 PUSH2 0x2127 JUMP JUMPDEST SWAP1 POP PUSH2 0x2122 DUP3 DUP3 PUSH2 0x233D JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x214C JUMPI PUSH2 0x214B PUSH2 0x23CC JUMP JUMPDEST JUMPDEST PUSH2 0x2155 DUP3 PUSH2 0x240F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x217D JUMPI PUSH2 0x217C PUSH2 0x23CC JUMP JUMPDEST JUMPDEST PUSH2 0x2186 DUP3 PUSH2 0x240F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x21D6 DUP3 PUSH2 0x22BF JUMP JUMPDEST SWAP2 POP PUSH2 0x21E1 DUP4 PUSH2 0x22BF JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x2216 JUMPI PUSH2 0x2215 PUSH2 0x236E JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x222C DUP3 PUSH2 0x22BF JUMP JUMPDEST SWAP2 POP PUSH2 0x2237 DUP4 PUSH2 0x22BF JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x224A JUMPI PUSH2 0x2249 PUSH2 0x236E JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2260 DUP3 PUSH2 0x229F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x22F6 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x22DB JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x2305 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x2323 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x2337 JUMPI PUSH2 0x2336 PUSH2 0x239D JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2346 DUP3 PUSH2 0x240F JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x2365 JUMPI PUSH2 0x2364 PUSH2 0x23CC JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 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 PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT 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 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F776E6572000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A2061646472657373207A65726F206973206E6F742061207661 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C6964206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F7420746F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6B656E206F776E6572206E6F7220617070726F76656420666F7220616C6C0000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20696E76616C696420746F6B656E2049440000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A2063616C6C6572206973206E6F7420746F6B656E206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x72206E6F7220617070726F766564000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x276E DUP2 PUSH2 0x2255 JUMP JUMPDEST DUP2 EQ PUSH2 0x2779 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2785 DUP2 PUSH2 0x2267 JUMP JUMPDEST DUP2 EQ PUSH2 0x2790 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x279C DUP2 PUSH2 0x2273 JUMP JUMPDEST DUP2 EQ PUSH2 0x27A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x27B3 DUP2 PUSH2 0x22BF JUMP JUMPDEST DUP2 EQ PUSH2 0x27BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x5E JUMPDEST 0x2A 0xC2 PUSH6 0x9ACCEE5914B PUSH21 0x6CA1567A70E3F5BE3D9A874B385BA82F94FEC3764 PUSH20 0x6F6C634300080700330000000000000000000000 ",
"sourceMap": "231:777:11:-:0;;;437:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;523:4;529:6;1464:5:1;1456;:13;;;;;;;;;;;;:::i;:::-;;1489:7;1479;:17;;;;;;;;;;;;:::i;:::-;;1390:113;;936:32:0;955:12;:10;;;:12;;:::i;:::-;936:18;;;:32;;:::i;:::-;437:110:11;;231:777;;640:96:6;693:7;719:10;712:17;;640:96;:::o;2433:187:0:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;231:777:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:421:12:-;96:5;121:66;137:49;179:6;137:49;:::i;:::-;121:66;:::i;:::-;112:75;;210:6;203:5;196:21;248:4;241:5;237:16;286:3;277:6;272:3;268:16;265:25;262:112;;;293:79;;:::i;:::-;262:112;383:39;415:6;410:3;405;383:39;:::i;:::-;102:326;7:421;;;;;:::o;448:355::-;515:5;564:3;557:4;549:6;545:17;541:27;531:122;;572:79;;:::i;:::-;531:122;682:6;676:13;707:90;793:3;785:6;778:4;770:6;766:17;707:90;:::i;:::-;698:99;;521:282;448:355;;;;:::o;809:853::-;908:6;916;965:2;953:9;944:7;940:23;936:32;933:119;;;971:79;;:::i;:::-;933:119;1112:1;1101:9;1097:17;1091:24;1142:18;1134:6;1131:30;1128:117;;;1164:79;;:::i;:::-;1128:117;1269:74;1335:7;1326:6;1315:9;1311:22;1269:74;:::i;:::-;1259:84;;1062:291;1413:2;1402:9;1398:18;1392:25;1444:18;1436:6;1433:30;1430:117;;;1466:79;;:::i;:::-;1430:117;1571:74;1637:7;1628:6;1617:9;1613:22;1571:74;:::i;:::-;1561:84;;1363:292;809:853;;;;;:::o;1668:129::-;1702:6;1729:20;;:::i;:::-;1719:30;;1758:33;1786:4;1778:6;1758:33;:::i;:::-;1668:129;;;:::o;1803:75::-;1836:6;1869:2;1863:9;1853:19;;1803:75;:::o;1884:308::-;1946:4;2036:18;2028:6;2025:30;2022:56;;;2058:18;;:::i;:::-;2022:56;2096:29;2118:6;2096:29;:::i;:::-;2088:37;;2180:4;2174;2170:15;2162:23;;1884:308;;;:::o;2198:307::-;2266:1;2276:113;2290:6;2287:1;2284:13;2276:113;;;2375:1;2370:3;2366:11;2360:18;2356:1;2351:3;2347:11;2340:39;2312:2;2309:1;2305:10;2300:15;;2276:113;;;2407:6;2404:1;2401:13;2398:101;;;2487:1;2478:6;2473:3;2469:16;2462:27;2398:101;2247:258;2198:307;;;:::o;2511:320::-;2555:6;2592:1;2586:4;2582:12;2572:22;;2639:1;2633:4;2629:12;2660:18;2650:81;;2716:4;2708:6;2704:17;2694:27;;2650:81;2778:2;2770:6;2767:14;2747:18;2744:38;2741:84;;;2797:18;;:::i;:::-;2741:84;2562:269;2511:320;;;:::o;2837:281::-;2920:27;2942:4;2920:27;:::i;:::-;2912:6;2908:40;3050:6;3038:10;3035:22;3014:18;3002:10;2999:34;2996:62;2993:88;;;3061:18;;:::i;:::-;2993:88;3101:10;3097:2;3090:22;2880:238;2837:281;;:::o;3124:180::-;3172:77;3169:1;3162:88;3269:4;3266:1;3259:15;3293:4;3290:1;3283:15;3310:180;3358:77;3355:1;3348:88;3455:4;3452:1;3445:15;3479:4;3476:1;3469:15;3496:117;3605:1;3602;3595:12;3619:117;3728:1;3725;3718:12;3742:117;3851:1;3848;3841:12;3865:117;3974:1;3971;3964:12;3988:102;4029:6;4080:2;4076:7;4071:2;4064:5;4060:14;4056:28;4046:38;;3988:102;;;:::o;231:777:11:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfer_978": {
"entryPoint": 5057,
"id": 978,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_848": {
"entryPoint": 3148,
"id": 848,
"parameterSlots": 2,
"returnSlots": 0
},
"@_beforeTokenTransfer_967": {
"entryPoint": 5052,
"id": 967,
"parameterSlots": 3,
"returnSlots": 0
},
"@_checkOnERC721Received_956": {
"entryPoint": 5062,
"id": 956,
"parameterSlots": 4,
"returnSlots": 1
},
"@_checkOwner_54": {
"entryPoint": 4097,
"id": 54,
"parameterSlots": 0,
"returnSlots": 0
},
"@_exists_545": {
"entryPoint": 4944,
"id": 545,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_579": {
"entryPoint": 3333,
"id": 579,
"parameterSlots": 2,
"returnSlots": 1
},
"@_mint_689": {
"entryPoint": 5595,
"id": 689,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_1447": {
"entryPoint": 3140,
"id": 1447,
"parameterSlots": 0,
"returnSlots": 1
},
"@_requireMinted_894": {
"entryPoint": 3065,
"id": 894,
"parameterSlots": 1,
"returnSlots": 0
},
"@_safeMint_594": {
"entryPoint": 4914,
"id": 594,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_623": {
"entryPoint": 5469,
"id": 623,
"parameterSlots": 3,
"returnSlots": 0
},
"@_safeTransfer_527": {
"entryPoint": 4786,
"id": 527,
"parameterSlots": 4,
"returnSlots": 0
},
"@_setApprovalForAll_880": {
"entryPoint": 4421,
"id": 880,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transferOwnership_111": {
"entryPoint": 4223,
"id": 111,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transfer_824": {
"entryPoint": 3482,
"id": 824,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_369": {
"entryPoint": 1318,
"id": 369,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_230": {
"entryPoint": 1904,
"id": 230,
"parameterSlots": 1,
"returnSlots": 1
},
"@current_1475": {
"entryPoint": 4900,
"id": 1475,
"parameterSlots": 1,
"returnSlots": 1
},
"@getApproved_387": {
"entryPoint": 1248,
"id": 387,
"parameterSlots": 1,
"returnSlots": 1
},
"@increment_1489": {
"entryPoint": 4878,
"id": 1489,
"parameterSlots": 1,
"returnSlots": 0
},
"@isApprovedForAll_422": {
"entryPoint": 2679,
"id": 422,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_1158": {
"entryPoint": 5560,
"id": 1158,
"parameterSlots": 1,
"returnSlots": 1
},
"@name_268": {
"entryPoint": 1102,
"id": 268,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_258": {
"entryPoint": 1726,
"id": 258,
"parameterSlots": 1,
"returnSlots": 1
},
"@owner_40": {
"entryPoint": 2108,
"id": 40,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_68": {
"entryPoint": 2088,
"id": 68,
"parameterSlots": 0,
"returnSlots": 0
},
"@safeMint_1859": {
"entryPoint": 2581,
"id": 1859,
"parameterSlots": 2,
"returnSlots": 1
},
"@safeTransferFrom_468": {
"entryPoint": 1694,
"id": 468,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_498": {
"entryPoint": 2318,
"id": 498,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_404": {
"entryPoint": 2296,
"id": 404,
"parameterSlots": 2,
"returnSlots": 0
},
"@supportsInterface_1780": {
"entryPoint": 2959,
"id": 1780,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_206": {
"entryPoint": 876,
"id": 206,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_278": {
"entryPoint": 2150,
"id": 278,
"parameterSlots": 0,
"returnSlots": 1
},
"@tokenURI_1872": {
"entryPoint": 2416,
"id": 1872,
"parameterSlots": 1,
"returnSlots": 1
},
"@transferFrom_449": {
"entryPoint": 1598,
"id": 449,
"parameterSlots": 3,
"returnSlots": 0
},
"@transferOwnership_91": {
"entryPoint": 2827,
"id": 91,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_bytes_memory_ptr": {
"entryPoint": 6232,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 6298,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 6364,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool": {
"entryPoint": 6385,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 6406,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4_fromMemory": {
"entryPoint": 6427,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_memory_ptr": {
"entryPoint": 6448,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 6494,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 6540,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 6561,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 6606,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 6670,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 6753,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 6884,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_string_memory_ptr": {
"entryPoint": 6948,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 7040,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 7104,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 7149,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 7194,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 7239,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 7254,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 7269,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7326,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7383,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7418,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7453,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7488,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7523,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7558,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7593,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7628,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7663,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7698,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7733,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7768,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7803,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 7838,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 7853,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed": {
"entryPoint": 7880,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 7956,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7983,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8017,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8049,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8081,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8113,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8145,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8177,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8209,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8241,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8273,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8305,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8337,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8369,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8401,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 8433,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 8460,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 8487,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_bytes_memory_ptr": {
"entryPoint": 8497,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 8546,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 8595,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 8606,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 8617,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 8634,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 8651,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 8737,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 8789,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 8807,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 8819,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 8863,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 8895,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 8905,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 8920,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 8971,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 9021,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x11": {
"entryPoint": 9070,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 9117,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 9164,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 9211,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 9216,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 9221,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 9226,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 9231,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e": {
"entryPoint": 9248,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 9327,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48": {
"entryPoint": 9406,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57": {
"entryPoint": 9485,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4": {
"entryPoint": 9526,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05": {
"entryPoint": 9605,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159": {
"entryPoint": 9646,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304": {
"entryPoint": 9725,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6": {
"entryPoint": 9804,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 9845,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f": {
"entryPoint": 9886,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942": {
"entryPoint": 9927,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b": {
"entryPoint": 10006,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 10085,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 10108,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 10131,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 10154,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:28430:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "90:327:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "100:74:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "166:6:12"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "125:40:12"
},
"nodeType": "YulFunctionCall",
"src": "125:48:12"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "109:15:12"
},
"nodeType": "YulFunctionCall",
"src": "109:65:12"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "100:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "190:5:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "197:6:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "183:6:12"
},
"nodeType": "YulFunctionCall",
"src": "183:21:12"
},
"nodeType": "YulExpressionStatement",
"src": "183:21:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "213:27:12",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "228:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "235:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "224:3:12"
},
"nodeType": "YulFunctionCall",
"src": "224:16:12"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "217:3:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "278:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "280:77:12"
},
"nodeType": "YulFunctionCall",
"src": "280:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "280:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "259:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "264:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "255:3:12"
},
"nodeType": "YulFunctionCall",
"src": "255:16:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "273:3:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "252:2:12"
},
"nodeType": "YulFunctionCall",
"src": "252:25:12"
},
"nodeType": "YulIf",
"src": "249:112:12"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "394:3:12"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "399:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "404:6:12"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "370:23:12"
},
"nodeType": "YulFunctionCall",
"src": "370:41:12"
},
"nodeType": "YulExpressionStatement",
"src": "370:41:12"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "63:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "68:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "76:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "84:5:12",
"type": ""
}
],
"src": "7:410:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "507:328:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "517:75:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "584:6:12"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "542:41:12"
},
"nodeType": "YulFunctionCall",
"src": "542:49:12"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "526:15:12"
},
"nodeType": "YulFunctionCall",
"src": "526:66:12"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "517:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "608:5:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "615:6:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "601:6:12"
},
"nodeType": "YulFunctionCall",
"src": "601:21:12"
},
"nodeType": "YulExpressionStatement",
"src": "601:21:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "631:27:12",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "646:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "653:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "642:3:12"
},
"nodeType": "YulFunctionCall",
"src": "642:16:12"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "635:3:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "696:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "698:77:12"
},
"nodeType": "YulFunctionCall",
"src": "698:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "698:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "677:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "682:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "673:3:12"
},
"nodeType": "YulFunctionCall",
"src": "673:16:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "691:3:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "670:2:12"
},
"nodeType": "YulFunctionCall",
"src": "670:25:12"
},
"nodeType": "YulIf",
"src": "667:112:12"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "812:3:12"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "817:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "822:6:12"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "788:23:12"
},
"nodeType": "YulFunctionCall",
"src": "788:41:12"
},
"nodeType": "YulExpressionStatement",
"src": "788:41:12"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "480:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "485:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "493:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "501:5:12",
"type": ""
}
],
"src": "423:412:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "893:87:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "903:29:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "925:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "912:12:12"
},
"nodeType": "YulFunctionCall",
"src": "912:20:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "903:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "968:5:12"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "941:26:12"
},
"nodeType": "YulFunctionCall",
"src": "941:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "941:33:12"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "871:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "879:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "887:5:12",
"type": ""
}
],
"src": "841:139:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1035:84:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1045:29:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1067:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1054:12:12"
},
"nodeType": "YulFunctionCall",
"src": "1054:20:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1045:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1107:5:12"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "1083:23:12"
},
"nodeType": "YulFunctionCall",
"src": "1083:30:12"
},
"nodeType": "YulExpressionStatement",
"src": "1083:30:12"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1013:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1021:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1029:5:12",
"type": ""
}
],
"src": "986:133:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1176:86:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1186:29:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1208:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1195:12:12"
},
"nodeType": "YulFunctionCall",
"src": "1195:20:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1186:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1250:5:12"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1224:25:12"
},
"nodeType": "YulFunctionCall",
"src": "1224:32:12"
},
"nodeType": "YulExpressionStatement",
"src": "1224:32:12"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1154:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1162:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1170:5:12",
"type": ""
}
],
"src": "1125:137:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1330:79:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1340:22:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1355:6:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1349:5:12"
},
"nodeType": "YulFunctionCall",
"src": "1349:13:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1340:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1397:5:12"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1371:25:12"
},
"nodeType": "YulFunctionCall",
"src": "1371:32:12"
},
"nodeType": "YulExpressionStatement",
"src": "1371:32:12"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1308:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1316:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1324:5:12",
"type": ""
}
],
"src": "1268:141:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1489:277:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1538:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "1540:77:12"
},
"nodeType": "YulFunctionCall",
"src": "1540:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "1540:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1517:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1525:4:12",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1513:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1513:17:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1532:3:12"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1509:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1509:27:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1502:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1502:35:12"
},
"nodeType": "YulIf",
"src": "1499:122:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1630:34:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1657:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1644:12:12"
},
"nodeType": "YulFunctionCall",
"src": "1644:20:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1634:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1673:87:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1733:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1741:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1729:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1729:17:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1748:6:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1756:3:12"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1682:46:12"
},
"nodeType": "YulFunctionCall",
"src": "1682:78:12"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1673:5:12"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1467:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1475:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1483:5:12",
"type": ""
}
],
"src": "1428:338:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1848:278:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1897:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "1899:77:12"
},
"nodeType": "YulFunctionCall",
"src": "1899:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "1899:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1876:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1884:4:12",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1872:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1872:17:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1891:3:12"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1868:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1868:27:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1861:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1861:35:12"
},
"nodeType": "YulIf",
"src": "1858:122:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1989:34:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2016:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2003:12:12"
},
"nodeType": "YulFunctionCall",
"src": "2003:20:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1993:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2032:88:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2093:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2101:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2089:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2089:17:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2108:6:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2116:3:12"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2041:47:12"
},
"nodeType": "YulFunctionCall",
"src": "2041:79:12"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2032:5:12"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1826:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1834:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1842:5:12",
"type": ""
}
],
"src": "1786:340:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2184:87:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2194:29:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2216:6:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2203:12:12"
},
"nodeType": "YulFunctionCall",
"src": "2203:20:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2194:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2259:5:12"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2232:26:12"
},
"nodeType": "YulFunctionCall",
"src": "2232:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "2232:33:12"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2162:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2170:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2178:5:12",
"type": ""
}
],
"src": "2132:139:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2343:263:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2389:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2391:77:12"
},
"nodeType": "YulFunctionCall",
"src": "2391:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "2391:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2364:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2373:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2360:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2360:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2385:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2356:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2356:32:12"
},
"nodeType": "YulIf",
"src": "2353:119:12"
},
{
"nodeType": "YulBlock",
"src": "2482:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2497:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2511:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2501:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2526:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2561:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2572:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2557:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2557:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2581:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2536:20:12"
},
"nodeType": "YulFunctionCall",
"src": "2536:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2526:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2313:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2324:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2336:6:12",
"type": ""
}
],
"src": "2277:329:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2695:391:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2741:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2743:77:12"
},
"nodeType": "YulFunctionCall",
"src": "2743:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "2743:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2716:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2725:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2712:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2712:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2737:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2708:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2708:32:12"
},
"nodeType": "YulIf",
"src": "2705:119:12"
},
{
"nodeType": "YulBlock",
"src": "2834:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2849:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2863:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2853:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2878:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2913:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2924:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2909:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2909:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2933:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2888:20:12"
},
"nodeType": "YulFunctionCall",
"src": "2888:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2878:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2961:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2976:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2990:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2980:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3006:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3041:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3052:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3037:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3037:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3061:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3016:20:12"
},
"nodeType": "YulFunctionCall",
"src": "3016:53:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3006:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2657:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2668:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2680:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2688:6:12",
"type": ""
}
],
"src": "2612:474:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3192:519:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3238:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3240:77:12"
},
"nodeType": "YulFunctionCall",
"src": "3240:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "3240:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3213:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3222:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3209:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3209:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3234:2:12",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3205:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3205:32:12"
},
"nodeType": "YulIf",
"src": "3202:119:12"
},
{
"nodeType": "YulBlock",
"src": "3331:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3346:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3360:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3350:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3375:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3410:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3421:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3406:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3406:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3430:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3385:20:12"
},
"nodeType": "YulFunctionCall",
"src": "3385:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3375:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3458:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3473:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3487:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3477:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3503:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3538:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3549:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3534:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3534:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3558:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3513:20:12"
},
"nodeType": "YulFunctionCall",
"src": "3513:53:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3503:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3586:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3601:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3615:2:12",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3605:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3631:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3666:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3677:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3662:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3662:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3686:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3641:20:12"
},
"nodeType": "YulFunctionCall",
"src": "3641:53:12"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3631:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3146:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3157:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3169:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3177:6:12",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3185:6:12",
"type": ""
}
],
"src": "3092:619:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3843:817:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3890:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3892:77:12"
},
"nodeType": "YulFunctionCall",
"src": "3892:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "3892:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3864:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3873:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3860:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3860:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3885:3:12",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3856:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3856:33:12"
},
"nodeType": "YulIf",
"src": "3853:120:12"
},
{
"nodeType": "YulBlock",
"src": "3983:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3998:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4012:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4002:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4027:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4062:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4073:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4058:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4058:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4082:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4037:20:12"
},
"nodeType": "YulFunctionCall",
"src": "4037:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4027:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4110:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4125:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4139:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4129:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4155:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4190:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4201:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4186:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4186:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4210:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4165:20:12"
},
"nodeType": "YulFunctionCall",
"src": "4165:53:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4155:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4238:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4253:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4267:2:12",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4257:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4283:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4318:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4329:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4314:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4314:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4338:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4293:20:12"
},
"nodeType": "YulFunctionCall",
"src": "4293:53:12"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4283:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4366:287:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4381:46:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4412:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4423:2:12",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4408:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4408:18:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4395:12:12"
},
"nodeType": "YulFunctionCall",
"src": "4395:32:12"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4385:6:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4474:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "4476:77:12"
},
"nodeType": "YulFunctionCall",
"src": "4476:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "4476:79:12"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4446:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4454:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4443:2:12"
},
"nodeType": "YulFunctionCall",
"src": "4443:30:12"
},
"nodeType": "YulIf",
"src": "4440:117:12"
},
{
"nodeType": "YulAssignment",
"src": "4571:72:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4615:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4626:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4611:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4611:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4635:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4581:29:12"
},
"nodeType": "YulFunctionCall",
"src": "4581:62:12"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "4571:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3789:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3800:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3812:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3820:6:12",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3828:6:12",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "3836:6:12",
"type": ""
}
],
"src": "3717:943:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4746:388:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4792:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4794:77:12"
},
"nodeType": "YulFunctionCall",
"src": "4794:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "4794:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4767:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4776:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4763:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4763:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4788:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4759:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4759:32:12"
},
"nodeType": "YulIf",
"src": "4756:119:12"
},
{
"nodeType": "YulBlock",
"src": "4885:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4900:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4914:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4904:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4929:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4964:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4975:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4960:3:12"
},
"nodeType": "YulFunctionCall",
"src": "4960:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4984:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4939:20:12"
},
"nodeType": "YulFunctionCall",
"src": "4939:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4929:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5012:115:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5027:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5041:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5031:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5057:60:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5089:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5100:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5085:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5085:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5109:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "5067:17:12"
},
"nodeType": "YulFunctionCall",
"src": "5067:50:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5057:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4708:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4719:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4731:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4739:6:12",
"type": ""
}
],
"src": "4666:468:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5233:561:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5279:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5281:77:12"
},
"nodeType": "YulFunctionCall",
"src": "5281:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "5281:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5254:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5263:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5250:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5250:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5275:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5246:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5246:32:12"
},
"nodeType": "YulIf",
"src": "5243:119:12"
},
{
"nodeType": "YulBlock",
"src": "5372:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5387:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5401:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5391:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5416:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5451:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5462:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5447:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5447:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5471:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5426:20:12"
},
"nodeType": "YulFunctionCall",
"src": "5426:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5416:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5499:288:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5514:46:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5545:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5556:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5541:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5541:18:12"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5528:12:12"
},
"nodeType": "YulFunctionCall",
"src": "5528:32:12"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5518:6:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5607:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "5609:77:12"
},
"nodeType": "YulFunctionCall",
"src": "5609:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "5609:79:12"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5579:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5587:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5576:2:12"
},
"nodeType": "YulFunctionCall",
"src": "5576:30:12"
},
"nodeType": "YulIf",
"src": "5573:117:12"
},
{
"nodeType": "YulAssignment",
"src": "5704:73:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5749:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5760:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5745:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5745:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5769:7:12"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5714:30:12"
},
"nodeType": "YulFunctionCall",
"src": "5714:63:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5704:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5195:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5206:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5218:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5226:6:12",
"type": ""
}
],
"src": "5140:654:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5883:391:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5929:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5931:77:12"
},
"nodeType": "YulFunctionCall",
"src": "5931:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "5931:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5904:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5913:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5900:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5900:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5925:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5896:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5896:32:12"
},
"nodeType": "YulIf",
"src": "5893:119:12"
},
{
"nodeType": "YulBlock",
"src": "6022:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6037:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6051:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6041:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6066:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6101:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6112:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6097:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6097:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6121:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6076:20:12"
},
"nodeType": "YulFunctionCall",
"src": "6076:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6066:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6149:118:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6164:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6178:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6168:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6194:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6229:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6240:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6225:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6225:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6249:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "6204:20:12"
},
"nodeType": "YulFunctionCall",
"src": "6204:53:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6194:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5845:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5856:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5868:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5876:6:12",
"type": ""
}
],
"src": "5800:474:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6345:262:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6391:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6393:77:12"
},
"nodeType": "YulFunctionCall",
"src": "6393:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "6393:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6366:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6375:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6362:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6362:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6387:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6358:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6358:32:12"
},
"nodeType": "YulIf",
"src": "6355:119:12"
},
{
"nodeType": "YulBlock",
"src": "6484:116:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6499:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6513:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6503:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6528:62:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6562:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6573:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6558:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6558:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6582:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "6538:19:12"
},
"nodeType": "YulFunctionCall",
"src": "6538:52:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6528:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6315:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6326:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6338:6:12",
"type": ""
}
],
"src": "6280:327:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6689:273:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6735:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6737:77:12"
},
"nodeType": "YulFunctionCall",
"src": "6737:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "6737:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6710:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6719:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6706:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6706:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6731:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6702:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6702:32:12"
},
"nodeType": "YulIf",
"src": "6699:119:12"
},
{
"nodeType": "YulBlock",
"src": "6828:127:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6843:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6857:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6847:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6872:73:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6917:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6928:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6913:3:12"
},
"nodeType": "YulFunctionCall",
"src": "6913:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6937:7:12"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "6882:30:12"
},
"nodeType": "YulFunctionCall",
"src": "6882:63:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6872:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6659:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6670:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6682:6:12",
"type": ""
}
],
"src": "6613:349:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7034:263:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7080:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "7082:77:12"
},
"nodeType": "YulFunctionCall",
"src": "7082:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "7082:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7055:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7064:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7051:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7051:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7076:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7047:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7047:32:12"
},
"nodeType": "YulIf",
"src": "7044:119:12"
},
{
"nodeType": "YulBlock",
"src": "7173:117:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7188:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7202:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7192:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7217:63:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7252:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7263:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7248:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7248:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7272:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "7227:20:12"
},
"nodeType": "YulFunctionCall",
"src": "7227:53:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7217:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7004:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7015:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7027:6:12",
"type": ""
}
],
"src": "6968:329:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7368:53:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7385:3:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7408:5:12"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "7390:17:12"
},
"nodeType": "YulFunctionCall",
"src": "7390:24:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7378:6:12"
},
"nodeType": "YulFunctionCall",
"src": "7378:37:12"
},
"nodeType": "YulExpressionStatement",
"src": "7378:37:12"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7356:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7363:3:12",
"type": ""
}
],
"src": "7303:118:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7486:50:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7503:3:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7523:5:12"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "7508:14:12"
},
"nodeType": "YulFunctionCall",
"src": "7508:21:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7496:6:12"
},
"nodeType": "YulFunctionCall",
"src": "7496:34:12"
},
"nodeType": "YulExpressionStatement",
"src": "7496:34:12"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7474:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7481:3:12",
"type": ""
}
],
"src": "7427:109:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7632:270:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7642:52:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7688:5:12"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "7656:31:12"
},
"nodeType": "YulFunctionCall",
"src": "7656:38:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7646:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7703:77:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7768:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7773:6:12"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7710:57:12"
},
"nodeType": "YulFunctionCall",
"src": "7710:70:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7703:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7815:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7822:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7811:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7811:16:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7829:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7834:6:12"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "7789:21:12"
},
"nodeType": "YulFunctionCall",
"src": "7789:52:12"
},
"nodeType": "YulExpressionStatement",
"src": "7789:52:12"
},
{
"nodeType": "YulAssignment",
"src": "7850:46:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7861:3:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7888:6:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "7866:21:12"
},
"nodeType": "YulFunctionCall",
"src": "7866:29:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7857:3:12"
},
"nodeType": "YulFunctionCall",
"src": "7857:39:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7850:3:12"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7613:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7620:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7628:3:12",
"type": ""
}
],
"src": "7542:360:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8000:272:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8010:53:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8057:5:12"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8024:32:12"
},
"nodeType": "YulFunctionCall",
"src": "8024:39:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8014:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8072:78:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8138:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8143:6:12"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8079:58:12"
},
"nodeType": "YulFunctionCall",
"src": "8079:71:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8072:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8185:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8192:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8181:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8181:16:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8199:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8204:6:12"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "8159:21:12"
},
"nodeType": "YulFunctionCall",
"src": "8159:52:12"
},
"nodeType": "YulExpressionStatement",
"src": "8159:52:12"
},
{
"nodeType": "YulAssignment",
"src": "8220:46:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8231:3:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8258:6:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "8236:21:12"
},
"nodeType": "YulFunctionCall",
"src": "8236:29:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8227:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8227:39:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8220:3:12"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7981:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7988:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7996:3:12",
"type": ""
}
],
"src": "7908:364:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8424:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8434:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8500:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8505:2:12",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8441:58:12"
},
"nodeType": "YulFunctionCall",
"src": "8441:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8434:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8606:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulIdentifier",
"src": "8517:88:12"
},
"nodeType": "YulFunctionCall",
"src": "8517:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "8517:93:12"
},
{
"nodeType": "YulAssignment",
"src": "8619:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8630:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8635:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8626:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8626:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8619:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8412:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8420:3:12",
"type": ""
}
],
"src": "8278:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8796:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8806:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8872:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8877:2:12",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8813:58:12"
},
"nodeType": "YulFunctionCall",
"src": "8813:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8806:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8978:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "8889:88:12"
},
"nodeType": "YulFunctionCall",
"src": "8889:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "8889:93:12"
},
{
"nodeType": "YulAssignment",
"src": "8991:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9002:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9007:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8998:3:12"
},
"nodeType": "YulFunctionCall",
"src": "8998:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8991:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8784:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8792:3:12",
"type": ""
}
],
"src": "8650:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9168:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9178:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9244:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9249:2:12",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9185:58:12"
},
"nodeType": "YulFunctionCall",
"src": "9185:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9178:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9350:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulIdentifier",
"src": "9261:88:12"
},
"nodeType": "YulFunctionCall",
"src": "9261:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "9261:93:12"
},
{
"nodeType": "YulAssignment",
"src": "9363:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9374:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9379:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9370:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9370:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9363:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9156:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9164:3:12",
"type": ""
}
],
"src": "9022:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9540:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9550:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9616:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9621:2:12",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9557:58:12"
},
"nodeType": "YulFunctionCall",
"src": "9557:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9550:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9722:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulIdentifier",
"src": "9633:88:12"
},
"nodeType": "YulFunctionCall",
"src": "9633:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "9633:93:12"
},
{
"nodeType": "YulAssignment",
"src": "9735:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9746:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9751:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9742:3:12"
},
"nodeType": "YulFunctionCall",
"src": "9742:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9735:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9528:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9536:3:12",
"type": ""
}
],
"src": "9394:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9912:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9922:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9988:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9993:2:12",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9929:58:12"
},
"nodeType": "YulFunctionCall",
"src": "9929:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9922:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10094:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulIdentifier",
"src": "10005:88:12"
},
"nodeType": "YulFunctionCall",
"src": "10005:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "10005:93:12"
},
{
"nodeType": "YulAssignment",
"src": "10107:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10118:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10123:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10114:3:12"
},
"nodeType": "YulFunctionCall",
"src": "10114:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10107:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9900:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9908:3:12",
"type": ""
}
],
"src": "9766:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10284:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10294:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10360:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10365:2:12",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10301:58:12"
},
"nodeType": "YulFunctionCall",
"src": "10301:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10294:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10466:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulIdentifier",
"src": "10377:88:12"
},
"nodeType": "YulFunctionCall",
"src": "10377:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "10377:93:12"
},
{
"nodeType": "YulAssignment",
"src": "10479:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10490:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10495:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10486:3:12"
},
"nodeType": "YulFunctionCall",
"src": "10486:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10479:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10272:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10280:3:12",
"type": ""
}
],
"src": "10138:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10656:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10666:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10732:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10737:2:12",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10673:58:12"
},
"nodeType": "YulFunctionCall",
"src": "10673:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10666:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10838:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159",
"nodeType": "YulIdentifier",
"src": "10749:88:12"
},
"nodeType": "YulFunctionCall",
"src": "10749:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "10749:93:12"
},
{
"nodeType": "YulAssignment",
"src": "10851:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10862:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10867:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10858:3:12"
},
"nodeType": "YulFunctionCall",
"src": "10858:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10851:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10644:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10652:3:12",
"type": ""
}
],
"src": "10510:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11028:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11038:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11104:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11109:2:12",
"type": "",
"value": "62"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11045:58:12"
},
"nodeType": "YulFunctionCall",
"src": "11045:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11038:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11210:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304",
"nodeType": "YulIdentifier",
"src": "11121:88:12"
},
"nodeType": "YulFunctionCall",
"src": "11121:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "11121:93:12"
},
{
"nodeType": "YulAssignment",
"src": "11223:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11234:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11239:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11230:3:12"
},
"nodeType": "YulFunctionCall",
"src": "11230:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11223:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11016:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11024:3:12",
"type": ""
}
],
"src": "10882:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11400:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11410:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11476:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11481:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11417:58:12"
},
"nodeType": "YulFunctionCall",
"src": "11417:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11410:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11582:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulIdentifier",
"src": "11493:88:12"
},
"nodeType": "YulFunctionCall",
"src": "11493:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "11493:93:12"
},
{
"nodeType": "YulAssignment",
"src": "11595:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11606:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11611:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11602:3:12"
},
"nodeType": "YulFunctionCall",
"src": "11602:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11595:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11388:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11396:3:12",
"type": ""
}
],
"src": "11254:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11772:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11782:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11848:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11853:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11789:58:12"
},
"nodeType": "YulFunctionCall",
"src": "11789:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11782:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11954:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "11865:88:12"
},
"nodeType": "YulFunctionCall",
"src": "11865:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "11865:93:12"
},
{
"nodeType": "YulAssignment",
"src": "11967:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11978:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11983:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11974:3:12"
},
"nodeType": "YulFunctionCall",
"src": "11974:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11967:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11760:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11768:3:12",
"type": ""
}
],
"src": "11626:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12144:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12154:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12220:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12225:2:12",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12161:58:12"
},
"nodeType": "YulFunctionCall",
"src": "12161:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12154:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12326:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f",
"nodeType": "YulIdentifier",
"src": "12237:88:12"
},
"nodeType": "YulFunctionCall",
"src": "12237:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "12237:93:12"
},
{
"nodeType": "YulAssignment",
"src": "12339:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12350:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12355:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12346:3:12"
},
"nodeType": "YulFunctionCall",
"src": "12346:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12339:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12132:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12140:3:12",
"type": ""
}
],
"src": "11998:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12516:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12526:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12592:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12597:2:12",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12533:58:12"
},
"nodeType": "YulFunctionCall",
"src": "12533:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12526:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12698:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulIdentifier",
"src": "12609:88:12"
},
"nodeType": "YulFunctionCall",
"src": "12609:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "12609:93:12"
},
{
"nodeType": "YulAssignment",
"src": "12711:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12722:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12727:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12718:3:12"
},
"nodeType": "YulFunctionCall",
"src": "12718:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12711:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12504:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12512:3:12",
"type": ""
}
],
"src": "12370:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12888:220:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12898:74:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12964:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12969:2:12",
"type": "",
"value": "46"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12905:58:12"
},
"nodeType": "YulFunctionCall",
"src": "12905:67:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12898:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13070:3:12"
}
],
"functionName": {
"name": "store_literal_in_memory_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b",
"nodeType": "YulIdentifier",
"src": "12981:88:12"
},
"nodeType": "YulFunctionCall",
"src": "12981:93:12"
},
"nodeType": "YulExpressionStatement",
"src": "12981:93:12"
},
{
"nodeType": "YulAssignment",
"src": "13083:19:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13094:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13099:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13090:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13090:12:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13083:3:12"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12876:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12884:3:12",
"type": ""
}
],
"src": "12742:366:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13179:53:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13196:3:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13219:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "13201:17:12"
},
"nodeType": "YulFunctionCall",
"src": "13201:24:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13189:6:12"
},
"nodeType": "YulFunctionCall",
"src": "13189:37:12"
},
"nodeType": "YulExpressionStatement",
"src": "13189:37:12"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13167:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13174:3:12",
"type": ""
}
],
"src": "13114:118:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13336:124:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13346:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13358:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13369:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13354:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13354:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13346:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13426:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13439:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13450:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13435:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13435:17:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "13382:43:12"
},
"nodeType": "YulFunctionCall",
"src": "13382:71:12"
},
"nodeType": "YulExpressionStatement",
"src": "13382:71:12"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13308:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13320:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13331:4:12",
"type": ""
}
],
"src": "13238:222:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13666:440:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13676:27:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13688:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13699:3:12",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13684:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13684:19:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13676:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13757:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13770:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13781:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13766:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13766:17:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "13713:43:12"
},
"nodeType": "YulFunctionCall",
"src": "13713:71:12"
},
"nodeType": "YulExpressionStatement",
"src": "13713:71:12"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "13838:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13851:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13862:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13847:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13847:18:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "13794:43:12"
},
"nodeType": "YulFunctionCall",
"src": "13794:72:12"
},
"nodeType": "YulExpressionStatement",
"src": "13794:72:12"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "13920:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13933:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13944:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13929:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13929:18:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "13876:43:12"
},
"nodeType": "YulFunctionCall",
"src": "13876:72:12"
},
"nodeType": "YulExpressionStatement",
"src": "13876:72:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13969:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13980:2:12",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13965:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13965:18:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13989:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13995:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13985:3:12"
},
"nodeType": "YulFunctionCall",
"src": "13985:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13958:6:12"
},
"nodeType": "YulFunctionCall",
"src": "13958:48:12"
},
"nodeType": "YulExpressionStatement",
"src": "13958:48:12"
},
{
"nodeType": "YulAssignment",
"src": "14015:84:12",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "14085:6:12"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14094:4:12"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14023:61:12"
},
"nodeType": "YulFunctionCall",
"src": "14023:76:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14015:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13614:9:12",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "13626:6:12",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "13634:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "13642:6:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13650:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13661:4:12",
"type": ""
}
],
"src": "13466:640:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14204:118:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14214:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14226:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14237:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14222:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14222:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14214:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "14288:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14301:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14312:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14297:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14297:17:12"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "14250:37:12"
},
"nodeType": "YulFunctionCall",
"src": "14250:65:12"
},
"nodeType": "YulExpressionStatement",
"src": "14250:65:12"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14176:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "14188:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14199:4:12",
"type": ""
}
],
"src": "14112:210:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14446:195:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14456:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14468:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14479:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14464:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14464:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14456:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14503:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14514:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14499:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14499:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14522:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14528:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14518:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14518:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14492:6:12"
},
"nodeType": "YulFunctionCall",
"src": "14492:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "14492:47:12"
},
{
"nodeType": "YulAssignment",
"src": "14548:86:12",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "14620:6:12"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14629:4:12"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14556:63:12"
},
"nodeType": "YulFunctionCall",
"src": "14556:78:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14548:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14418:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "14430:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14441:4:12",
"type": ""
}
],
"src": "14328:313:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14818:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14828:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14840:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14851:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14836:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14836:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14828:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14875:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14886:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14871:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14871:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14894:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14900:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14890:3:12"
},
"nodeType": "YulFunctionCall",
"src": "14890:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14864:6:12"
},
"nodeType": "YulFunctionCall",
"src": "14864:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "14864:47:12"
},
{
"nodeType": "YulAssignment",
"src": "14920:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15054:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14928:124:12"
},
"nodeType": "YulFunctionCall",
"src": "14928:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14920:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14798:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14813:4:12",
"type": ""
}
],
"src": "14647:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15243:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15253:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15265:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15276:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15261:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15261:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15253:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15300:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15311:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15296:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15296:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15319:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15325:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15315:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15315:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15289:6:12"
},
"nodeType": "YulFunctionCall",
"src": "15289:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "15289:47:12"
},
{
"nodeType": "YulAssignment",
"src": "15345:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15479:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15353:124:12"
},
"nodeType": "YulFunctionCall",
"src": "15353:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15345:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15223:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15238:4:12",
"type": ""
}
],
"src": "15072:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15668:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15678:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15690:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15701:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15686:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15686:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15678:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15725:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15736:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15721:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15721:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15744:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15750:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15740:3:12"
},
"nodeType": "YulFunctionCall",
"src": "15740:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15714:6:12"
},
"nodeType": "YulFunctionCall",
"src": "15714:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "15714:47:12"
},
{
"nodeType": "YulAssignment",
"src": "15770:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15904:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15778:124:12"
},
"nodeType": "YulFunctionCall",
"src": "15778:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15770:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15648:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15663:4:12",
"type": ""
}
],
"src": "15497:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16093:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16103:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16115:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16126:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16111:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16111:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16103:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16150:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16161:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16146:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16146:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16169:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16175:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16165:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16165:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16139:6:12"
},
"nodeType": "YulFunctionCall",
"src": "16139:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "16139:47:12"
},
{
"nodeType": "YulAssignment",
"src": "16195:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16329:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16203:124:12"
},
"nodeType": "YulFunctionCall",
"src": "16203:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16195:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16073:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16088:4:12",
"type": ""
}
],
"src": "15922:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16518:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16528:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16540:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16551:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16536:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16536:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16528:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16575:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16586:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16571:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16571:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16594:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16600:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16590:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16590:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16564:6:12"
},
"nodeType": "YulFunctionCall",
"src": "16564:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "16564:47:12"
},
{
"nodeType": "YulAssignment",
"src": "16620:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16754:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16628:124:12"
},
"nodeType": "YulFunctionCall",
"src": "16628:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16620:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16498:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16513:4:12",
"type": ""
}
],
"src": "16347:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16943:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16953:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16965:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16976:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16961:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16961:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16953:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17000:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17011:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16996:3:12"
},
"nodeType": "YulFunctionCall",
"src": "16996:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17019:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17025:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17015:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17015:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16989:6:12"
},
"nodeType": "YulFunctionCall",
"src": "16989:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "16989:47:12"
},
{
"nodeType": "YulAssignment",
"src": "17045:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17179:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17053:124:12"
},
"nodeType": "YulFunctionCall",
"src": "17053:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17045:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16923:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16938:4:12",
"type": ""
}
],
"src": "16772:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17368:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17378:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17390:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17401:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17386:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17386:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17378:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17425:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17436:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17421:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17421:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17444:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17450:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17440:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17440:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17414:6:12"
},
"nodeType": "YulFunctionCall",
"src": "17414:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "17414:47:12"
},
{
"nodeType": "YulAssignment",
"src": "17470:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17604:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17478:124:12"
},
"nodeType": "YulFunctionCall",
"src": "17478:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17470:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17348:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17363:4:12",
"type": ""
}
],
"src": "17197:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17793:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17803:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17815:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17826:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17811:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17811:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17803:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17850:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17861:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17846:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17846:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17869:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17875:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17865:3:12"
},
"nodeType": "YulFunctionCall",
"src": "17865:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17839:6:12"
},
"nodeType": "YulFunctionCall",
"src": "17839:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "17839:47:12"
},
{
"nodeType": "YulAssignment",
"src": "17895:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18029:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17903:124:12"
},
"nodeType": "YulFunctionCall",
"src": "17903:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17895:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17773:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17788:4:12",
"type": ""
}
],
"src": "17622:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18218:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18228:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18240:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18251:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18236:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18236:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18228:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18275:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18286:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18271:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18271:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18294:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18300:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18290:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18290:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18264:6:12"
},
"nodeType": "YulFunctionCall",
"src": "18264:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "18264:47:12"
},
{
"nodeType": "YulAssignment",
"src": "18320:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18454:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18328:124:12"
},
"nodeType": "YulFunctionCall",
"src": "18328:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18320:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18198:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18213:4:12",
"type": ""
}
],
"src": "18047:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18643:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18653:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18665:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18676:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18661:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18661:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18653:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18700:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18711:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18696:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18696:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18719:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18725:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18715:3:12"
},
"nodeType": "YulFunctionCall",
"src": "18715:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18689:6:12"
},
"nodeType": "YulFunctionCall",
"src": "18689:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "18689:47:12"
},
{
"nodeType": "YulAssignment",
"src": "18745:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18879:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18753:124:12"
},
"nodeType": "YulFunctionCall",
"src": "18753:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18745:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18623:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18638:4:12",
"type": ""
}
],
"src": "18472:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19068:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19078:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19090:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19101:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19086:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19086:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19078:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19125:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19136:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19121:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19121:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19144:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19150:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19140:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19140:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19114:6:12"
},
"nodeType": "YulFunctionCall",
"src": "19114:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "19114:47:12"
},
{
"nodeType": "YulAssignment",
"src": "19170:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19304:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19178:124:12"
},
"nodeType": "YulFunctionCall",
"src": "19178:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19170:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19048:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19063:4:12",
"type": ""
}
],
"src": "18897:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19493:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19503:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19515:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19526:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19511:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19511:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19503:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19550:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19561:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19546:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19546:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19569:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19575:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19565:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19565:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19539:6:12"
},
"nodeType": "YulFunctionCall",
"src": "19539:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "19539:47:12"
},
{
"nodeType": "YulAssignment",
"src": "19595:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19729:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19603:124:12"
},
"nodeType": "YulFunctionCall",
"src": "19603:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19595:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19473:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19488:4:12",
"type": ""
}
],
"src": "19322:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19918:248:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19928:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19940:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19951:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19936:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19936:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19928:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19975:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19986:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19971:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19971:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19994:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20000:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19990:3:12"
},
"nodeType": "YulFunctionCall",
"src": "19990:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19964:6:12"
},
"nodeType": "YulFunctionCall",
"src": "19964:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "19964:47:12"
},
{
"nodeType": "YulAssignment",
"src": "20020:139:12",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20154:4:12"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20028:124:12"
},
"nodeType": "YulFunctionCall",
"src": "20028:131:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20020:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19898:9:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19913:4:12",
"type": ""
}
],
"src": "19747:419:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20270:124:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20280:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20292:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20303:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20288:3:12"
},
"nodeType": "YulFunctionCall",
"src": "20288:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20280:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "20360:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20373:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20384:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20369:3:12"
},
"nodeType": "YulFunctionCall",
"src": "20369:17:12"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "20316:43:12"
},
"nodeType": "YulFunctionCall",
"src": "20316:71:12"
},
"nodeType": "YulExpressionStatement",
"src": "20316:71:12"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20242:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "20254:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20265:4:12",
"type": ""
}
],
"src": "20172:222:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20441:88:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20451:30:12",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "20461:18:12"
},
"nodeType": "YulFunctionCall",
"src": "20461:20:12"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20451:6:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20510:6:12"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "20518:4:12"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "20490:19:12"
},
"nodeType": "YulFunctionCall",
"src": "20490:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "20490:33:12"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "20425:4:12",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20434:6:12",
"type": ""
}
],
"src": "20400:129:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20575:35:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20585:19:12",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20601:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "20595:5:12"
},
"nodeType": "YulFunctionCall",
"src": "20595:9:12"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20585:6:12"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20568:6:12",
"type": ""
}
],
"src": "20535:75:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20682:241:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "20787:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "20789:16:12"
},
"nodeType": "YulFunctionCall",
"src": "20789:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "20789:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20759:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20767:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "20756:2:12"
},
"nodeType": "YulFunctionCall",
"src": "20756:30:12"
},
"nodeType": "YulIf",
"src": "20753:56:12"
},
{
"nodeType": "YulAssignment",
"src": "20819:37:12",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20849:6:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "20827:21:12"
},
"nodeType": "YulFunctionCall",
"src": "20827:29:12"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "20819:4:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "20893:23:12",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "20905:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20911:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20901:3:12"
},
"nodeType": "YulFunctionCall",
"src": "20901:15:12"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "20893:4:12"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20666:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "20677:4:12",
"type": ""
}
],
"src": "20616:307:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20996:241:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "21101:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "21103:16:12"
},
"nodeType": "YulFunctionCall",
"src": "21103:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "21103:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21073:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21081:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "21070:2:12"
},
"nodeType": "YulFunctionCall",
"src": "21070:30:12"
},
"nodeType": "YulIf",
"src": "21067:56:12"
},
{
"nodeType": "YulAssignment",
"src": "21133:37:12",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21163:6:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "21141:21:12"
},
"nodeType": "YulFunctionCall",
"src": "21141:29:12"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "21133:4:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "21207:23:12",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "21219:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21225:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21215:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21215:15:12"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "21207:4:12"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20980:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "20991:4:12",
"type": ""
}
],
"src": "20929:308:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21301:40:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21312:22:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21328:5:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "21322:5:12"
},
"nodeType": "YulFunctionCall",
"src": "21322:12:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21312:6:12"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21284:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "21294:6:12",
"type": ""
}
],
"src": "21243:98:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21406:40:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21417:22:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21433:5:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "21427:5:12"
},
"nodeType": "YulFunctionCall",
"src": "21427:12:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21417:6:12"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21389:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "21399:6:12",
"type": ""
}
],
"src": "21347:99:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21547:73:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21564:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21569:6:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21557:6:12"
},
"nodeType": "YulFunctionCall",
"src": "21557:19:12"
},
"nodeType": "YulExpressionStatement",
"src": "21557:19:12"
},
{
"nodeType": "YulAssignment",
"src": "21585:29:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21604:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21609:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21600:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21600:14:12"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "21585:11:12"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "21519:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "21524:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "21535:11:12",
"type": ""
}
],
"src": "21452:168:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21722:73:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21739:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21744:6:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21732:6:12"
},
"nodeType": "YulFunctionCall",
"src": "21732:19:12"
},
"nodeType": "YulExpressionStatement",
"src": "21732:19:12"
},
{
"nodeType": "YulAssignment",
"src": "21760:29:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21779:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21784:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21775:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21775:14:12"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "21760:11:12"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "21694:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "21699:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "21710:11:12",
"type": ""
}
],
"src": "21626:169:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21845:261:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21855:25:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21878:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21860:17:12"
},
"nodeType": "YulFunctionCall",
"src": "21860:20:12"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21855:1:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "21889:25:12",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21912:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21894:17:12"
},
"nodeType": "YulFunctionCall",
"src": "21894:20:12"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21889:1:12"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "22052:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "22054:16:12"
},
"nodeType": "YulFunctionCall",
"src": "22054:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "22054:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21973:1:12"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21980:66:12",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22048:1:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21976:3:12"
},
"nodeType": "YulFunctionCall",
"src": "21976:74:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "21970:2:12"
},
"nodeType": "YulFunctionCall",
"src": "21970:81:12"
},
"nodeType": "YulIf",
"src": "21967:107:12"
},
{
"nodeType": "YulAssignment",
"src": "22084:16:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "22095:1:12"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22098:1:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22091:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22091:9:12"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "22084:3:12"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "21832:1:12",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "21835:1:12",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "21841:3:12",
"type": ""
}
],
"src": "21801:305:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22157:146:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22167:25:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "22190:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "22172:17:12"
},
"nodeType": "YulFunctionCall",
"src": "22172:20:12"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "22167:1:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "22201:25:12",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22224:1:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "22206:17:12"
},
"nodeType": "YulFunctionCall",
"src": "22206:20:12"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22201:1:12"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "22248:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "22250:16:12"
},
"nodeType": "YulFunctionCall",
"src": "22250:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "22250:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "22242:1:12"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22245:1:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "22239:2:12"
},
"nodeType": "YulFunctionCall",
"src": "22239:8:12"
},
"nodeType": "YulIf",
"src": "22236:34:12"
},
{
"nodeType": "YulAssignment",
"src": "22280:17:12",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "22292:1:12"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22295:1:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22288:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22288:9:12"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "22280:4:12"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "22143:1:12",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "22146:1:12",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "22152:4:12",
"type": ""
}
],
"src": "22112:191:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22354:51:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22364:35:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22393:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "22375:17:12"
},
"nodeType": "YulFunctionCall",
"src": "22375:24:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "22364:7:12"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22336:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "22346:7:12",
"type": ""
}
],
"src": "22309:96:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22453:48:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22463:32:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22488:5:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "22481:6:12"
},
"nodeType": "YulFunctionCall",
"src": "22481:13:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "22474:6:12"
},
"nodeType": "YulFunctionCall",
"src": "22474:21:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "22463:7:12"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22435:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "22445:7:12",
"type": ""
}
],
"src": "22411:90:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22551:105:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22561:89:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22576:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22583:66:12",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "22572:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22572:78:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "22561:7:12"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22533:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "22543:7:12",
"type": ""
}
],
"src": "22507:149:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22707:81:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22717:65:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22732:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22739:42:12",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "22728:3:12"
},
"nodeType": "YulFunctionCall",
"src": "22728:54:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "22717:7:12"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22689:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "22699:7:12",
"type": ""
}
],
"src": "22662:126:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22839:32:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22849:16:12",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "22860:5:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "22849:7:12"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22821:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "22831:7:12",
"type": ""
}
],
"src": "22794:77:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22928:103:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "22951:3:12"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "22956:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22961:6:12"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "22938:12:12"
},
"nodeType": "YulFunctionCall",
"src": "22938:30:12"
},
"nodeType": "YulExpressionStatement",
"src": "22938:30:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "23009:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23014:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23005:3:12"
},
"nodeType": "YulFunctionCall",
"src": "23005:16:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23023:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22998:6:12"
},
"nodeType": "YulFunctionCall",
"src": "22998:27:12"
},
"nodeType": "YulExpressionStatement",
"src": "22998:27:12"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "22910:3:12",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "22915:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "22920:6:12",
"type": ""
}
],
"src": "22877:154:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23086:258:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "23096:10:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "23105:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "23100:1:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "23165:63:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "23190:3:12"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "23195:1:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23186:3:12"
},
"nodeType": "YulFunctionCall",
"src": "23186:11:12"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "23209:3:12"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "23214:1:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23205:3:12"
},
"nodeType": "YulFunctionCall",
"src": "23205:11:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "23199:5:12"
},
"nodeType": "YulFunctionCall",
"src": "23199:18:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23179:6:12"
},
"nodeType": "YulFunctionCall",
"src": "23179:39:12"
},
"nodeType": "YulExpressionStatement",
"src": "23179:39:12"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "23126:1:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23129:6:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "23123:2:12"
},
"nodeType": "YulFunctionCall",
"src": "23123:13:12"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "23137:19:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23139:15:12",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "23148:1:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23151:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23144:3:12"
},
"nodeType": "YulFunctionCall",
"src": "23144:10:12"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "23139:1:12"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "23119:3:12",
"statements": []
},
"src": "23115:113:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23262:76:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "23312:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23317:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23308:3:12"
},
"nodeType": "YulFunctionCall",
"src": "23308:16:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23326:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23301:6:12"
},
"nodeType": "YulFunctionCall",
"src": "23301:27:12"
},
"nodeType": "YulExpressionStatement",
"src": "23301:27:12"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "23243:1:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23246:6:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "23240:2:12"
},
"nodeType": "YulFunctionCall",
"src": "23240:13:12"
},
"nodeType": "YulIf",
"src": "23237:101:12"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "23068:3:12",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "23073:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "23078:6:12",
"type": ""
}
],
"src": "23037:307:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23401:269:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23411:22:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "23425:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23431:1:12",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "23421:3:12"
},
"nodeType": "YulFunctionCall",
"src": "23421:12:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23411:6:12"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "23442:38:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "23472:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23478:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "23468:3:12"
},
"nodeType": "YulFunctionCall",
"src": "23468:12:12"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "23446:18:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "23519:51:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23533:27:12",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23547:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23555:4:12",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "23543:3:12"
},
"nodeType": "YulFunctionCall",
"src": "23543:17:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23533:6:12"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "23499:18:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "23492:6:12"
},
"nodeType": "YulFunctionCall",
"src": "23492:26:12"
},
"nodeType": "YulIf",
"src": "23489:81:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23622:42:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "23636:16:12"
},
"nodeType": "YulFunctionCall",
"src": "23636:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "23636:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "23586:18:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23609:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23617:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "23606:2:12"
},
"nodeType": "YulFunctionCall",
"src": "23606:14:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "23583:2:12"
},
"nodeType": "YulFunctionCall",
"src": "23583:38:12"
},
"nodeType": "YulIf",
"src": "23580:84:12"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "23385:4:12",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "23394:6:12",
"type": ""
}
],
"src": "23350:320:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23719:238:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "23729:58:12",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23751:6:12"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "23781:4:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "23759:21:12"
},
"nodeType": "YulFunctionCall",
"src": "23759:27:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23747:3:12"
},
"nodeType": "YulFunctionCall",
"src": "23747:40:12"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "23733:10:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "23898:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "23900:16:12"
},
"nodeType": "YulFunctionCall",
"src": "23900:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "23900:18:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "23841:10:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23853:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "23838:2:12"
},
"nodeType": "YulFunctionCall",
"src": "23838:34:12"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "23877:10:12"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23889:6:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "23874:2:12"
},
"nodeType": "YulFunctionCall",
"src": "23874:22:12"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "23835:2:12"
},
"nodeType": "YulFunctionCall",
"src": "23835:62:12"
},
"nodeType": "YulIf",
"src": "23832:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23936:2:12",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "23940:10:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23929:6:12"
},
"nodeType": "YulFunctionCall",
"src": "23929:22:12"
},
"nodeType": "YulExpressionStatement",
"src": "23929:22:12"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "23705:6:12",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "23713:4:12",
"type": ""
}
],
"src": "23676:281:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23991:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24008:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24011:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24001:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24001:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "24001:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24105:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24108:4:12",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24098:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24098:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "24098:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24129:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24132:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24122:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24122:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "24122:15:12"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "23963:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24177:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24194:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24197:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24187:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24187:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "24187:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24291:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24294:4:12",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24284:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24284:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "24284:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24315:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24318:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24308:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24308:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "24308:15:12"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "24149:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24363:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24380:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24383:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24373:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24373:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "24373:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24477:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24480:4:12",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24470:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24470:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "24470:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24501:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24504:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24494:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24494:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "24494:15:12"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "24335:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24610:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24627:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24630:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24620:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24620:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "24620:12:12"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "24521:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24733:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24750:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24753:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24743:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24743:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "24743:12:12"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "24644:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24856:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24873:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24876:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24866:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24866:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "24866:12:12"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "24767:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24979:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24996:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24999:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24989:6:12"
},
"nodeType": "YulFunctionCall",
"src": "24989:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "24989:12:12"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "24890:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25061:54:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25071:38:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "25089:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25096:2:12",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25085:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25085:14:12"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25105:2:12",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "25101:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25101:7:12"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "25081:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25081:28:12"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "25071:6:12"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "25044:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "25054:6:12",
"type": ""
}
],
"src": "25013:102:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25227:131:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25249:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25257:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25245:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25245:14:12"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25261:34:12",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25238:6:12"
},
"nodeType": "YulFunctionCall",
"src": "25238:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "25238:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25317:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25325:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25313:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25313:15:12"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25330:20:12",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25306:6:12"
},
"nodeType": "YulFunctionCall",
"src": "25306:45:12"
},
"nodeType": "YulExpressionStatement",
"src": "25306:45:12"
}
]
},
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25219:6:12",
"type": ""
}
],
"src": "25121:237:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25470:119:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25492:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25500:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25488:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25488:14:12"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25504:34:12",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25481:6:12"
},
"nodeType": "YulFunctionCall",
"src": "25481:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "25481:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25560:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25568:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25556:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25556:15:12"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25573:8:12",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25549:6:12"
},
"nodeType": "YulFunctionCall",
"src": "25549:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "25549:33:12"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25462:6:12",
"type": ""
}
],
"src": "25364:225:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25701:118:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25723:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25731:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25719:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25719:14:12"
},
{
"hexValue": "4552433732313a207472616e736665722066726f6d20696e636f727265637420",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25735:34:12",
"type": "",
"value": "ERC721: transfer from incorrect "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25712:6:12"
},
"nodeType": "YulFunctionCall",
"src": "25712:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "25712:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25791:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25799:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25787:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25787:15:12"
},
{
"hexValue": "6f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25804:7:12",
"type": "",
"value": "owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25780:6:12"
},
"nodeType": "YulFunctionCall",
"src": "25780:32:12"
},
"nodeType": "YulExpressionStatement",
"src": "25780:32:12"
}
]
},
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25693:6:12",
"type": ""
}
],
"src": "25595:224:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25931:72:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25953:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25961:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25949:3:12"
},
"nodeType": "YulFunctionCall",
"src": "25949:14:12"
},
{
"hexValue": "4552433732313a20746f6b656e20616c7265616479206d696e746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25965:30:12",
"type": "",
"value": "ERC721: token already minted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25942:6:12"
},
"nodeType": "YulFunctionCall",
"src": "25942:54:12"
},
"nodeType": "YulExpressionStatement",
"src": "25942:54:12"
}
]
},
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25923:6:12",
"type": ""
}
],
"src": "25825:178:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26115:117:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26137:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26145:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26133:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26133:14:12"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26149:34:12",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26126:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26126:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "26126:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26205:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26213:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26201:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26201:15:12"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26218:6:12",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26194:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26194:31:12"
},
"nodeType": "YulExpressionStatement",
"src": "26194:31:12"
}
]
},
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26107:6:12",
"type": ""
}
],
"src": "26009:223:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26344:69:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26366:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26374:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26362:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26362:14:12"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26378:27:12",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26355:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26355:51:12"
},
"nodeType": "YulExpressionStatement",
"src": "26355:51:12"
}
]
},
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26336:6:12",
"type": ""
}
],
"src": "26238:175:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26525:122:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26547:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26555:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26543:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26543:14:12"
},
{
"hexValue": "4552433732313a2061646472657373207a65726f206973206e6f742061207661",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26559:34:12",
"type": "",
"value": "ERC721: address zero is not a va"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26536:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26536:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "26536:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26615:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26623:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26611:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26611:15:12"
},
{
"hexValue": "6c6964206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26628:11:12",
"type": "",
"value": "lid owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26604:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26604:36:12"
},
"nodeType": "YulExpressionStatement",
"src": "26604:36:12"
}
]
},
"name": "store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26517:6:12",
"type": ""
}
],
"src": "26419:228:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26759:143:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26781:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26789:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26777:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26777:14:12"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26793:34:12",
"type": "",
"value": "ERC721: approve caller is not to"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26770:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26770:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "26770:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26849:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26857:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26845:3:12"
},
"nodeType": "YulFunctionCall",
"src": "26845:15:12"
},
{
"hexValue": "6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26862:32:12",
"type": "",
"value": "ken owner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26838:6:12"
},
"nodeType": "YulFunctionCall",
"src": "26838:57:12"
},
"nodeType": "YulExpressionStatement",
"src": "26838:57:12"
}
]
},
"name": "store_literal_in_memory_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26751:6:12",
"type": ""
}
],
"src": "26653:249:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27014:76:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27036:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27044:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27032:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27032:14:12"
},
{
"hexValue": "4552433732313a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27048:34:12",
"type": "",
"value": "ERC721: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27025:6:12"
},
"nodeType": "YulFunctionCall",
"src": "27025:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "27025:58:12"
}
]
},
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27006:6:12",
"type": ""
}
],
"src": "26908:182:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27202:76:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27224:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27232:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27220:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27220:14:12"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27236:34:12",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27213:6:12"
},
"nodeType": "YulFunctionCall",
"src": "27213:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "27213:58:12"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27194:6:12",
"type": ""
}
],
"src": "27096:182:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27390:68:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27412:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27420:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27408:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27408:14:12"
},
{
"hexValue": "4552433732313a20696e76616c696420746f6b656e204944",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27424:26:12",
"type": "",
"value": "ERC721: invalid token ID"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27401:6:12"
},
"nodeType": "YulFunctionCall",
"src": "27401:50:12"
},
"nodeType": "YulExpressionStatement",
"src": "27401:50:12"
}
]
},
"name": "store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27382:6:12",
"type": ""
}
],
"src": "27284:174:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27570:114:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27592:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27600:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27588:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27588:14:12"
},
{
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27604:34:12",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27581:6:12"
},
"nodeType": "YulFunctionCall",
"src": "27581:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "27581:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27660:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27668:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27656:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27656:15:12"
},
{
"hexValue": "72",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27673:3:12",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27649:6:12"
},
"nodeType": "YulFunctionCall",
"src": "27649:28:12"
},
"nodeType": "YulExpressionStatement",
"src": "27649:28:12"
}
]
},
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27562:6:12",
"type": ""
}
],
"src": "27464:220:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27796:127:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27818:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27826:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27814:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27814:14:12"
},
{
"hexValue": "4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27830:34:12",
"type": "",
"value": "ERC721: caller is not token owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27807:6:12"
},
"nodeType": "YulFunctionCall",
"src": "27807:58:12"
},
"nodeType": "YulExpressionStatement",
"src": "27807:58:12"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27886:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27894:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27882:3:12"
},
"nodeType": "YulFunctionCall",
"src": "27882:15:12"
},
{
"hexValue": "72206e6f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27899:16:12",
"type": "",
"value": "r nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27875:6:12"
},
"nodeType": "YulFunctionCall",
"src": "27875:41:12"
},
"nodeType": "YulExpressionStatement",
"src": "27875:41:12"
}
]
},
"name": "store_literal_in_memory_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27788:6:12",
"type": ""
}
],
"src": "27690:233:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27972:79:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "28029:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28038:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28041:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28031:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28031:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "28031:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27995:5:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28020:5:12"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "28002:17:12"
},
"nodeType": "YulFunctionCall",
"src": "28002:24:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "27992:2:12"
},
"nodeType": "YulFunctionCall",
"src": "27992:35:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "27985:6:12"
},
"nodeType": "YulFunctionCall",
"src": "27985:43:12"
},
"nodeType": "YulIf",
"src": "27982:63:12"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27965:5:12",
"type": ""
}
],
"src": "27929:122:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28097:76:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "28151:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28160:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28163:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28153:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28153:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "28153:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28120:5:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28142:5:12"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "28127:14:12"
},
"nodeType": "YulFunctionCall",
"src": "28127:21:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "28117:2:12"
},
"nodeType": "YulFunctionCall",
"src": "28117:32:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "28110:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28110:40:12"
},
"nodeType": "YulIf",
"src": "28107:60:12"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28090:5:12",
"type": ""
}
],
"src": "28057:116:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28221:78:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "28277:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28286:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28289:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28279:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28279:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "28279:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28244:5:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28268:5:12"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "28251:16:12"
},
"nodeType": "YulFunctionCall",
"src": "28251:23:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "28241:2:12"
},
"nodeType": "YulFunctionCall",
"src": "28241:34:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "28234:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28234:42:12"
},
"nodeType": "YulIf",
"src": "28231:62:12"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28214:5:12",
"type": ""
}
],
"src": "28179:120:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28348:79:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "28405:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28414:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28417:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28407:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28407:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "28407:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28371:5:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28396:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "28378:17:12"
},
"nodeType": "YulFunctionCall",
"src": "28378:24:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "28368:2:12"
},
"nodeType": "YulFunctionCall",
"src": "28368:35:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "28361:6:12"
},
"nodeType": "YulFunctionCall",
"src": "28361:43:12"
},
"nodeType": "YulIf",
"src": "28358:63:12"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28341:5:12",
"type": ""
}
],
"src": "28305:122:12"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_bytes_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_bytes_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n function abi_decode_available_length_t_string_memory_ptr(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_calldata_to_memory(src, dst, length)\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 abi_decode_t_bool(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_t_bytes4(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_t_bytes4_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes4(value)\n }\n\n // bytes\n function abi_decode_t_bytes_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_bytes_memory_ptr(add(offset, 0x20), length, end)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\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_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 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 abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { 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 let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value3 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_bool(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_bool(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_string_memory_ptr(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 := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\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 abi_decode_tuple_t_bytes4(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_bytes4(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes4_fromMemory(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_bytes4_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(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_uint256(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_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_bytes_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\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(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 50)\n store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e(pos)\n end := add(pos, 64)\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_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 28)\n store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 62)\n store_literal_in_memory_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6(pos)\n end := add(pos, 32)\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_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 24)\n store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 33)\n store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 46)\n store_literal_in_memory_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b(pos)\n end := add(pos, 64)\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_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_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\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 mstore(add(headStart, 96), sub(tail, headStart))\n tail := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value3, tail)\n\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_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 abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__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_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack( tail)\n\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 abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__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_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__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_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__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_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__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_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__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_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304__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_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__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_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack( tail)\n\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 abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__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_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__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_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b__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_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b_to_t_string_memory_ptr_fromStack( tail)\n\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 allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_bytes_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function 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 array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function 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 checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function copy_memory_to_memory(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 if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\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 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 panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\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 panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\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 revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\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 store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer to non ERC721Re\")\n\n mstore(add(memPtr, 32), \"ceiver implementer\")\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 store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer from incorrect \")\n\n mstore(add(memPtr, 32), \"owner\")\n\n }\n\n function store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: token already minted\")\n\n }\n\n function store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer to the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve to caller\")\n\n }\n\n function store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: address zero is not a va\")\n\n mstore(add(memPtr, 32), \"lid owner\")\n\n }\n\n function store_literal_in_memory_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve caller is not to\")\n\n mstore(add(memPtr, 32), \"ken owner nor approved for all\")\n\n }\n\n function store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: mint to the zero address\")\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 store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: invalid token ID\")\n\n }\n\n function store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approval to current owne\")\n\n mstore(add(memPtr, 32), \"r\")\n\n }\n\n function store_literal_in_memory_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: caller is not token owne\")\n\n mstore(add(memPtr, 32), \"r nor approved\")\n\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 validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bytes4(value) {\n if iszero(eq(value, cleanup_t_bytes4(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 12,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063b88d4fde11610071578063b88d4fde146102a4578063c87b56dd146102c0578063d204c45e146102f0578063e985e9c514610320578063f2fde38b146103505761010b565b8063715018a6146102425780638da5cb5b1461024c57806395d89b411461026a578063a22cb465146102885761010b565b806323b872dd116100de57806323b872dd146101aa57806342842e0e146101c65780636352211e146101e257806370a08231146102125761010b565b806301ffc9a71461011057806306fdde0314610140578063081812fc1461015e578063095ea7b31461018e575b600080fd5b61012a60048036038101906101259190611bc0565b61036c565b6040516101379190611f14565b60405180910390f35b61014861044e565b6040516101559190611f2f565b60405180910390f35b61017860048036038101906101739190611c1a565b6104e0565b6040516101859190611ead565b60405180910390f35b6101a860048036038101906101a39190611b80565b610526565b005b6101c460048036038101906101bf9190611a0e565b61063e565b005b6101e060048036038101906101db9190611a0e565b61069e565b005b6101fc60048036038101906101f79190611c1a565b6106be565b6040516102099190611ead565b60405180910390f35b61022c600480360381019061022791906119a1565b610770565b60405161023991906120f1565b60405180910390f35b61024a610828565b005b61025461083c565b6040516102619190611ead565b60405180910390f35b610272610866565b60405161027f9190611f2f565b60405180910390f35b6102a2600480360381019061029d9190611ae4565b6108f8565b005b6102be60048036038101906102b99190611a61565b61090e565b005b6102da60048036038101906102d59190611c1a565b610970565b6040516102e79190611f2f565b60405180910390f35b61030a60048036038101906103059190611b24565b610a15565b60405161031791906120f1565b60405180910390f35b61033a600480360381019061033591906119ce565b610a77565b6040516103479190611f14565b60405180910390f35b61036a600480360381019061036591906119a1565b610b0b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061043757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610447575061044682610b8f565b5b9050919050565b60606000805461045d9061230b565b80601f01602080910402602001604051908101604052809291908181526020018280546104899061230b565b80156104d65780601f106104ab576101008083540402835291602001916104d6565b820191906000526020600020905b8154815290600101906020018083116104b957829003601f168201915b5050505050905090565b60006104eb82610bf9565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610531826106be565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610599906120b1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105c1610c44565b73ffffffffffffffffffffffffffffffffffffffff1614806105f057506105ef816105ea610c44565b610a77565b5b61062f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062690612031565b60405180910390fd5b6106398383610c4c565b505050565b61064f610649610c44565b82610d05565b61068e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610685906120d1565b60405180910390fd5b610699838383610d9a565b505050565b6106b98383836040518060200160405280600081525061090e565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075e90612091565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156107e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d890612011565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610830611001565b61083a600061107f565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546108759061230b565b80601f01602080910402602001604051908101604052809291908181526020018280546108a19061230b565b80156108ee5780601f106108c3576101008083540402835291602001916108ee565b820191906000526020600020905b8154815290600101906020018083116108d157829003601f168201915b5050505050905090565b61090a610903610c44565b8383611145565b5050565b61091f610919610c44565b83610d05565b61095e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610955906120d1565b60405180910390fd5b61096a848484846112b2565b50505050565b60606008600083815260200190815260200160002080546109909061230b565b80601f01602080910402602001604051908101604052809291908181526020018280546109bc9061230b565b8015610a095780601f106109de57610100808354040283529160200191610a09565b820191906000526020600020905b8154815290600101906020018083116109ec57829003601f168201915b50505050509050919050565b6000610a21600761130e565b610a3483610a2f6007611324565b611332565b8160086000610a436007611324565b81526020019081526020016000209080519060200190610a649291906117b5565b50610a6f6007611324565b905092915050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610b13611001565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90611f71565b60405180910390fd5b610b8c8161107f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610c0281611350565b610c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3890612091565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610cbf836106be565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610d11836106be565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610d535750610d528185610a77565b5b80610d9157508373ffffffffffffffffffffffffffffffffffffffff16610d79846104e0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610dba826106be565b73ffffffffffffffffffffffffffffffffffffffff1614610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790611f91565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7790611fd1565b60405180910390fd5b610e8b8383836113bc565b610e96600082610c4c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ee69190612221565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f3d91906121cb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ffc8383836113c1565b505050565b611009610c44565b73ffffffffffffffffffffffffffffffffffffffff1661102761083c565b73ffffffffffffffffffffffffffffffffffffffff161461107d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107490612071565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90611ff1565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112a59190611f14565b60405180910390a3505050565b6112bd848484610d9a565b6112c9848484846113c6565b611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff90611f51565b60405180910390fd5b50505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b61134c82826040518060200160405280600081525061155d565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b60006113e78473ffffffffffffffffffffffffffffffffffffffff166115b8565b15611550578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611410610c44565b8786866040518563ffffffff1660e01b81526004016114329493929190611ec8565b602060405180830381600087803b15801561144c57600080fd5b505af192505050801561147d57506040513d601f19601f8201168201806040525081019061147a9190611bed565b60015b611500573d80600081146114ad576040519150601f19603f3d011682016040523d82523d6000602084013e6114b2565b606091505b506000815114156114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef90611f51565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611555565b600190505b949350505050565b61156783836115db565b61157460008484846113c6565b6115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90611f51565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561164b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164290612051565b60405180910390fd5b61165481611350565b15611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90611fb1565b60405180910390fd5b6116a0600083836113bc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116f091906121cb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117b1600083836113c1565b5050565b8280546117c19061230b565b90600052602060002090601f0160209004810192826117e3576000855561182a565b82601f106117fc57805160ff191683800117855561182a565b8280016001018555821561182a579182015b8281111561182957825182559160200191906001019061180e565b5b509050611837919061183b565b5090565b5b8082111561185457600081600090555060010161183c565b5090565b600061186b61186684612131565b61210c565b90508281526020810184848401111561188757611886612400565b5b6118928482856122c9565b509392505050565b60006118ad6118a884612162565b61210c565b9050828152602081018484840111156118c9576118c8612400565b5b6118d48482856122c9565b509392505050565b6000813590506118eb81612765565b92915050565b6000813590506119008161277c565b92915050565b60008135905061191581612793565b92915050565b60008151905061192a81612793565b92915050565b600082601f830112611945576119446123fb565b5b8135611955848260208601611858565b91505092915050565b600082601f830112611973576119726123fb565b5b813561198384826020860161189a565b91505092915050565b60008135905061199b816127aa565b92915050565b6000602082840312156119b7576119b661240a565b5b60006119c5848285016118dc565b91505092915050565b600080604083850312156119e5576119e461240a565b5b60006119f3858286016118dc565b9250506020611a04858286016118dc565b9150509250929050565b600080600060608486031215611a2757611a2661240a565b5b6000611a35868287016118dc565b9350506020611a46868287016118dc565b9250506040611a578682870161198c565b9150509250925092565b60008060008060808587031215611a7b57611a7a61240a565b5b6000611a89878288016118dc565b9450506020611a9a878288016118dc565b9350506040611aab8782880161198c565b925050606085013567ffffffffffffffff811115611acc57611acb612405565b5b611ad887828801611930565b91505092959194509250565b60008060408385031215611afb57611afa61240a565b5b6000611b09858286016118dc565b9250506020611b1a858286016118f1565b9150509250929050565b60008060408385031215611b3b57611b3a61240a565b5b6000611b49858286016118dc565b925050602083013567ffffffffffffffff811115611b6a57611b69612405565b5b611b768582860161195e565b9150509250929050565b60008060408385031215611b9757611b9661240a565b5b6000611ba5858286016118dc565b9250506020611bb68582860161198c565b9150509250929050565b600060208284031215611bd657611bd561240a565b5b6000611be484828501611906565b91505092915050565b600060208284031215611c0357611c0261240a565b5b6000611c118482850161191b565b91505092915050565b600060208284031215611c3057611c2f61240a565b5b6000611c3e8482850161198c565b91505092915050565b611c5081612255565b82525050565b611c5f81612267565b82525050565b6000611c7082612193565b611c7a81856121a9565b9350611c8a8185602086016122d8565b611c938161240f565b840191505092915050565b6000611ca98261219e565b611cb381856121ba565b9350611cc38185602086016122d8565b611ccc8161240f565b840191505092915050565b6000611ce46032836121ba565b9150611cef82612420565b604082019050919050565b6000611d076026836121ba565b9150611d128261246f565b604082019050919050565b6000611d2a6025836121ba565b9150611d35826124be565b604082019050919050565b6000611d4d601c836121ba565b9150611d588261250d565b602082019050919050565b6000611d706024836121ba565b9150611d7b82612536565b604082019050919050565b6000611d936019836121ba565b9150611d9e82612585565b602082019050919050565b6000611db66029836121ba565b9150611dc1826125ae565b604082019050919050565b6000611dd9603e836121ba565b9150611de4826125fd565b604082019050919050565b6000611dfc6020836121ba565b9150611e078261264c565b602082019050919050565b6000611e1f6020836121ba565b9150611e2a82612675565b602082019050919050565b6000611e426018836121ba565b9150611e4d8261269e565b602082019050919050565b6000611e656021836121ba565b9150611e70826126c7565b604082019050919050565b6000611e88602e836121ba565b9150611e9382612716565b604082019050919050565b611ea7816122bf565b82525050565b6000602082019050611ec26000830184611c47565b92915050565b6000608082019050611edd6000830187611c47565b611eea6020830186611c47565b611ef76040830185611e9e565b8181036060830152611f098184611c65565b905095945050505050565b6000602082019050611f296000830184611c56565b92915050565b60006020820190508181036000830152611f498184611c9e565b905092915050565b60006020820190508181036000830152611f6a81611cd7565b9050919050565b60006020820190508181036000830152611f8a81611cfa565b9050919050565b60006020820190508181036000830152611faa81611d1d565b9050919050565b60006020820190508181036000830152611fca81611d40565b9050919050565b60006020820190508181036000830152611fea81611d63565b9050919050565b6000602082019050818103600083015261200a81611d86565b9050919050565b6000602082019050818103600083015261202a81611da9565b9050919050565b6000602082019050818103600083015261204a81611dcc565b9050919050565b6000602082019050818103600083015261206a81611def565b9050919050565b6000602082019050818103600083015261208a81611e12565b9050919050565b600060208201905081810360008301526120aa81611e35565b9050919050565b600060208201905081810360008301526120ca81611e58565b9050919050565b600060208201905081810360008301526120ea81611e7b565b9050919050565b60006020820190506121066000830184611e9e565b92915050565b6000612116612127565b9050612122828261233d565b919050565b6000604051905090565b600067ffffffffffffffff82111561214c5761214b6123cc565b5b6121558261240f565b9050602081019050919050565b600067ffffffffffffffff82111561217d5761217c6123cc565b5b6121868261240f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006121d6826122bf565b91506121e1836122bf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122165761221561236e565b5b828201905092915050565b600061222c826122bf565b9150612237836122bf565b92508282101561224a5761224961236e565b5b828203905092915050565b60006122608261229f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156122f65780820151818401526020810190506122db565b83811115612305576000848401525b50505050565b6000600282049050600182168061232357607f821691505b602082108114156123375761233661239d565b5b50919050565b6123468261240f565b810181811067ffffffffffffffff82111715612365576123646123cc565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b61276e81612255565b811461277957600080fd5b50565b61278581612267565b811461279057600080fd5b50565b61279c81612273565b81146127a757600080fd5b50565b6127b3816122bf565b81146127be57600080fd5b5056fea26469706673582212205e5b2ac26509accee5914b7406ca1567a70e3f5be3d9a874b385ba82f94fec3764736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x10B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xB88D4FDE GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x2A4 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x2C0 JUMPI DUP1 PUSH4 0xD204C45E EQ PUSH2 0x2F0 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x320 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x350 JUMPI PUSH2 0x10B JUMP JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x242 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x24C JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x26A JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x288 JUMPI PUSH2 0x10B JUMP JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1AA JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x1C6 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x1E2 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x212 JUMPI PUSH2 0x10B JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x110 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x140 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x15E JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x18E JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x12A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x125 SWAP2 SWAP1 PUSH2 0x1BC0 JUMP JUMPDEST PUSH2 0x36C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x137 SWAP2 SWAP1 PUSH2 0x1F14 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x148 PUSH2 0x44E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x155 SWAP2 SWAP1 PUSH2 0x1F2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x178 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x173 SWAP2 SWAP1 PUSH2 0x1C1A JUMP JUMPDEST PUSH2 0x4E0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x185 SWAP2 SWAP1 PUSH2 0x1EAD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1A8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1A3 SWAP2 SWAP1 PUSH2 0x1B80 JUMP JUMPDEST PUSH2 0x526 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1C4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0x1A0E JUMP JUMPDEST PUSH2 0x63E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1E0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1DB SWAP2 SWAP1 PUSH2 0x1A0E JUMP JUMPDEST PUSH2 0x69E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1FC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F7 SWAP2 SWAP1 PUSH2 0x1C1A JUMP JUMPDEST PUSH2 0x6BE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x209 SWAP2 SWAP1 PUSH2 0x1EAD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x22C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x227 SWAP2 SWAP1 PUSH2 0x19A1 JUMP JUMPDEST PUSH2 0x770 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x239 SWAP2 SWAP1 PUSH2 0x20F1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x24A PUSH2 0x828 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x254 PUSH2 0x83C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x261 SWAP2 SWAP1 PUSH2 0x1EAD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x272 PUSH2 0x866 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x27F SWAP2 SWAP1 PUSH2 0x1F2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x29D SWAP2 SWAP1 PUSH2 0x1AE4 JUMP JUMPDEST PUSH2 0x8F8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2BE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2B9 SWAP2 SWAP1 PUSH2 0x1A61 JUMP JUMPDEST PUSH2 0x90E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2DA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2D5 SWAP2 SWAP1 PUSH2 0x1C1A JUMP JUMPDEST PUSH2 0x970 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2E7 SWAP2 SWAP1 PUSH2 0x1F2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x30A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x305 SWAP2 SWAP1 PUSH2 0x1B24 JUMP JUMPDEST PUSH2 0xA15 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x317 SWAP2 SWAP1 PUSH2 0x20F1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x33A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x335 SWAP2 SWAP1 PUSH2 0x19CE JUMP JUMPDEST PUSH2 0xA77 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x347 SWAP2 SWAP1 PUSH2 0x1F14 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x36A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x365 SWAP2 SWAP1 PUSH2 0x19A1 JUMP JUMPDEST PUSH2 0xB0B JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x437 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x447 JUMPI POP PUSH2 0x446 DUP3 PUSH2 0xB8F JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x45D SWAP1 PUSH2 0x230B 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 0x489 SWAP1 PUSH2 0x230B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4D6 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x4AB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x4D6 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 0x4B9 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4EB DUP3 PUSH2 0xBF9 JUMP JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x531 DUP3 PUSH2 0x6BE JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x5A2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x599 SWAP1 PUSH2 0x20B1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x5C1 PUSH2 0xC44 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x5F0 JUMPI POP PUSH2 0x5EF DUP2 PUSH2 0x5EA PUSH2 0xC44 JUMP JUMPDEST PUSH2 0xA77 JUMP JUMPDEST JUMPDEST PUSH2 0x62F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x626 SWAP1 PUSH2 0x2031 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x639 DUP4 DUP4 PUSH2 0xC4C JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x64F PUSH2 0x649 PUSH2 0xC44 JUMP JUMPDEST DUP3 PUSH2 0xD05 JUMP JUMPDEST PUSH2 0x68E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x685 SWAP1 PUSH2 0x20D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x699 DUP4 DUP4 DUP4 PUSH2 0xD9A JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x6B9 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x90E JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x767 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x75E SWAP1 PUSH2 0x2091 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x7E1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7D8 SWAP1 PUSH2 0x2011 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 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 0x830 PUSH2 0x1001 JUMP JUMPDEST PUSH2 0x83A PUSH1 0x0 PUSH2 0x107F JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x875 SWAP1 PUSH2 0x230B 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 0x8A1 SWAP1 PUSH2 0x230B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x8EE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x8C3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x8EE 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 0x8D1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x90A PUSH2 0x903 PUSH2 0xC44 JUMP JUMPDEST DUP4 DUP4 PUSH2 0x1145 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x91F PUSH2 0x919 PUSH2 0xC44 JUMP JUMPDEST DUP4 PUSH2 0xD05 JUMP JUMPDEST PUSH2 0x95E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x955 SWAP1 PUSH2 0x20D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x96A DUP5 DUP5 DUP5 DUP5 PUSH2 0x12B2 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x8 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH2 0x990 SWAP1 PUSH2 0x230B 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 0x9BC SWAP1 PUSH2 0x230B JUMP JUMPDEST DUP1 ISZERO PUSH2 0xA09 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x9DE JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xA09 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 0x9EC JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA21 PUSH1 0x7 PUSH2 0x130E JUMP JUMPDEST PUSH2 0xA34 DUP4 PUSH2 0xA2F PUSH1 0x7 PUSH2 0x1324 JUMP JUMPDEST PUSH2 0x1332 JUMP JUMPDEST DUP2 PUSH1 0x8 PUSH1 0x0 PUSH2 0xA43 PUSH1 0x7 PUSH2 0x1324 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0xA64 SWAP3 SWAP2 SWAP1 PUSH2 0x17B5 JUMP JUMPDEST POP PUSH2 0xA6F PUSH1 0x7 PUSH2 0x1324 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 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 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xB13 PUSH2 0x1001 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xB83 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB7A SWAP1 PUSH2 0x1F71 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xB8C DUP2 PUSH2 0x107F JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC02 DUP2 PUSH2 0x1350 JUMP JUMPDEST PUSH2 0xC41 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC38 SWAP1 PUSH2 0x2091 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xCBF DUP4 PUSH2 0x6BE JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xD11 DUP4 PUSH2 0x6BE JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xD53 JUMPI POP PUSH2 0xD52 DUP2 DUP6 PUSH2 0xA77 JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0xD91 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD79 DUP5 PUSH2 0x4E0 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xDBA DUP3 PUSH2 0x6BE JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xE10 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE07 SWAP1 PUSH2 0x1F91 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xE80 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE77 SWAP1 PUSH2 0x1FD1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xE8B DUP4 DUP4 DUP4 PUSH2 0x13BC JUMP JUMPDEST PUSH2 0xE96 PUSH1 0x0 DUP3 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 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 DUP3 DUP3 SLOAD PUSH2 0xEE6 SWAP2 SWAP1 PUSH2 0x2221 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x3 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 DUP3 DUP3 SLOAD PUSH2 0xF3D SWAP2 SWAP1 PUSH2 0x21CB JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0xFFC DUP4 DUP4 DUP4 PUSH2 0x13C1 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x1009 PUSH2 0xC44 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1027 PUSH2 0x83C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x107D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1074 SWAP1 PUSH2 0x2071 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x6 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 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x11B4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11AB SWAP1 PUSH2 0x1FF1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 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 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x12A5 SWAP2 SWAP1 PUSH2 0x1F14 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x12BD DUP5 DUP5 DUP5 PUSH2 0xD9A JUMP JUMPDEST PUSH2 0x12C9 DUP5 DUP5 DUP5 DUP5 PUSH2 0x13C6 JUMP JUMPDEST PUSH2 0x1308 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12FF SWAP1 PUSH2 0x1F51 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x134C DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x155D JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x13E7 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x15B8 JUMP JUMPDEST ISZERO PUSH2 0x1550 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x1410 PUSH2 0xC44 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1432 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1EC8 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x144C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x147D JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x147A SWAP2 SWAP1 PUSH2 0x1BED JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1500 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x14AD JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x14B2 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x14F8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14EF SWAP1 PUSH2 0x1F51 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP2 POP POP PUSH2 0x1555 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x1567 DUP4 DUP4 PUSH2 0x15DB JUMP JUMPDEST PUSH2 0x1574 PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x13C6 JUMP JUMPDEST PUSH2 0x15B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15AA SWAP1 PUSH2 0x1F51 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x164B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1642 SWAP1 PUSH2 0x2051 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1654 DUP2 PUSH2 0x1350 JUMP JUMPDEST ISZERO PUSH2 0x1694 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x168B SWAP1 PUSH2 0x1FB1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x16A0 PUSH1 0x0 DUP4 DUP4 PUSH2 0x13BC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 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 DUP3 DUP3 SLOAD PUSH2 0x16F0 SWAP2 SWAP1 PUSH2 0x21CB JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x17B1 PUSH1 0x0 DUP4 DUP4 PUSH2 0x13C1 JUMP JUMPDEST POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x17C1 SWAP1 PUSH2 0x230B JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x17E3 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x182A JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x17FC JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x182A JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x182A JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x1829 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x180E JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x1837 SWAP2 SWAP1 PUSH2 0x183B JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x1854 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x183C JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x186B PUSH2 0x1866 DUP5 PUSH2 0x2131 JUMP JUMPDEST PUSH2 0x210C JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1887 JUMPI PUSH2 0x1886 PUSH2 0x2400 JUMP JUMPDEST JUMPDEST PUSH2 0x1892 DUP5 DUP3 DUP6 PUSH2 0x22C9 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18AD PUSH2 0x18A8 DUP5 PUSH2 0x2162 JUMP JUMPDEST PUSH2 0x210C JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x18C9 JUMPI PUSH2 0x18C8 PUSH2 0x2400 JUMP JUMPDEST JUMPDEST PUSH2 0x18D4 DUP5 DUP3 DUP6 PUSH2 0x22C9 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x18EB DUP2 PUSH2 0x2765 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1900 DUP2 PUSH2 0x277C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1915 DUP2 PUSH2 0x2793 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x192A DUP2 PUSH2 0x2793 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1945 JUMPI PUSH2 0x1944 PUSH2 0x23FB JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1955 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1858 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1973 JUMPI PUSH2 0x1972 PUSH2 0x23FB JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1983 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x189A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x199B DUP2 PUSH2 0x27AA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x19B7 JUMPI PUSH2 0x19B6 PUSH2 0x240A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x19C5 DUP5 DUP3 DUP6 ADD PUSH2 0x18DC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x19E5 JUMPI PUSH2 0x19E4 PUSH2 0x240A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x19F3 DUP6 DUP3 DUP7 ADD PUSH2 0x18DC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1A04 DUP6 DUP3 DUP7 ADD PUSH2 0x18DC JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1A27 JUMPI PUSH2 0x1A26 PUSH2 0x240A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1A35 DUP7 DUP3 DUP8 ADD PUSH2 0x18DC JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1A46 DUP7 DUP3 DUP8 ADD PUSH2 0x18DC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1A57 DUP7 DUP3 DUP8 ADD PUSH2 0x198C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1A7B JUMPI PUSH2 0x1A7A PUSH2 0x240A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1A89 DUP8 DUP3 DUP9 ADD PUSH2 0x18DC JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x1A9A DUP8 DUP3 DUP9 ADD PUSH2 0x18DC JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x1AAB DUP8 DUP3 DUP9 ADD PUSH2 0x198C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1ACC JUMPI PUSH2 0x1ACB PUSH2 0x2405 JUMP JUMPDEST JUMPDEST PUSH2 0x1AD8 DUP8 DUP3 DUP9 ADD PUSH2 0x1930 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1AFB JUMPI PUSH2 0x1AFA PUSH2 0x240A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1B09 DUP6 DUP3 DUP7 ADD PUSH2 0x18DC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1B1A DUP6 DUP3 DUP7 ADD PUSH2 0x18F1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1B3B JUMPI PUSH2 0x1B3A PUSH2 0x240A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1B49 DUP6 DUP3 DUP7 ADD PUSH2 0x18DC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1B6A JUMPI PUSH2 0x1B69 PUSH2 0x2405 JUMP JUMPDEST JUMPDEST PUSH2 0x1B76 DUP6 DUP3 DUP7 ADD PUSH2 0x195E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1B97 JUMPI PUSH2 0x1B96 PUSH2 0x240A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1BA5 DUP6 DUP3 DUP7 ADD PUSH2 0x18DC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1BB6 DUP6 DUP3 DUP7 ADD PUSH2 0x198C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1BD6 JUMPI PUSH2 0x1BD5 PUSH2 0x240A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1BE4 DUP5 DUP3 DUP6 ADD PUSH2 0x1906 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C03 JUMPI PUSH2 0x1C02 PUSH2 0x240A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1C11 DUP5 DUP3 DUP6 ADD PUSH2 0x191B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C30 JUMPI PUSH2 0x1C2F PUSH2 0x240A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1C3E DUP5 DUP3 DUP6 ADD PUSH2 0x198C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1C50 DUP2 PUSH2 0x2255 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1C5F DUP2 PUSH2 0x2267 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1C70 DUP3 PUSH2 0x2193 JUMP JUMPDEST PUSH2 0x1C7A DUP2 DUP6 PUSH2 0x21A9 JUMP JUMPDEST SWAP4 POP PUSH2 0x1C8A DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x22D8 JUMP JUMPDEST PUSH2 0x1C93 DUP2 PUSH2 0x240F JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CA9 DUP3 PUSH2 0x219E JUMP JUMPDEST PUSH2 0x1CB3 DUP2 DUP6 PUSH2 0x21BA JUMP JUMPDEST SWAP4 POP PUSH2 0x1CC3 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x22D8 JUMP JUMPDEST PUSH2 0x1CCC DUP2 PUSH2 0x240F JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CE4 PUSH1 0x32 DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1CEF DUP3 PUSH2 0x2420 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D07 PUSH1 0x26 DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1D12 DUP3 PUSH2 0x246F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D2A PUSH1 0x25 DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1D35 DUP3 PUSH2 0x24BE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D4D PUSH1 0x1C DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1D58 DUP3 PUSH2 0x250D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D70 PUSH1 0x24 DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1D7B DUP3 PUSH2 0x2536 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D93 PUSH1 0x19 DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1D9E DUP3 PUSH2 0x2585 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1DB6 PUSH1 0x29 DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1DC1 DUP3 PUSH2 0x25AE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1DD9 PUSH1 0x3E DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1DE4 DUP3 PUSH2 0x25FD JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1DFC PUSH1 0x20 DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1E07 DUP3 PUSH2 0x264C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E1F PUSH1 0x20 DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1E2A DUP3 PUSH2 0x2675 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E42 PUSH1 0x18 DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1E4D DUP3 PUSH2 0x269E JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E65 PUSH1 0x21 DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1E70 DUP3 PUSH2 0x26C7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E88 PUSH1 0x2E DUP4 PUSH2 0x21BA JUMP JUMPDEST SWAP2 POP PUSH2 0x1E93 DUP3 PUSH2 0x2716 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1EA7 DUP2 PUSH2 0x22BF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1EC2 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1C47 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x1EDD PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x1C47 JUMP JUMPDEST PUSH2 0x1EEA PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x1C47 JUMP JUMPDEST PUSH2 0x1EF7 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1E9E JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x1F09 DUP2 DUP5 PUSH2 0x1C65 JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1F29 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1C56 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1F49 DUP2 DUP5 PUSH2 0x1C9E JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1F6A DUP2 PUSH2 0x1CD7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1F8A DUP2 PUSH2 0x1CFA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1FAA DUP2 PUSH2 0x1D1D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1FCA DUP2 PUSH2 0x1D40 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1FEA DUP2 PUSH2 0x1D63 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x200A DUP2 PUSH2 0x1D86 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x202A DUP2 PUSH2 0x1DA9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x204A DUP2 PUSH2 0x1DCC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x206A DUP2 PUSH2 0x1DEF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x208A DUP2 PUSH2 0x1E12 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x20AA DUP2 PUSH2 0x1E35 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x20CA DUP2 PUSH2 0x1E58 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x20EA DUP2 PUSH2 0x1E7B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2106 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1E9E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2116 PUSH2 0x2127 JUMP JUMPDEST SWAP1 POP PUSH2 0x2122 DUP3 DUP3 PUSH2 0x233D JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x214C JUMPI PUSH2 0x214B PUSH2 0x23CC JUMP JUMPDEST JUMPDEST PUSH2 0x2155 DUP3 PUSH2 0x240F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x217D JUMPI PUSH2 0x217C PUSH2 0x23CC JUMP JUMPDEST JUMPDEST PUSH2 0x2186 DUP3 PUSH2 0x240F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x21D6 DUP3 PUSH2 0x22BF JUMP JUMPDEST SWAP2 POP PUSH2 0x21E1 DUP4 PUSH2 0x22BF JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x2216 JUMPI PUSH2 0x2215 PUSH2 0x236E JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x222C DUP3 PUSH2 0x22BF JUMP JUMPDEST SWAP2 POP PUSH2 0x2237 DUP4 PUSH2 0x22BF JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x224A JUMPI PUSH2 0x2249 PUSH2 0x236E JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2260 DUP3 PUSH2 0x229F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x22F6 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x22DB JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x2305 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x2323 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x2337 JUMPI PUSH2 0x2336 PUSH2 0x239D JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2346 DUP3 PUSH2 0x240F JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x2365 JUMPI PUSH2 0x2364 PUSH2 0x23CC JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 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 PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT 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 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F776E6572000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A2061646472657373207A65726F206973206E6F742061207661 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C6964206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F7420746F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6B656E206F776E6572206E6F7220617070726F76656420666F7220616C6C0000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20696E76616C696420746F6B656E2049440000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A2063616C6C6572206973206E6F7420746F6B656E206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x72206E6F7220617070726F766564000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x276E DUP2 PUSH2 0x2255 JUMP JUMPDEST DUP2 EQ PUSH2 0x2779 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2785 DUP2 PUSH2 0x2267 JUMP JUMPDEST DUP2 EQ PUSH2 0x2790 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x279C DUP2 PUSH2 0x2273 JUMP JUMPDEST DUP2 EQ PUSH2 0x27A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x27B3 DUP2 PUSH2 0x22BF JUMP JUMPDEST DUP2 EQ PUSH2 0x27BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x5E JUMPDEST 0x2A 0xC2 PUSH6 0x9ACCEE5914B PUSH21 0x6CA1567A70E3F5BE3D9A874B385BA82F94FEC3764 PUSH20 0x6F6C634300080700330000000000000000000000 ",
"sourceMap": "231:777:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1570:300:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2470:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3935:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3467:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4612:327;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5005:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2190:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1929:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;:::i;:::-;;1201:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2632:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4169:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5250:315;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;882:121:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;555:311;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4388:162:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1570:300:1;1672:4;1722:25;1707:40;;;:11;:40;;;;:104;;;;1778:33;1763:48;;;:11;:48;;;;1707:104;:156;;;;1827:36;1851:11;1827:23;:36::i;:::-;1707:156;1688:175;;1570:300;;;:::o;2470:98::-;2524:13;2556:5;2549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2470:98;:::o;3935:167::-;4011:7;4030:23;4045:7;4030:14;:23::i;:::-;4071:15;:24;4087:7;4071:24;;;;;;;;;;;;;;;;;;;;;4064:31;;3935:167;;;:::o;3467:407::-;3547:13;3563:23;3578:7;3563:14;:23::i;:::-;3547:39;;3610:5;3604:11;;:2;:11;;;;3596:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3701:5;3685:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3710:37;3727:5;3734:12;:10;:12::i;:::-;3710:16;:37::i;:::-;3685:62;3664:171;;;;;;;;;;;;:::i;:::-;;;;;;;;;3846:21;3855:2;3859:7;3846:8;:21::i;:::-;3537:337;3467:407;;:::o;4612:327::-;4801:41;4820:12;:10;:12::i;:::-;4834:7;4801:18;:41::i;:::-;4793:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;4904:28;4914:4;4920:2;4924:7;4904:9;:28::i;:::-;4612:327;;;:::o;5005:179::-;5138:39;5155:4;5161:2;5165:7;5138:39;;;;;;;;;;;;:16;:39::i;:::-;5005:179;;;:::o;2190:218::-;2262:7;2281:13;2297:7;:16;2305:7;2297:16;;;;;;;;;;;;;;;;;;;;;2281:32;;2348:1;2331:19;;:5;:19;;;;2323:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;2396:5;2389:12;;;2190:218;;;:::o;1929:204::-;2001:7;2045:1;2028:19;;:5;:19;;;;2020:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2110:9;:16;2120:5;2110:16;;;;;;;;;;;;;;;;2103:23;;1929:204;;;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;1201:85::-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;2632:102:1:-;2688:13;2720:7;2713:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2632:102;:::o;4169:153::-;4263:52;4282:12;:10;:12::i;:::-;4296:8;4306;4263:18;:52::i;:::-;4169:153;;:::o;5250:315::-;5418:41;5437:12;:10;:12::i;:::-;5451:7;5418:18;:41::i;:::-;5410:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;5520:38;5534:4;5540:2;5544:7;5553:4;5520:13;:38::i;:::-;5250:315;;;;:::o;882:121:11:-;947:13;979:5;:14;985:7;979:14;;;;;;;;;;;972:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;882:121;;;:::o;555:311::-;620:4;636:27;:15;:25;:27::i;:::-;673:40;683:2;687:25;:15;:23;:25::i;:::-;673:9;:40::i;:::-;803:3;768:5;:32;774:25;:15;:23;:25::i;:::-;768:32;;;;;;;;;;;:38;;;;;;;;;;;;:::i;:::-;;823:25;:15;:23;:25::i;:::-;816:32;;555:311;;;;:::o;4388:162:1:-;4485:4;4508:18;:25;4527:5;4508:25;;;;;;;;;;;;;;;:35;4534:8;4508:35;;;;;;;;;;;;;;;;;;;;;;;;;4501:42;;4388:162;;;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;;;2161:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;829:155:9:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;11657:133:1:-;11738:16;11746:7;11738;:16::i;:::-;11730:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;11657:133;:::o;640:96:6:-;693:7;719:10;712:17;;640:96;:::o;10959:171:1:-;11060:2;11033:15;:24;11049:7;11033:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11115:7;11111:2;11077:46;;11086:23;11101:7;11086:14;:23::i;:::-;11077:46;;;;;;;;;;;;10959:171;;:::o;7317:261::-;7410:4;7426:13;7442:23;7457:7;7442:14;:23::i;:::-;7426:39;;7494:5;7483:16;;:7;:16;;;:52;;;;7503:32;7520:5;7527:7;7503:16;:32::i;:::-;7483:52;:87;;;;7563:7;7539:31;;:20;7551:7;7539:11;:20::i;:::-;:31;;;7483:87;7475:96;;;7317:261;;;;:::o;10242:605::-;10396:4;10369:31;;:23;10384:7;10369:14;:23::i;:::-;:31;;;10361:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;10474:1;10460:16;;:2;:16;;;;10452:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10528:39;10549:4;10555:2;10559:7;10528:20;:39::i;:::-;10629:29;10646:1;10650:7;10629:8;:29::i;:::-;10688:1;10669:9;:15;10679:4;10669:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10716:1;10699:9;:13;10709:2;10699:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10746:2;10727:7;:16;10735:7;10727:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10783:7;10779:2;10764:27;;10773:4;10764:27;;;;;;;;;;;;10802:38;10822:4;10828:2;10832:7;10802:19;:38::i;:::-;10242:605;;;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;2433:187::-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;11266:307:1:-;11416:8;11407:17;;:5;:17;;;;11399:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11502:8;11464:18;:25;11483:5;11464:25;;;;;;;;;;;;;;;:35;11490:8;11464:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11547:8;11525:41;;11540:5;11525:41;;;11557:8;11525:41;;;;;;:::i;:::-;;;;;;;;11266:307;;;:::o;6426:305::-;6576:28;6586:4;6592:2;6596:7;6576:9;:28::i;:::-;6622:47;6645:4;6651:2;6655:7;6664:4;6622:22;:47::i;:::-;6614:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;6426:305;;;;:::o;945:123:7:-;1050:1;1032:7;:14;;;:19;;;;;;;;;;;945:123;:::o;827:112::-;892:7;918;:14;;;911:21;;827:112;;;:::o;7908:108:1:-;7983:26;7993:2;7997:7;7983:26;;;;;;;;;;;;:9;:26::i;:::-;7908:108;;:::o;7034:125::-;7099:4;7150:1;7122:30;;:7;:16;7130:7;7122:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7115:37;;7034:125;;;:::o;13729:122::-;;;;:::o;14223:121::-;;;;:::o;12342:831::-;12491:4;12511:15;:2;:13;;;:15::i;:::-;12507:660;;;12562:2;12546:36;;;12583:12;:10;:12::i;:::-;12597:4;12603:7;12612:4;12546:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12542:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12801:1;12784:6;:13;:18;12780:321;;;12826:60;;;;;;;;;;:::i;:::-;;;;;;;;12780:321;13053:6;13047:13;13038:6;13034:2;13030:15;13023:38;12542:573;12677:41;;;12667:51;;;:6;:51;;;;12660:58;;;;;12507:660;13152:4;13145:11;;12342:831;;;;;;;:::o;8237:309::-;8361:18;8367:2;8371:7;8361:5;:18::i;:::-;8410:53;8441:1;8445:2;8449:7;8458:4;8410:22;:53::i;:::-;8389:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;8237:309;;;:::o;1175:320:5:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;8868:427:1:-;8961:1;8947:16;;:2;:16;;;;8939:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9019:16;9027:7;9019;:16::i;:::-;9018:17;9010:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9079:45;9108:1;9112:2;9116:7;9079:20;:45::i;:::-;9152:1;9135:9;:13;9145:2;9135:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9182:2;9163:7;:16;9171:7;9163:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9225:7;9221:2;9200:33;;9217:1;9200:33;;;;;;;;;;;;9244:44;9272:1;9276:2;9280:7;9244:19;:44::i;:::-;8868:427;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:12:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:654::-;5218:6;5226;5275:2;5263:9;5254:7;5250:23;5246:32;5243:119;;;5281:79;;:::i;:::-;5243:119;5401:1;5426:53;5471:7;5462:6;5451:9;5447:22;5426:53;:::i;:::-;5416:63;;5372:117;5556:2;5545:9;5541:18;5528:32;5587:18;5579:6;5576:30;5573:117;;;5609:79;;:::i;:::-;5573:117;5714:63;5769:7;5760:6;5749:9;5745:22;5714:63;:::i;:::-;5704:73;;5499:288;5140:654;;;;;:::o;5800:474::-;5868:6;5876;5925:2;5913:9;5904:7;5900:23;5896:32;5893:119;;;5931:79;;:::i;:::-;5893:119;6051:1;6076:53;6121:7;6112:6;6101:9;6097:22;6076:53;:::i;:::-;6066:63;;6022:117;6178:2;6204:53;6249:7;6240:6;6229:9;6225:22;6204:53;:::i;:::-;6194:63;;6149:118;5800:474;;;;;:::o;6280:327::-;6338:6;6387:2;6375:9;6366:7;6362:23;6358:32;6355:119;;;6393:79;;:::i;:::-;6355:119;6513:1;6538:52;6582:7;6573:6;6562:9;6558:22;6538:52;:::i;:::-;6528:62;;6484:116;6280:327;;;;:::o;6613:349::-;6682:6;6731:2;6719:9;6710:7;6706:23;6702:32;6699:119;;;6737:79;;:::i;:::-;6699:119;6857:1;6882:63;6937:7;6928:6;6917:9;6913:22;6882:63;:::i;:::-;6872:73;;6828:127;6613:349;;;;:::o;6968:329::-;7027:6;7076:2;7064:9;7055:7;7051:23;7047:32;7044:119;;;7082:79;;:::i;:::-;7044:119;7202:1;7227:53;7272:7;7263:6;7252:9;7248:22;7227:53;:::i;:::-;7217:63;;7173:117;6968:329;;;;:::o;7303:118::-;7390:24;7408:5;7390:24;:::i;:::-;7385:3;7378:37;7303:118;;:::o;7427:109::-;7508:21;7523:5;7508:21;:::i;:::-;7503:3;7496:34;7427:109;;:::o;7542:360::-;7628:3;7656:38;7688:5;7656:38;:::i;:::-;7710:70;7773:6;7768:3;7710:70;:::i;:::-;7703:77;;7789:52;7834:6;7829:3;7822:4;7815:5;7811:16;7789:52;:::i;:::-;7866:29;7888:6;7866:29;:::i;:::-;7861:3;7857:39;7850:46;;7632:270;7542:360;;;;:::o;7908:364::-;7996:3;8024:39;8057:5;8024:39;:::i;:::-;8079:71;8143:6;8138:3;8079:71;:::i;:::-;8072:78;;8159:52;8204:6;8199:3;8192:4;8185:5;8181:16;8159:52;:::i;:::-;8236:29;8258:6;8236:29;:::i;:::-;8231:3;8227:39;8220:46;;8000:272;7908:364;;;;:::o;8278:366::-;8420:3;8441:67;8505:2;8500:3;8441:67;:::i;:::-;8434:74;;8517:93;8606:3;8517:93;:::i;:::-;8635:2;8630:3;8626:12;8619:19;;8278:366;;;:::o;8650:::-;8792:3;8813:67;8877:2;8872:3;8813:67;:::i;:::-;8806:74;;8889:93;8978:3;8889:93;:::i;:::-;9007:2;9002:3;8998:12;8991:19;;8650:366;;;:::o;9022:::-;9164:3;9185:67;9249:2;9244:3;9185:67;:::i;:::-;9178:74;;9261:93;9350:3;9261:93;:::i;:::-;9379:2;9374:3;9370:12;9363:19;;9022:366;;;:::o;9394:::-;9536:3;9557:67;9621:2;9616:3;9557:67;:::i;:::-;9550:74;;9633:93;9722:3;9633:93;:::i;:::-;9751:2;9746:3;9742:12;9735:19;;9394:366;;;:::o;9766:::-;9908:3;9929:67;9993:2;9988:3;9929:67;:::i;:::-;9922:74;;10005:93;10094:3;10005:93;:::i;:::-;10123:2;10118:3;10114:12;10107:19;;9766:366;;;:::o;10138:::-;10280:3;10301:67;10365:2;10360:3;10301:67;:::i;:::-;10294:74;;10377:93;10466:3;10377:93;:::i;:::-;10495:2;10490:3;10486:12;10479:19;;10138:366;;;:::o;10510:::-;10652:3;10673:67;10737:2;10732:3;10673:67;:::i;:::-;10666:74;;10749:93;10838:3;10749:93;:::i;:::-;10867:2;10862:3;10858:12;10851:19;;10510:366;;;:::o;10882:::-;11024:3;11045:67;11109:2;11104:3;11045:67;:::i;:::-;11038:74;;11121:93;11210:3;11121:93;:::i;:::-;11239:2;11234:3;11230:12;11223:19;;10882:366;;;:::o;11254:::-;11396:3;11417:67;11481:2;11476:3;11417:67;:::i;:::-;11410:74;;11493:93;11582:3;11493:93;:::i;:::-;11611:2;11606:3;11602:12;11595:19;;11254:366;;;:::o;11626:::-;11768:3;11789:67;11853:2;11848:3;11789:67;:::i;:::-;11782:74;;11865:93;11954:3;11865:93;:::i;:::-;11983:2;11978:3;11974:12;11967:19;;11626:366;;;:::o;11998:::-;12140:3;12161:67;12225:2;12220:3;12161:67;:::i;:::-;12154:74;;12237:93;12326:3;12237:93;:::i;:::-;12355:2;12350:3;12346:12;12339:19;;11998:366;;;:::o;12370:::-;12512:3;12533:67;12597:2;12592:3;12533:67;:::i;:::-;12526:74;;12609:93;12698:3;12609:93;:::i;:::-;12727:2;12722:3;12718:12;12711:19;;12370:366;;;:::o;12742:::-;12884:3;12905:67;12969:2;12964:3;12905:67;:::i;:::-;12898:74;;12981:93;13070:3;12981:93;:::i;:::-;13099:2;13094:3;13090:12;13083:19;;12742:366;;;:::o;13114:118::-;13201:24;13219:5;13201:24;:::i;:::-;13196:3;13189:37;13114:118;;:::o;13238:222::-;13331:4;13369:2;13358:9;13354:18;13346:26;;13382:71;13450:1;13439:9;13435:17;13426:6;13382:71;:::i;:::-;13238:222;;;;:::o;13466:640::-;13661:4;13699:3;13688:9;13684:19;13676:27;;13713:71;13781:1;13770:9;13766:17;13757:6;13713:71;:::i;:::-;13794:72;13862:2;13851:9;13847:18;13838:6;13794:72;:::i;:::-;13876;13944:2;13933:9;13929:18;13920:6;13876:72;:::i;:::-;13995:9;13989:4;13985:20;13980:2;13969:9;13965:18;13958:48;14023:76;14094:4;14085:6;14023:76;:::i;:::-;14015:84;;13466:640;;;;;;;:::o;14112:210::-;14199:4;14237:2;14226:9;14222:18;14214:26;;14250:65;14312:1;14301:9;14297:17;14288:6;14250:65;:::i;:::-;14112:210;;;;:::o;14328:313::-;14441:4;14479:2;14468:9;14464:18;14456:26;;14528:9;14522:4;14518:20;14514:1;14503:9;14499:17;14492:47;14556:78;14629:4;14620:6;14556:78;:::i;:::-;14548:86;;14328:313;;;;:::o;14647:419::-;14813:4;14851:2;14840:9;14836:18;14828:26;;14900:9;14894:4;14890:20;14886:1;14875:9;14871:17;14864:47;14928:131;15054:4;14928:131;:::i;:::-;14920:139;;14647:419;;;:::o;15072:::-;15238:4;15276:2;15265:9;15261:18;15253:26;;15325:9;15319:4;15315:20;15311:1;15300:9;15296:17;15289:47;15353:131;15479:4;15353:131;:::i;:::-;15345:139;;15072:419;;;:::o;15497:::-;15663:4;15701:2;15690:9;15686:18;15678:26;;15750:9;15744:4;15740:20;15736:1;15725:9;15721:17;15714:47;15778:131;15904:4;15778:131;:::i;:::-;15770:139;;15497:419;;;:::o;15922:::-;16088:4;16126:2;16115:9;16111:18;16103:26;;16175:9;16169:4;16165:20;16161:1;16150:9;16146:17;16139:47;16203:131;16329:4;16203:131;:::i;:::-;16195:139;;15922:419;;;:::o;16347:::-;16513:4;16551:2;16540:9;16536:18;16528:26;;16600:9;16594:4;16590:20;16586:1;16575:9;16571:17;16564:47;16628:131;16754:4;16628:131;:::i;:::-;16620:139;;16347:419;;;:::o;16772:::-;16938:4;16976:2;16965:9;16961:18;16953:26;;17025:9;17019:4;17015:20;17011:1;17000:9;16996:17;16989:47;17053:131;17179:4;17053:131;:::i;:::-;17045:139;;16772:419;;;:::o;17197:::-;17363:4;17401:2;17390:9;17386:18;17378:26;;17450:9;17444:4;17440:20;17436:1;17425:9;17421:17;17414:47;17478:131;17604:4;17478:131;:::i;:::-;17470:139;;17197:419;;;:::o;17622:::-;17788:4;17826:2;17815:9;17811:18;17803:26;;17875:9;17869:4;17865:20;17861:1;17850:9;17846:17;17839:47;17903:131;18029:4;17903:131;:::i;:::-;17895:139;;17622:419;;;:::o;18047:::-;18213:4;18251:2;18240:9;18236:18;18228:26;;18300:9;18294:4;18290:20;18286:1;18275:9;18271:17;18264:47;18328:131;18454:4;18328:131;:::i;:::-;18320:139;;18047:419;;;:::o;18472:::-;18638:4;18676:2;18665:9;18661:18;18653:26;;18725:9;18719:4;18715:20;18711:1;18700:9;18696:17;18689:47;18753:131;18879:4;18753:131;:::i;:::-;18745:139;;18472:419;;;:::o;18897:::-;19063:4;19101:2;19090:9;19086:18;19078:26;;19150:9;19144:4;19140:20;19136:1;19125:9;19121:17;19114:47;19178:131;19304:4;19178:131;:::i;:::-;19170:139;;18897:419;;;:::o;19322:::-;19488:4;19526:2;19515:9;19511:18;19503:26;;19575:9;19569:4;19565:20;19561:1;19550:9;19546:17;19539:47;19603:131;19729:4;19603:131;:::i;:::-;19595:139;;19322:419;;;:::o;19747:::-;19913:4;19951:2;19940:9;19936:18;19928:26;;20000:9;19994:4;19990:20;19986:1;19975:9;19971:17;19964:47;20028:131;20154:4;20028:131;:::i;:::-;20020:139;;19747:419;;;:::o;20172:222::-;20265:4;20303:2;20292:9;20288:18;20280:26;;20316:71;20384:1;20373:9;20369:17;20360:6;20316:71;:::i;:::-;20172:222;;;;:::o;20400:129::-;20434:6;20461:20;;:::i;:::-;20451:30;;20490:33;20518:4;20510:6;20490:33;:::i;:::-;20400:129;;;:::o;20535:75::-;20568:6;20601:2;20595:9;20585:19;;20535:75;:::o;20616:307::-;20677:4;20767:18;20759:6;20756:30;20753:56;;;20789:18;;:::i;:::-;20753:56;20827:29;20849:6;20827:29;:::i;:::-;20819:37;;20911:4;20905;20901:15;20893:23;;20616:307;;;:::o;20929:308::-;20991:4;21081:18;21073:6;21070:30;21067:56;;;21103:18;;:::i;:::-;21067:56;21141:29;21163:6;21141:29;:::i;:::-;21133:37;;21225:4;21219;21215:15;21207:23;;20929:308;;;:::o;21243:98::-;21294:6;21328:5;21322:12;21312:22;;21243:98;;;:::o;21347:99::-;21399:6;21433:5;21427:12;21417:22;;21347:99;;;:::o;21452:168::-;21535:11;21569:6;21564:3;21557:19;21609:4;21604:3;21600:14;21585:29;;21452:168;;;;:::o;21626:169::-;21710:11;21744:6;21739:3;21732:19;21784:4;21779:3;21775:14;21760:29;;21626:169;;;;:::o;21801:305::-;21841:3;21860:20;21878:1;21860:20;:::i;:::-;21855:25;;21894:20;21912:1;21894:20;:::i;:::-;21889:25;;22048:1;21980:66;21976:74;21973:1;21970:81;21967:107;;;22054:18;;:::i;:::-;21967:107;22098:1;22095;22091:9;22084:16;;21801:305;;;;:::o;22112:191::-;22152:4;22172:20;22190:1;22172:20;:::i;:::-;22167:25;;22206:20;22224:1;22206:20;:::i;:::-;22201:25;;22245:1;22242;22239:8;22236:34;;;22250:18;;:::i;:::-;22236:34;22295:1;22292;22288:9;22280:17;;22112:191;;;;:::o;22309:96::-;22346:7;22375:24;22393:5;22375:24;:::i;:::-;22364:35;;22309:96;;;:::o;22411:90::-;22445:7;22488:5;22481:13;22474:21;22463:32;;22411:90;;;:::o;22507:149::-;22543:7;22583:66;22576:5;22572:78;22561:89;;22507:149;;;:::o;22662:126::-;22699:7;22739:42;22732:5;22728:54;22717:65;;22662:126;;;:::o;22794:77::-;22831:7;22860:5;22849:16;;22794:77;;;:::o;22877:154::-;22961:6;22956:3;22951;22938:30;23023:1;23014:6;23009:3;23005:16;22998:27;22877:154;;;:::o;23037:307::-;23105:1;23115:113;23129:6;23126:1;23123:13;23115:113;;;23214:1;23209:3;23205:11;23199:18;23195:1;23190:3;23186:11;23179:39;23151:2;23148:1;23144:10;23139:15;;23115:113;;;23246:6;23243:1;23240:13;23237:101;;;23326:1;23317:6;23312:3;23308:16;23301:27;23237:101;23086:258;23037:307;;;:::o;23350:320::-;23394:6;23431:1;23425:4;23421:12;23411:22;;23478:1;23472:4;23468:12;23499:18;23489:81;;23555:4;23547:6;23543:17;23533:27;;23489:81;23617:2;23609:6;23606:14;23586:18;23583:38;23580:84;;;23636:18;;:::i;:::-;23580:84;23401:269;23350:320;;;:::o;23676:281::-;23759:27;23781:4;23759:27;:::i;:::-;23751:6;23747:40;23889:6;23877:10;23874:22;23853:18;23841:10;23838:34;23835:62;23832:88;;;23900:18;;:::i;:::-;23832:88;23940:10;23936:2;23929:22;23719:238;23676:281;;:::o;23963:180::-;24011:77;24008:1;24001:88;24108:4;24105:1;24098:15;24132:4;24129:1;24122:15;24149:180;24197:77;24194:1;24187:88;24294:4;24291:1;24284:15;24318:4;24315:1;24308:15;24335:180;24383:77;24380:1;24373:88;24480:4;24477:1;24470:15;24504:4;24501:1;24494:15;24521:117;24630:1;24627;24620:12;24644:117;24753:1;24750;24743:12;24767:117;24876:1;24873;24866:12;24890:117;24999:1;24996;24989:12;25013:102;25054:6;25105:2;25101:7;25096:2;25089:5;25085:14;25081:28;25071:38;;25013:102;;;:::o;25121:237::-;25261:34;25257:1;25249:6;25245:14;25238:58;25330:20;25325:2;25317:6;25313:15;25306:45;25121:237;:::o;25364:225::-;25504:34;25500:1;25492:6;25488:14;25481:58;25573:8;25568:2;25560:6;25556:15;25549:33;25364:225;:::o;25595:224::-;25735:34;25731:1;25723:6;25719:14;25712:58;25804:7;25799:2;25791:6;25787:15;25780:32;25595:224;:::o;25825:178::-;25965:30;25961:1;25953:6;25949:14;25942:54;25825:178;:::o;26009:223::-;26149:34;26145:1;26137:6;26133:14;26126:58;26218:6;26213:2;26205:6;26201:15;26194:31;26009:223;:::o;26238:175::-;26378:27;26374:1;26366:6;26362:14;26355:51;26238:175;:::o;26419:228::-;26559:34;26555:1;26547:6;26543:14;26536:58;26628:11;26623:2;26615:6;26611:15;26604:36;26419:228;:::o;26653:249::-;26793:34;26789:1;26781:6;26777:14;26770:58;26862:32;26857:2;26849:6;26845:15;26838:57;26653:249;:::o;26908:182::-;27048:34;27044:1;27036:6;27032:14;27025:58;26908:182;:::o;27096:::-;27236:34;27232:1;27224:6;27220:14;27213:58;27096:182;:::o;27284:174::-;27424:26;27420:1;27412:6;27408:14;27401:50;27284:174;:::o;27464:220::-;27604:34;27600:1;27592:6;27588:14;27581:58;27673:3;27668:2;27660:6;27656:15;27649:28;27464:220;:::o;27690:233::-;27830:34;27826:1;27818:6;27814:14;27807:58;27899:16;27894:2;27886:6;27882:15;27875:41;27690:233;:::o;27929:122::-;28002:24;28020:5;28002:24;:::i;:::-;27995:5;27992:35;27982:63;;28041:1;28038;28031:12;27982:63;27929:122;:::o;28057:116::-;28127:21;28142:5;28127:21;:::i;:::-;28120:5;28117:32;28107:60;;28163:1;28160;28153:12;28107:60;28057:116;:::o;28179:120::-;28251:23;28268:5;28251:23;:::i;:::-;28244:5;28241:34;28231:62;;28289:1;28286;28279:12;28231:62;28179:120;:::o;28305:122::-;28378:24;28396:5;28378:24;:::i;:::-;28371:5;28368:35;28358:63;;28417:1;28414;28407:12;28358:63;28305:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "2046200",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2968",
"getApproved(uint256)": "5257",
"isApprovedForAll(address,address)": "infinite",
"name()": "infinite",
"owner()": "2567",
"ownerOf(uint256)": "3026",
"renounceOwnership()": "30421",
"safeMint(address,string)": "infinite",
"safeTransferFrom(address,address,uint256)": "infinite",
"safeTransferFrom(address,address,uint256,bytes)": "infinite",
"setApprovalForAll(address,bool)": "infinite",
"supportsInterface(bytes4)": "797",
"symbol()": "infinite",
"tokenURI(uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite",
"transferOwnership(address)": "30857"
}
},
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"getApproved(uint256)": "081812fc",
"isApprovedForAll(address,address)": "e985e9c5",
"name()": "06fdde03",
"owner()": "8da5cb5b",
"ownerOf(uint256)": "6352211e",
"renounceOwnership()": "715018a6",
"safeMint(address,string)": "d204c45e",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setApprovalForAll(address,bool)": "a22cb465",
"supportsInterface(bytes4)": "01ffc9a7",
"symbol()": "95d89b41",
"tokenURI(uint256)": "c87b56dd",
"transferFrom(address,address,uint256)": "23b872dd",
"transferOwnership(address)": "f2fde38b"
}
},
"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": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"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": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"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": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "string",
"name": "uri",
"type": "string"
}
],
"name": "safeMint",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"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": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"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": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"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": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "string",
"name": "uri",
"type": "string"
}
],
"name": "safeMint",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "See {IERC721-approve}."
},
"balanceOf(address)": {
"details": "See {IERC721-balanceOf}."
},
"getApproved(uint256)": {
"details": "See {IERC721-getApproved}."
},
"isApprovedForAll(address,address)": {
"details": "See {IERC721-isApprovedForAll}."
},
"name()": {
"details": "See {IERC721Metadata-name}."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"ownerOf(uint256)": {
"details": "See {IERC721-ownerOf}."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
},
"safeTransferFrom(address,address,uint256)": {
"details": "See {IERC721-safeTransferFrom}."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "See {IERC721-safeTransferFrom}."
},
"setApprovalForAll(address,bool)": {
"details": "See {IERC721-setApprovalForAll}."
},
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
},
"symbol()": {
"details": "See {IERC721Metadata-symbol}."
},
"tokenURI(uint256)": {
"details": "See {IERC721Metadata-tokenURI}."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC721-transferFrom}."
},
"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": {
"MyNFT.sol": "MyNFT"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/access/Ownable.sol": {
"keccak256": "0xa94b34880e3c1b0b931662cb1c09e5dfa6662f31cba80e07c5ee71cd135c9673",
"license": "MIT",
"urls": [
"bzz-raw://40fb1b5102468f783961d0af743f91b9980cf66b50d1d12009f6bb1869cea4d2",
"dweb:/ipfs/QmYqEbJML4jB1GHbzD4cUZDtJg5wVwNm3vDJq1GbyDus8y"
]
},
"@openzeppelin/contracts/token/ERC721/ERC721.sol": {
"keccak256": "0x0b606994df12f0ce35f6d2f6dcdde7e55e6899cdef7e00f180980caa81e3844e",
"license": "MIT",
"urls": [
"bzz-raw://4c827c981a552d1c76c96060e92f56b52bc20c6f9b4dbf911fe99ddbfb41f2ea",
"dweb:/ipfs/QmW8xvJdzHrr8Ry34C7viBsgG2b8T1mL4BQWJ5CdfD9JLB"
]
},
"@openzeppelin/contracts/token/ERC721/IERC721.sol": {
"keccak256": "0xed6a749c5373af398105ce6ee3ac4763aa450ea7285d268c85d9eeca809cdb1f",
"license": "MIT",
"urls": [
"bzz-raw://20a97f891d06f0fe91560ea1a142aaa26fdd22bed1b51606b7d48f670deeb50f",
"dweb:/ipfs/QmTbCtZKChpaX5H2iRiTDMcSz29GSLCpTCDgJpcMR4wg8x"
]
},
"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
"keccak256": "0xa82b58eca1ee256be466e536706850163d2ec7821945abd6b4778cfb3bee37da",
"license": "MIT",
"urls": [
"bzz-raw://6e75cf83beb757b8855791088546b8337e9d4684e169400c20d44a515353b708",
"dweb:/ipfs/QmYvPafLfoquiDMEj7CKHtvbgHu7TJNPSVPSCjrtjV8HjV"
]
},
"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": {
"keccak256": "0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9",
"license": "MIT",
"urls": [
"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146",
"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf"
]
},
"@openzeppelin/contracts/utils/Address.sol": {
"keccak256": "0xd6153ce99bcdcce22b124f755e72553295be6abcd63804cfdffceb188b8bef10",
"license": "MIT",
"urls": [
"bzz-raw://35c47bece3c03caaa07fab37dd2bb3413bfbca20db7bd9895024390e0a469487",
"dweb:/ipfs/QmPGWT2x3QHcKxqe6gRmAkdakhbaRgx3DLzcakHz5M4eXG"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
"@openzeppelin/contracts/utils/Counters.sol": {
"keccak256": "0xf0018c2440fbe238dd3a8732fa8e17a0f9dce84d31451dc8a32f6d62b349c9f1",
"license": "MIT",
"urls": [
"bzz-raw://59e1c62884d55b70f3ae5432b44bb3166ad71ae3acd19c57ab6ddc3c87c325ee",
"dweb:/ipfs/QmezuXg5GK5oeA4F91EZhozBFekhq5TD966bHPH18cCqhu"
]
},
"@openzeppelin/contracts/utils/Strings.sol": {
"keccak256": "0xaf159a8b1923ad2a26d516089bceca9bdeaeacd04be50983ea00ba63070f08a3",
"license": "MIT",
"urls": [
"bzz-raw://6f2cf1c531122bc7ca96b8c8db6a60deae60441e5223065e792553d4849b5638",
"dweb:/ipfs/QmPBdJmBBABMDCfyDjCbdxgiqRavgiSL88SYPGibgbPas9"
]
},
"@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"keccak256": "0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b",
"license": "MIT",
"urls": [
"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d",
"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43"
]
},
"@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"keccak256": "0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1",
"license": "MIT",
"urls": [
"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f",
"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy"
]
},
"MyNFT.sol": {
"keccak256": "0x7061c5dd2a879009e14c4df4abc264a24eaa6a7c07d6cc3ba130670a777fee7a",
"license": "MIT",
"urls": [
"bzz-raw://72236768eb786883014203eb514650a3916b9670d5d5f1823037c6e29d28d72a",
"dweb:/ipfs/QmdUK4Cnc3y1VLBGH462ENco3sRUGB8ZM8fgChzzmEcmUA"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
contract MyNFT is ERC721, Ownable {
using Counters for Counters.Counter;
Counters.Counter private _tokenIdCounter;
// URIs mapping
mapping(uint => string) private _uris;
constructor(
string memory name,
string memory symbol)
ERC721(name, symbol) {
}
function safeMint(address to, string memory uri) public returns (uint) {
_tokenIdCounter.increment();
_safeMint(to, _tokenIdCounter.current());
// base URI for NFT. Must end with /
_uris[_tokenIdCounter.current()] = uri;
return _tokenIdCounter.current();
}
function tokenURI(uint256 tokenId) public view override returns (string memory) {
return _uris[tokenId];
}
}
This file has been truncated, but you can view the full file.
{
"id": "abfc0b08ad9f711f901d74f6057a3a2e",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"MyNFT.sol": {
"content": "// SPDX-License-Identifier: MIT\r\n\r\npragma solidity ^0.8.0;\r\n\r\nimport \"@openzeppelin/contracts/token/ERC721/ERC721.sol\";\r\nimport \"@openzeppelin/contracts/access/Ownable.sol\";\r\nimport \"@openzeppelin/contracts/utils/Counters.sol\";\r\n\r\ncontract MyNFT is ERC721, Ownable {\r\n\r\n\tusing Counters for Counters.Counter;\r\n\r\n\tCounters.Counter private _tokenIdCounter;\r\n\r\n \r\n\r\n // URIs mapping\r\n\r\n mapping(uint => string) private _uris;\r\n\r\n constructor(\r\n\r\n \tstring memory name,\r\n\r\n \tstring memory symbol) \t \r\n\r\n \tERC721(name, symbol) {\r\n\r\n }\r\n\r\n function safeMint(address to, string memory uri) public returns (uint) {\r\n\r\n \t _tokenIdCounter.increment();\r\n\r\n \t _safeMint(to, _tokenIdCounter.current());\r\n\r\n \t // base URI for NFT. Must end with /\r\n\r\n \t _uris[_tokenIdCounter.current()] = uri;\r\n\r\n \t return _tokenIdCounter.current();\r\n\r\n \r\n\r\n }\r\n\r\n \r\n\r\n function tokenURI(uint256 tokenId) public view override returns (string memory) {\r\n\r\n \treturn _uris[tokenId];\r\n\r\n }\r\n\r\n}"
},
"@openzeppelin/contracts/utils/Counters.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @title Counters\n * @author Matt Condon (@shrugs)\n * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number\n * of elements in a mapping, issuing ERC721 ids, or counting request ids.\n *\n * Include with `using Counters for Counters.Counter;`\n */\nlibrary Counters {\n struct Counter {\n // This variable should never be directly accessed by users of the library: interactions must be restricted to\n // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add\n // this feature: see https://github.com/ethereum/solidity/issues/4637\n uint256 _value; // default: 0\n }\n\n function current(Counter storage counter) internal view returns (uint256) {\n return counter._value;\n }\n\n function increment(Counter storage counter) internal {\n unchecked {\n counter._value += 1;\n }\n }\n\n function decrement(Counter storage counter) internal {\n uint256 value = counter._value;\n require(value > 0, \"Counter: decrement overflow\");\n unchecked {\n counter._value = value - 1;\n }\n }\n\n function reset(Counter storage counter) internal {\n counter._value = 0;\n }\n}\n"
},
"@openzeppelin/contracts/access/Ownable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.\n *\n * NOTE: Renouncing ownership will leave the contract without an owner,\n * thereby removing 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/ERC721/ERC721.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC721.sol\";\nimport \"./IERC721Receiver.sol\";\nimport \"./extensions/IERC721Metadata.sol\";\nimport \"../../utils/Address.sol\";\nimport \"../../utils/Context.sol\";\nimport \"../../utils/Strings.sol\";\nimport \"../../utils/introspection/ERC165.sol\";\n\n/**\n * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including\n * the Metadata extension, but not including the Enumerable extension, which is available separately as\n * {ERC721Enumerable}.\n */\ncontract ERC721 is Context, ERC165, IERC721, IERC721Metadata {\n using Address for address;\n using Strings for uint256;\n\n // Token name\n string private _name;\n\n // Token symbol\n string private _symbol;\n\n // Mapping from token ID to owner address\n mapping(uint256 => address) private _owners;\n\n // Mapping owner address to token count\n mapping(address => uint256) private _balances;\n\n // Mapping from token ID to approved address\n mapping(uint256 => address) private _tokenApprovals;\n\n // Mapping from owner to operator approvals\n mapping(address => mapping(address => bool)) private _operatorApprovals;\n\n /**\n * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.\n */\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {\n return\n interfaceId == type(IERC721).interfaceId ||\n interfaceId == type(IERC721Metadata).interfaceId ||\n super.supportsInterface(interfaceId);\n }\n\n /**\n * @dev See {IERC721-balanceOf}.\n */\n function balanceOf(address owner) public view virtual override returns (uint256) {\n require(owner != address(0), \"ERC721: address zero is not a valid owner\");\n return _balances[owner];\n }\n\n /**\n * @dev See {IERC721-ownerOf}.\n */\n function ownerOf(uint256 tokenId) public view virtual override returns (address) {\n address owner = _owners[tokenId];\n require(owner != address(0), \"ERC721: invalid token ID\");\n return owner;\n }\n\n /**\n * @dev See {IERC721Metadata-name}.\n */\n function name() public view virtual override returns (string memory) {\n return _name;\n }\n\n /**\n * @dev See {IERC721Metadata-symbol}.\n */\n function symbol() public view virtual override returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev See {IERC721Metadata-tokenURI}.\n */\n function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {\n _requireMinted(tokenId);\n\n string memory baseURI = _baseURI();\n return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\";\n }\n\n /**\n * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each\n * token will be the concatenation of the `baseURI` and the `tokenId`. Empty\n * by default, can be overridden in child contracts.\n */\n function _baseURI() internal view virtual returns (string memory) {\n return \"\";\n }\n\n /**\n * @dev See {IERC721-approve}.\n */\n function approve(address to, uint256 tokenId) public virtual override {\n address owner = ERC721.ownerOf(tokenId);\n require(to != owner, \"ERC721: approval to current owner\");\n\n require(\n _msgSender() == owner || isApprovedForAll(owner, _msgSender()),\n \"ERC721: approve caller is not token owner nor approved for all\"\n );\n\n _approve(to, tokenId);\n }\n\n /**\n * @dev See {IERC721-getApproved}.\n */\n function getApproved(uint256 tokenId) public view virtual override returns (address) {\n _requireMinted(tokenId);\n\n return _tokenApprovals[tokenId];\n }\n\n /**\n * @dev See {IERC721-setApprovalForAll}.\n */\n function setApprovalForAll(address operator, bool approved) public virtual override {\n _setApprovalForAll(_msgSender(), operator, approved);\n }\n\n /**\n * @dev See {IERC721-isApprovedForAll}.\n */\n function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {\n return _operatorApprovals[owner][operator];\n }\n\n /**\n * @dev See {IERC721-transferFrom}.\n */\n function transferFrom(\n address from,\n address to,\n uint256 tokenId\n ) public virtual override {\n //solhint-disable-next-line max-line-length\n require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: caller is not token owner nor approved\");\n\n _transfer(from, to, tokenId);\n }\n\n /**\n * @dev See {IERC721-safeTransferFrom}.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId\n ) public virtual override {\n safeTransferFrom(from, to, tokenId, \"\");\n }\n\n /**\n * @dev See {IERC721-safeTransferFrom}.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId,\n bytes memory data\n ) public virtual override {\n require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: caller is not token owner nor approved\");\n _safeTransfer(from, to, tokenId, data);\n }\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n * are aware of the ERC721 protocol to prevent tokens from being forever locked.\n *\n * `data` is additional data, it has no specified format and it is sent in call to `to`.\n *\n * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.\n * implement alternative mechanisms to perform token transfer, such as signature-based.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function _safeTransfer(\n address from,\n address to,\n uint256 tokenId,\n bytes memory data\n ) internal virtual {\n _transfer(from, to, tokenId);\n require(_checkOnERC721Received(from, to, tokenId, data), \"ERC721: transfer to non ERC721Receiver implementer\");\n }\n\n /**\n * @dev Returns whether `tokenId` exists.\n *\n * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.\n *\n * Tokens start existing when they are minted (`_mint`),\n * and stop existing when they are burned (`_burn`).\n */\n function _exists(uint256 tokenId) internal view virtual returns (bool) {\n return _owners[tokenId] != address(0);\n }\n\n /**\n * @dev Returns whether `spender` is allowed to manage `tokenId`.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {\n address owner = ERC721.ownerOf(tokenId);\n return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);\n }\n\n /**\n * @dev Safely mints `tokenId` and transfers it to `to`.\n *\n * Requirements:\n *\n * - `tokenId` must not exist.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function _safeMint(address to, uint256 tokenId) internal virtual {\n _safeMint(to, tokenId, \"\");\n }\n\n /**\n * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is\n * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.\n */\n function _safeMint(\n address to,\n uint256 tokenId,\n bytes memory data\n ) internal virtual {\n _mint(to, tokenId);\n require(\n _checkOnERC721Received(address(0), to, tokenId, data),\n \"ERC721: transfer to non ERC721Receiver implementer\"\n );\n }\n\n /**\n * @dev Mints `tokenId` and transfers it to `to`.\n *\n * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible\n *\n * Requirements:\n *\n * - `tokenId` must not exist.\n * - `to` cannot be the zero address.\n *\n * Emits a {Transfer} event.\n */\n function _mint(address to, uint256 tokenId) internal virtual {\n require(to != address(0), \"ERC721: mint to the zero address\");\n require(!_exists(tokenId), \"ERC721: token already minted\");\n\n _beforeTokenTransfer(address(0), to, tokenId);\n\n _balances[to] += 1;\n _owners[tokenId] = to;\n\n emit Transfer(address(0), to, tokenId);\n\n _afterTokenTransfer(address(0), to, tokenId);\n }\n\n /**\n * @dev Destroys `tokenId`.\n * The approval is cleared when the token is burned.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n *\n * Emits a {Transfer} event.\n */\n function _burn(uint256 tokenId) internal virtual {\n address owner = ERC721.ownerOf(tokenId);\n\n _beforeTokenTransfer(owner, address(0), tokenId);\n\n // Clear approvals\n _approve(address(0), tokenId);\n\n _balances[owner] -= 1;\n delete _owners[tokenId];\n\n emit Transfer(owner, address(0), tokenId);\n\n _afterTokenTransfer(owner, address(0), tokenId);\n }\n\n /**\n * @dev Transfers `tokenId` from `from` to `to`.\n * As opposed to {transferFrom}, this imposes no restrictions on msg.sender.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - `tokenId` token must be owned by `from`.\n *\n * Emits a {Transfer} event.\n */\n function _transfer(\n address from,\n address to,\n uint256 tokenId\n ) internal virtual {\n require(ERC721.ownerOf(tokenId) == from, \"ERC721: transfer from incorrect owner\");\n require(to != address(0), \"ERC721: transfer to the zero address\");\n\n _beforeTokenTransfer(from, to, tokenId);\n\n // Clear approvals from the previous owner\n _approve(address(0), tokenId);\n\n _balances[from] -= 1;\n _balances[to] += 1;\n _owners[tokenId] = to;\n\n emit Transfer(from, to, tokenId);\n\n _afterTokenTransfer(from, to, tokenId);\n }\n\n /**\n * @dev Approve `to` to operate on `tokenId`\n *\n * Emits an {Approval} event.\n */\n function _approve(address to, uint256 tokenId) internal virtual {\n _tokenApprovals[tokenId] = to;\n emit Approval(ERC721.ownerOf(tokenId), to, tokenId);\n }\n\n /**\n * @dev Approve `operator` to operate on all of `owner` tokens\n *\n * Emits an {ApprovalForAll} event.\n */\n function _setApprovalForAll(\n address owner,\n address operator,\n bool approved\n ) internal virtual {\n require(owner != operator, \"ERC721: approve to caller\");\n _operatorApprovals[owner][operator] = approved;\n emit ApprovalForAll(owner, operator, approved);\n }\n\n /**\n * @dev Reverts if the `tokenId` has not been minted yet.\n */\n function _requireMinted(uint256 tokenId) internal view virtual {\n require(_exists(tokenId), \"ERC721: invalid token ID\");\n }\n\n /**\n * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.\n * The call is not executed if the target address is not a contract.\n *\n * @param from address representing the previous owner of the given token ID\n * @param to target address that will receive the tokens\n * @param tokenId uint256 ID of the token to be transferred\n * @param data bytes optional data to send along with the call\n * @return bool whether the call correctly returned the expected magic value\n */\n function _checkOnERC721Received(\n address from,\n address to,\n uint256 tokenId,\n bytes memory data\n ) private returns (bool) {\n if (to.isContract()) {\n try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {\n return retval == IERC721Receiver.onERC721Received.selector;\n } catch (bytes memory reason) {\n if (reason.length == 0) {\n revert(\"ERC721: transfer to non ERC721Receiver implementer\");\n } else {\n /// @solidity memory-safe-assembly\n assembly {\n revert(add(32, reason), mload(reason))\n }\n }\n }\n } else {\n return true;\n }\n }\n\n /**\n * @dev Hook that is called before any token transfer. This includes minting\n * and burning.\n *\n * Calling conditions:\n *\n * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be\n * transferred to `to`.\n * - When `from` is zero, `tokenId` will be minted for `to`.\n * - When `to` is zero, ``from``'s `tokenId` will be burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _beforeTokenTransfer(\n address from,\n address to,\n uint256 tokenId\n ) internal virtual {}\n\n /**\n * @dev Hook that is called after any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _afterTokenTransfer(\n address from,\n address to,\n uint256 tokenId\n ) internal virtual {}\n}\n"
},
"@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC165.sol\";\n\n/**\n * @dev Implementation of the {IERC165} interface.\n *\n * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check\n * for the additional interface id that will be supported. For example:\n *\n * ```solidity\n * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n * }\n * ```\n *\n * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.\n */\nabstract contract ERC165 is IERC165 {\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n return interfaceId == type(IERC165).interfaceId;\n }\n}\n"
},
"@openzeppelin/contracts/utils/Strings.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev String operations.\n */\nlibrary Strings {\n bytes16 private constant _HEX_SYMBOLS = \"0123456789abcdef\";\n uint8 private constant _ADDRESS_LENGTH = 20;\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` decimal representation.\n */\n function toString(uint256 value) internal pure returns (string memory) {\n // Inspired by OraclizeAPI's implementation - MIT licence\n // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol\n\n if (value == 0) {\n return \"0\";\n }\n uint256 temp = value;\n uint256 digits;\n while (temp != 0) {\n digits++;\n temp /= 10;\n }\n bytes memory buffer = new bytes(digits);\n while (value != 0) {\n digits -= 1;\n buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));\n value /= 10;\n }\n return string(buffer);\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\n */\n function toHexString(uint256 value) internal pure returns (string memory) {\n if (value == 0) {\n return \"0x00\";\n }\n uint256 temp = value;\n uint256 length = 0;\n while (temp != 0) {\n length++;\n temp >>= 8;\n }\n return toHexString(value, length);\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\n */\n function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\n bytes memory buffer = new bytes(2 * length + 2);\n buffer[0] = \"0\";\n buffer[1] = \"x\";\n for (uint256 i = 2 * length + 1; i > 1; --i) {\n buffer[i] = _HEX_SYMBOLS[value & 0xf];\n value >>= 4;\n }\n require(value == 0, \"Strings: hex length insufficient\");\n return string(buffer);\n }\n\n /**\n * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.\n */\n function toHexString(address addr) internal pure returns (string memory) {\n return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);\n }\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/utils/Address.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCall(target, data, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n require(isContract(target), \"Address: call to non-contract\");\n\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n require(isContract(target), \"Address: static call to non-contract\");\n\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(isContract(target), \"Address: delegate call to non-contract\");\n\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n /// @solidity memory-safe-assembly\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n }\n}\n"
},
"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC721.sol\";\n\n/**\n * @title ERC-721 Non-Fungible Token Standard, optional metadata extension\n * @dev See https://eips.ethereum.org/EIPS/eip-721\n */\ninterface IERC721Metadata is IERC721 {\n /**\n * @dev Returns the token collection name.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the token collection symbol.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.\n */\n function tokenURI(uint256 tokenId) external view returns (string memory);\n}\n"
},
"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @title ERC721 token receiver interface\n * @dev Interface for any contract that wants to support safeTransfers\n * from ERC721 asset contracts.\n */\ninterface IERC721Receiver {\n /**\n * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\n * by `operator` from `from`, this function is called.\n *\n * It must return its Solidity selector to confirm the token transfer.\n * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.\n *\n * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.\n */\n function onERC721Received(\n address operator,\n address from,\n uint256 tokenId,\n bytes calldata data\n ) external returns (bytes4);\n}\n"
},
"@openzeppelin/contracts/token/ERC721/IERC721.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../../utils/introspection/IERC165.sol\";\n\n/**\n * @dev Required interface of an ERC721 compliant contract.\n */\ninterface IERC721 is IERC165 {\n /**\n * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\n */\n event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\n\n /**\n * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\n */\n event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\n\n /**\n * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\n */\n event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\n\n /**\n * @dev Returns the number of tokens in ``owner``'s account.\n */\n function balanceOf(address owner) external view returns (uint256 balance);\n\n /**\n * @dev Returns the owner of the `tokenId` token.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function ownerOf(uint256 tokenId) external view returns (address owner);\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId,\n bytes calldata data\n ) external;\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n * are aware of the ERC721 protocol to prevent tokens from being forever locked.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId\n ) external;\n\n /**\n * @dev Transfers `tokenId` token from `from` to `to`.\n *\n * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must be owned by `from`.\n * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(\n address from,\n address to,\n uint256 tokenId\n ) external;\n\n /**\n * @dev Gives permission to `to` to transfer `tokenId` token to another account.\n * The approval is cleared when the token is transferred.\n *\n * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n *\n * Requirements:\n *\n * - The caller must own the token or be an approved operator.\n * - `tokenId` must exist.\n *\n * Emits an {Approval} event.\n */\n function approve(address to, uint256 tokenId) external;\n\n /**\n * @dev Approve or remove `operator` as an operator for the caller.\n * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n *\n * Requirements:\n *\n * - The `operator` cannot be the caller.\n *\n * Emits an {ApprovalForAll} event.\n */\n function setApprovalForAll(address operator, bool _approved) external;\n\n /**\n * @dev Returns the account approved for `tokenId` token.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function getApproved(uint256 tokenId) external view returns (address operator);\n\n /**\n * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n *\n * See {setApprovalForAll}\n */\n function isApprovedForAll(address owner, address operator) external view returns (bool);\n}\n"
},
"@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC165 standard, as defined in the\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\n *\n * Implementers can declare support of contract interfaces, which can then be\n * queried by others ({ERC165Checker}).\n *\n * For an implementation, see {ERC165}.\n */\ninterface IERC165 {\n /**\n * @dev Returns true if this contract implements the interface defined by\n * `interfaceId`. See the corresponding\n * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\n * to learn more about how these ids are created.\n *\n * This function call must use less than 30 000 gas.\n */\n function supportsInterface(bytes4 interfaceId) external view returns (bool);\n}\n"
}
},
"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"
]
}
}
}
},
"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 anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing 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.7+commit.e28d00a7\"},\"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 anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing 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\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0xa94b34880e3c1b0b931662cb1c09e5dfa6662f31cba80e07c5ee71cd135c9673\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://40fb1b5102468f783961d0af743f91b9980cf66b50d1d12009f6bb1869cea4d2\",\"dweb:/ipfs/QmYqEbJML4jB1GHbzD4cUZDtJg5wVwNm3vDJq1GbyDus8y\"]},\"@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/ERC721/ERC721.sol": {
"ERC721": {
"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": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including the Metadata extension, but not including the Enumerable extension, which is available separately as {ERC721Enumerable}.",
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "See {IERC721-approve}."
},
"balanceOf(address)": {
"details": "See {IERC721-balanceOf}."
},
"constructor": {
"details": "Initializes the contract by setting a `name` and a `symbol` to the token collection."
},
"getApproved(uint256)": {
"details": "See {IERC721-getApproved}."
},
"isApprovedForAll(address,address)": {
"details": "See {IERC721-isApprovedForAll}."
},
"name()": {
"details": "See {IERC721Metadata-name}."
},
"ownerOf(uint256)": {
"details": "See {IERC721-ownerOf}."
},
"safeTransferFrom(address,address,uint256)": {
"details": "See {IERC721-safeTransferFrom}."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "See {IERC721-safeTransferFrom}."
},
"setApprovalForAll(address,bool)": {
"details": "See {IERC721-setApprovalForAll}."
},
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
},
"symbol()": {
"details": "See {IERC721Metadata-symbol}."
},
"tokenURI(uint256)": {
"details": "See {IERC721Metadata-tokenURI}."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC721-transferFrom}."
}
},
"version": 1
},
"evm": {
"assembly": " /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":628:14346 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\n mstore(0x40, 0x80)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1390:1503 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/ERC721/ERC721.sol\":1464:1469 name_ */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1456:1461 _name */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1456:1469 _name = name_ */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_6\n swap3\n swap2\n swap1\n tag_7\n jump\t// in\ntag_6:\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1489:1496 symbol_ */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1479:1486 _symbol */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1479:1496 _symbol = symbol_ */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_8\n swap3\n swap2\n swap1\n tag_7\n jump\t// in\ntag_8:\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1390:1503 constructor(string memory name_, string memory symbol_) {... */\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":628:14346 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\n jump(tag_9)\ntag_7:\n dup3\n dup1\n sload\n tag_10\n swap1\n tag_11\n jump\t// in\ntag_10:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x1f\n add\n 0x20\n swap1\n div\n dup2\n add\n swap3\n dup3\n tag_13\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_12)\ntag_13:\n dup3\n 0x1f\n lt\n tag_14\n jumpi\n dup1\n mload\n not(0xff)\n and\n dup4\n dup1\n add\n or\n dup6\n sstore\n jump(tag_12)\ntag_14:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_12\n jumpi\n swap2\n dup3\n add\ntag_15:\n dup3\n dup2\n gt\n iszero\n tag_16\n jumpi\n dup3\n mload\n dup3\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_15)\ntag_16:\ntag_12:\n pop\n swap1\n pop\n tag_17\n swap2\n swap1\n tag_18\n jump\t// in\ntag_17:\n pop\n swap1\n jump\t// out\ntag_18:\ntag_19:\n dup1\n dup3\n gt\n iszero\n tag_20\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_19)\ntag_20:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:428 */\ntag_22:\n /* \"#utility.yul\":96:101 */\n 0x00\n /* \"#utility.yul\":121:187 */\n tag_24\n /* \"#utility.yul\":137:186 */\n tag_25\n /* \"#utility.yul\":179:185 */\n dup5\n /* \"#utility.yul\":137:186 */\n tag_26\n jump\t// in\ntag_25:\n /* \"#utility.yul\":121:187 */\n tag_27\n jump\t// in\ntag_24:\n /* \"#utility.yul\":112:187 */\n swap1\n pop\n /* \"#utility.yul\":210:216 */\n dup3\n /* \"#utility.yul\":203:208 */\n dup2\n /* \"#utility.yul\":196:217 */\n mstore\n /* \"#utility.yul\":248:252 */\n 0x20\n /* \"#utility.yul\":241:246 */\n dup2\n /* \"#utility.yul\":237:253 */\n add\n /* \"#utility.yul\":286:289 */\n dup5\n /* \"#utility.yul\":277:283 */\n dup5\n /* \"#utility.yul\":272:275 */\n dup5\n /* \"#utility.yul\":268:284 */\n add\n /* \"#utility.yul\":265:290 */\n gt\n /* \"#utility.yul\":262:374 */\n iszero\n tag_28\n jumpi\n /* \"#utility.yul\":293:372 */\n tag_29\n tag_30\n jump\t// in\ntag_29:\n /* \"#utility.yul\":262:374 */\ntag_28:\n /* \"#utility.yul\":383:422 */\n tag_31\n /* \"#utility.yul\":415:421 */\n dup5\n /* \"#utility.yul\":410:413 */\n dup3\n /* \"#utility.yul\":405:408 */\n dup6\n /* \"#utility.yul\":383:422 */\n tag_32\n jump\t// in\ntag_31:\n /* \"#utility.yul\":102:428 */\n pop\n /* \"#utility.yul\":7:428 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":448:803 */\ntag_33:\n /* \"#utility.yul\":515:520 */\n 0x00\n /* \"#utility.yul\":564:567 */\n dup3\n /* \"#utility.yul\":557:561 */\n 0x1f\n /* \"#utility.yul\":549:555 */\n dup4\n /* \"#utility.yul\":545:562 */\n add\n /* \"#utility.yul\":541:568 */\n slt\n /* \"#utility.yul\":531:653 */\n tag_35\n jumpi\n /* \"#utility.yul\":572:651 */\n tag_36\n tag_37\n jump\t// in\ntag_36:\n /* \"#utility.yul\":531:653 */\ntag_35:\n /* \"#utility.yul\":682:688 */\n dup2\n /* \"#utility.yul\":676:689 */\n mload\n /* \"#utility.yul\":707:797 */\n tag_38\n /* \"#utility.yul\":793:796 */\n dup5\n /* \"#utility.yul\":785:791 */\n dup3\n /* \"#utility.yul\":778:782 */\n 0x20\n /* \"#utility.yul\":770:776 */\n dup7\n /* \"#utility.yul\":766:783 */\n add\n /* \"#utility.yul\":707:797 */\n tag_22\n jump\t// in\ntag_38:\n /* \"#utility.yul\":698:797 */\n swap2\n pop\n /* \"#utility.yul\":521:803 */\n pop\n /* \"#utility.yul\":448:803 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":809:1662 */\ntag_3:\n /* \"#utility.yul\":908:914 */\n 0x00\n /* \"#utility.yul\":916:922 */\n dup1\n /* \"#utility.yul\":965:967 */\n 0x40\n /* \"#utility.yul\":953:962 */\n dup4\n /* \"#utility.yul\":944:951 */\n dup6\n /* \"#utility.yul\":940:963 */\n sub\n /* \"#utility.yul\":936:968 */\n slt\n /* \"#utility.yul\":933:1052 */\n iszero\n tag_40\n jumpi\n /* \"#utility.yul\":971:1050 */\n tag_41\n tag_42\n jump\t// in\ntag_41:\n /* \"#utility.yul\":933:1052 */\ntag_40:\n /* \"#utility.yul\":1112:1113 */\n 0x00\n /* \"#utility.yul\":1101:1110 */\n dup4\n /* \"#utility.yul\":1097:1114 */\n add\n /* \"#utility.yul\":1091:1115 */\n mload\n /* \"#utility.yul\":1142:1160 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1134:1140 */\n dup2\n /* \"#utility.yul\":1131:1161 */\n gt\n /* \"#utility.yul\":1128:1245 */\n iszero\n tag_43\n jumpi\n /* \"#utility.yul\":1164:1243 */\n tag_44\n tag_45\n jump\t// in\ntag_44:\n /* \"#utility.yul\":1128:1245 */\ntag_43:\n /* \"#utility.yul\":1269:1343 */\n tag_46\n /* \"#utility.yul\":1335:1342 */\n dup6\n /* \"#utility.yul\":1326:1332 */\n dup3\n /* \"#utility.yul\":1315:1324 */\n dup7\n /* \"#utility.yul\":1311:1333 */\n add\n /* \"#utility.yul\":1269:1343 */\n tag_33\n jump\t// in\ntag_46:\n /* \"#utility.yul\":1259:1343 */\n swap3\n pop\n /* \"#utility.yul\":1062:1353 */\n pop\n /* \"#utility.yul\":1413:1415 */\n 0x20\n /* \"#utility.yul\":1402:1411 */\n dup4\n /* \"#utility.yul\":1398:1416 */\n add\n /* \"#utility.yul\":1392:1417 */\n mload\n /* \"#utility.yul\":1444:1462 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1436:1442 */\n dup2\n /* \"#utility.yul\":1433:1463 */\n gt\n /* \"#utility.yul\":1430:1547 */\n iszero\n tag_47\n jumpi\n /* \"#utility.yul\":1466:1545 */\n tag_48\n tag_45\n jump\t// in\ntag_48:\n /* \"#utility.yul\":1430:1547 */\ntag_47:\n /* \"#utility.yul\":1571:1645 */\n tag_49\n /* \"#utility.yul\":1637:1644 */\n dup6\n /* \"#utility.yul\":1628:1634 */\n dup3\n /* \"#utility.yul\":1617:1626 */\n dup7\n /* \"#utility.yul\":1613:1635 */\n add\n /* \"#utility.yul\":1571:1645 */\n tag_33\n jump\t// in\ntag_49:\n /* \"#utility.yul\":1561:1645 */\n swap2\n pop\n /* \"#utility.yul\":1363:1655 */\n pop\n /* \"#utility.yul\":809:1662 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1668:1797 */\ntag_27:\n /* \"#utility.yul\":1702:1708 */\n 0x00\n /* \"#utility.yul\":1729:1749 */\n tag_51\n tag_52\n jump\t// in\ntag_51:\n /* \"#utility.yul\":1719:1749 */\n swap1\n pop\n /* \"#utility.yul\":1758:1791 */\n tag_53\n /* \"#utility.yul\":1786:1790 */\n dup3\n /* \"#utility.yul\":1778:1784 */\n dup3\n /* \"#utility.yul\":1758:1791 */\n tag_54\n jump\t// in\ntag_53:\n /* \"#utility.yul\":1668:1797 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1803:1878 */\ntag_52:\n /* \"#utility.yul\":1836:1842 */\n 0x00\n /* \"#utility.yul\":1869:1871 */\n 0x40\n /* \"#utility.yul\":1863:1872 */\n mload\n /* \"#utility.yul\":1853:1872 */\n swap1\n pop\n /* \"#utility.yul\":1803:1878 */\n swap1\n jump\t// out\n /* \"#utility.yul\":1884:2192 */\ntag_26:\n /* \"#utility.yul\":1946:1950 */\n 0x00\n /* \"#utility.yul\":2036:2054 */\n 0xffffffffffffffff\n /* \"#utility.yul\":2028:2034 */\n dup3\n /* \"#utility.yul\":2025:2055 */\n gt\n /* \"#utility.yul\":2022:2078 */\n iszero\n tag_57\n jumpi\n /* \"#utility.yul\":2058:2076 */\n tag_58\n tag_59\n jump\t// in\ntag_58:\n /* \"#utility.yul\":2022:2078 */\ntag_57:\n /* \"#utility.yul\":2096:2125 */\n tag_60\n /* \"#utility.yul\":2118:2124 */\n dup3\n /* \"#utility.yul\":2096:2125 */\n tag_61\n jump\t// in\ntag_60:\n /* \"#utility.yul\":2088:2125 */\n swap1\n pop\n /* \"#utility.yul\":2180:2184 */\n 0x20\n /* \"#utility.yul\":2174:2178 */\n dup2\n /* \"#utility.yul\":2170:2185 */\n add\n /* \"#utility.yul\":2162:2185 */\n swap1\n pop\n /* \"#utility.yul\":1884:2192 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2198:2505 */\ntag_32:\n /* \"#utility.yul\":2266:2267 */\n 0x00\n /* \"#utility.yul\":2276:2389 */\ntag_63:\n /* \"#utility.yul\":2290:2296 */\n dup4\n /* \"#utility.yul\":2287:2288 */\n dup2\n /* \"#utility.yul\":2284:2297 */\n lt\n /* \"#utility.yul\":2276:2389 */\n iszero\n tag_65\n jumpi\n /* \"#utility.yul\":2375:2376 */\n dup1\n /* \"#utility.yul\":2370:2373 */\n dup3\n /* \"#utility.yul\":2366:2377 */\n add\n /* \"#utility.yul\":2360:2378 */\n mload\n /* \"#utility.yul\":2356:2357 */\n dup2\n /* \"#utility.yul\":2351:2354 */\n dup5\n /* \"#utility.yul\":2347:2358 */\n add\n /* \"#utility.yul\":2340:2379 */\n mstore\n /* \"#utility.yul\":2312:2314 */\n 0x20\n /* \"#utility.yul\":2309:2310 */\n dup2\n /* \"#utility.yul\":2305:2315 */\n add\n /* \"#utility.yul\":2300:2315 */\n swap1\n pop\n /* \"#utility.yul\":2276:2389 */\n jump(tag_63)\ntag_65:\n /* \"#utility.yul\":2407:2413 */\n dup4\n /* \"#utility.yul\":2404:2405 */\n dup2\n /* \"#utility.yul\":2401:2414 */\n gt\n /* \"#utility.yul\":2398:2499 */\n iszero\n tag_66\n jumpi\n /* \"#utility.yul\":2487:2488 */\n 0x00\n /* \"#utility.yul\":2478:2484 */\n dup5\n /* \"#utility.yul\":2473:2476 */\n dup5\n /* \"#utility.yul\":2469:2485 */\n add\n /* \"#utility.yul\":2462:2489 */\n mstore\n /* \"#utility.yul\":2398:2499 */\ntag_66:\n /* \"#utility.yul\":2247:2505 */\n pop\n /* \"#utility.yul\":2198:2505 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2511:2831 */\ntag_11:\n /* \"#utility.yul\":2555:2561 */\n 0x00\n /* \"#utility.yul\":2592:2593 */\n 0x02\n /* \"#utility.yul\":2586:2590 */\n dup3\n /* \"#utility.yul\":2582:2594 */\n div\n /* \"#utility.yul\":2572:2594 */\n swap1\n pop\n /* \"#utility.yul\":2639:2640 */\n 0x01\n /* \"#utility.yul\":2633:2637 */\n dup3\n /* \"#utility.yul\":2629:2641 */\n and\n /* \"#utility.yul\":2660:2678 */\n dup1\n /* \"#utility.yul\":2650:2731 */\n tag_68\n jumpi\n /* \"#utility.yul\":2716:2720 */\n 0x7f\n /* \"#utility.yul\":2708:2714 */\n dup3\n /* \"#utility.yul\":2704:2721 */\n and\n /* \"#utility.yul\":2694:2721 */\n swap2\n pop\n /* \"#utility.yul\":2650:2731 */\ntag_68:\n /* \"#utility.yul\":2778:2780 */\n 0x20\n /* \"#utility.yul\":2770:2776 */\n dup3\n /* \"#utility.yul\":2767:2781 */\n lt\n /* \"#utility.yul\":2747:2765 */\n dup2\n /* \"#utility.yul\":2744:2782 */\n eq\n /* \"#utility.yul\":2741:2825 */\n iszero\n tag_69\n jumpi\n /* \"#utility.yul\":2797:2815 */\n tag_70\n tag_71\n jump\t// in\ntag_70:\n /* \"#utility.yul\":2741:2825 */\ntag_69:\n /* \"#utility.yul\":2562:2831 */\n pop\n /* \"#utility.yul\":2511:2831 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2837:3118 */\ntag_54:\n /* \"#utility.yul\":2920:2947 */\n tag_73\n /* \"#utility.yul\":2942:2946 */\n dup3\n /* \"#utility.yul\":2920:2947 */\n tag_61\n jump\t// in\ntag_73:\n /* \"#utility.yul\":2912:2918 */\n dup2\n /* \"#utility.yul\":2908:2948 */\n add\n /* \"#utility.yul\":3050:3056 */\n dup2\n /* \"#utility.yul\":3038:3048 */\n dup2\n /* \"#utility.yul\":3035:3057 */\n lt\n /* \"#utility.yul\":3014:3032 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3002:3012 */\n dup3\n /* \"#utility.yul\":2999:3033 */\n gt\n /* \"#utility.yul\":2996:3058 */\n or\n /* \"#utility.yul\":2993:3081 */\n iszero\n tag_74\n jumpi\n /* \"#utility.yul\":3061:3079 */\n tag_75\n tag_59\n jump\t// in\ntag_75:\n /* \"#utility.yul\":2993:3081 */\ntag_74:\n /* \"#utility.yul\":3101:3111 */\n dup1\n /* \"#utility.yul\":3097:3099 */\n 0x40\n /* \"#utility.yul\":3090:3112 */\n mstore\n /* \"#utility.yul\":2880:3118 */\n pop\n /* \"#utility.yul\":2837:3118 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3124:3304 */\ntag_71:\n /* \"#utility.yul\":3172:3249 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3169:3170 */\n 0x00\n /* \"#utility.yul\":3162:3250 */\n mstore\n /* \"#utility.yul\":3269:3273 */\n 0x22\n /* \"#utility.yul\":3266:3267 */\n 0x04\n /* \"#utility.yul\":3259:3274 */\n mstore\n /* \"#utility.yul\":3293:3297 */\n 0x24\n /* \"#utility.yul\":3290:3291 */\n 0x00\n /* \"#utility.yul\":3283:3298 */\n revert\n /* \"#utility.yul\":3310:3490 */\ntag_59:\n /* \"#utility.yul\":3358:3435 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3355:3356 */\n 0x00\n /* \"#utility.yul\":3348:3436 */\n mstore\n /* \"#utility.yul\":3455:3459 */\n 0x41\n /* \"#utility.yul\":3452:3453 */\n 0x04\n /* \"#utility.yul\":3445:3460 */\n mstore\n /* \"#utility.yul\":3479:3483 */\n 0x24\n /* \"#utility.yul\":3476:3477 */\n 0x00\n /* \"#utility.yul\":3469:3484 */\n revert\n /* \"#utility.yul\":3496:3613 */\ntag_37:\n /* \"#utility.yul\":3605:3606 */\n 0x00\n /* \"#utility.yul\":3602:3603 */\n dup1\n /* \"#utility.yul\":3595:3607 */\n revert\n /* \"#utility.yul\":3619:3736 */\ntag_30:\n /* \"#utility.yul\":3728:3729 */\n 0x00\n /* \"#utility.yul\":3725:3726 */\n dup1\n /* \"#utility.yul\":3718:3730 */\n revert\n /* \"#utility.yul\":3742:3859 */\ntag_45:\n /* \"#utility.yul\":3851:3852 */\n 0x00\n /* \"#utility.yul\":3848:3849 */\n dup1\n /* \"#utility.yul\":3841:3853 */\n revert\n /* \"#utility.yul\":3865:3982 */\ntag_42:\n /* \"#utility.yul\":3974:3975 */\n 0x00\n /* \"#utility.yul\":3971:3972 */\n dup1\n /* \"#utility.yul\":3964:3976 */\n revert\n /* \"#utility.yul\":3988:4090 */\ntag_61:\n /* \"#utility.yul\":4029:4035 */\n 0x00\n /* \"#utility.yul\":4080:4082 */\n 0x1f\n /* \"#utility.yul\":4076:4083 */\n not\n /* \"#utility.yul\":4071:4073 */\n 0x1f\n /* \"#utility.yul\":4064:4069 */\n dup4\n /* \"#utility.yul\":4060:4074 */\n add\n /* \"#utility.yul\":4056:4084 */\n and\n /* \"#utility.yul\":4046:4084 */\n swap1\n pop\n /* \"#utility.yul\":3988:4090 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":628:14346 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\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/ERC721/ERC721.sol\":628:14346 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\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 0x6352211e\n gt\n tag_16\n jumpi\n dup1\n 0xa22cb465\n gt\n tag_17\n jumpi\n dup1\n 0xa22cb465\n eq\n tag_12\n jumpi\n dup1\n 0xb88d4fde\n eq\n tag_13\n jumpi\n dup1\n 0xc87b56dd\n eq\n tag_14\n jumpi\n dup1\n 0xe985e9c5\n eq\n tag_15\n jumpi\n jump(tag_2)\n tag_17:\n dup1\n 0x6352211e\n eq\n tag_9\n jumpi\n dup1\n 0x70a08231\n eq\n tag_10\n jumpi\n dup1\n 0x95d89b41\n eq\n tag_11\n jumpi\n jump(tag_2)\n tag_16:\n dup1\n 0x01ffc9a7\n eq\n tag_3\n jumpi\n dup1\n 0x06fdde03\n eq\n tag_4\n jumpi\n dup1\n 0x081812fc\n eq\n tag_5\n jumpi\n dup1\n 0x095ea7b3\n eq\n tag_6\n jumpi\n dup1\n 0x23b872dd\n eq\n tag_7\n jumpi\n dup1\n 0x42842e0e\n eq\n tag_8\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1570:1870 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n tag_3:\n tag_18\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_19\n swap2\n swap1\n tag_20\n jump\t// in\n tag_19:\n tag_21\n jump\t// in\n tag_18:\n mload(0x40)\n tag_22\n swap2\n swap1\n tag_23\n jump\t// in\n tag_22:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2470:2568 function name() public view virtual override returns (string memory) {... */\n tag_4:\n tag_24\n tag_25\n jump\t// in\n tag_24:\n mload(0x40)\n tag_26\n swap2\n swap1\n tag_27\n jump\t// in\n tag_26:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3935:4102 function getApproved(uint256 tokenId) public view virtual override returns (address) {... */\n tag_5:\n tag_28\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_29\n swap2\n swap1\n tag_30\n jump\t// in\n tag_29:\n tag_31\n jump\t// in\n tag_28:\n mload(0x40)\n tag_32\n swap2\n swap1\n tag_33\n jump\t// in\n tag_32:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3467:3874 function approve(address to, uint256 tokenId) public virtual override {... */\n tag_6:\n tag_34\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_35\n swap2\n swap1\n tag_36\n jump\t// in\n tag_35:\n tag_37\n jump\t// in\n tag_34:\n stop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4612:4939 function transferFrom(... */\n tag_7:\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_40\n jump\t// in\n tag_39:\n tag_41\n jump\t// in\n tag_38:\n stop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5005:5184 function safeTransferFrom(... */\n tag_8:\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_40\n jump\t// in\n tag_43:\n tag_44\n jump\t// in\n tag_42:\n stop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2190:2408 function ownerOf(uint256 tokenId) public view virtual override returns (address) {... */\n tag_9:\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_30\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_33\n jump\t// in\n tag_48:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1929:2133 function balanceOf(address owner) public view virtual override returns (uint256) {... */\n tag_10:\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_51\n jump\t// in\n tag_50:\n tag_52\n jump\t// in\n tag_49:\n mload(0x40)\n tag_53\n swap2\n swap1\n tag_54\n jump\t// in\n tag_53:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2632:2734 function symbol() public view virtual override returns (string memory) {... */\n tag_11:\n tag_55\n tag_56\n jump\t// in\n tag_55:\n mload(0x40)\n tag_57\n swap2\n swap1\n tag_27\n jump\t// in\n tag_57:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4169:4322 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n tag_12:\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 stop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5250:5565 function safeTransferFrom(... */\n tag_13:\n tag_62\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_63\n swap2\n swap1\n tag_64\n jump\t// in\n tag_63:\n tag_65\n jump\t// in\n tag_62:\n stop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2800:3076 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\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_30\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_27\n jump\t// in\n tag_69:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4388:4550 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\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_72\n jump\t// in\n tag_71:\n tag_73\n jump\t// in\n tag_70:\n mload(0x40)\n tag_74\n swap2\n swap1\n tag_23\n jump\t// in\n tag_74:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1570:1870 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n tag_21:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1672:1676 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1722:1747 type(IERC721).interfaceId */\n 0x80ac58cd00000000000000000000000000000000000000000000000000000000\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1747 interfaceId == type(IERC721).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1718 interfaceId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1747 interfaceId == type(IERC721).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1811 interfaceId == type(IERC721).interfaceId ||... */\n dup1\n tag_76\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1778:1811 type(IERC721Metadata).interfaceId */\n 0x5b5e139f00000000000000000000000000000000000000000000000000000000\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1763:1811 interfaceId == type(IERC721Metadata).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1763:1774 interfaceId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1763:1811 interfaceId == type(IERC721Metadata).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1811 interfaceId == type(IERC721).interfaceId ||... */\n tag_76:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1863 interfaceId == type(IERC721).interfaceId ||... */\n dup1\n tag_77\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1827:1863 super.supportsInterface(interfaceId) */\n tag_78\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1851:1862 interfaceId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1827:1850 super.supportsInterface */\n tag_79\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1827:1863 super.supportsInterface(interfaceId) */\n jump\t// in\n tag_78:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1863 interfaceId == type(IERC721).interfaceId ||... */\n tag_77:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1688:1863 return... */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1570:1870 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2470:2568 function name() public view virtual override returns (string memory) {... */\n tag_25:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2524:2537 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2556:2561 _name */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2549:2561 return _name */\n dup1\n sload\n tag_81\n swap1\n tag_82\n jump\t// in\n tag_81:\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_83\n swap1\n tag_82\n jump\t// in\n tag_83:\n dup1\n iszero\n tag_84\n jumpi\n dup1\n 0x1f\n lt\n tag_85\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_84)\n tag_85:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_86:\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_86\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_84:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2470:2568 function name() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3935:4102 function getApproved(uint256 tokenId) public view virtual override returns (address) {... */\n tag_31:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4011:4018 address */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4030:4053 _requireMinted(tokenId) */\n tag_88\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4045:4052 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4030:4044 _requireMinted */\n tag_89\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4030:4053 _requireMinted(tokenId) */\n jump\t// in\n tag_88:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4071:4086 _tokenApprovals */\n 0x04\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4071:4095 _tokenApprovals[tokenId] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4087:4094 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4071:4095 _tokenApprovals[tokenId] */\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 swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4064:4095 return _tokenApprovals[tokenId] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3935:4102 function getApproved(uint256 tokenId) public view virtual override returns (address) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3467:3874 function approve(address to, uint256 tokenId) public virtual override {... */\n tag_37:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3547:3560 address owner */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3563:3586 ERC721.ownerOf(tokenId) */\n tag_91\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3578:3585 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3563:3577 ERC721.ownerOf */\n tag_47\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3563:3586 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_91:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3547:3586 address owner = ERC721.ownerOf(tokenId) */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3610:3615 owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3604:3615 to != owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3604:3606 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3604:3615 to != owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3596:3653 require(to != owner, \"ERC721: approval to current owner\") */\n tag_92\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_93\n swap1\n tag_94\n jump\t// in\n tag_93:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_92:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3701:3706 owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3685:3706 _msgSender() == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3685:3697 _msgSender() */\n tag_95\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3685:3695 _msgSender */\n tag_96\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3685:3697 _msgSender() */\n jump\t// in\n tag_95:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3685:3706 _msgSender() == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3685:3747 _msgSender() == owner || isApprovedForAll(owner, _msgSender()) */\n dup1\n tag_97\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3710:3747 isApprovedForAll(owner, _msgSender()) */\n tag_98\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3727:3732 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3734:3746 _msgSender() */\n tag_99\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3734:3744 _msgSender */\n tag_96\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3734:3746 _msgSender() */\n jump\t// in\n tag_99:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3710:3726 isApprovedForAll */\n tag_73\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3710:3747 isApprovedForAll(owner, _msgSender()) */\n jump\t// in\n tag_98:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3685:3747 _msgSender() == owner || isApprovedForAll(owner, _msgSender()) */\n tag_97:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3664:3835 require(... */\n tag_100\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_101\n swap1\n tag_102\n jump\t// in\n tag_101:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_100:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3846:3867 _approve(to, tokenId) */\n tag_103\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3855:3857 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3859:3866 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3846:3854 _approve */\n tag_104\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3846:3867 _approve(to, tokenId) */\n jump\t// in\n tag_103:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3537:3874 {... */\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3467:3874 function approve(address to, uint256 tokenId) public virtual override {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4612:4939 function transferFrom(... */\n tag_41:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4801:4842 _isApprovedOrOwner(_msgSender(), tokenId) */\n tag_106\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4820:4832 _msgSender() */\n tag_107\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4820:4830 _msgSender */\n tag_96\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4820:4832 _msgSender() */\n jump\t// in\n tag_107:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4834:4841 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4801:4819 _isApprovedOrOwner */\n tag_108\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4801:4842 _isApprovedOrOwner(_msgSender(), tokenId) */\n jump\t// in\n tag_106:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4793:4893 require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: caller is not token owner nor approved\") */\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/ERC721/ERC721.sol\":4904:4932 _transfer(from, to, tokenId) */\n tag_112\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4914:4918 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4920:4922 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4924:4931 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4904:4913 _transfer */\n tag_113\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4904:4932 _transfer(from, to, tokenId) */\n jump\t// in\n tag_112:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4612:4939 function transferFrom(... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5005:5184 function safeTransferFrom(... */\n tag_44:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5138:5177 safeTransferFrom(from, to, tokenId, \"\") */\n tag_115\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5155:5159 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5161:5163 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5165:5172 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5138:5177 safeTransferFrom(from, to, tokenId, \"\") */\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5138:5154 safeTransferFrom */\n tag_65\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5138:5177 safeTransferFrom(from, to, tokenId, \"\") */\n jump\t// in\n tag_115:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5005:5184 function safeTransferFrom(... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2190:2408 function ownerOf(uint256 tokenId) public view virtual override returns (address) {... */\n tag_47:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2262:2269 address */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2281:2294 address owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2297:2304 _owners */\n 0x02\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2297:2313 _owners[tokenId] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2305:2312 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2297:2313 _owners[tokenId] */\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 swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2281:2313 address owner = _owners[tokenId] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2348:2349 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2331:2350 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2331:2336 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2331:2350 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2323:2379 require(owner != address(0), \"ERC721: invalid token ID\") */\n tag_117\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_118\n swap1\n tag_119\n jump\t// in\n tag_118:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_117:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2396:2401 owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2389:2401 return owner */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2190:2408 function ownerOf(uint256 tokenId) public view virtual override returns (address) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1929:2133 function balanceOf(address owner) public view virtual override returns (uint256) {... */\n tag_52:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2001:2008 uint256 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2045:2046 0 */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2028:2047 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2028:2033 owner */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2028:2047 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2020:2093 require(owner != address(0), \"ERC721: address zero is not a valid owner\") */\n tag_121\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_122\n swap1\n tag_123\n jump\t// in\n tag_122:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_121:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2110:2119 _balances */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2110:2126 _balances[owner] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2120:2125 owner */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2110:2126 _balances[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 sload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2103:2126 return _balances[owner] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1929:2133 function balanceOf(address owner) public view virtual override returns (uint256) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2632:2734 function symbol() public view virtual override returns (string memory) {... */\n tag_56:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2688:2701 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2720:2727 _symbol */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2713:2727 return _symbol */\n dup1\n sload\n tag_125\n swap1\n tag_82\n jump\t// in\n tag_125:\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_126\n swap1\n tag_82\n jump\t// in\n tag_126:\n dup1\n iszero\n tag_127\n jumpi\n dup1\n 0x1f\n lt\n tag_128\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_127)\n tag_128:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_129:\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_129\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_127:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2632:2734 function symbol() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4169:4322 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n tag_61:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4263:4315 _setApprovalForAll(_msgSender(), operator, approved) */\n tag_131\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4282:4294 _msgSender() */\n tag_132\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4282:4292 _msgSender */\n tag_96\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4282:4294 _msgSender() */\n jump\t// in\n tag_132:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4296:4304 operator */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4306:4314 approved */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4263:4281 _setApprovalForAll */\n tag_133\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4263:4315 _setApprovalForAll(_msgSender(), operator, approved) */\n jump\t// in\n tag_131:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4169:4322 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5250:5565 function safeTransferFrom(... */\n tag_65:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5418:5459 _isApprovedOrOwner(_msgSender(), tokenId) */\n tag_135\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5437:5449 _msgSender() */\n tag_136\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5437:5447 _msgSender */\n tag_96\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5437:5449 _msgSender() */\n jump\t// in\n tag_136:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5451:5458 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5418:5436 _isApprovedOrOwner */\n tag_108\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5418:5459 _isApprovedOrOwner(_msgSender(), tokenId) */\n jump\t// in\n tag_135:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5410:5510 require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: caller is not token owner nor approved\") */\n tag_137\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_138\n swap1\n tag_111\n jump\t// in\n tag_138:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_137:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5520:5558 _safeTransfer(from, to, tokenId, data) */\n tag_139\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5534:5538 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5540:5542 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5544:5551 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5553:5557 data */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5520:5533 _safeTransfer */\n tag_140\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5520:5558 _safeTransfer(from, to, tokenId, data) */\n jump\t// in\n tag_139:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5250:5565 function safeTransferFrom(... */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2800:3076 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n tag_68:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2873:2886 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2898:2921 _requireMinted(tokenId) */\n tag_142\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2913:2920 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2898:2912 _requireMinted */\n tag_89\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2898:2921 _requireMinted(tokenId) */\n jump\t// in\n tag_142:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2932:2953 string memory baseURI */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2956:2966 _baseURI() */\n tag_143\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2956:2964 _baseURI */\n tag_144\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2956:2966 _baseURI() */\n jump\t// in\n tag_143:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2932:2966 string memory baseURI = _baseURI() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3007:3008 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2989:2996 baseURI */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2983:3004 bytes(baseURI).length */\n mload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2983:3008 bytes(baseURI).length > 0 */\n gt\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2983:3069 bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\" */\n tag_145\n jumpi\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n jump(tag_146)\n tag_145:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3035:3042 baseURI */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3044:3062 tokenId.toString() */\n tag_147\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3044:3051 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3044:3060 tokenId.toString */\n tag_148\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3044:3062 tokenId.toString() */\n jump\t// in\n tag_147:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3018:3063 abi.encodePacked(baseURI, tokenId.toString()) */\n add(0x20, mload(0x40))\n tag_149\n swap3\n swap2\n swap1\n tag_150\n jump\t// in\n tag_149:\n mload(0x40)\n 0x20\n dup2\n dup4\n sub\n sub\n dup2\n mstore\n swap1\n 0x40\n mstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2983:3069 bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\" */\n tag_146:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2976:3069 return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\" */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2800:3076 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4388:4550 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n tag_73:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4485:4489 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4508:4526 _operatorApprovals */\n 0x05\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4508:4533 _operatorApprovals[owner] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4527:4532 owner */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4508:4533 _operatorApprovals[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/ERC721/ERC721.sol\":4508:4543 _operatorApprovals[owner][operator] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4534:4542 operator */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4508:4543 _operatorApprovals[owner][operator] */\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 swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4501:4543 return _operatorApprovals[owner][operator] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4388:4550 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":829:984 function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {... */\n tag_79:\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":914:918 bool */\n 0x00\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":952:977 type(IERC165).interfaceId */\n 0x01ffc9a700000000000000000000000000000000000000000000000000000000\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":937:977 interfaceId == type(IERC165).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":937:948 interfaceId */\n dup3\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":937:977 interfaceId == type(IERC165).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":930:977 return interfaceId == type(IERC165).interfaceId */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":829:984 function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11657:11790 function _requireMinted(uint256 tokenId) internal view virtual {... */\n tag_89:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11738:11754 _exists(tokenId) */\n tag_154\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11746:11753 tokenId */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11738:11745 _exists */\n tag_155\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11738:11754 _exists(tokenId) */\n jump\t// in\n tag_154:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11730:11783 require(_exists(tokenId), \"ERC721: invalid token ID\") */\n tag_156\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_157\n swap1\n tag_119\n jump\t// in\n tag_157:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_156:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11657:11790 function _requireMinted(uint256 tokenId) internal view virtual {... */\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/ERC721/ERC721.sol\":10959:11130 function _approve(address to, uint256 tokenId) internal virtual {... */\n tag_104:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11060:11062 to */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11033:11048 _tokenApprovals */\n 0x04\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11033:11057 _tokenApprovals[tokenId] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11049:11056 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11033:11057 _tokenApprovals[tokenId] */\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/ERC721/ERC721.sol\":11033:11062 _tokenApprovals[tokenId] = to */\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/token/ERC721/ERC721.sol\":11115:11122 tokenId */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11111:11113 to */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11077:11123 Approval(ERC721.ownerOf(tokenId), to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11086:11109 ERC721.ownerOf(tokenId) */\n tag_160\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11101:11108 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11086:11100 ERC721.ownerOf */\n tag_47\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11086:11109 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_160:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11077:11123 Approval(ERC721.ownerOf(tokenId), to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10959:11130 function _approve(address to, uint256 tokenId) internal virtual {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7317:7578 function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {... */\n tag_108:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7410:7414 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7426:7439 address owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7442:7465 ERC721.ownerOf(tokenId) */\n tag_162\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7457:7464 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7442:7456 ERC721.ownerOf */\n tag_47\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7442:7465 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_162:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7426:7465 address owner = ERC721.ownerOf(tokenId) */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7494:7499 owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7483:7499 spender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7483:7490 spender */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7483:7499 spender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7483:7535 spender == owner || isApprovedForAll(owner, spender) */\n dup1\n tag_163\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7503:7535 isApprovedForAll(owner, spender) */\n tag_164\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7520:7525 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7527:7534 spender */\n dup6\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7503:7519 isApprovedForAll */\n tag_73\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7503:7535 isApprovedForAll(owner, spender) */\n jump\t// in\n tag_164:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7483:7535 spender == owner || isApprovedForAll(owner, spender) */\n tag_163:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7483:7570 spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender */\n dup1\n tag_165\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7563:7570 spender */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7539:7570 getApproved(tokenId) == spender */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7539:7559 getApproved(tokenId) */\n tag_166\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7551:7558 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7539:7550 getApproved */\n tag_31\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7539:7559 getApproved(tokenId) */\n jump\t// in\n tag_166:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7539:7570 getApproved(tokenId) == spender */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7483:7570 spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender */\n tag_165:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7475:7571 return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender) */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7317:7578 function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10242:10847 function _transfer(... */\n tag_113:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10396:10400 from */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10369:10400 ERC721.ownerOf(tokenId) == from */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10369:10392 ERC721.ownerOf(tokenId) */\n tag_168\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10384:10391 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10369:10383 ERC721.ownerOf */\n tag_47\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10369:10392 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_168:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10369:10400 ERC721.ownerOf(tokenId) == from */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10361:10442 require(ERC721.ownerOf(tokenId) == from, \"ERC721: transfer from incorrect owner\") */\n tag_169\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_170\n swap1\n tag_171\n jump\t// in\n tag_170:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_169:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10474:10475 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10460:10476 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10460:10462 to */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10460:10476 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10452:10517 require(to != address(0), \"ERC721: transfer to 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/ERC721/ERC721.sol\":10528:10567 _beforeTokenTransfer(from, to, tokenId) */\n tag_175\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10549:10553 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10555:10557 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10559:10566 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10528:10548 _beforeTokenTransfer */\n tag_176\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10528:10567 _beforeTokenTransfer(from, to, tokenId) */\n jump\t// in\n tag_175:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10629:10658 _approve(address(0), tokenId) */\n tag_177\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10646:10647 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10650:10657 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10629:10637 _approve */\n tag_104\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10629:10658 _approve(address(0), tokenId) */\n jump\t// in\n tag_177:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10688:10689 1 */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10669:10678 _balances */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10669:10684 _balances[from] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10679:10683 from */\n dup6\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10669:10684 _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 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10669:10689 _balances[from] -= 1 */\n dup3\n dup3\n sload\n tag_178\n swap2\n swap1\n tag_179\n jump\t// in\n tag_178:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10716:10717 1 */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10699:10708 _balances */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10699:10712 _balances[to] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10709:10711 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10699:10712 _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/ERC721/ERC721.sol\":10699:10717 _balances[to] += 1 */\n dup3\n dup3\n sload\n tag_180\n swap2\n swap1\n tag_181\n jump\t// in\n tag_180:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10746:10748 to */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10727:10734 _owners */\n 0x02\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10727:10743 _owners[tokenId] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10735:10742 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10727:10743 _owners[tokenId] */\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/ERC721/ERC721.sol\":10727:10748 _owners[tokenId] = to */\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/token/ERC721/ERC721.sol\":10783:10790 tokenId */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10779:10781 to */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10764:10791 Transfer(from, to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10773:10777 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10764:10791 Transfer(from, to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10802:10840 _afterTokenTransfer(from, to, tokenId) */\n tag_182\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10822:10826 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10828:10830 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10832:10839 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10802:10821 _afterTokenTransfer */\n tag_183\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10802:10840 _afterTokenTransfer(from, to, tokenId) */\n jump\t// in\n tag_182:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10242:10847 function _transfer(... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11266:11573 function _setApprovalForAll(... */\n tag_133:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11416:11424 operator */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11407:11424 owner != operator */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11407:11412 owner */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11407:11424 owner != operator */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11399:11454 require(owner != operator, \"ERC721: approve to caller\") */\n tag_185\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_186\n swap1\n tag_187\n jump\t// in\n tag_186:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_185:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11502:11510 approved */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11464:11482 _operatorApprovals */\n 0x05\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11464:11489 _operatorApprovals[owner] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11483:11488 owner */\n dup6\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11464:11489 _operatorApprovals[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/ERC721/ERC721.sol\":11464:11499 _operatorApprovals[owner][operator] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11490:11498 operator */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11464:11499 _operatorApprovals[owner][operator] */\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/ERC721/ERC721.sol\":11464:11510 _operatorApprovals[owner][operator] = approved */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n iszero\n iszero\n mul\n or\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11547:11555 operator */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11525:11566 ApprovalForAll(owner, operator, approved) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11540:11545 owner */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11525:11566 ApprovalForAll(owner, operator, approved) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11557:11565 approved */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11525:11566 ApprovalForAll(owner, operator, approved) */\n mload(0x40)\n tag_188\n swap2\n swap1\n tag_23\n jump\t// in\n tag_188:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11266:11573 function _setApprovalForAll(... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6426:6731 function _safeTransfer(... */\n tag_140:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6576:6604 _transfer(from, to, tokenId) */\n tag_190\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6586:6590 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6592:6594 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6596:6603 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6576:6585 _transfer */\n tag_113\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6576:6604 _transfer(from, to, tokenId) */\n jump\t// in\n tag_190:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6622:6669 _checkOnERC721Received(from, to, tokenId, data) */\n tag_191\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6645:6649 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6651:6653 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6655:6662 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6664:6668 data */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6622:6644 _checkOnERC721Received */\n tag_192\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6622:6669 _checkOnERC721Received(from, to, tokenId, data) */\n jump\t// in\n tag_191:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6614:6724 require(_checkOnERC721Received(from, to, tokenId, data), \"ERC721: transfer to non ERC721Receiver implementer\") */\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/ERC721/ERC721.sol\":6426:6731 function _safeTransfer(... */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3318:3410 function _baseURI() internal view virtual returns (string memory) {... */\n tag_144:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3369:3382 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3394:3403 return \"\" */\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3318:3410 function _baseURI() internal view virtual returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Strings.sol\":392:1095 function toString(uint256 value) internal pure returns (string memory) {... */\n tag_148:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":448:461 string memory */\n 0x60\n /* \"@openzeppelin/contracts/utils/Strings.sol\":674:675 0 */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":665:670 value */\n dup3\n /* \"@openzeppelin/contracts/utils/Strings.sol\":665:675 value == 0 */\n eq\n /* \"@openzeppelin/contracts/utils/Strings.sol\":661:712 if (value == 0) {... */\n iszero\n tag_198\n jumpi\n /* \"@openzeppelin/contracts/utils/Strings.sol\":691:701 return \"0\" */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x01\n dup2\n mstore\n 0x20\n add\n 0x3000000000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n pop\n swap1\n pop\n jump(tag_197)\n /* \"@openzeppelin/contracts/utils/Strings.sol\":661:712 if (value == 0) {... */\n tag_198:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":721:733 uint256 temp */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":736:741 value */\n dup3\n /* \"@openzeppelin/contracts/utils/Strings.sol\":721:741 uint256 temp = value */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":751:765 uint256 digits */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":775:850 while (temp != 0) {... */\n tag_199:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":790:791 0 */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":782:786 temp */\n dup3\n /* \"@openzeppelin/contracts/utils/Strings.sol\":782:791 temp != 0 */\n eq\n /* \"@openzeppelin/contracts/utils/Strings.sol\":775:850 while (temp != 0) {... */\n tag_200\n jumpi\n /* \"@openzeppelin/contracts/utils/Strings.sol\":807:815 digits++ */\n dup1\n dup1\n tag_201\n swap1\n tag_202\n jump\t// in\n tag_201:\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":837:839 10 */\n 0x0a\n /* \"@openzeppelin/contracts/utils/Strings.sol\":829:839 temp /= 10 */\n dup3\n tag_203\n swap2\n swap1\n tag_204\n jump\t// in\n tag_203:\n swap2\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":775:850 while (temp != 0) {... */\n jump(tag_199)\n tag_200:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":859:878 bytes memory buffer */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":891:897 digits */\n dup2\n /* \"@openzeppelin/contracts/utils/Strings.sol\":881:898 new bytes(digits) */\n 0xffffffffffffffff\n dup2\n gt\n iszero\n tag_205\n jumpi\n tag_206\n tag_207\n jump\t// in\n tag_206:\n tag_205:\n mload(0x40)\n swap1\n dup1\n dup3\n mstore\n dup1\n 0x1f\n add\n not(0x1f)\n and\n 0x20\n add\n dup3\n add\n 0x40\n mstore\n dup1\n iszero\n tag_208\n jumpi\n dup2\n 0x20\n add\n 0x01\n dup3\n mul\n dup1\n calldatasize\n dup4\n calldatacopy\n dup1\n dup3\n add\n swap2\n pop\n pop\n swap1\n pop\n tag_208:\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":859:898 bytes memory buffer = new bytes(digits) */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":908:1058 while (value != 0) {... */\n tag_209:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":924:925 0 */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":915:920 value */\n dup6\n /* \"@openzeppelin/contracts/utils/Strings.sol\":915:925 value != 0 */\n eq\n /* \"@openzeppelin/contracts/utils/Strings.sol\":908:1058 while (value != 0) {... */\n tag_210\n jumpi\n /* \"@openzeppelin/contracts/utils/Strings.sol\":951:952 1 */\n 0x01\n /* \"@openzeppelin/contracts/utils/Strings.sol\":941:952 digits -= 1 */\n dup3\n tag_211\n swap2\n swap1\n tag_179\n jump\t// in\n tag_211:\n swap2\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1017:1019 10 */\n 0x0a\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1009:1014 value */\n dup6\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1009:1019 value % 10 */\n tag_212\n swap2\n swap1\n tag_213\n jump\t// in\n tag_212:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":996:998 48 */\n 0x30\n /* \"@openzeppelin/contracts/utils/Strings.sol\":996:1020 48 + uint256(value % 10) */\n tag_214\n swap2\n swap1\n tag_181\n jump\t// in\n tag_214:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":983:1022 bytes1(uint8(48 + uint256(value % 10))) */\n 0xf8\n shl\n /* \"@openzeppelin/contracts/utils/Strings.sol\":966:972 buffer */\n dup2\n /* \"@openzeppelin/contracts/utils/Strings.sol\":973:979 digits */\n dup4\n /* \"@openzeppelin/contracts/utils/Strings.sol\":966:980 buffer[digits] */\n dup2\n mload\n dup2\n lt\n tag_215\n jumpi\n tag_216\n tag_217\n jump\t// in\n tag_216:\n tag_215:\n 0x20\n add\n add\n /* \"@openzeppelin/contracts/utils/Strings.sol\":966:1022 buffer[digits] = bytes1(uint8(48 + uint256(value % 10))) */\n swap1\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n swap1\n dup2\n 0x00\n byte\n swap1\n mstore8\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1045:1047 10 */\n 0x0a\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1036:1047 value /= 10 */\n dup6\n tag_218\n swap2\n swap1\n tag_204\n jump\t// in\n tag_218:\n swap5\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":908:1058 while (value != 0) {... */\n jump(tag_209)\n tag_210:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1081:1087 buffer */\n dup1\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1067:1088 return string(buffer) */\n swap4\n pop\n pop\n pop\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":392:1095 function toString(uint256 value) internal pure returns (string memory) {... */\n tag_197:\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7034:7159 function _exists(uint256 tokenId) internal view virtual returns (bool) {... */\n tag_155:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7099:7103 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7150:7151 0 */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7122:7152 _owners[tokenId] != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7122:7129 _owners */\n 0x02\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7122:7138 _owners[tokenId] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7130:7137 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7122:7138 _owners[tokenId] */\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 swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7122:7152 _owners[tokenId] != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7115:7152 return _owners[tokenId] != address(0) */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7034:7159 function _exists(uint256 tokenId) internal view virtual returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13729:13851 function _beforeTokenTransfer(... */\n tag_176:\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14223:14344 function _afterTokenTransfer(... */\n tag_183:\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12342:13173 function _checkOnERC721Received(... */\n tag_192:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12491:12495 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12511:12526 to.isContract() */\n tag_223\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12511:12513 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12511:12524 to.isContract */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n tag_224\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12511:12526 to.isContract() */\n jump\t// in\n tag_223:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12507:13167 if (to.isContract()) {... */\n iszero\n tag_225\n jumpi\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12562:12564 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12546:12582 IERC721Receiver(to).onERC721Received */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x150b7a02\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12583:12595 _msgSender() */\n tag_226\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12583:12593 _msgSender */\n tag_96\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12583:12595 _msgSender() */\n jump\t// in\n tag_226:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12597:12601 from */\n dup8\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12603:12610 tokenId */\n dup7\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12612:12616 data */\n dup7\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12546:12617 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) */\n mload(0x40)\n dup6\n 0xffffffff\n and\n 0xe0\n shl\n dup2\n mstore\n 0x04\n add\n tag_227\n swap5\n swap4\n swap3\n swap2\n swap1\n tag_228\n jump\t// in\n tag_227:\n 0x20\n mload(0x40)\n dup1\n dup4\n sub\n dup2\n 0x00\n dup8\n dup1\n extcodesize\n iszero\n dup1\n iszero\n tag_229\n jumpi\n 0x00\n dup1\n revert\n tag_229:\n pop\n gas\n call\n swap3\n pop\n pop\n pop\n dup1\n iszero\n tag_230\n jumpi\n pop\n mload(0x40)\n returndatasize\n not(0x1f)\n 0x1f\n dup3\n add\n and\n dup3\n add\n dup1\n 0x40\n mstore\n pop\n dup2\n add\n swap1\n tag_231\n swap2\n swap1\n tag_232\n jump\t// in\n tag_231:\n 0x01\n tag_230:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12542:13115 try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {... */\n tag_233\n jumpi\n returndatasize\n dup1\n 0x00\n dup2\n eq\n tag_238\n jumpi\n mload(0x40)\n swap2\n pop\n and(add(returndatasize, 0x3f), not(0x1f))\n dup3\n add\n 0x40\n mstore\n returndatasize\n dup3\n mstore\n returndatasize\n 0x00\n 0x20\n dup5\n add\n returndatacopy\n jump(tag_237)\n tag_238:\n 0x60\n swap2\n pop\n tag_237:\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12801:12802 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12784:12790 reason */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12784:12797 reason.length */\n mload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12784:12802 reason.length == 0 */\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12780:13101 if (reason.length == 0) {... */\n iszero\n tag_239\n jumpi\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12826:12886 revert(\"ERC721: transfer to non ERC721Receiver implementer\") */\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_240\n swap1\n tag_195\n jump\t// in\n tag_240:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12780:13101 if (reason.length == 0) {... */\n tag_239:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13053:13059 reason */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13047:13060 mload(reason) */\n mload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13038:13044 reason */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13034:13036 32 */\n 0x20\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13030:13045 add(32, reason) */\n add\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13023:13061 revert(add(32, reason), mload(reason)) */\n revert\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12542:13115 try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {... */\n tag_233:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12677:12718 IERC721Receiver.onERC721Received.selector */\n shl(0xe0, 0x150b7a02)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12667:12718 retval == IERC721Receiver.onERC721Received.selector */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12667:12673 retval */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12667:12718 retval == IERC721Receiver.onERC721Received.selector */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12660:12718 return retval == IERC721Receiver.onERC721Received.selector */\n swap2\n pop\n pop\n jump(tag_222)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12507:13167 if (to.isContract()) {... */\n tag_225:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13152:13156 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13145:13156 return true */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12342:13173 function _checkOnERC721Received(... */\n tag_222:\n swap5\n swap4\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Address.sol\":1175:1495 function isContract(address account) internal view returns (bool) {... */\n tag_224:\n /* \"@openzeppelin/contracts/utils/Address.sol\":1235:1239 bool */\n 0x00\n /* \"@openzeppelin/contracts/utils/Address.sol\":1487:1488 0 */\n dup1\n /* \"@openzeppelin/contracts/utils/Address.sol\":1465:1472 account */\n dup3\n /* \"@openzeppelin/contracts/utils/Address.sol\":1465:1484 account.code.length */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n extcodesize\n /* \"@openzeppelin/contracts/utils/Address.sol\":1465:1488 account.code.length > 0 */\n gt\n /* \"@openzeppelin/contracts/utils/Address.sol\":1458:1488 return account.code.length > 0 */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Address.sol\":1175:1495 function isContract(address account) internal view returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7:417 */\n tag_246:\n /* \"#utility.yul\":84:89 */\n 0x00\n /* \"#utility.yul\":109:174 */\n tag_248\n /* \"#utility.yul\":125:173 */\n tag_249\n /* \"#utility.yul\":166:172 */\n dup5\n /* \"#utility.yul\":125:173 */\n tag_250\n jump\t// in\n tag_249:\n /* \"#utility.yul\":109:174 */\n tag_251\n jump\t// in\n tag_248:\n /* \"#utility.yul\":100:174 */\n swap1\n pop\n /* \"#utility.yul\":197:203 */\n dup3\n /* \"#utility.yul\":190:195 */\n dup2\n /* \"#utility.yul\":183:204 */\n mstore\n /* \"#utility.yul\":235:239 */\n 0x20\n /* \"#utility.yul\":228:233 */\n dup2\n /* \"#utility.yul\":224:240 */\n add\n /* \"#utility.yul\":273:276 */\n dup5\n /* \"#utility.yul\":264:270 */\n dup5\n /* \"#utility.yul\":259:262 */\n dup5\n /* \"#utility.yul\":255:271 */\n add\n /* \"#utility.yul\":252:277 */\n gt\n /* \"#utility.yul\":249:361 */\n iszero\n tag_252\n jumpi\n /* \"#utility.yul\":280:359 */\n tag_253\n tag_254\n jump\t// in\n tag_253:\n /* \"#utility.yul\":249:361 */\n tag_252:\n /* \"#utility.yul\":370:411 */\n tag_255\n /* \"#utility.yul\":404:410 */\n dup5\n /* \"#utility.yul\":399:402 */\n dup3\n /* \"#utility.yul\":394:397 */\n dup6\n /* \"#utility.yul\":370:411 */\n tag_256\n jump\t// in\n tag_255:\n /* \"#utility.yul\":90:417 */\n pop\n /* \"#utility.yul\":7:417 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":423:562 */\n tag_257:\n /* \"#utility.yul\":469:474 */\n 0x00\n /* \"#utility.yul\":507:513 */\n dup2\n /* \"#utility.yul\":494:514 */\n calldataload\n /* \"#utility.yul\":485:514 */\n swap1\n pop\n /* \"#utility.yul\":523:556 */\n tag_259\n /* \"#utility.yul\":550:555 */\n dup2\n /* \"#utility.yul\":523:556 */\n tag_260\n jump\t// in\n tag_259:\n /* \"#utility.yul\":423:562 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":568:701 */\n tag_261:\n /* \"#utility.yul\":611:616 */\n 0x00\n /* \"#utility.yul\":649:655 */\n dup2\n /* \"#utility.yul\":636:656 */\n calldataload\n /* \"#utility.yul\":627:656 */\n swap1\n pop\n /* \"#utility.yul\":665:695 */\n tag_263\n /* \"#utility.yul\":689:694 */\n dup2\n /* \"#utility.yul\":665:695 */\n tag_264\n jump\t// in\n tag_263:\n /* \"#utility.yul\":568:701 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":707:844 */\n tag_265:\n /* \"#utility.yul\":752:757 */\n 0x00\n /* \"#utility.yul\":790:796 */\n dup2\n /* \"#utility.yul\":777:797 */\n calldataload\n /* \"#utility.yul\":768:797 */\n swap1\n pop\n /* \"#utility.yul\":806:838 */\n tag_267\n /* \"#utility.yul\":832:837 */\n dup2\n /* \"#utility.yul\":806:838 */\n tag_268\n jump\t// in\n tag_267:\n /* \"#utility.yul\":707:844 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":850:991 */\n tag_269:\n /* \"#utility.yul\":906:911 */\n 0x00\n /* \"#utility.yul\":937:943 */\n dup2\n /* \"#utility.yul\":931:944 */\n mload\n /* \"#utility.yul\":922:944 */\n swap1\n pop\n /* \"#utility.yul\":953:985 */\n tag_271\n /* \"#utility.yul\":979:984 */\n dup2\n /* \"#utility.yul\":953:985 */\n tag_268\n jump\t// in\n tag_271:\n /* \"#utility.yul\":850:991 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1010:1348 */\n tag_272:\n /* \"#utility.yul\":1065:1070 */\n 0x00\n /* \"#utility.yul\":1114:1117 */\n dup3\n /* \"#utility.yul\":1107:1111 */\n 0x1f\n /* \"#utility.yul\":1099:1105 */\n dup4\n /* \"#utility.yul\":1095:1112 */\n add\n /* \"#utility.yul\":1091:1118 */\n slt\n /* \"#utility.yul\":1081:1203 */\n tag_274\n jumpi\n /* \"#utility.yul\":1122:1201 */\n tag_275\n tag_276\n jump\t// in\n tag_275:\n /* \"#utility.yul\":1081:1203 */\n tag_274:\n /* \"#utility.yul\":1239:1245 */\n dup2\n /* \"#utility.yul\":1226:1246 */\n calldataload\n /* \"#utility.yul\":1264:1342 */\n tag_277\n /* \"#utility.yul\":1338:1341 */\n dup5\n /* \"#utility.yul\":1330:1336 */\n dup3\n /* \"#utility.yul\":1323:1327 */\n 0x20\n /* \"#utility.yul\":1315:1321 */\n dup7\n /* \"#utility.yul\":1311:1328 */\n add\n /* \"#utility.yul\":1264:1342 */\n tag_246\n jump\t// in\n tag_277:\n /* \"#utility.yul\":1255:1342 */\n swap2\n pop\n /* \"#utility.yul\":1071:1348 */\n pop\n /* \"#utility.yul\":1010:1348 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1354:1493 */\n tag_278:\n /* \"#utility.yul\":1400:1405 */\n 0x00\n /* \"#utility.yul\":1438:1444 */\n dup2\n /* \"#utility.yul\":1425:1445 */\n calldataload\n /* \"#utility.yul\":1416:1445 */\n swap1\n pop\n /* \"#utility.yul\":1454:1487 */\n tag_280\n /* \"#utility.yul\":1481:1486 */\n dup2\n /* \"#utility.yul\":1454:1487 */\n tag_281\n jump\t// in\n tag_280:\n /* \"#utility.yul\":1354:1493 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1499:1828 */\n tag_51:\n /* \"#utility.yul\":1558:1564 */\n 0x00\n /* \"#utility.yul\":1607:1609 */\n 0x20\n /* \"#utility.yul\":1595:1604 */\n dup3\n /* \"#utility.yul\":1586:1593 */\n dup5\n /* \"#utility.yul\":1582:1605 */\n sub\n /* \"#utility.yul\":1578:1610 */\n slt\n /* \"#utility.yul\":1575:1694 */\n iszero\n tag_283\n jumpi\n /* \"#utility.yul\":1613:1692 */\n tag_284\n tag_285\n jump\t// in\n tag_284:\n /* \"#utility.yul\":1575:1694 */\n tag_283:\n /* \"#utility.yul\":1733:1734 */\n 0x00\n /* \"#utility.yul\":1758:1811 */\n tag_286\n /* \"#utility.yul\":1803:1810 */\n dup5\n /* \"#utility.yul\":1794:1800 */\n dup3\n /* \"#utility.yul\":1783:1792 */\n dup6\n /* \"#utility.yul\":1779:1801 */\n add\n /* \"#utility.yul\":1758:1811 */\n tag_257\n jump\t// in\n tag_286:\n /* \"#utility.yul\":1748:1811 */\n swap2\n pop\n /* \"#utility.yul\":1704:1821 */\n pop\n /* \"#utility.yul\":1499:1828 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1834:2308 */\n tag_72:\n /* \"#utility.yul\":1902:1908 */\n 0x00\n /* \"#utility.yul\":1910:1916 */\n dup1\n /* \"#utility.yul\":1959:1961 */\n 0x40\n /* \"#utility.yul\":1947:1956 */\n dup4\n /* \"#utility.yul\":1938:1945 */\n dup6\n /* \"#utility.yul\":1934:1957 */\n sub\n /* \"#utility.yul\":1930:1962 */\n slt\n /* \"#utility.yul\":1927:2046 */\n iszero\n tag_288\n jumpi\n /* \"#utility.yul\":1965:2044 */\n tag_289\n tag_285\n jump\t// in\n tag_289:\n /* \"#utility.yul\":1927:2046 */\n tag_288:\n /* \"#utility.yul\":2085:2086 */\n 0x00\n /* \"#utility.yul\":2110:2163 */\n tag_290\n /* \"#utility.yul\":2155:2162 */\n dup6\n /* \"#utility.yul\":2146:2152 */\n dup3\n /* \"#utility.yul\":2135:2144 */\n dup7\n /* \"#utility.yul\":2131:2153 */\n add\n /* \"#utility.yul\":2110:2163 */\n tag_257\n jump\t// in\n tag_290:\n /* \"#utility.yul\":2100:2163 */\n swap3\n pop\n /* \"#utility.yul\":2056:2173 */\n pop\n /* \"#utility.yul\":2212:2214 */\n 0x20\n /* \"#utility.yul\":2238:2291 */\n tag_291\n /* \"#utility.yul\":2283:2290 */\n dup6\n /* \"#utility.yul\":2274:2280 */\n dup3\n /* \"#utility.yul\":2263:2272 */\n dup7\n /* \"#utility.yul\":2259:2281 */\n add\n /* \"#utility.yul\":2238:2291 */\n tag_257\n jump\t// in\n tag_291:\n /* \"#utility.yul\":2228:2291 */\n swap2\n pop\n /* \"#utility.yul\":2183:2301 */\n pop\n /* \"#utility.yul\":1834:2308 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2314:2933 */\n tag_40:\n /* \"#utility.yul\":2391:2397 */\n 0x00\n /* \"#utility.yul\":2399:2405 */\n dup1\n /* \"#utility.yul\":2407:2413 */\n 0x00\n /* \"#utility.yul\":2456:2458 */\n 0x60\n /* \"#utility.yul\":2444:2453 */\n dup5\n /* \"#utility.yul\":2435:2442 */\n dup7\n /* \"#utility.yul\":2431:2454 */\n sub\n /* \"#utility.yul\":2427:2459 */\n slt\n /* \"#utility.yul\":2424:2543 */\n iszero\n tag_293\n jumpi\n /* \"#utility.yul\":2462:2541 */\n tag_294\n tag_285\n jump\t// in\n tag_294:\n /* \"#utility.yul\":2424:2543 */\n tag_293:\n /* \"#utility.yul\":2582:2583 */\n 0x00\n /* \"#utility.yul\":2607:2660 */\n tag_295\n /* \"#utility.yul\":2652:2659 */\n dup7\n /* \"#utility.yul\":2643:2649 */\n dup3\n /* \"#utility.yul\":2632:2641 */\n dup8\n /* \"#utility.yul\":2628:2650 */\n add\n /* \"#utility.yul\":2607:2660 */\n tag_257\n jump\t// in\n tag_295:\n /* \"#utility.yul\":2597:2660 */\n swap4\n pop\n /* \"#utility.yul\":2553:2670 */\n pop\n /* \"#utility.yul\":2709:2711 */\n 0x20\n /* \"#utility.yul\":2735:2788 */\n tag_296\n /* \"#utility.yul\":2780:2787 */\n dup7\n /* \"#utility.yul\":2771:2777 */\n dup3\n /* \"#utility.yul\":2760:2769 */\n dup8\n /* \"#utility.yul\":2756:2778 */\n add\n /* \"#utility.yul\":2735:2788 */\n tag_257\n jump\t// in\n tag_296:\n /* \"#utility.yul\":2725:2788 */\n swap3\n pop\n /* \"#utility.yul\":2680:2798 */\n pop\n /* \"#utility.yul\":2837:2839 */\n 0x40\n /* \"#utility.yul\":2863:2916 */\n tag_297\n /* \"#utility.yul\":2908:2915 */\n dup7\n /* \"#utility.yul\":2899:2905 */\n dup3\n /* \"#utility.yul\":2888:2897 */\n dup8\n /* \"#utility.yul\":2884:2906 */\n add\n /* \"#utility.yul\":2863:2916 */\n tag_278\n jump\t// in\n tag_297:\n /* \"#utility.yul\":2853:2916 */\n swap2\n pop\n /* \"#utility.yul\":2808:2926 */\n pop\n /* \"#utility.yul\":2314:2933 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":2939:3882 */\n tag_64:\n /* \"#utility.yul\":3034:3040 */\n 0x00\n /* \"#utility.yul\":3042:3048 */\n dup1\n /* \"#utility.yul\":3050:3056 */\n 0x00\n /* \"#utility.yul\":3058:3064 */\n dup1\n /* \"#utility.yul\":3107:3110 */\n 0x80\n /* \"#utility.yul\":3095:3104 */\n dup6\n /* \"#utility.yul\":3086:3093 */\n dup8\n /* \"#utility.yul\":3082:3105 */\n sub\n /* \"#utility.yul\":3078:3111 */\n slt\n /* \"#utility.yul\":3075:3195 */\n iszero\n tag_299\n jumpi\n /* \"#utility.yul\":3114:3193 */\n tag_300\n tag_285\n jump\t// in\n tag_300:\n /* \"#utility.yul\":3075:3195 */\n tag_299:\n /* \"#utility.yul\":3234:3235 */\n 0x00\n /* \"#utility.yul\":3259:3312 */\n tag_301\n /* \"#utility.yul\":3304:3311 */\n dup8\n /* \"#utility.yul\":3295:3301 */\n dup3\n /* \"#utility.yul\":3284:3293 */\n dup9\n /* \"#utility.yul\":3280:3302 */\n add\n /* \"#utility.yul\":3259:3312 */\n tag_257\n jump\t// in\n tag_301:\n /* \"#utility.yul\":3249:3312 */\n swap5\n pop\n /* \"#utility.yul\":3205:3322 */\n pop\n /* \"#utility.yul\":3361:3363 */\n 0x20\n /* \"#utility.yul\":3387:3440 */\n tag_302\n /* \"#utility.yul\":3432:3439 */\n dup8\n /* \"#utility.yul\":3423:3429 */\n dup3\n /* \"#utility.yul\":3412:3421 */\n dup9\n /* \"#utility.yul\":3408:3430 */\n add\n /* \"#utility.yul\":3387:3440 */\n tag_257\n jump\t// in\n tag_302:\n /* \"#utility.yul\":3377:3440 */\n swap4\n pop\n /* \"#utility.yul\":3332:3450 */\n pop\n /* \"#utility.yul\":3489:3491 */\n 0x40\n /* \"#utility.yul\":3515:3568 */\n tag_303\n /* \"#utility.yul\":3560:3567 */\n dup8\n /* \"#utility.yul\":3551:3557 */\n dup3\n /* \"#utility.yul\":3540:3549 */\n dup9\n /* \"#utility.yul\":3536:3558 */\n add\n /* \"#utility.yul\":3515:3568 */\n tag_278\n jump\t// in\n tag_303:\n /* \"#utility.yul\":3505:3568 */\n swap3\n pop\n /* \"#utility.yul\":3460:3578 */\n pop\n /* \"#utility.yul\":3645:3647 */\n 0x60\n /* \"#utility.yul\":3634:3643 */\n dup6\n /* \"#utility.yul\":3630:3648 */\n add\n /* \"#utility.yul\":3617:3649 */\n calldataload\n /* \"#utility.yul\":3676:3694 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3668:3674 */\n dup2\n /* \"#utility.yul\":3665:3695 */\n gt\n /* \"#utility.yul\":3662:3779 */\n iszero\n tag_304\n jumpi\n /* \"#utility.yul\":3698:3777 */\n tag_305\n tag_306\n jump\t// in\n tag_305:\n /* \"#utility.yul\":3662:3779 */\n tag_304:\n /* \"#utility.yul\":3803:3865 */\n tag_307\n /* \"#utility.yul\":3857:3864 */\n dup8\n /* \"#utility.yul\":3848:3854 */\n dup3\n /* \"#utility.yul\":3837:3846 */\n dup9\n /* \"#utility.yul\":3833:3855 */\n add\n /* \"#utility.yul\":3803:3865 */\n tag_272\n jump\t// in\n tag_307:\n /* \"#utility.yul\":3793:3865 */\n swap2\n pop\n /* \"#utility.yul\":3588:3875 */\n pop\n /* \"#utility.yul\":2939:3882 */\n swap3\n swap6\n swap2\n swap5\n pop\n swap3\n pop\n jump\t// out\n /* \"#utility.yul\":3888:4356 */\n tag_60:\n /* \"#utility.yul\":3953:3959 */\n 0x00\n /* \"#utility.yul\":3961:3967 */\n dup1\n /* \"#utility.yul\":4010:4012 */\n 0x40\n /* \"#utility.yul\":3998:4007 */\n dup4\n /* \"#utility.yul\":3989:3996 */\n dup6\n /* \"#utility.yul\":3985:4008 */\n sub\n /* \"#utility.yul\":3981:4013 */\n slt\n /* \"#utility.yul\":3978:4097 */\n iszero\n tag_309\n jumpi\n /* \"#utility.yul\":4016:4095 */\n tag_310\n tag_285\n jump\t// in\n tag_310:\n /* \"#utility.yul\":3978:4097 */\n tag_309:\n /* \"#utility.yul\":4136:4137 */\n 0x00\n /* \"#utility.yul\":4161:4214 */\n tag_311\n /* \"#utility.yul\":4206:4213 */\n dup6\n /* \"#utility.yul\":4197:4203 */\n dup3\n /* \"#utility.yul\":4186:4195 */\n dup7\n /* \"#utility.yul\":4182:4204 */\n add\n /* \"#utility.yul\":4161:4214 */\n tag_257\n jump\t// in\n tag_311:\n /* \"#utility.yul\":4151:4214 */\n swap3\n pop\n /* \"#utility.yul\":4107:4224 */\n pop\n /* \"#utility.yul\":4263:4265 */\n 0x20\n /* \"#utility.yul\":4289:4339 */\n tag_312\n /* \"#utility.yul\":4331:4338 */\n dup6\n /* \"#utility.yul\":4322:4328 */\n dup3\n /* \"#utility.yul\":4311:4320 */\n dup7\n /* \"#utility.yul\":4307:4329 */\n add\n /* \"#utility.yul\":4289:4339 */\n tag_261\n jump\t// in\n tag_312:\n /* \"#utility.yul\":4279:4339 */\n swap2\n pop\n /* \"#utility.yul\":4234:4349 */\n pop\n /* \"#utility.yul\":3888:4356 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4362:4836 */\n tag_36:\n /* \"#utility.yul\":4430:4436 */\n 0x00\n /* \"#utility.yul\":4438:4444 */\n dup1\n /* \"#utility.yul\":4487:4489 */\n 0x40\n /* \"#utility.yul\":4475:4484 */\n dup4\n /* \"#utility.yul\":4466:4473 */\n dup6\n /* \"#utility.yul\":4462:4485 */\n sub\n /* \"#utility.yul\":4458:4490 */\n slt\n /* \"#utility.yul\":4455:4574 */\n iszero\n tag_314\n jumpi\n /* \"#utility.yul\":4493:4572 */\n tag_315\n tag_285\n jump\t// in\n tag_315:\n /* \"#utility.yul\":4455:4574 */\n tag_314:\n /* \"#utility.yul\":4613:4614 */\n 0x00\n /* \"#utility.yul\":4638:4691 */\n tag_316\n /* \"#utility.yul\":4683:4690 */\n dup6\n /* \"#utility.yul\":4674:4680 */\n dup3\n /* \"#utility.yul\":4663:4672 */\n dup7\n /* \"#utility.yul\":4659:4681 */\n add\n /* \"#utility.yul\":4638:4691 */\n tag_257\n jump\t// in\n tag_316:\n /* \"#utility.yul\":4628:4691 */\n swap3\n pop\n /* \"#utility.yul\":4584:4701 */\n pop\n /* \"#utility.yul\":4740:4742 */\n 0x20\n /* \"#utility.yul\":4766:4819 */\n tag_317\n /* \"#utility.yul\":4811:4818 */\n dup6\n /* \"#utility.yul\":4802:4808 */\n dup3\n /* \"#utility.yul\":4791:4800 */\n dup7\n /* \"#utility.yul\":4787:4809 */\n add\n /* \"#utility.yul\":4766:4819 */\n tag_278\n jump\t// in\n tag_317:\n /* \"#utility.yul\":4756:4819 */\n swap2\n pop\n /* \"#utility.yul\":4711:4829 */\n pop\n /* \"#utility.yul\":4362:4836 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4842:5169 */\n tag_20:\n /* \"#utility.yul\":4900:4906 */\n 0x00\n /* \"#utility.yul\":4949:4951 */\n 0x20\n /* \"#utility.yul\":4937:4946 */\n dup3\n /* \"#utility.yul\":4928:4935 */\n dup5\n /* \"#utility.yul\":4924:4947 */\n sub\n /* \"#utility.yul\":4920:4952 */\n slt\n /* \"#utility.yul\":4917:5036 */\n iszero\n tag_319\n jumpi\n /* \"#utility.yul\":4955:5034 */\n tag_320\n tag_285\n jump\t// in\n tag_320:\n /* \"#utility.yul\":4917:5036 */\n tag_319:\n /* \"#utility.yul\":5075:5076 */\n 0x00\n /* \"#utility.yul\":5100:5152 */\n tag_321\n /* \"#utility.yul\":5144:5151 */\n dup5\n /* \"#utility.yul\":5135:5141 */\n dup3\n /* \"#utility.yul\":5124:5133 */\n dup6\n /* \"#utility.yul\":5120:5142 */\n add\n /* \"#utility.yul\":5100:5152 */\n tag_265\n jump\t// in\n tag_321:\n /* \"#utility.yul\":5090:5152 */\n swap2\n pop\n /* \"#utility.yul\":5046:5162 */\n pop\n /* \"#utility.yul\":4842:5169 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5175:5524 */\n tag_232:\n /* \"#utility.yul\":5244:5250 */\n 0x00\n /* \"#utility.yul\":5293:5295 */\n 0x20\n /* \"#utility.yul\":5281:5290 */\n dup3\n /* \"#utility.yul\":5272:5279 */\n dup5\n /* \"#utility.yul\":5268:5291 */\n sub\n /* \"#utility.yul\":5264:5296 */\n slt\n /* \"#utility.yul\":5261:5380 */\n iszero\n tag_323\n jumpi\n /* \"#utility.yul\":5299:5378 */\n tag_324\n tag_285\n jump\t// in\n tag_324:\n /* \"#utility.yul\":5261:5380 */\n tag_323:\n /* \"#utility.yul\":5419:5420 */\n 0x00\n /* \"#utility.yul\":5444:5507 */\n tag_325\n /* \"#utility.yul\":5499:5506 */\n dup5\n /* \"#utility.yul\":5490:5496 */\n dup3\n /* \"#utility.yul\":5479:5488 */\n dup6\n /* \"#utility.yul\":5475:5497 */\n add\n /* \"#utility.yul\":5444:5507 */\n tag_269\n jump\t// in\n tag_325:\n /* \"#utility.yul\":5434:5507 */\n swap2\n pop\n /* \"#utility.yul\":5390:5517 */\n pop\n /* \"#utility.yul\":5175:5524 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5530:5859 */\n tag_30:\n /* \"#utility.yul\":5589:5595 */\n 0x00\n /* \"#utility.yul\":5638:5640 */\n 0x20\n /* \"#utility.yul\":5626:5635 */\n dup3\n /* \"#utility.yul\":5617:5624 */\n dup5\n /* \"#utility.yul\":5613:5636 */\n sub\n /* \"#utility.yul\":5609:5641 */\n slt\n /* \"#utility.yul\":5606:5725 */\n iszero\n tag_327\n jumpi\n /* \"#utility.yul\":5644:5723 */\n tag_328\n tag_285\n jump\t// in\n tag_328:\n /* \"#utility.yul\":5606:5725 */\n tag_327:\n /* \"#utility.yul\":5764:5765 */\n 0x00\n /* \"#utility.yul\":5789:5842 */\n tag_329\n /* \"#utility.yul\":5834:5841 */\n dup5\n /* \"#utility.yul\":5825:5831 */\n dup3\n /* \"#utility.yul\":5814:5823 */\n dup6\n /* \"#utility.yul\":5810:5832 */\n add\n /* \"#utility.yul\":5789:5842 */\n tag_278\n jump\t// in\n tag_329:\n /* \"#utility.yul\":5779:5842 */\n swap2\n pop\n /* \"#utility.yul\":5735:5852 */\n pop\n /* \"#utility.yul\":5530:5859 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5865:5983 */\n tag_330:\n /* \"#utility.yul\":5952:5976 */\n tag_332\n /* \"#utility.yul\":5970:5975 */\n dup2\n /* \"#utility.yul\":5952:5976 */\n tag_333\n jump\t// in\n tag_332:\n /* \"#utility.yul\":5947:5950 */\n dup3\n /* \"#utility.yul\":5940:5977 */\n mstore\n /* \"#utility.yul\":5865:5983 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5989:6098 */\n tag_334:\n /* \"#utility.yul\":6070:6091 */\n tag_336\n /* \"#utility.yul\":6085:6090 */\n dup2\n /* \"#utility.yul\":6070:6091 */\n tag_337\n jump\t// in\n tag_336:\n /* \"#utility.yul\":6065:6068 */\n dup3\n /* \"#utility.yul\":6058:6092 */\n mstore\n /* \"#utility.yul\":5989:6098 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6104:6464 */\n tag_338:\n /* \"#utility.yul\":6190:6193 */\n 0x00\n /* \"#utility.yul\":6218:6256 */\n tag_340\n /* \"#utility.yul\":6250:6255 */\n dup3\n /* \"#utility.yul\":6218:6256 */\n tag_341\n jump\t// in\n tag_340:\n /* \"#utility.yul\":6272:6342 */\n tag_342\n /* \"#utility.yul\":6335:6341 */\n dup2\n /* \"#utility.yul\":6330:6333 */\n dup6\n /* \"#utility.yul\":6272:6342 */\n tag_343\n jump\t// in\n tag_342:\n /* \"#utility.yul\":6265:6342 */\n swap4\n pop\n /* \"#utility.yul\":6351:6403 */\n tag_344\n /* \"#utility.yul\":6396:6402 */\n dup2\n /* \"#utility.yul\":6391:6394 */\n dup6\n /* \"#utility.yul\":6384:6388 */\n 0x20\n /* \"#utility.yul\":6377:6382 */\n dup7\n /* \"#utility.yul\":6373:6389 */\n add\n /* \"#utility.yul\":6351:6403 */\n tag_345\n jump\t// in\n tag_344:\n /* \"#utility.yul\":6428:6457 */\n tag_346\n /* \"#utility.yul\":6450:6456 */\n dup2\n /* \"#utility.yul\":6428:6457 */\n tag_347\n jump\t// in\n tag_346:\n /* \"#utility.yul\":6423:6426 */\n dup5\n /* \"#utility.yul\":6419:6458 */\n add\n /* \"#utility.yul\":6412:6458 */\n swap2\n pop\n /* \"#utility.yul\":6194:6464 */\n pop\n /* \"#utility.yul\":6104:6464 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6470:6834 */\n tag_348:\n /* \"#utility.yul\":6558:6561 */\n 0x00\n /* \"#utility.yul\":6586:6625 */\n tag_350\n /* \"#utility.yul\":6619:6624 */\n dup3\n /* \"#utility.yul\":6586:6625 */\n tag_351\n jump\t// in\n tag_350:\n /* \"#utility.yul\":6641:6712 */\n tag_352\n /* \"#utility.yul\":6705:6711 */\n dup2\n /* \"#utility.yul\":6700:6703 */\n dup6\n /* \"#utility.yul\":6641:6712 */\n tag_353\n jump\t// in\n tag_352:\n /* \"#utility.yul\":6634:6712 */\n swap4\n pop\n /* \"#utility.yul\":6721:6773 */\n tag_354\n /* \"#utility.yul\":6766:6772 */\n dup2\n /* \"#utility.yul\":6761:6764 */\n dup6\n /* \"#utility.yul\":6754:6758 */\n 0x20\n /* \"#utility.yul\":6747:6752 */\n dup7\n /* \"#utility.yul\":6743:6759 */\n add\n /* \"#utility.yul\":6721:6773 */\n tag_345\n jump\t// in\n tag_354:\n /* \"#utility.yul\":6798:6827 */\n tag_355\n /* \"#utility.yul\":6820:6826 */\n dup2\n /* \"#utility.yul\":6798:6827 */\n tag_347\n jump\t// in\n tag_355:\n /* \"#utility.yul\":6793:6796 */\n dup5\n /* \"#utility.yul\":6789:6828 */\n add\n /* \"#utility.yul\":6782:6828 */\n swap2\n pop\n /* \"#utility.yul\":6562:6834 */\n pop\n /* \"#utility.yul\":6470:6834 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6840:7217 */\n tag_356:\n /* \"#utility.yul\":6946:6949 */\n 0x00\n /* \"#utility.yul\":6974:7013 */\n tag_358\n /* \"#utility.yul\":7007:7012 */\n dup3\n /* \"#utility.yul\":6974:7013 */\n tag_351\n jump\t// in\n tag_358:\n /* \"#utility.yul\":7029:7118 */\n tag_359\n /* \"#utility.yul\":7111:7117 */\n dup2\n /* \"#utility.yul\":7106:7109 */\n dup6\n /* \"#utility.yul\":7029:7118 */\n tag_360\n jump\t// in\n tag_359:\n /* \"#utility.yul\":7022:7118 */\n swap4\n pop\n /* \"#utility.yul\":7127:7179 */\n tag_361\n /* \"#utility.yul\":7172:7178 */\n dup2\n /* \"#utility.yul\":7167:7170 */\n dup6\n /* \"#utility.yul\":7160:7164 */\n 0x20\n /* \"#utility.yul\":7153:7158 */\n dup7\n /* \"#utility.yul\":7149:7165 */\n add\n /* \"#utility.yul\":7127:7179 */\n tag_345\n jump\t// in\n tag_361:\n /* \"#utility.yul\":7204:7210 */\n dup1\n /* \"#utility.yul\":7199:7202 */\n dup5\n /* \"#utility.yul\":7195:7211 */\n add\n /* \"#utility.yul\":7188:7211 */\n swap2\n pop\n /* \"#utility.yul\":6950:7217 */\n pop\n /* \"#utility.yul\":6840:7217 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7223:7589 */\n tag_362:\n /* \"#utility.yul\":7365:7368 */\n 0x00\n /* \"#utility.yul\":7386:7453 */\n tag_364\n /* \"#utility.yul\":7450:7452 */\n 0x32\n /* \"#utility.yul\":7445:7448 */\n dup4\n /* \"#utility.yul\":7386:7453 */\n tag_353\n jump\t// in\n tag_364:\n /* \"#utility.yul\":7379:7453 */\n swap2\n pop\n /* \"#utility.yul\":7462:7555 */\n tag_365\n /* \"#utility.yul\":7551:7554 */\n dup3\n /* \"#utility.yul\":7462:7555 */\n tag_366\n jump\t// in\n tag_365:\n /* \"#utility.yul\":7580:7582 */\n 0x40\n /* \"#utility.yul\":7575:7578 */\n dup3\n /* \"#utility.yul\":7571:7583 */\n add\n /* \"#utility.yul\":7564:7583 */\n swap1\n pop\n /* \"#utility.yul\":7223:7589 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7595:7961 */\n tag_367:\n /* \"#utility.yul\":7737:7740 */\n 0x00\n /* \"#utility.yul\":7758:7825 */\n tag_369\n /* \"#utility.yul\":7822:7824 */\n 0x25\n /* \"#utility.yul\":7817:7820 */\n dup4\n /* \"#utility.yul\":7758:7825 */\n tag_353\n jump\t// in\n tag_369:\n /* \"#utility.yul\":7751:7825 */\n swap2\n pop\n /* \"#utility.yul\":7834:7927 */\n tag_370\n /* \"#utility.yul\":7923:7926 */\n dup3\n /* \"#utility.yul\":7834:7927 */\n tag_371\n jump\t// in\n tag_370:\n /* \"#utility.yul\":7952:7954 */\n 0x40\n /* \"#utility.yul\":7947:7950 */\n dup3\n /* \"#utility.yul\":7943:7955 */\n add\n /* \"#utility.yul\":7936:7955 */\n swap1\n pop\n /* \"#utility.yul\":7595:7961 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7967:8333 */\n tag_372:\n /* \"#utility.yul\":8109:8112 */\n 0x00\n /* \"#utility.yul\":8130:8197 */\n tag_374\n /* \"#utility.yul\":8194:8196 */\n 0x24\n /* \"#utility.yul\":8189:8192 */\n dup4\n /* \"#utility.yul\":8130:8197 */\n tag_353\n jump\t// in\n tag_374:\n /* \"#utility.yul\":8123:8197 */\n swap2\n pop\n /* \"#utility.yul\":8206:8299 */\n tag_375\n /* \"#utility.yul\":8295:8298 */\n dup3\n /* \"#utility.yul\":8206:8299 */\n tag_376\n jump\t// in\n tag_375:\n /* \"#utility.yul\":8324:8326 */\n 0x40\n /* \"#utility.yul\":8319:8322 */\n dup3\n /* \"#utility.yul\":8315:8327 */\n add\n /* \"#utility.yul\":8308:8327 */\n swap1\n pop\n /* \"#utility.yul\":7967:8333 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8339:8705 */\n tag_377:\n /* \"#utility.yul\":8481:8484 */\n 0x00\n /* \"#utility.yul\":8502:8569 */\n tag_379\n /* \"#utility.yul\":8566:8568 */\n 0x19\n /* \"#utility.yul\":8561:8564 */\n dup4\n /* \"#utility.yul\":8502:8569 */\n tag_353\n jump\t// in\n tag_379:\n /* \"#utility.yul\":8495:8569 */\n swap2\n pop\n /* \"#utility.yul\":8578:8671 */\n tag_380\n /* \"#utility.yul\":8667:8670 */\n dup3\n /* \"#utility.yul\":8578:8671 */\n tag_381\n jump\t// in\n tag_380:\n /* \"#utility.yul\":8696:8698 */\n 0x20\n /* \"#utility.yul\":8691:8694 */\n dup3\n /* \"#utility.yul\":8687:8699 */\n add\n /* \"#utility.yul\":8680:8699 */\n swap1\n pop\n /* \"#utility.yul\":8339:8705 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8711:9077 */\n tag_382:\n /* \"#utility.yul\":8853:8856 */\n 0x00\n /* \"#utility.yul\":8874:8941 */\n tag_384\n /* \"#utility.yul\":8938:8940 */\n 0x29\n /* \"#utility.yul\":8933:8936 */\n dup4\n /* \"#utility.yul\":8874:8941 */\n tag_353\n jump\t// in\n tag_384:\n /* \"#utility.yul\":8867:8941 */\n swap2\n pop\n /* \"#utility.yul\":8950:9043 */\n tag_385\n /* \"#utility.yul\":9039:9042 */\n dup3\n /* \"#utility.yul\":8950:9043 */\n tag_386\n jump\t// in\n tag_385:\n /* \"#utility.yul\":9068:9070 */\n 0x40\n /* \"#utility.yul\":9063:9066 */\n dup3\n /* \"#utility.yul\":9059:9071 */\n add\n /* \"#utility.yul\":9052:9071 */\n swap1\n pop\n /* \"#utility.yul\":8711:9077 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9083:9449 */\n tag_387:\n /* \"#utility.yul\":9225:9228 */\n 0x00\n /* \"#utility.yul\":9246:9313 */\n tag_389\n /* \"#utility.yul\":9310:9312 */\n 0x3e\n /* \"#utility.yul\":9305:9308 */\n dup4\n /* \"#utility.yul\":9246:9313 */\n tag_353\n jump\t// in\n tag_389:\n /* \"#utility.yul\":9239:9313 */\n swap2\n pop\n /* \"#utility.yul\":9322:9415 */\n tag_390\n /* \"#utility.yul\":9411:9414 */\n dup3\n /* \"#utility.yul\":9322:9415 */\n tag_391\n jump\t// in\n tag_390:\n /* \"#utility.yul\":9440:9442 */\n 0x40\n /* \"#utility.yul\":9435:9438 */\n dup3\n /* \"#utility.yul\":9431:9443 */\n add\n /* \"#utility.yul\":9424:9443 */\n swap1\n pop\n /* \"#utility.yul\":9083:9449 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9455:9821 */\n tag_392:\n /* \"#utility.yul\":9597:9600 */\n 0x00\n /* \"#utility.yul\":9618:9685 */\n tag_394\n /* \"#utility.yul\":9682:9684 */\n 0x18\n /* \"#utility.yul\":9677:9680 */\n dup4\n /* \"#utility.yul\":9618:9685 */\n tag_353\n jump\t// in\n tag_394:\n /* \"#utility.yul\":9611:9685 */\n swap2\n pop\n /* \"#utility.yul\":9694:9787 */\n tag_395\n /* \"#utility.yul\":9783:9786 */\n dup3\n /* \"#utility.yul\":9694:9787 */\n tag_396\n jump\t// in\n tag_395:\n /* \"#utility.yul\":9812:9814 */\n 0x20\n /* \"#utility.yul\":9807:9810 */\n dup3\n /* \"#utility.yul\":9803:9815 */\n add\n /* \"#utility.yul\":9796:9815 */\n swap1\n pop\n /* \"#utility.yul\":9455:9821 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9827:10193 */\n tag_397:\n /* \"#utility.yul\":9969:9972 */\n 0x00\n /* \"#utility.yul\":9990:10057 */\n tag_399\n /* \"#utility.yul\":10054:10056 */\n 0x21\n /* \"#utility.yul\":10049:10052 */\n dup4\n /* \"#utility.yul\":9990:10057 */\n tag_353\n jump\t// in\n tag_399:\n /* \"#utility.yul\":9983:10057 */\n swap2\n pop\n /* \"#utility.yul\":10066:10159 */\n tag_400\n /* \"#utility.yul\":10155:10158 */\n dup3\n /* \"#utility.yul\":10066:10159 */\n tag_401\n jump\t// in\n tag_400:\n /* \"#utility.yul\":10184:10186 */\n 0x40\n /* \"#utility.yul\":10179:10182 */\n dup3\n /* \"#utility.yul\":10175:10187 */\n add\n /* \"#utility.yul\":10168:10187 */\n swap1\n pop\n /* \"#utility.yul\":9827:10193 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10199:10565 */\n tag_402:\n /* \"#utility.yul\":10341:10344 */\n 0x00\n /* \"#utility.yul\":10362:10429 */\n tag_404\n /* \"#utility.yul\":10426:10428 */\n 0x2e\n /* \"#utility.yul\":10421:10424 */\n dup4\n /* \"#utility.yul\":10362:10429 */\n tag_353\n jump\t// in\n tag_404:\n /* \"#utility.yul\":10355:10429 */\n swap2\n pop\n /* \"#utility.yul\":10438:10531 */\n tag_405\n /* \"#utility.yul\":10527:10530 */\n dup3\n /* \"#utility.yul\":10438:10531 */\n tag_406\n jump\t// in\n tag_405:\n /* \"#utility.yul\":10556:10558 */\n 0x40\n /* \"#utility.yul\":10551:10554 */\n dup3\n /* \"#utility.yul\":10547:10559 */\n add\n /* \"#utility.yul\":10540:10559 */\n swap1\n pop\n /* \"#utility.yul\":10199:10565 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10571:10689 */\n tag_407:\n /* \"#utility.yul\":10658:10682 */\n tag_409\n /* \"#utility.yul\":10676:10681 */\n dup2\n /* \"#utility.yul\":10658:10682 */\n tag_410\n jump\t// in\n tag_409:\n /* \"#utility.yul\":10653:10656 */\n dup3\n /* \"#utility.yul\":10646:10683 */\n mstore\n /* \"#utility.yul\":10571:10689 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":10695:11130 */\n tag_150:\n /* \"#utility.yul\":10875:10878 */\n 0x00\n /* \"#utility.yul\":10897:10992 */\n tag_412\n /* \"#utility.yul\":10988:10991 */\n dup3\n /* \"#utility.yul\":10979:10985 */\n dup6\n /* \"#utility.yul\":10897:10992 */\n tag_356\n jump\t// in\n tag_412:\n /* \"#utility.yul\":10890:10992 */\n swap2\n pop\n /* \"#utility.yul\":11009:11104 */\n tag_413\n /* \"#utility.yul\":11100:11103 */\n dup3\n /* \"#utility.yul\":11091:11097 */\n dup5\n /* \"#utility.yul\":11009:11104 */\n tag_356\n jump\t// in\n tag_413:\n /* \"#utility.yul\":11002:11104 */\n swap2\n pop\n /* \"#utility.yul\":11121:11124 */\n dup2\n /* \"#utility.yul\":11114:11124 */\n swap1\n pop\n /* \"#utility.yul\":10695:11130 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":11136:11358 */\n tag_33:\n /* \"#utility.yul\":11229:11233 */\n 0x00\n /* \"#utility.yul\":11267:11269 */\n 0x20\n /* \"#utility.yul\":11256:11265 */\n dup3\n /* \"#utility.yul\":11252:11270 */\n add\n /* \"#utility.yul\":11244:11270 */\n swap1\n pop\n /* \"#utility.yul\":11280:11351 */\n tag_415\n /* \"#utility.yul\":11348:11349 */\n 0x00\n /* \"#utility.yul\":11337:11346 */\n dup4\n /* \"#utility.yul\":11333:11350 */\n add\n /* \"#utility.yul\":11324:11330 */\n dup5\n /* \"#utility.yul\":11280:11351 */\n tag_330\n jump\t// in\n tag_415:\n /* \"#utility.yul\":11136:11358 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":11364:12004 */\n tag_228:\n /* \"#utility.yul\":11559:11563 */\n 0x00\n /* \"#utility.yul\":11597:11600 */\n 0x80\n /* \"#utility.yul\":11586:11595 */\n dup3\n /* \"#utility.yul\":11582:11601 */\n add\n /* \"#utility.yul\":11574:11601 */\n swap1\n pop\n /* \"#utility.yul\":11611:11682 */\n tag_417\n /* \"#utility.yul\":11679:11680 */\n 0x00\n /* \"#utility.yul\":11668:11677 */\n dup4\n /* \"#utility.yul\":11664:11681 */\n add\n /* \"#utility.yul\":11655:11661 */\n dup8\n /* \"#utility.yul\":11611:11682 */\n tag_330\n jump\t// in\n tag_417:\n /* \"#utility.yul\":11692:11764 */\n tag_418\n /* \"#utility.yul\":11760:11762 */\n 0x20\n /* \"#utility.yul\":11749:11758 */\n dup4\n /* \"#utility.yul\":11745:11763 */\n add\n /* \"#utility.yul\":11736:11742 */\n dup7\n /* \"#utility.yul\":11692:11764 */\n tag_330\n jump\t// in\n tag_418:\n /* \"#utility.yul\":11774:11846 */\n tag_419\n /* \"#utility.yul\":11842:11844 */\n 0x40\n /* \"#utility.yul\":11831:11840 */\n dup4\n /* \"#utility.yul\":11827:11845 */\n add\n /* \"#utility.yul\":11818:11824 */\n dup6\n /* \"#utility.yul\":11774:11846 */\n tag_407\n jump\t// in\n tag_419:\n /* \"#utility.yul\":11893:11902 */\n dup2\n /* \"#utility.yul\":11887:11891 */\n dup2\n /* \"#utility.yul\":11883:11903 */\n sub\n /* \"#utility.yul\":11878:11880 */\n 0x60\n /* \"#utility.yul\":11867:11876 */\n dup4\n /* \"#utility.yul\":11863:11881 */\n add\n /* \"#utility.yul\":11856:11904 */\n mstore\n /* \"#utility.yul\":11921:11997 */\n tag_420\n /* \"#utility.yul\":11992:11996 */\n dup2\n /* \"#utility.yul\":11983:11989 */\n dup5\n /* \"#utility.yul\":11921:11997 */\n tag_338\n jump\t// in\n tag_420:\n /* \"#utility.yul\":11913:11997 */\n swap1\n pop\n /* \"#utility.yul\":11364:12004 */\n swap6\n swap5\n pop\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":12010:12220 */\n tag_23:\n /* \"#utility.yul\":12097:12101 */\n 0x00\n /* \"#utility.yul\":12135:12137 */\n 0x20\n /* \"#utility.yul\":12124:12133 */\n dup3\n /* \"#utility.yul\":12120:12138 */\n add\n /* \"#utility.yul\":12112:12138 */\n swap1\n pop\n /* \"#utility.yul\":12148:12213 */\n tag_422\n /* \"#utility.yul\":12210:12211 */\n 0x00\n /* \"#utility.yul\":12199:12208 */\n dup4\n /* \"#utility.yul\":12195:12212 */\n add\n /* \"#utility.yul\":12186:12192 */\n dup5\n /* \"#utility.yul\":12148:12213 */\n tag_334\n jump\t// in\n tag_422:\n /* \"#utility.yul\":12010:12220 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":12226:12539 */\n tag_27:\n /* \"#utility.yul\":12339:12343 */\n 0x00\n /* \"#utility.yul\":12377:12379 */\n 0x20\n /* \"#utility.yul\":12366:12375 */\n dup3\n /* \"#utility.yul\":12362:12380 */\n add\n /* \"#utility.yul\":12354:12380 */\n swap1\n pop\n /* \"#utility.yul\":12426:12435 */\n dup2\n /* \"#utility.yul\":12420:12424 */\n dup2\n /* \"#utility.yul\":12416:12436 */\n sub\n /* \"#utility.yul\":12412:12413 */\n 0x00\n /* \"#utility.yul\":12401:12410 */\n dup4\n /* \"#utility.yul\":12397:12414 */\n add\n /* \"#utility.yul\":12390:12437 */\n mstore\n /* \"#utility.yul\":12454:12532 */\n tag_424\n /* \"#utility.yul\":12527:12531 */\n dup2\n /* \"#utility.yul\":12518:12524 */\n dup5\n /* \"#utility.yul\":12454:12532 */\n tag_348\n jump\t// in\n tag_424:\n /* \"#utility.yul\":12446:12532 */\n swap1\n pop\n /* \"#utility.yul\":12226:12539 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":12545:12964 */\n tag_195:\n /* \"#utility.yul\":12711:12715 */\n 0x00\n /* \"#utility.yul\":12749:12751 */\n 0x20\n /* \"#utility.yul\":12738:12747 */\n dup3\n /* \"#utility.yul\":12734:12752 */\n add\n /* \"#utility.yul\":12726:12752 */\n swap1\n pop\n /* \"#utility.yul\":12798:12807 */\n dup2\n /* \"#utility.yul\":12792:12796 */\n dup2\n /* \"#utility.yul\":12788:12808 */\n sub\n /* \"#utility.yul\":12784:12785 */\n 0x00\n /* \"#utility.yul\":12773:12782 */\n dup4\n /* \"#utility.yul\":12769:12786 */\n add\n /* \"#utility.yul\":12762:12809 */\n mstore\n /* \"#utility.yul\":12826:12957 */\n tag_426\n /* \"#utility.yul\":12952:12956 */\n dup2\n /* \"#utility.yul\":12826:12957 */\n tag_362\n jump\t// in\n tag_426:\n /* \"#utility.yul\":12818:12957 */\n swap1\n pop\n /* \"#utility.yul\":12545:12964 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":12970:13389 */\n tag_171:\n /* \"#utility.yul\":13136:13140 */\n 0x00\n /* \"#utility.yul\":13174:13176 */\n 0x20\n /* \"#utility.yul\":13163:13172 */\n dup3\n /* \"#utility.yul\":13159:13177 */\n add\n /* \"#utility.yul\":13151:13177 */\n swap1\n pop\n /* \"#utility.yul\":13223:13232 */\n dup2\n /* \"#utility.yul\":13217:13221 */\n dup2\n /* \"#utility.yul\":13213:13233 */\n sub\n /* \"#utility.yul\":13209:13210 */\n 0x00\n /* \"#utility.yul\":13198:13207 */\n dup4\n /* \"#utility.yul\":13194:13211 */\n add\n /* \"#utility.yul\":13187:13234 */\n mstore\n /* \"#utility.yul\":13251:13382 */\n tag_428\n /* \"#utility.yul\":13377:13381 */\n dup2\n /* \"#utility.yul\":13251:13382 */\n tag_367\n jump\t// in\n tag_428:\n /* \"#utility.yul\":13243:13382 */\n swap1\n pop\n /* \"#utility.yul\":12970:13389 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":13395:13814 */\n tag_174:\n /* \"#utility.yul\":13561:13565 */\n 0x00\n /* \"#utility.yul\":13599:13601 */\n 0x20\n /* \"#utility.yul\":13588:13597 */\n dup3\n /* \"#utility.yul\":13584:13602 */\n add\n /* \"#utility.yul\":13576:13602 */\n swap1\n pop\n /* \"#utility.yul\":13648:13657 */\n dup2\n /* \"#utility.yul\":13642:13646 */\n dup2\n /* \"#utility.yul\":13638:13658 */\n sub\n /* \"#utility.yul\":13634:13635 */\n 0x00\n /* \"#utility.yul\":13623:13632 */\n dup4\n /* \"#utility.yul\":13619:13636 */\n add\n /* \"#utility.yul\":13612:13659 */\n mstore\n /* \"#utility.yul\":13676:13807 */\n tag_430\n /* \"#utility.yul\":13802:13806 */\n dup2\n /* \"#utility.yul\":13676:13807 */\n tag_372\n jump\t// in\n tag_430:\n /* \"#utility.yul\":13668:13807 */\n swap1\n pop\n /* \"#utility.yul\":13395:13814 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":13820:14239 */\n tag_187:\n /* \"#utility.yul\":13986:13990 */\n 0x00\n /* \"#utility.yul\":14024:14026 */\n 0x20\n /* \"#utility.yul\":14013:14022 */\n dup3\n /* \"#utility.yul\":14009:14027 */\n add\n /* \"#utility.yul\":14001:14027 */\n swap1\n pop\n /* \"#utility.yul\":14073:14082 */\n dup2\n /* \"#utility.yul\":14067:14071 */\n dup2\n /* \"#utility.yul\":14063:14083 */\n sub\n /* \"#utility.yul\":14059:14060 */\n 0x00\n /* \"#utility.yul\":14048:14057 */\n dup4\n /* \"#utility.yul\":14044:14061 */\n add\n /* \"#utility.yul\":14037:14084 */\n mstore\n /* \"#utility.yul\":14101:14232 */\n tag_432\n /* \"#utility.yul\":14227:14231 */\n dup2\n /* \"#utility.yul\":14101:14232 */\n tag_377\n jump\t// in\n tag_432:\n /* \"#utility.yul\":14093:14232 */\n swap1\n pop\n /* \"#utility.yul\":13820:14239 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":14245:14664 */\n tag_123:\n /* \"#utility.yul\":14411:14415 */\n 0x00\n /* \"#utility.yul\":14449:14451 */\n 0x20\n /* \"#utility.yul\":14438:14447 */\n dup3\n /* \"#utility.yul\":14434:14452 */\n add\n /* \"#utility.yul\":14426:14452 */\n swap1\n pop\n /* \"#utility.yul\":14498:14507 */\n dup2\n /* \"#utility.yul\":14492:14496 */\n dup2\n /* \"#utility.yul\":14488:14508 */\n sub\n /* \"#utility.yul\":14484:14485 */\n 0x00\n /* \"#utility.yul\":14473:14482 */\n dup4\n /* \"#utility.yul\":14469:14486 */\n add\n /* \"#utility.yul\":14462:14509 */\n mstore\n /* \"#utility.yul\":14526:14657 */\n tag_434\n /* \"#utility.yul\":14652:14656 */\n dup2\n /* \"#utility.yul\":14526:14657 */\n tag_382\n jump\t// in\n tag_434:\n /* \"#utility.yul\":14518:14657 */\n swap1\n pop\n /* \"#utility.yul\":14245:14664 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":14670:15089 */\n tag_102:\n /* \"#utility.yul\":14836:14840 */\n 0x00\n /* \"#utility.yul\":14874:14876 */\n 0x20\n /* \"#utility.yul\":14863:14872 */\n dup3\n /* \"#utility.yul\":14859:14877 */\n add\n /* \"#utility.yul\":14851:14877 */\n swap1\n pop\n /* \"#utility.yul\":14923:14932 */\n dup2\n /* \"#utility.yul\":14917:14921 */\n dup2\n /* \"#utility.yul\":14913:14933 */\n sub\n /* \"#utility.yul\":14909:14910 */\n 0x00\n /* \"#utility.yul\":14898:14907 */\n dup4\n /* \"#utility.yul\":14894:14911 */\n add\n /* \"#utility.yul\":14887:14934 */\n mstore\n /* \"#utility.yul\":14951:15082 */\n tag_436\n /* \"#utility.yul\":15077:15081 */\n dup2\n /* \"#utility.yul\":14951:15082 */\n tag_387\n jump\t// in\n tag_436:\n /* \"#utility.yul\":14943:15082 */\n swap1\n pop\n /* \"#utility.yul\":14670:15089 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":15095:15514 */\n tag_119:\n /* \"#utility.yul\":15261:15265 */\n 0x00\n /* \"#utility.yul\":15299:15301 */\n 0x20\n /* \"#utility.yul\":15288:15297 */\n dup3\n /* \"#utility.yul\":15284:15302 */\n add\n /* \"#utility.yul\":15276:15302 */\n swap1\n pop\n /* \"#utility.yul\":15348:15357 */\n dup2\n /* \"#utility.yul\":15342:15346 */\n dup2\n /* \"#utility.yul\":15338:15358 */\n sub\n /* \"#utility.yul\":15334:15335 */\n 0x00\n /* \"#utility.yul\":15323:15332 */\n dup4\n /* \"#utility.yul\":15319:15336 */\n add\n /* \"#utility.yul\":15312:15359 */\n mstore\n /* \"#utility.yul\":15376:15507 */\n tag_438\n /* \"#utility.yul\":15502:15506 */\n dup2\n /* \"#utility.yul\":15376:15507 */\n tag_392\n jump\t// in\n tag_438:\n /* \"#utility.yul\":15368:15507 */\n swap1\n pop\n /* \"#utility.yul\":15095:15514 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":15520:15939 */\n tag_94:\n /* \"#utility.yul\":15686:15690 */\n 0x00\n /* \"#utility.yul\":15724:15726 */\n 0x20\n /* \"#utility.yul\":15713:15722 */\n dup3\n /* \"#utility.yul\":15709:15727 */\n add\n /* \"#utility.yul\":15701:15727 */\n swap1\n pop\n /* \"#utility.yul\":15773:15782 */\n dup2\n /* \"#utility.yul\":15767:15771 */\n dup2\n /* \"#utility.yul\":15763:15783 */\n sub\n /* \"#utility.yul\":15759:15760 */\n 0x00\n /* \"#utility.yul\":15748:15757 */\n dup4\n /* \"#utility.yul\":15744:15761 */\n add\n /* \"#utility.yul\":15737:15784 */\n mstore\n /* \"#utility.yul\":15801:15932 */\n tag_440\n /* \"#utility.yul\":15927:15931 */\n dup2\n /* \"#utility.yul\":15801:15932 */\n tag_397\n jump\t// in\n tag_440:\n /* \"#utility.yul\":15793:15932 */\n swap1\n pop\n /* \"#utility.yul\":15520:15939 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":15945:16364 */\n tag_111:\n /* \"#utility.yul\":16111:16115 */\n 0x00\n /* \"#utility.yul\":16149:16151 */\n 0x20\n /* \"#utility.yul\":16138:16147 */\n dup3\n /* \"#utility.yul\":16134:16152 */\n add\n /* \"#utility.yul\":16126:16152 */\n swap1\n pop\n /* \"#utility.yul\":16198:16207 */\n dup2\n /* \"#utility.yul\":16192:16196 */\n dup2\n /* \"#utility.yul\":16188:16208 */\n sub\n /* \"#utility.yul\":16184:16185 */\n 0x00\n /* \"#utility.yul\":16173:16182 */\n dup4\n /* \"#utility.yul\":16169:16186 */\n add\n /* \"#utility.yul\":16162:16209 */\n mstore\n /* \"#utility.yul\":16226:16357 */\n tag_442\n /* \"#utility.yul\":16352:16356 */\n dup2\n /* \"#utility.yul\":16226:16357 */\n tag_402\n jump\t// in\n tag_442:\n /* \"#utility.yul\":16218:16357 */\n swap1\n pop\n /* \"#utility.yul\":15945:16364 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":16370:16592 */\n tag_54:\n /* \"#utility.yul\":16463:16467 */\n 0x00\n /* \"#utility.yul\":16501:16503 */\n 0x20\n /* \"#utility.yul\":16490:16499 */\n dup3\n /* \"#utility.yul\":16486:16504 */\n add\n /* \"#utility.yul\":16478:16504 */\n swap1\n pop\n /* \"#utility.yul\":16514:16585 */\n tag_444\n /* \"#utility.yul\":16582:16583 */\n 0x00\n /* \"#utility.yul\":16571:16580 */\n dup4\n /* \"#utility.yul\":16567:16584 */\n add\n /* \"#utility.yul\":16558:16564 */\n dup5\n /* \"#utility.yul\":16514:16585 */\n tag_407\n jump\t// in\n tag_444:\n /* \"#utility.yul\":16370:16592 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":16598:16727 */\n tag_251:\n /* \"#utility.yul\":16632:16638 */\n 0x00\n /* \"#utility.yul\":16659:16679 */\n tag_446\n tag_447\n jump\t// in\n tag_446:\n /* \"#utility.yul\":16649:16679 */\n swap1\n pop\n /* \"#utility.yul\":16688:16721 */\n tag_448\n /* \"#utility.yul\":16716:16720 */\n dup3\n /* \"#utility.yul\":16708:16714 */\n dup3\n /* \"#utility.yul\":16688:16721 */\n tag_449\n jump\t// in\n tag_448:\n /* \"#utility.yul\":16598:16727 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":16733:16808 */\n tag_447:\n /* \"#utility.yul\":16766:16772 */\n 0x00\n /* \"#utility.yul\":16799:16801 */\n 0x40\n /* \"#utility.yul\":16793:16802 */\n mload\n /* \"#utility.yul\":16783:16802 */\n swap1\n pop\n /* \"#utility.yul\":16733:16808 */\n swap1\n jump\t// out\n /* \"#utility.yul\":16814:17121 */\n tag_250:\n /* \"#utility.yul\":16875:16879 */\n 0x00\n /* \"#utility.yul\":16965:16983 */\n 0xffffffffffffffff\n /* \"#utility.yul\":16957:16963 */\n dup3\n /* \"#utility.yul\":16954:16984 */\n gt\n /* \"#utility.yul\":16951:17007 */\n iszero\n tag_452\n jumpi\n /* \"#utility.yul\":16987:17005 */\n tag_453\n tag_207\n jump\t// in\n tag_453:\n /* \"#utility.yul\":16951:17007 */\n tag_452:\n /* \"#utility.yul\":17025:17054 */\n tag_454\n /* \"#utility.yul\":17047:17053 */\n dup3\n /* \"#utility.yul\":17025:17054 */\n tag_347\n jump\t// in\n tag_454:\n /* \"#utility.yul\":17017:17054 */\n swap1\n pop\n /* \"#utility.yul\":17109:17113 */\n 0x20\n /* \"#utility.yul\":17103:17107 */\n dup2\n /* \"#utility.yul\":17099:17114 */\n add\n /* \"#utility.yul\":17091:17114 */\n swap1\n pop\n /* \"#utility.yul\":16814:17121 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":17127:17225 */\n tag_341:\n /* \"#utility.yul\":17178:17184 */\n 0x00\n /* \"#utility.yul\":17212:17217 */\n dup2\n /* \"#utility.yul\":17206:17218 */\n mload\n /* \"#utility.yul\":17196:17218 */\n swap1\n pop\n /* \"#utility.yul\":17127:17225 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":17231:17330 */\n tag_351:\n /* \"#utility.yul\":17283:17289 */\n 0x00\n /* \"#utility.yul\":17317:17322 */\n dup2\n /* \"#utility.yul\":17311:17323 */\n mload\n /* \"#utility.yul\":17301:17323 */\n swap1\n pop\n /* \"#utility.yul\":17231:17330 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":17336:17504 */\n tag_343:\n /* \"#utility.yul\":17419:17430 */\n 0x00\n /* \"#utility.yul\":17453:17459 */\n dup3\n /* \"#utility.yul\":17448:17451 */\n dup3\n /* \"#utility.yul\":17441:17460 */\n mstore\n /* \"#utility.yul\":17493:17497 */\n 0x20\n /* \"#utility.yul\":17488:17491 */\n dup3\n /* \"#utility.yul\":17484:17498 */\n add\n /* \"#utility.yul\":17469:17498 */\n swap1\n pop\n /* \"#utility.yul\":17336:17504 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":17510:17679 */\n tag_353:\n /* \"#utility.yul\":17594:17605 */\n 0x00\n /* \"#utility.yul\":17628:17634 */\n dup3\n /* \"#utility.yul\":17623:17626 */\n dup3\n /* \"#utility.yul\":17616:17635 */\n mstore\n /* \"#utility.yul\":17668:17672 */\n 0x20\n /* \"#utility.yul\":17663:17666 */\n dup3\n /* \"#utility.yul\":17659:17673 */\n add\n /* \"#utility.yul\":17644:17673 */\n swap1\n pop\n /* \"#utility.yul\":17510:17679 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":17685:17833 */\n tag_360:\n /* \"#utility.yul\":17787:17798 */\n 0x00\n /* \"#utility.yul\":17824:17827 */\n dup2\n /* \"#utility.yul\":17809:17827 */\n swap1\n pop\n /* \"#utility.yul\":17685:17833 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":17839:18144 */\n tag_181:\n /* \"#utility.yul\":17879:17882 */\n 0x00\n /* \"#utility.yul\":17898:17918 */\n tag_461\n /* \"#utility.yul\":17916:17917 */\n dup3\n /* \"#utility.yul\":17898:17918 */\n tag_410\n jump\t// in\n tag_461:\n /* \"#utility.yul\":17893:17918 */\n swap2\n pop\n /* \"#utility.yul\":17932:17952 */\n tag_462\n /* \"#utility.yul\":17950:17951 */\n dup4\n /* \"#utility.yul\":17932:17952 */\n tag_410\n jump\t// in\n tag_462:\n /* \"#utility.yul\":17927:17952 */\n swap3\n pop\n /* \"#utility.yul\":18086:18087 */\n dup3\n /* \"#utility.yul\":18018:18084 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":18014:18088 */\n sub\n /* \"#utility.yul\":18011:18012 */\n dup3\n /* \"#utility.yul\":18008:18089 */\n gt\n /* \"#utility.yul\":18005:18112 */\n iszero\n tag_463\n jumpi\n /* \"#utility.yul\":18092:18110 */\n tag_464\n tag_465\n jump\t// in\n tag_464:\n /* \"#utility.yul\":18005:18112 */\n tag_463:\n /* \"#utility.yul\":18136:18137 */\n dup3\n /* \"#utility.yul\":18133:18134 */\n dup3\n /* \"#utility.yul\":18129:18138 */\n add\n /* \"#utility.yul\":18122:18138 */\n swap1\n pop\n /* \"#utility.yul\":17839:18144 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":18150:18335 */\n tag_204:\n /* \"#utility.yul\":18190:18191 */\n 0x00\n /* \"#utility.yul\":18207:18227 */\n tag_467\n /* \"#utility.yul\":18225:18226 */\n dup3\n /* \"#utility.yul\":18207:18227 */\n tag_410\n jump\t// in\n tag_467:\n /* \"#utility.yul\":18202:18227 */\n swap2\n pop\n /* \"#utility.yul\":18241:18261 */\n tag_468\n /* \"#utility.yul\":18259:18260 */\n dup4\n /* \"#utility.yul\":18241:18261 */\n tag_410\n jump\t// in\n tag_468:\n /* \"#utility.yul\":18236:18261 */\n swap3\n pop\n /* \"#utility.yul\":18280:18281 */\n dup3\n /* \"#utility.yul\":18270:18305 */\n tag_469\n jumpi\n /* \"#utility.yul\":18285:18303 */\n tag_470\n tag_471\n jump\t// in\n tag_470:\n /* \"#utility.yul\":18270:18305 */\n tag_469:\n /* \"#utility.yul\":18327:18328 */\n dup3\n /* \"#utility.yul\":18324:18325 */\n dup3\n /* \"#utility.yul\":18320:18329 */\n div\n /* \"#utility.yul\":18315:18329 */\n swap1\n pop\n /* \"#utility.yul\":18150:18335 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":18341:18532 */\n tag_179:\n /* \"#utility.yul\":18381:18385 */\n 0x00\n /* \"#utility.yul\":18401:18421 */\n tag_473\n /* \"#utility.yul\":18419:18420 */\n dup3\n /* \"#utility.yul\":18401:18421 */\n tag_410\n jump\t// in\n tag_473:\n /* \"#utility.yul\":18396:18421 */\n swap2\n pop\n /* \"#utility.yul\":18435:18455 */\n tag_474\n /* \"#utility.yul\":18453:18454 */\n dup4\n /* \"#utility.yul\":18435:18455 */\n tag_410\n jump\t// in\n tag_474:\n /* \"#utility.yul\":18430:18455 */\n swap3\n pop\n /* \"#utility.yul\":18474:18475 */\n dup3\n /* \"#utility.yul\":18471:18472 */\n dup3\n /* \"#utility.yul\":18468:18476 */\n lt\n /* \"#utility.yul\":18465:18499 */\n iszero\n tag_475\n jumpi\n /* \"#utility.yul\":18479:18497 */\n tag_476\n tag_465\n jump\t// in\n tag_476:\n /* \"#utility.yul\":18465:18499 */\n tag_475:\n /* \"#utility.yul\":18524:18525 */\n dup3\n /* \"#utility.yul\":18521:18522 */\n dup3\n /* \"#utility.yul\":18517:
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

@Ganpath-Singh-B
Copy link
Author

Error solved now

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment